/* =============================================
   Real Estate Media Life — Site Stylesheet
   Brand: #c9b6a0 tan / #080808 black / #f4f2ef white
   ============================================= */

:root {
  --tan: #c9b6a0;
  --black: #080808;
  --white: #f4f2ef;
  --gray: #141414;
  --mid: #3a3530;
  --line: rgba(201, 182, 160, 0.12);
  --line-strong: rgba(201, 182, 160, 0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Nav ---------- */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 4rem;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95), rgba(8,8,8,0.7) 70%, transparent);
  backdrop-filter: blur(6px);
}
nav.site-nav .logo img { height: 26px; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  color: var(--white); font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0.55; transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active { color: var(--tan); }
.nav-cta {
  border: 1px solid var(--tan) !important; color: var(--tan) !important;
  opacity: 1 !important; padding: 0.5rem 1.25rem; transition: all 0.2s;
}
.nav-cta:hover { background: var(--tan); color: var(--black) !important; }

/* ---------- Hero (page intro) ---------- */
.page-hero {
  min-height: 80vh; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 8rem 4rem 6rem;
  position: relative; overflow: hidden;
}
.page-hero.tall { min-height: 100vh; }
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,182,160,0.06) 0%, transparent 70%),
              linear-gradient(160deg, #0d0c0b 0%, #080808 100%);
  background-size: cover; background-position: center;
}
.hero-bg.has-photo {
  background-image: linear-gradient(180deg, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.4) 40%, rgba(8,8,8,0.92) 100%),
                    var(--hero-img);
  background-size: cover, cover;
  background-position: center, center;
}
.hero-vline {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,182,160,0.12) 30%, rgba(201,182,160,0.12) 70%, transparent);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }

/* ---------- Hero showcase video (right-side BTS/work reel) ---------- */
.page-hero.has-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  align-items: end;
  gap: 4rem;
}
.page-hero.has-showcase .hero-content { max-width: none; }
.hero-showcase {
  position: relative; z-index: 2;
  aspect-ratio: 16/10;
  max-width: 440px;
  width: 100%;
  justify-self: end;
  background: linear-gradient(135deg, #1a1815 0%, #0d0c0b 100%);
  border-radius: 3px;
  overflow: hidden;
  align-self: end;
  margin-bottom: 1.5rem;
  /* layered cinematic depth — soft shadow + faint tan ring */
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.65),
    0 12px 32px -8px rgba(0,0,0,0.5),
    0 0 0 1px rgba(201,182,160,0.18),
    inset 0 0 0 1px rgba(244,242,239,0.04);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.hero-showcase:hover {
  box-shadow:
    0 36px 100px -20px rgba(0,0,0,0.7),
    0 16px 40px -8px rgba(0,0,0,0.55),
    0 0 0 1px rgba(201,182,160,0.4),
    inset 0 0 0 1px rgba(244,242,239,0.06);
  transform: translateY(-2px);
}
.hero-showcase video,
.hero-showcase iframe,
.hero-showcase img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block; border: none;
}
/* Inner vignette — subtle edge darkening, blends with dark hero */
.hero-showcase::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(8,8,8,0.35) 100%),
    linear-gradient(to bottom, transparent 75%, rgba(8,8,8,0.55) 100%);
}
/* Small corner badge — subtle film-tag energy */
.hero-showcase::after {
  content: 'REML · 01';
  position: absolute; bottom: 0.85rem; left: 0.95rem; z-index: 3;
  font-family: 'DM Sans', sans-serif; font-size: 0.55rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--tan); opacity: 0.7;
  padding: 0.35rem 0.6rem;
  background: rgba(8,8,8,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,182,160,0.18);
  border-radius: 2px;
}
.hero-showcase-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; padding: 2rem; text-align: center;
  color: rgba(201,182,160,0.45);
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
}
.hero-showcase-placeholder svg {
  width: 36px; height: 36px;
  stroke: var(--tan); opacity: 0.5;
  fill: none; stroke-width: 1.2;
}
.hero-showcase-placeholder small {
  display: block; font-size: 0.55rem; letter-spacing: 0.2em;
  opacity: 0.6; margin-top: 0.25rem;
}
@media (max-width: 1024px) {
  .page-hero.has-showcase { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-showcase { aspect-ratio: 16/9; margin-bottom: 0; max-width: 100%; justify-self: stretch; }
}
.hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--tan); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--tan); }

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.25rem, 8vw, 7.5rem); font-weight: 300;
  line-height: 0.92; letter-spacing: -0.02em; margin-bottom: 2.5rem;
}
h1 em { font-style: italic; color: var(--tan); }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 300;
  line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 1.5rem;
}
h2 em { font-style: italic; color: var(--tan); }

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 300; line-height: 1.2;
  margin-bottom: 0.75rem;
}
h3 em { font-style: italic; color: var(--tan); }

.hero-sub {
  font-size: 1rem; line-height: 1.6; opacity: 0.55;
  max-width: 480px; margin-bottom: 3rem;
}
.hero-ctas { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn-primary {
  background: var(--tan); color: var(--black);
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 1rem 2.5rem; font-weight: 500; transition: opacity 0.2s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  color: var(--white); font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.5;
  display: inline-flex; align-items: center; gap: 0.5rem; transition: opacity 0.2s;
  padding: 1rem 0;
}
.btn-ghost:hover { opacity: 1; }
.btn-ghost::after { content: '→'; font-size: 1.1em; }
.btn-dark {
  background: var(--black); color: var(--white);
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 1rem 2.5rem; font-weight: 500; display: inline-block; transition: opacity 0.2s;
}
.btn-dark:hover { opacity: 0.75; }

/* ---------- Sections ---------- */
section { padding: 7rem 4rem; }
section.tight { padding: 4rem 4rem; }
.section-label {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--tan); margin-bottom: 3.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::after {
  content: ''; flex: 1; height: 1px; background: rgba(201,182,160,0.15);
}

/* ---------- Statement strip (centered quote) ---------- */
.statement {
  background: var(--gray);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center; padding: 5rem 4rem;
}
.statement p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 300;
  line-height: 1.35; max-width: 800px; margin: 0 auto; opacity: 0.9;
}

/* ---------- Two-col content ---------- */
.two-col {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem;
  max-width: 1280px; margin: 0 auto;
}
.two-col .col-label {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--tan); margin-bottom: 1.5rem;
}
.two-col p { opacity: 0.65; margin-bottom: 1.25rem; line-height: 1.7; }

/* ---------- Card grid ---------- */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--gray); padding: 3rem 2.5rem;
  border: 1px solid transparent; transition: border 0.3s, transform 0.3s;
}
.card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.card .card-tag {
  font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--tan); margin-bottom: 1.25rem;
}
.card h3 { margin-bottom: 1rem; }
.card p { opacity: 0.55; font-size: 0.92rem; margin-bottom: 1.5rem; line-height: 1.6; }
.card-link {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--tan); border-bottom: 1px solid rgba(201,182,160,0.35);
  padding-bottom: 0.2rem; transition: border-color 0.2s;
}
.card-link:hover { border-color: var(--tan); }

/* ---------- Video grid ---------- */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.video-card { background: var(--gray); overflow: hidden; }
.video-card.featured { grid-column: 1 / -1; }
.video-wrapper { position: relative; padding-bottom: 56.25%; overflow: hidden; }
.video-card.featured .video-wrapper { padding-bottom: 44%; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1815 0%, #0d0c0b 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,182,160,0.3); font-size: 0.65rem;
  letter-spacing: 0.25em; text-transform: uppercase;
}
.video-label {
  padding: 1rem 1.25rem; font-size: 0.67rem; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.4;
  display: flex; justify-content: space-between;
}

/* ---------- Reels grid (vertical 9:16 short-form) ---------- */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 1280px; margin: 0 auto;
}
.reel-card {
  position: relative;
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #1a1815 0%, #0d0c0b 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.reel-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.reel-card iframe,
.reel-card video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none; object-fit: cover;
}
.reel-card .reel-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem;
  color: rgba(201,182,160,0.4);
  font-size: 0.6rem; letter-spacing: 0.25em;
  text-transform: uppercase; text-align: center;
  padding: 1rem;
}
.reel-card .reel-placeholder svg {
  width: 32px; height: 32px;
  stroke: var(--tan); opacity: 0.5;
  fill: none; stroke-width: 1.2;
}
.reel-card .reel-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(to top, rgba(8,8,8,0.92), transparent);
  font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--white); opacity: 0.85;
  display: flex; justify-content: space-between; gap: 0.5rem;
  pointer-events: none;
}
.reels-grid.compact { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

/* ---------- Instagram profile card ---------- */
.ig-profile {
  max-width: 880px; margin: 0 auto;
  background: var(--gray); border: 1px solid var(--line);
  overflow: hidden;
}
.ig-header {
  display: flex; align-items: center; gap: 2rem;
  padding: 2.5rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.ig-avatar {
  flex-shrink: 0;
  width: 110px; height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--tan);
  background: var(--black);
}
.ig-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ig-info { flex: 1; min-width: 0; }
.ig-handle-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.ig-handle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300; color: var(--white);
}
.ig-handle em { font-style: italic; color: var(--tan); }
.ig-follow-btn {
  background: var(--tan); color: var(--black);
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.55rem 1.2rem;
  font-weight: 500; transition: opacity 0.2s;
}
.ig-follow-btn:hover { opacity: 0.85; }
.ig-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  font-size: 0.78rem; opacity: 0.6;
  margin-bottom: 0.75rem;
}
.ig-stats strong { color: var(--white); font-weight: 500; opacity: 1.4; margin-right: 0.3rem; }
.ig-bio {
  font-size: 0.85rem; opacity: 0.78; line-height: 1.55;
}
.ig-bio .ig-bio-name {
  display: block; font-weight: 500; opacity: 1; margin-bottom: 0.15rem;
}
.ig-bio a { color: var(--tan); }

.ig-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; padding: 2px;
}
.ig-tile { aspect-ratio: 1/1; overflow: hidden; background: var(--black); position: relative; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.ig-tile:hover img { transform: scale(1.05); }
.ig-tile-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,8,8,0.5); opacity: 0;
  transition: opacity 0.2s;
  color: var(--tan); font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.ig-tile:hover .ig-tile-overlay { opacity: 1; }

.ig-callout {
  text-align: center; max-width: 640px; margin: 0 auto 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; line-height: 1.4; font-weight: 300;
}
.ig-callout em { color: var(--tan); font-style: italic; }
.ig-callout-tag {
  display: block; margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--tan); opacity: 0.85;
}

.ig-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; margin-top: 3rem;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--tan); opacity: 0.85; transition: opacity 0.2s;
}
.ig-cta:hover { opacity: 1; }
.ig-cta svg { width: 18px; height: 18px; stroke: var(--tan); fill: none; stroke-width: 1.5; }

@media (max-width: 640px) {
  .ig-header { flex-direction: column; align-items: flex-start; padding: 1.5rem; gap: 1rem; }
  .ig-avatar { width: 80px; height: 80px; }
  .ig-stats { gap: 1.25rem; }
}

/* ---------- Photo grid (masonry style) ---------- */
.photo-grid { columns: 3; column-gap: 1rem; }
.photo-item { break-inside: avoid; margin-bottom: 1rem; overflow: hidden; position: relative; }
.photo-item img { width: 100%; transition: transform 0.5s ease, filter 0.4s ease; filter: brightness(0.88) saturate(0.95); display: block; min-height: 320px; background: linear-gradient(135deg, #1a1815 0%, #0d0c0b 100%); }
.photo-item:hover img { transform: scale(1.04); filter: brightness(1) saturate(1); }
.photo-item .photo-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(to top, rgba(8,8,8,0.9), transparent);
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); opacity: 0; transition: opacity 0.3s;
}
.photo-item:hover .photo-cap { opacity: 0.9; }

/* ---------- Founder portrait + section feature image ---------- */
.portrait-block {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: var(--gray);
}
.portrait-block img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.92) contrast(1.04);
}
.portrait-caption {
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--tan); opacity: 0.7; margin-top: 1rem;
}
.feature-img {
  width: 100%; aspect-ratio: 21/9; overflow: hidden; margin: 4rem auto;
  max-width: 1280px;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9); }

/* ---------- Trust strip (small client portrait row) ---------- */
.trust-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem; max-width: 1280px; margin: 0 auto;
}
.trust-strip .trust-item {
  position: relative;
  aspect-ratio: 1/1; overflow: hidden; background: var(--gray);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(201,182,160,0.12);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.trust-strip .trust-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.04) saturate(1.02);
  transition: transform 0.5s ease;
}
/* Subtle bottom vignette ties the row together without dulling the photo */
.trust-strip .trust-item::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, transparent 65%, rgba(8,8,8,0.45) 100%);
  transition: opacity 0.3s;
}
.trust-strip .trust-item:hover {
  box-shadow: 0 0 0 1px rgba(201,182,160,0.45), 0 12px 32px -8px rgba(0,0,0,0.5);
  transform: translateY(-3px);
}
.trust-strip .trust-item:hover img { transform: scale(1.04); }
.trust-strip .trust-item:hover::after { opacity: 0.5; }
.photo-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a1815 0%, #0d0c0b 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; color: rgba(201,182,160,0.25);
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.photo-placeholder.sq { aspect-ratio: 1/1; }
.photo-placeholder.wide { aspect-ratio: 4/3; }
.photo-placeholder.tall { aspect-ratio: 3/4; }

/* ---------- Filter tabs ---------- */
.filter-row {
  display: flex; gap: 0.5rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.filter-row button {
  background: transparent; border: 1px solid var(--line);
  color: var(--white); padding: 0.7rem 1.5rem;
  font-family: inherit; font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; opacity: 0.6; transition: all 0.2s;
}
.filter-row button:hover { opacity: 1; }
.filter-row button.active {
  background: var(--tan); color: var(--black); border-color: var(--tan); opacity: 1;
}

/* ---------- Pricing / Service detail rows ---------- */
.service-block {
  border-top: 1px solid var(--line);
  padding: 5rem 0;
  display: grid; grid-template-columns: 1fr 2fr; gap: 5rem;
  max-width: 1280px; margin: 0 auto;
}
.service-block:last-child { border-bottom: 1px solid var(--line); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 300; color: rgba(201,182,160,0.25);
  line-height: 1;
}
.service-block h3 { margin-top: 0.75rem; font-size: 2.25rem; }
.service-block .lead { opacity: 0.6; margin: 1.25rem 0 2rem; line-height: 1.7; }
.service-list {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem;
}
.service-list li {
  font-size: 0.88rem; opacity: 0.7;
  display: flex; align-items: flex-start; gap: 0.7rem; line-height: 1.5;
}
.service-list li::before {
  content: '—'; color: var(--tan); flex-shrink: 0;
}
.service-price {
  margin-top: 2rem; font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; color: var(--tan);
}
.service-price span { font-size: 0.75rem; color: rgba(244,242,239,0.4); letter-spacing: 0.05em; }

/* ---------- Process / numbered steps ---------- */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: rgba(201,182,160,0.18); line-height: 1; margin-bottom: 1rem;
}
.step-title { font-size: 0.88rem; margin-bottom: 0.6rem; font-weight: 400; }
.step-desc { font-size: 0.78rem; opacity: 0.45; line-height: 1.65; }

/* ---------- Stats strip ---------- */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 4rem 0;
}
.stat .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300; color: var(--tan); line-height: 1;
}
.stat .stat-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.55; margin-top: 0.5rem;
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 2rem;
}
.faq-q h3 {
  margin: 0; font-size: 1.5rem; transition: color 0.2s;
}
.faq-q .faq-toggle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--tan); transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-item.open .faq-q h3 { color: var(--tan); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
  opacity: 0.65; line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 500px; padding-top: 1.25rem;
}
.faq-category {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--tan); margin-top: 4rem; margin-bottom: 1.5rem;
}
.faq-category:first-child { margin-top: 0; }

/* ---------- Lead capture form ---------- */
.lead-form {
  max-width: 640px; margin: 0 auto;
  background: var(--gray);
  border: 1px solid var(--line);
  padding: 3rem 3rem 2.5rem;
  border-radius: 4px;
}
.lead-form .form-row { margin-bottom: 1.25rem; }
.lead-form label {
  display: block;
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--tan); margin-bottom: 0.5rem; opacity: 0.85;
}
.lead-form input, .lead-form textarea, .lead-form select {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--line);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.92rem;
  border-radius: 2px;
  transition: border-color 0.2s;
}
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus {
  outline: none;
  border-color: rgba(201,182,160,0.6);
}
.lead-form textarea { min-height: 110px; resize: vertical; line-height: 1.5; }
.lead-form button {
  background: var(--tan); color: var(--black);
  border: none;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 1rem 2.5rem; font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 100%;
  margin-top: 0.5rem;
}
.lead-form button:hover { opacity: 0.85; }
.form-helper {
  font-size: 0.72rem; opacity: 0.5;
  margin-top: 1rem; text-align: center;
}

.cta-pair {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; max-width: 1280px; margin: 0 auto;
  align-items: start;
}
.cta-pair-side { text-align: center; }
.cta-pair-side h3 {
  margin-bottom: 1rem;
}
.cta-pair-side p {
  opacity: 0.6; margin-bottom: 2rem; font-size: 0.92rem;
}
.cta-pair-divider {
  position: relative; text-align: center; margin: 1rem 0;
}
@media (max-width: 1024px) {
  .cta-pair { grid-template-columns: 1fr; gap: 3rem; }
}

/* ---------- YCBM booking embed ---------- */
.ycbm-wrap {
  max-width: 1100px; margin: 5rem auto 0;
  background: var(--white); color: var(--black);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.55),
    0 0 0 1px rgba(201,182,160,0.18);
}
.ycbm-wrap iframe {
  width: 100%; height: 820px;
  border: none; display: block;
  background: transparent;
}
.ycbm-header {
  padding: 1.5rem 2rem 0;
  border-bottom: 1px solid rgba(8,8,8,0.06);
  background: var(--white);
}
.ycbm-header .label {
  font-size: 0.62rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: #6b6b6b;
  margin-bottom: 0.4rem;
}
.ycbm-header h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--black); font-size: 1.6rem; font-weight: 300;
  line-height: 1.2; margin-bottom: 0.5rem;
}
.ycbm-header p {
  color: #555; font-size: 0.85rem; opacity: 0.85;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .ycbm-wrap iframe { height: 720px; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--tan); color: var(--black);
  text-align: center; padding: 6rem 4rem;
}
.cta-banner h2 { color: var(--black); }
.cta-banner h2 em { color: var(--black); opacity: 0.55; }
.cta-banner p {
  font-size: 0.88rem; opacity: 0.65; margin-bottom: 3rem;
  max-width: 520px; margin-left: auto; margin-right: auto;
}
.cta-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; max-width: 720px; margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(8,8,8,0.18);
}
.cta-option {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.2rem;
}
.cta-option-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; line-height: 1.3;
  font-weight: 300; color: var(--black); opacity: 0.85;
  font-style: italic;
}
@media (max-width: 640px) {
  .cta-split { grid-template-columns: 1fr; gap: 2rem; padding-top: 1rem; }
}

/* ---------- Footer ---------- */
footer.site-footer {
  border-top: 1px solid var(--line); padding: 3rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
footer.site-footer img { height: 20px; opacity: 0.6; }
footer.site-footer p { font-size: 0.68rem; opacity: 0.3; letter-spacing: 0.04em; }
footer.site-footer a { color: var(--tan); opacity: 0.7; transition: opacity 0.2s; }
footer.site-footer a:hover { opacity: 1; }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up-1 { animation: fadeUp 0.8s ease 0.1s both; }
.fade-up-2 { animation: fadeUp 0.8s ease 0.25s both; }
.fade-up-3 { animation: fadeUp 0.8s ease 0.4s both; }
.fade-up-4 { animation: fadeUp 0.8s ease 0.55s both; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  nav.site-nav, .page-hero, section, .cta-banner, footer.site-footer { padding-left: 2rem; padding-right: 2rem; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-block { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 0; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card.featured { grid-column: auto; }
  .photo-grid { columns: 2; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-strip { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .service-list { grid-template-columns: 1fr; }
}

/* ---------- Mobile hamburger ---------- */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 102;
  background: none; border: 1px solid var(--line);
  color: var(--white); cursor: pointer;
  width: 42px; height: 42px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; padding: 0;
  border-radius: 2px;
  transition: border-color 0.2s;
}
.nav-toggle:hover { border-color: var(--tan); }
.nav-toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--white); transition: transform 0.3s, opacity 0.3s;
}
nav.site-nav.mobile-open .nav-toggle { border-color: var(--tan); }
nav.site-nav.mobile-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
nav.site-nav.mobile-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.site-nav.mobile-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Body scroll lock when mobile nav open */
body.nav-open { overflow: hidden; }

@media (max-width: 640px) {
  nav.site-nav, .page-hero, section, .cta-banner, footer.site-footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  nav.site-nav { padding-top: 1.25rem; padding-bottom: 1.25rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh; height: 100dvh;
    background: #080808;
    flex-direction: column; align-items: center; justify-content: center;
    padding: 5rem 2rem 3rem;
    gap: 2.25rem;
    z-index: 101;
    overflow-y: auto;
  }
  nav.site-nav.mobile-open .nav-links { display: flex; }
  .nav-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: none;
    opacity: 0.85;
    color: var(--white);
  }
  .nav-links a.active { color: var(--tan); opacity: 1; }
  .nav-cta {
    border: 1px solid var(--tan) !important;
    color: var(--tan) !important;
    padding: 0.85rem 2.5rem !important;
    margin-top: 1rem;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    opacity: 1 !important;
  }
  .photo-grid { columns: 1; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero { padding: 7rem 1.5rem 4rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-dark { text-align: center; }
  footer.site-footer { flex-direction: column; text-align: center; }
}
