/* THE HOME OUTPOST  Master Stylesheet
  
/*RESET & VARIABLES*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


:root {
  --cream: #FAF7F2;          /* Parchment   light background */
  --warm-white: #FAF7F2;     /* Parchment   light background */
  --charcoal: #2C2318;       /* Espresso  primary dark text */
  --taupe: #8B7355;          /* Tan tagline / secondary text */
  --gold: #8B6F47;           /* Amber â€” accent */
  --gold-light: #C9965A;     /* Amber light â€” accent alternate */
  --forest: #1A1410;         /* Deep Espresso â€” dark background */
  --rust: #C9965A;           /* Amber light â€” hover accent */
  --sand: #C8BC9E;           /* Sand â€” rules, dividers */
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
}

/*NAVIGATION*/
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* Dropdown trigger */
.nav-links .has-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-links .has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  opacity: 0.5;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-links .has-dropdown:hover > a::after {
  transform: rotate(-135deg);
  opacity: 1;
}
.nav-links .has-dropdown:hover > a { color: var(--gold); }

/* Dropdown menu */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -12px;
  padding-top: 12px;
  min-width: 180px;
  list-style: none;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 12px; left: 0; right: 0; bottom: 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border: 1px solid var(--sand);
}
.nav-dropdown li { position: relative; }
.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.75rem;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.nav-dropdown a:hover { background: var(--cream); }
.nav-links .has-dropdown:hover .nav-dropdown { display: block; }
.nav-cta {
  background: var(--charcoal);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--gold) !important; color: #fff !important; }
.nav-cta.active { background: var(--gold) !important; }

/*MOBILE STICKY BAR*/
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--charcoal);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-sticky a { color: var(--gold); text-decoration: none; }

/*TYPOGRAPHY*/
.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--taupe);
  max-width: 600px;
}
.section-body { max-width: 540px; }

/*SECTIONS BASE*/
section { padding: 80px 8vw; }

/*BUTTONS*/
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 16px 32px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-submit {
  background: var(--charcoal);
  color: #fff;
  border: none;
  padding: 16px 32px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  width: 100%;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}
.btn-submit:hover { background: var(--gold); }

/*FORMS*/
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--warm-white);
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 80px; }

/*PAGE HERO (shared across subpages)*/
.page-hero {
  padding: 160px 8vw 80px;
  background: linear-gradient(135deg, #2C2318 0%, #1A1410 40%, #3a2f22 70%, #8B7355 100%);
  color: #fff;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.page-hero .section-eyebrow { color: var(--gold); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: #C9965A; }
.page-hero p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
}

/*CTA BANNER (shared)*/
.cta-banner {
  background: var(--forest);
  color: #fff;
  text-align: center;
  padding: 80px 8vw;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/*FOOTER*/
footer {
  background: #1A1410;
  color: rgba(255,255,255,0.55);
  padding: 48px 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #fff;
}
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 0.75rem; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--gold); }

/*MOCKUP ANNOTATION (dev only)*/
.mockup-banner {
  background: #FFE566;
  color: #333;
  text-align: center;
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOMEPAGE SPECIFIC
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/*HERO*/
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 8vw;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2C2318 0%, #1A1410 40%, #3a2f22 70%, #8B7355 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: #C9965A; }
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; } 50% { opacity: 1; }
}

/*SOCIAL PROOF BAR*/
.proof-bar { background: var(--charcoal); color: #fff; }
.proof-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 52px 8vw 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.proof-hero::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,110,0.08);
  pointer-events: none;
}
.proof-hero::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,110,0.12);
  pointer-events: none;
}
.proof-big { text-align: center; position: relative; z-index: 1; padding: 0 48px; }
.proof-big-eyebrow { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.proof-big-num { font-family: 'Playfair Display', serif; font-size: clamp(3.5rem, 8vw, 6rem); font-weight: 500; color: #fff; line-height: 1; display: block; letter-spacing: -0.02em; }
.proof-big-num sup { font-size: 0.4em; vertical-align: super; color: var(--gold); }
.proof-big-label { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.65); margin-top: 10px; line-height: 1.5; }
.proof-big-label strong { color: rgba(255,255,255,0.9); font-weight: 500; }
.proof-divider { width: 1px; height: 100px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.proof-stats { display: flex; justify-content: center; gap: 0; padding: 28px 8vw; }
.proof-item { flex: 1; max-width: 240px; text-align: center; padding: 20px 24px; border-right: 1px solid rgba(255,255,255,0.08); }
.proof-item:last-child { border-right: none; }
.proof-num { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--gold); display: block; margin-bottom: 5px; }
.proof-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/*PATHWAY CARDS*/
.pathways { background: var(--cream); padding: 80px 8vw; }
.pathways-header { text-align: center; margin-bottom: 56px; }
.pathways-header .section-body { margin: 0 auto; text-align: center; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: #fff; border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.25s, transform 0.2s; cursor: pointer; }
.card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); transform: translateY(-3px); }
.card-img { height: 260px; object-fit: cover; width: 100%; display: block; }
.card-img-placeholder { height: 260px; width: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.card-body { padding: 32px 28px; flex: 1; display: flex; flex-direction: column; }
.card-icon { font-size: 1.6rem; margin-bottom: 14px; }
.card-title { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 500; color: var(--charcoal); margin-bottom: 12px; }
.card-text { font-size: 0.9rem; line-height: 1.7; color: #666; flex: 1; margin-bottom: 24px; }
.card-link { font-size: 0.73rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.card-link::after { content: '\2192'; }
.card-link:hover { color: var(--rust); }
.card-staging .card-body { border-top: 3px solid var(--forest); }
.card-shop .card-body { border-top: 3px solid var(--gold); }
.card-design .card-body { border-top: 3px solid var(--rust); }
.card-staging .card-img-placeholder { background: #e8ede8; }
.card-shop .card-img-placeholder { background: #f0e8dc; }
.card-design .card-img-placeholder { background: #ede8e4; }

/*ZILLOW BANNER*/
.zillow-banner { background: var(--forest); color: #fff; display: flex; align-items: center; justify-content: space-between; padding: 40px 8vw; gap: 32px; flex-wrap: wrap; }
.zillow-banner-text h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 6px; }
.zillow-banner-text p { font-size: 0.9rem; color: rgba(255,255,255,0.72); max-width: 480px; }
.btn-zillow { display: inline-flex; align-items: center; gap: 10px; background: #006AFF; color: #fff; padding: 16px 28px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border-radius: 4px; white-space: nowrap; transition: background 0.2s; }
.btn-zillow:hover { background: #0055cc; }
.zillow-logo-z { background: #006AFF; border-radius: 50%; width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.85rem; border: 2px solid rgba(255,255,255,0.4); }

/*SHOP EXPERIENCE*/
.shop-section { background: var(--warm-white); }
.shop-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.shop-visual { position: relative; }
.shop-main-img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; background: linear-gradient(160deg, #d9cfc5 0%, #b5a899 100%); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.shop-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: #fff; padding: 20px; border-radius: 4px; text-align: center; min-width: 140px; }
.shop-badge-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; display: block; }
.shop-badge-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; }
.shop-locations { display: flex; gap: 12px; margin: 28px 0; flex-wrap: wrap; }
.location-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--cream); padding: 8px 16px; border-radius: 20px; font-size: 0.78rem; font-weight: 500; color: var(--charcoal); }
.shop-how { background: var(--cream); border-radius: 4px; padding: 24px; margin-top: 28px; }
.shop-how-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--taupe); margin-bottom: 14px; }
.shop-how-step { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; font-size: 0.88rem; line-height: 1.5; color: #555; }
.shop-how-step:last-child { margin-bottom: 0; }
.step-num { background: var(--gold); color: #fff; border-radius: 50%; width: 22px; height: 22px; min-width: 22px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; }

/*PROJECTS STRIP*/
.projects-section { background: var(--charcoal); padding: 80px 8vw; }
.projects-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.projects-header .section-title { color: #fff; margin-bottom: 0; }
.projects-header .section-eyebrow { color: var(--gold); }
.view-all-link { font-size: 0.73rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.view-all-link:hover { color: #fff; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.project-card { position: relative; border-radius: 4px; overflow: hidden; cursor: pointer; }
.project-img { width: 100%; height: 100%; min-height: 200px; object-fit: cover; display: block; }
.project-img-placeholder { width: 100%; min-height: 200px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
/* Featured oversized first card only on the homepage */
.home .projects-grid { grid-template-columns: repeat(4, 1fr); }
.home .project-card:first-child { grid-column: span 2; grid-row: span 2; }
.home .project-card:first-child .project-img-placeholder { min-height: 416px; }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; opacity: 0; transition: opacity 0.25s; }
.project-overlay {opacity: 1;}

.project-location {font-size: 0.65rem;font-weight: 600;letter-spacing: 0.15em;text-transform: uppercase;color: #fff;margin-bottom: 4px;}
.project-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: #fff; }
.project-inquire { margin-top: 8px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.pc-1 { background: linear-gradient(135deg, #c4b49a, #8B7E72); }
.pc-2 { background: linear-gradient(135deg, #8B7E72, #6b5f54); }
.pc-3 { background: linear-gradient(135deg, #9B5E3A, #7a4a2d); }
.pc-4 { background: linear-gradient(135deg, #b5a899, #8a7d70); }
.pc-5 { background: linear-gradient(135deg, #B8966E, #9a7755); }

/*PHOTO GALLERY*/
.photo-gallery-section { background: var(--warm-white); padding: 80px 8vw; }
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
}
.photo-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s, opacity 0.3s;
  cursor: pointer;
}
.photo-gallery img:hover { transform: scale(1.02); opacity: 0.9; }

/*LIGHTBOX*/
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26,20,16,0.95);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  background: none; border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 16px 20px;
  cursor: pointer;
  border-radius: 4px;
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
}
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/*TEAM PAGE*/
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.team-card { background: var(--cream); border-radius: 4px; padding: 40px 32px; text-align: center; }
.team-photo { width: 120px; height: 120px; border-radius: 50%; background: var(--sand); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 6px; }
.team-role { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.team-bio { font-size: 0.9rem; line-height: 1.7; color: var(--taupe); }

/*TESTIMONIALS*/
.testimonial-section { background: var(--cream); text-align: center; padding: 80px 8vw; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.testimonial-card { background: #fff; padding: 32px; border-radius: 4px; text-align: left; }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; }
.testimonial-quote { font-family: 'Playfair Display', serif; font-size: 1rem; font-style: italic; line-height: 1.7; color: var(--charcoal); margin-bottom: 20px; }
.testimonial-author { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--taupe); }

/*CONTACT CTA (homepage)*/
.contact-cta { background: var(--warm-white); display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 500px; }
.contact-cta-visual { background: linear-gradient(135deg, #1A1410 0%, #2C2318 100%); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 80px 60px; }
.contact-cta-visual h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 500; color: #fff; line-height: 1.25; margin-bottom: 16px; }
.contact-cta-visual p { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 32px; }
.contact-cta .contact-detail { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 10px; }
.contact-cta .contact-detail strong { color: #fff; }
.contact-form-side { background: #fff; padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.contact-form-side h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 28px; color: var(--charcoal); }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SHOWROOM PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.showroom-info { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.showroom-visual { position: relative; aspect-ratio: 4/3; background: linear-gradient(160deg, #d9cfc5 0%, #b5a899 100%); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.showroom-badge { position: absolute; bottom: -16px; right: -16px; background: var(--gold); color: #fff; padding: 20px; border-radius: 4px; text-align: center; min-width: 130px; }
.showroom-badge-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; display: block; }
.showroom-badge-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.9; }
.info-details { margin-top: 28px; }
.info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 0.92rem; line-height: 1.6; color: #555; }
.info-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* Hours */
.hours-section { background: var(--cream); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.hours-table tr { border-bottom: 1px solid rgba(0,0,0,0.06); }
.hours-table td { padding: 14px 0; font-size: 0.92rem; color: #555; }
.hours-table td:first-child { font-weight: 500; color: var(--charcoal); }
.hours-table td:last-child { text-align: right; }
.hours-note { margin-top: 20px; font-size: 0.85rem; color: var(--taupe); font-style: italic; }
.directions-box { background: #fff; border-radius: 4px; padding: 32px; margin-top: 24px; }
.directions-box h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 14px; }
.directions-box p { font-size: 0.9rem; line-height: 1.7; color: #555; margin-bottom: 12px; }
.map-placeholder { width: 100%; height: 200px; background: #e8e4df; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--taupe); }

/* Gallery */
.gallery-section { background: var(--warm-white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.gallery-item { aspect-ratio: 4/3; border-radius: 4px; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; transition: transform 0.2s; object-fit: cover; width: 100%; height: 100%; cursor: pointer; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gi-1 { background: linear-gradient(135deg, #c4b49a, #8B7E72); }
.gi-2 { background: linear-gradient(135deg, #8B7E72, #6b5f54); }
.gi-3 { background: linear-gradient(135deg, #b5a899, #8a7d70); }
.gi-4 { background: linear-gradient(135deg, #d9cfc5, #b5a899); }
.gi-5 { background: linear-gradient(135deg, #9B5E3A, #7a4a2d); }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STAGING + STYLING PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.stats-bar { background: var(--charcoal); color: #fff; display: flex; justify-content: center; padding: 40px 8vw; gap: 0; }
.stat-item { flex: 1; max-width: 240px; text-align: center; padding: 20px 24px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--gold); display: block; margin-bottom: 5px; }
.stat-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* Services */
.services-section { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.service-card { background: #fff; border-radius: 4px; padding: 40px 32px; transition: box-shadow 0.25s, transform 0.2s; }
.service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.service-icon { font-size: 2.2rem; margin-bottom: 20px; }
.service-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 500; margin-bottom: 12px; }
.service-text { font-size: 0.9rem; line-height: 1.7; color: #666; margin-bottom: 20px; }
.service-link { font-size: 0.73rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.service-link::after { content: ' \2192'; }
.service-link:hover { color: var(--rust); }

/* Process */
.process-section { background: var(--warm-white); }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 40px; }
.process-step { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
.process-step:last-child { margin-bottom: 0; }
.step-number { background: var(--gold); color: #fff; border-radius: 50%; width: 36px; height: 36px; min-width: 36px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; }
.step-content h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 6px; }
.step-content p { font-size: 0.88rem; line-height: 1.6; color: #666; }
.process-visual { aspect-ratio: 4/5; border-radius: 4px; background: linear-gradient(160deg, #d9cfc5 0%, #b5a899 100%); display: flex; align-items: center; justify-content: center; font-size: 4rem; }

/* Portfolio */
.portfolio-section { background: var(--charcoal); padding: 80px 8vw; }
.portfolio-section .section-title { color: #fff; }
.portfolio-section .section-body { color: rgba(255,255,255,0.6); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.portfolio-item { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; cursor: pointer; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; opacity: 0; transition: opacity 0.25s; }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-loc { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.portfolio-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: #fff; }
.pi-1 { background: linear-gradient(135deg, #c4b49a, #8B7E72); }
.pi-2 { background: linear-gradient(135deg, #8B7E72, #6b5f54); }
.pi-3 { background: linear-gradient(135deg, #9B5E3A, #7a4a2d); }
.pi-4 { background: linear-gradient(135deg, #b5a899, #8a7d70); }
.pi-5 { background: linear-gradient(135deg, #B8966E, #9a7755); }
.pi-6 { background: linear-gradient(135deg, #d9cfc5, #b5a899); }

/* Staging testimonial (single large) */
.testimonial-section .testimonial-quote.large {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 32px auto 24px;
}
.testimonial-section .testimonial-stars.large { font-size: 1rem; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   COLLECTIONS PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.how-banner { background: var(--charcoal); color: #fff; padding: 48px 8vw; display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; }
.how-step { text-align: center; max-width: 220px; }
.how-step-num { background: var(--gold); color: #fff; border-radius: 50%; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; }
.how-step h4 { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 6px; color: #fff; }
.how-step p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.how-connector { color: var(--gold); font-size: 1.5rem; }

.collections-section { background: var(--cream); }
.collections-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.collection-card { background: #fff; border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.25s, transform 0.2s; cursor: pointer; }
.collection-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.collection-img { height: 280px; width: 100%; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; object-fit: cover; }
.collection-body { padding: 32px 28px; }
.collection-location { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); margin-bottom: 8px; }
.collection-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 500; margin-bottom: 10px; }
.collection-text { font-size: 0.88rem; line-height: 1.7; color: #666; margin-bottom: 20px; }
.collection-pieces { font-size: 0.75rem; font-weight: 500; color: var(--taupe); margin-bottom: 16px; }
.collection-link { font-size: 0.73rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.collection-link::after { content: ' \2192'; }
.collection-link:hover { color: var(--rust); }
.ci-1 { background: linear-gradient(135deg, #c4b49a, #8B7E72); }
.ci-2 { background: linear-gradient(135deg, #8B7E72, #6b5f54); }
.ci-3 { background: linear-gradient(135deg, #9B5E3A, #7a4a2d); }
.ci-4 { background: linear-gradient(135deg, #b5a899, #8a7d70); }
.ci-5 { background: linear-gradient(135deg, #B8966E, #9a7755); }
.ci-6 { background: linear-gradient(135deg, #d9cfc5, #b5a899); }

/* Categories */
.categories-section { background: var(--warm-white); }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.category-card { text-align: center; padding: 32px 20px; background: var(--cream); border-radius: 4px; transition: background 0.2s, transform 0.2s; cursor: pointer; }
.category-card:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.category-icon { font-size: 2rem; margin-bottom: 12px; }
.category-name { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 6px; }
.category-count { font-size: 0.72rem; color: var(--taupe); }

/* Showroom promo */
.showroom-promo { background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 400px; }
.promo-visual { background: linear-gradient(135deg, #d9cfc5 0%, #b5a899 100%); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.promo-content { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.promo-content .section-body { margin-bottom: 28px; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONSIGNMENT PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.benefits-section { background: var(--cream); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.benefit-card { background: #fff; border-radius: 4px; padding: 36px 28px; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.benefit-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.benefit-icon { font-size: 2.2rem; margin-bottom: 16px; }
.benefit-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 10px; }
.benefit-text { font-size: 0.88rem; line-height: 1.7; color: #666; }

/* What we accept */
.accept-section { background: var(--cream); }
.accept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 40px; }
.accept-list { list-style: none; }
.accept-list li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.92rem; color: #555; }
.accept-list li::before { content: '\2713'; color: var(--gold); font-weight: 700; font-size: 1rem; }
.decline-list { list-style: none; }
.decline-list li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.92rem; color: #999; }
.decline-list li::before { content: '\2717'; color: #ccc; font-weight: 700; font-size: 1rem; }
.list-header { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 16px; }

/* FAQ */
.faq-section { background: var(--warm-white); }
.faq-list { max-width: 700px; margin-top: 40px; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); padding: 24px 0; }
.faq-question { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 10px; color: var(--charcoal); }
.faq-answer { font-size: 0.9rem; line-height: 1.7; color: #666; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-main { display: grid; grid-template-columns: 1fr 1.2fr; gap: 0; background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 4px 32px rgba(0,0,0,0.06); margin-top: -40px; position: relative; z-index: 2; margin-left: 8vw; margin-right: 8vw; }
.contact-info { background: var(--charcoal); color: #fff; padding: 60px 48px; display: flex; flex-direction: column; justify-content: space-between; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 24px; }
.contact-info > div > p { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.contact-page-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon { width: 40px; height: 40px; background: rgba(184,150,110,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-detail-text { font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.contact-detail-text strong { display: block; color: #fff; font-weight: 500; margin-bottom: 2px; }
.contact-social { margin-top: auto; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-social-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.social-links { display: flex; gap: 16px; }
.social-links a { color: rgba(255,255,255,0.5); font-size: 0.82rem; text-decoration: none; transition: color 0.2s; }
.social-links a:hover { color: var(--gold); }

.contact-form { padding: 60px 48px; }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 8px; }
.contact-form .form-subtitle { font-size: 0.88rem; color: #777; margin-bottom: 32px; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea { padding: 14px 16px; }
.contact-form .form-group textarea { min-height: 120px; }

/* Quick links */
.quick-links-section { background: var(--cream); padding: 80px 8vw; margin-top: 80px; }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.quick-card { background: #fff; border-radius: 4px; padding: 36px 28px; border-top: 3px solid var(--gold); transition: transform 0.2s, box-shadow 0.2s; }
.quick-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.quick-card-icon { font-size: 1.8rem; margin-bottom: 14px; }
.quick-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 8px; }
.quick-card p { font-size: 0.85rem; line-height: 1.6; color: #666; margin-bottom: 16px; }
.quick-card a { font-size: 0.73rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.quick-card a::after { content: ' \2192'; }
.quick-card a:hover { color: var(--rust); }

/* Map */
.map-section { padding: 0; }
.map-container { width: 100%; height: 400px; background: linear-gradient(135deg, #e8e4df, #d9cfc5); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--taupe); }
.map-info { background: var(--charcoal); color: #fff; display: flex; justify-content: center; gap: 60px; padding: 32px 8vw; flex-wrap: wrap; }
.map-info-item { text-align: center; }
.map-info-item strong { display: block; font-size: 0.88rem; margin-bottom: 4px; }
.map-info-item span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .mobile-sticky { display: block; }

  /* Homepage */
  section, .pathways, .projects-section, .testimonial-section { padding: 60px 6vw; }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .photo-gallery img { height: 200px; }
  .cards { grid-template-columns: 1fr; gap: 16px; }
  .shop-inner { grid-template-columns: 1fr; gap: 40px; }
  .shop-badge { right: 0; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .home .project-card:first-child { grid-column: span 2; grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-cta { grid-template-columns: 1fr; }
  .proof-hero { padding: 40px 6vw 32px; }
  .proof-divider { display: none; }
  .proof-stats { flex-wrap: wrap; padding: 20px 6vw; }
  .proof-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }

  /* Showroom */
  .showroom-info { grid-template-columns: 1fr; gap: 40px; }
  .hours-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }

  /* Staging */
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }

  /* Collections */
  .collections-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .showroom-promo { grid-template-columns: 1fr; }
  .how-banner { gap: 30px; }
  .how-connector { display: none; }

  /* Consignment */
  .benefits-grid { grid-template-columns: 1fr; }
  .accept-grid { grid-template-columns: 1fr; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-main { grid-template-columns: 1fr; margin-left: 4vw; margin-right: 4vw; }
  .quick-grid { grid-template-columns: 1fr; }
  .map-info { gap: 30px; }
  .form-row { grid-template-columns: 1fr; }

  footer { flex-direction: column; text-align: center; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FLUENT FORMS â€” match the .contact-form mockup style
   Fluent Forms renders its own markup (.ff-el-*, .ff-btn-submit),
   so we restyle it to mirror the static mockup form.
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.frm-fluent-form .ff-el-group { margin-bottom: 16px; }

/* Labels â€” uppercase taupe (mirrors .form-group label) */
.frm-fluent-form .ff-el-input--label label,
.frm-fluent-form .ff-el-input--label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 6px;
  padding: 0;
}
.frm-fluent-form .ff-el-input--label .ff-el-is-required.asterisk-right:after { color: var(--gold); }

/* Inputs / selects / textareas (mirrors .form-group controls) */
.frm-fluent-form input[type="text"],
.frm-fluent-form input[type="email"],
.frm-fluent-form input[type="tel"],
.frm-fluent-form input[type="number"],
.frm-fluent-form select,
.frm-fluent-form textarea,
.frm-fluent-form .ff-el-form-control {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--warm-white);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  box-shadow: none;
  height: auto;
  line-height: 1.4;
}
.frm-fluent-form input:focus,
.frm-fluent-form select:focus,
.frm-fluent-form textarea:focus,
.frm-fluent-form .ff-el-form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: none;
}
.frm-fluent-form textarea { resize: vertical; min-height: 80px; }

/* Two-column row (Email + Phone), using container_class tags */
.frm-fluent-form .ff-el-group.ff-tho-half { display: inline-block; width: calc(50% - 12px); vertical-align: top; }
.frm-fluent-form .ff-el-group.ff-tho-left { margin-right: 16px; }

/* Native Name field (First / Last) spacing */
.frm-fluent-form .ff-name-field-wrapper .ff-t-cell { padding: 0 8px; }
.frm-fluent-form .ff-name-field-wrapper .ff-t-cell:first-child { padding-left: 0; }
.frm-fluent-form .ff-name-field-wrapper .ff-t-cell:last-child { padding-right: 0; }

/* Submit button (mirrors .btn-submit) */
.frm-fluent-form .ff-btn-submit,
.frm-fluent-form .ff-el-group.ff-el-form-bottom button[type="submit"],
.frm-fluent-form button[type="submit"] {
  background: var(--charcoal);
  color: #fff;
  border: none;
  padding: 16px 32px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  width: 100%;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
  box-shadow: none;
}
.frm-fluent-form .ff-btn-submit:hover,
.frm-fluent-form button[type="submit"]:hover { background: var(--gold); }

/* Validation / success messaging */
.frm-fluent-form .error.text-danger,
.frm-fluent-form .ff-el-is-error .text-danger { color: var(--rust); font-size: 0.78rem; margin-top: 4px; }
.frm-fluent-form .ff-el-is-error input,
.frm-fluent-form .ff-el-is-error select,
.frm-fluent-form .ff-el-is-error textarea { border-color: var(--rust); }
.ff-message-success { color: var(--forest); font-size: 0.95rem; line-height: 1.6; }

@media (max-width: 640px) {
  .frm-fluent-form .ff-el-group.ff-tho-half { display: block; width: 100%; }
  .frm-fluent-form .ff-el-group.ff-tho-left { margin-right: 0; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HEADER / NAV FIXES â€” hamburger, mobile menu, admin-bar offset
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* Hamburger button â€” hidden on desktop, styled clean */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--charcoal);
  cursor: pointer;
  padding: 4px 8px;
}
.nav-toggle.is-active { color: var(--gold); }

/* WP admin bar offset â€” nav is position:fixed so it sits under the bar */
.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar nav { top: 46px; }
}

@media (max-width: 1040px) {
  nav { flex-wrap: wrap; }
  .nav-toggle { display: block; }
  .nav-links { display: none; }

  /* Mobile dropdown panel */
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid var(--sand);
  }
  .nav-links.is-open > li { width: 100%; }
  .nav-links.is-open > li > a { display: block; padding: 12px 2px; }

  /* Expand submenus inline (no hover dropdown on touch) */
  .nav-links.is-open .has-dropdown > a::after { display: none; }
  .nav-links.is-open .nav-dropdown {
    display: block;
    position: static;
    top: auto;
    left: auto;
    padding-top: 0;
    min-width: 0;
  }
  .nav-links.is-open .nav-dropdown::before { display: none; }
  .nav-links.is-open .nav-dropdown a { padding: 8px 0 8px 16px; }

  /* Contact CTA button on mobile â€” keep horizontal padding */
  .nav-links.is-open .nav-cta {
    display: inline-block;
    text-align: center;
    margin-top: 8px;
    padding: 12px 20px;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TEAM MEMBER BLOCK â€” two-column image + bio (matches mockup)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.team-member-section { padding: 80px 8vw; }
.team-member-section:nth-of-type(even) { background: var(--cream); }
.team-member-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.team-member-photo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  display: block;
}
.team-member-text .section-title { margin-bottom: 20px; }
.team-member-bio p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--taupe);
  margin-bottom: 16px;
}
.team-member-bio p:last-child { margin-bottom: 0; }
.team-member-single { max-width: 760px; }

@media (max-width: 900px) {
  .team-member-section { padding: 60px 6vw; }
  .team-member-grid { grid-template-columns: 1fr; gap: 32px; }
}
