*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:     #c9a84c;
  --gold-lt:  #e8c86a;
  --white:    #ffffff;
  --body:     #bbbbbb;
  --muted:    #888888;
  --faint:    #555555;
  --border:   #2a2a2a;
  --card:     #111111;
  --section:  #0d0d0d;
  --dark:     #0a0a0a;
  --darkest:  #060606;
  --hero-img: url('images/intro-photo.jpg');
}

html { scroll-behavior: smooth; }

body {
  background: var(--darkest);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* Scroll-reveal base state — JS adds .revealed */
.reveal, .reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.revealed,
.reveal-stagger.revealed > * {
  opacity: 1;
  transform: none;
}

/* Stagger delays for .reveal-stagger children */
.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.5s; }

/* Shared typography helpers */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--white);
}

.gold-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 18px 0;
}

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 1px;
  width: 0%;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(201,168,76,0.4);
  z-index: 1000;
  pointer-events: none;
}

/* ── NAV ────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(6,6,6,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #111;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
}

#nav.hidden { transform: translateY(-100%); }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.25s ease;
}
.nav-logo:hover img { opacity: 1; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 2px;
  transition: background 0.25s ease;
}

.nav-cta:hover { background: var(--gold-lt); }

/* ── HERO ────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: -60px;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: 75% 30%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0.92) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.95) 100%);
  z-index: 1;
}

#sparkle-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 48px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3.2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fade-up 1.1s cubic-bezier(0.23,1,0.32,1) 0.1s forwards;
}

.hero-h1 {
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.8px;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 880px;
  text-wrap: balance;
  opacity: 0;
  animation: fade-up 1.1s cubic-bezier(0.23,1,0.32,1) 0.25s forwards;
}

.hero-h1 .line {
  display: block;
  text-wrap: balance;
}

.hero-h1 .line.gold {
  color: var(--gold);
  margin-top: 4px;
}

.hero-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-bottom: 36px;
  max-width: 480px;
  opacity: 0;
  animation: fade-up 1.1s cubic-bezier(0.23,1,0.32,1) 0.4s forwards;
}

/* NYT pull-quote in hero */
.hero-press {
  position: relative;
  text-align: center;
  margin: 4px auto 36px;
  padding: 18px 28px 14px;
  max-width: 540px;
  opacity: 0;
  animation: fade-up 1.1s cubic-bezier(0.23,1,0.32,1) 0.4s forwards;
}

.hero-press::before,
.hero-press::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 40px;
  height: 1px;
  background: rgba(201,168,76,0.5);
  transform: translateX(-50%);
}

.hero-press::before { top: 0; }
.hero-press::after { bottom: 0; }

.hero-press-mark {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 38px;
  line-height: 1;
  color: rgba(201,168,76,0.55);
  pointer-events: none;
}

.hero-press-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  line-height: 1.45;
  letter-spacing: -0.1px;
  margin: 16px 0 12px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.hero-press-source {
  display: inline-block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fade-up 1.1s cubic-bezier(0.23,1,0.32,1) 0.55s forwards;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 2px;
  transition: background 0.25s ease, transform 0.2s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  transform: translateY(-1px);
}

.hero-search-summary {
  max-width: 760px;
  margin: 26px auto 0;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  line-height: 1.7;
  text-wrap: balance;
  opacity: 0;
  animation: fade-up 1.1s cubic-bezier(0.23,1,0.32,1) 0.7s forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PHOTO STRIP ─────────────────────────── */
.photo-strip {
  display: flex;
  height: 280px;
  overflow: hidden;
  gap: 3px;
}

.strip-item {
  flex: 1;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(0.75);
  transition: flex 0.6s cubic-bezier(0.23,1,0.32,1), filter 0.4s ease;
  position: relative;
  cursor: pointer;
}

.strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  transition: background 0.4s ease;
}

.strip-item:hover {
  flex: 2.5;
  filter: brightness(0.85) saturate(1);
}

.strip-item:hover::after { background: rgba(0,0,0,0.05); }

/* ── CREDIBILITY — full-bleed split, mirrors about (reversed) ─── */
#credibility {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 560px;
  background: var(--dark);
  border-bottom: 1px solid #0f0f0f;
}

.cred-text {
  background: var(--dark);
  padding: 80px 64px 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.cred-text .eyebrow {
  margin-bottom: 24px;
}

.cred-anchor {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.4px;
  margin-bottom: 48px;
  max-width: 520px;
}

.cred-press {
  margin-bottom: 36px;
}

.cred-celebs {
  margin-bottom: 0;
}

.cred-press-label {
  font-size: 11px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 800;
}

.cred-press-names {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  letter-spacing: 0.2px;
}

.cred-press-names .press-nyt {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.2px;
}

.cred-press-names .press-divider {
  color: var(--faint);
  opacity: 0.7;
}

.celeb-paragraph {
  font-size: 14px;
  color: var(--body);
  line-height: 2;
  letter-spacing: 0.3px;
  max-width: 520px;
  margin-bottom: 12px;
}

.celeb-more {
  font-size: 14px;
  color: var(--gold-lt);
  font-weight: 800;
  letter-spacing: 1px;
  font-style: italic;
}

.cred-photo {
  position: relative;
  background-image: url('images/MIsenburg_101125-212.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.85) saturate(0.9);
  cursor: zoom-in;
  min-height: 560px;
}

.cred-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, rgba(10,10,10,0.4) 18%, transparent 60%);
}

.cred-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.4) 100%);
}

/* ── SERVICES ────────────────────────────── */
#services {
  background: var(--dark);
  padding: 72px 24px;
}

.services-header {
  text-align: center;
  margin-bottom: 44px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}

.card-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6) saturate(0.7);
  transition: transform 0.7s cubic-bezier(0.23,1,0.32,1), filter 0.5s ease;
}

.service-card:hover .card-photo {
  transform: scale(1.06);
  filter: brightness(0.75) saturate(0.95);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.1) 100%);
}

.card-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
  z-index: 2;
}

.service-card:hover .card-bar { transform: scaleX(1); }

.card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  z-index: 1;
}

.card-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.85;
}

.card-title {
  font-size: 23px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.card-body {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.23,1,0.32,1), opacity 0.4s ease;
}

.service-card:hover .card-body { max-height: 110px; opacity: 1; }

.card-bullets {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.23,1,0.32,1) 0.05s, opacity 0.4s ease 0.05s;
}

.service-card:hover .card-bullets { max-height: 100px; opacity: 1; }

.card-bullets span {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.2px;
}

.card-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.service-card:hover .card-link { opacity: 1; transform: translateY(0); }

/* ── TESTIMONIALS — warm-charcoal editorial ─── */
#testimonials {
  background: #1a1612;
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}

/* Warm orbs — burnt-amber + brass */
.t-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  animation: orb-drift ease-in-out infinite alternate;
}

.t-orb-1 {
  width: 520px; height: 520px;
  background: rgba(201,168,76,0.10);
  top: -140px; left: -120px;
  animation-duration: 14s;
}

.t-orb-2 {
  width: 380px; height: 380px;
  background: rgba(180,90,40,0.08);
  bottom: -100px; right: -80px;
  animation-duration: 18s;
  animation-delay: -7s;
}

@keyframes orb-drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(28px, 18px); }
}

.t-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.t-header .eyebrow { color: #d4af5a; }

#testimonials .section-title {
  color: #f0ebe0;
  font-size: 34px;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

#testimonials .gold-line { background: #c9a84c; }

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #2a221a;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border: 1px solid #2a221a;
  border-radius: 2px;
  overflow: hidden;
}

.t-card {
  background: #221d18;
  padding: 36px 32px;
}

.t-nyt {
  grid-column: 1 / -1;
  text-align: center;
  padding: 52px 64px;
  background: #1f1a15;
  position: relative;
}

.t-nyt::before {
  content: '"';
  position: absolute;
  top: 4px; left: 24px;
  font-family: Georgia, serif;
  font-size: 90px;
  color: rgba(201,168,76,0.18);
  line-height: 1;
}

.t-large {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #221d18;
}

.t-mom {
  grid-column: 1 / -1;
  background: #1a1612;
  text-align: center;
  padding: 22px;
  border-top: 1px solid #2a221a;
}

.t-quote {
  font-size: 14px;
  font-style: italic;
  color: #d8d2c4;
  line-height: 1.8;
  margin-bottom: 18px;
}

.t-nyt .t-quote {
  font-size: 26px;
  font-weight: 400;
  color: #f5f1e8;
  font-style: italic;
  line-height: 1.4;
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.t-quote-big {
  font-size: 32px;
  font-weight: 800;
  color: #f0ebe0;
  margin-bottom: 16px;
  letter-spacing: -0.6px;
  font-family: Georgia, serif;
  font-style: italic;
}

.t-source {
  font-size: 12px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #d4af5a;
  font-weight: 800;
}

.t-quote-mom {
  font-size: 14px;
  font-style: italic;
  color: #d8d2c4;
  line-height: 1.8;
}

.t-source-mom {
  font-size: 12px;
  letter-spacing: 2.2px;
  font-weight: 800;
  color: #d4af5a;
  margin-top: 6px;
}

.t-ratings {
  text-align: center;
  margin-top: 36px;
  font-size: 11px;
  color: #6e6358;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
}

/* ── ABOUT ───────────────────────────────── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.about-photo {
  position: relative;
  overflow: hidden;
  background-image: url('images/parlor-179.jpg');
  background-size: cover;
  background-position: center top;
}

.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--dark) 100%);
}

.about-text {
  background: var(--dark);
  padding: 60px 52px 60px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-title {
  font-size: 30px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0;
}

.about-body {
  font-size: 13px;
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 14px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 8px;
  transition: gap 0.3s ease;
}

.about-cta:hover { gap: 14px; }

/* ── VIDEO ───────────────────────────────── */
#video {
  background: var(--darkest);
  padding: 80px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.video-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.035) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-breathe 5s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.5; transform: translate(-50%, -50%) scale(1.08); }
}

.video-header {
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
  padding: 0 24px;
}

.video-sub {
  font-size: 13px;
  color: var(--body);
  margin-top: 10px;
}

.video-wrap {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  aspect-ratio: 21 / 9;
  border-radius: 0;
  overflow: hidden;
  border: none;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  z-index: 1;
  cursor: pointer;
  transition: border-color 0.4s ease;
}

@media (max-width: 768px) {
  .video-wrap { aspect-ratio: 16 / 9; }
}

.video-wrap:hover { border-color: rgba(201,168,76,0.3); }

.video-thumb {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 2;
}

.video-thumb-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/parlor-DEH-6120.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) saturate(0.85);
  z-index: 0;
  transition: filter 0.5s ease;
}

.video-thumb-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.video-wrap:hover .video-thumb-bg { filter: brightness(0.6) saturate(1); }

.play-btn {
  position: relative;
  z-index: 1;
  width: 78px; height: 78px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.7);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: play-breathe 4s ease-in-out infinite;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.play-btn:hover {
  border-color: var(--gold);
  transform: scale(1.07);
  box-shadow: 0 0 24px rgba(201,168,76,0.25);
  animation: none;
}

@keyframes play-breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.18); }
  50%       { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}

.play-triangle {
  width: 0; height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid var(--gold);
  margin-left: 5px;
}

.play-caption {
  position: relative;
  z-index: 1;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ── CLIENTS ─────────────────────────────── */
#clients {
  background: var(--section);
  padding: 72px 24px;
}

.clients-header {
  text-align: center;
  margin-bottom: 44px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #222;
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
}

.logo-cell {
  background: #1a1a1a;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease;
}

.logo-cell.revealed { opacity: 1; transform: translateY(0); }

.logo-cell:hover { background: #1f1f1f; }

.logo-cell:nth-child(1)  { transition-delay: 0s; }
.logo-cell:nth-child(2)  { transition-delay: 0.06s; }
.logo-cell:nth-child(3)  { transition-delay: 0.12s; }
.logo-cell:nth-child(4)  { transition-delay: 0.18s; }
.logo-cell:nth-child(5)  { transition-delay: 0.24s; }
.logo-cell:nth-child(6)  { transition-delay: 0.30s; }
.logo-cell:nth-child(7)  { transition-delay: 0.36s; }
.logo-cell:nth-child(8)  { transition-delay: 0.42s; }
.logo-cell:nth-child(9)  { transition-delay: 0.48s; }
.logo-cell:nth-child(10) { transition-delay: 0.54s; }
.logo-cell:nth-child(11) { transition-delay: 0.60s; }
.logo-cell:nth-child(12) { transition-delay: 0.66s; }

.logo-cell img {
  display: block;
  width: 188px;
  height: 58px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.78;
  transition: opacity 0.35s ease;
}

.logo-cell:hover img { opacity: 1; }

.clients-footnote {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--gold-lt);
  font-weight: 800;
  letter-spacing: 1px;
  font-style: italic;
}

/* ── SEO INFO / FAQ ──────────────────────── */
.seo-info {
  background: #111;
  padding: 84px 24px;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.seo-info-inner {
  max-width: 980px;
  margin: 0 auto;
}

.seo-info-header {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.seo-info-lede {
  margin-top: 16px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.8;
}

.areas-served {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 840px;
  margin: 0 auto 44px;
}

.areas-served span {
  border: 1px solid #2a2a2a;
  color: #d7d7d7;
  background: #151515;
  border-radius: 2px;
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #242424;
  border: 1px solid #242424;
}

.faq-item {
  background: #151515;
  padding: 28px;
}

.faq-item h3 {
  color: var(--white);
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--body);
  font-size: 13px;
  line-height: 1.75;
}

/* ── CONTACT ─────────────────────────────── */
#contact {
  background: var(--dark);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}

.contact-inner {
  max-width: 620px;
  width: 100%;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
}

.contact-header { margin-bottom: 40px; }

.contact-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}

/* Center child elements that were left-aligned in the form */
.contact-form { text-align: left; }
.availability-pill { margin-left: 0; margin-right: 0; }
.contact-header .availability-pill { display: inline-flex; }

.contact-sub {
  font-size: 13px;
  color: var(--body);
  line-height: 1.6;
}

.contact-form { display: flex; flex-direction: column; gap: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-field {
  position: relative;
  margin-bottom: 24px;
}

.form-row .form-field { margin-bottom: 0; }

.field-label {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.form-field:focus-within .field-label { color: var(--gold); }

.field-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #2e2e2e;
  color: var(--white);
  font-size: 13px;
  padding: 4px 0 12px;
  outline: none;
  caret-color: var(--gold);
  transition: border-color 0.3s ease;
  font-family: inherit;
  resize: none;
}

.field-input::placeholder { color: var(--faint); font-size: 12px; }

.field-textarea { padding-bottom: 8px; }

.field-help {
  color: var(--faint);
  font-size: 12px;
  margin: -2px 0 10px;
}

.spam-check-field {
  max-width: 340px;
}

.field-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.45s cubic-bezier(0.23,1,0.32,1);
}

.form-field:focus-within .field-line  { width: 100%; }
.form-field:focus-within .field-input { border-color: transparent; }

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.chip { cursor: pointer; }
.chip input { display: none; }

.chip span {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.5px;
  padding: 7px 16px;
  border-radius: 2px;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  user-select: none;
}

.chip:hover span,
.chip input:checked + span {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.submit-btn {
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 36px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 8px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.2);
}

.burst-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  animation: particle-rise linear forwards;
}

@keyframes particle-rise {
  0%   { opacity: 0.9; transform: translate(0, 0); }
  100% { opacity: 0; transform: translate(var(--dx), -90px); }
}

.human-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  max-width: 100vw;
  overflow-x: hidden;
}

.human-modal.open { display: flex; }

.human-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
}

.human-modal-panel {
  width: min(560px, calc(100vw - 48px));
  max-width: calc(100vw - 48px);
  max-width: calc(100dvw - 48px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  background: #101010;
  border: 1px solid rgba(201,168,76,0.28);
  box-shadow: 0 24px 80px rgba(0,0,0,0.48);
  padding: 30px;
  text-align: center;
}

.human-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.human-modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.human-modal-title {
  margin: 10px 0 22px;
  color: var(--white);
  font-size: 26px;
  line-height: 1.15;
}

.human-card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
  min-width: 0;
  width: 100%;
}

.human-card {
  min-width: 0;
  aspect-ratio: 5 / 7;
  border: 1px solid var(--border);
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.human-card.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.34), 0 10px 26px rgba(201,168,76,0.12);
  transform: translateY(-2px);
}

.human-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}

.human-slider-label {
  display: block;
  max-width: 100%;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
  white-space: normal;
  overflow-wrap: anywhere;
}

.human-slider {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  box-sizing: border-box;
  accent-color: var(--gold);
  cursor: pointer;
}

.human-modal-status {
  max-width: 100%;
  min-height: 20px;
  color: var(--body);
  font-size: 13px;
  margin: 14px 0 0;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

/* ── FOOTER ──────────────────────────────── */
#footer {
  background: var(--darkest);
  border-top: 1px solid #111;
  padding: 44px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.45;
  transition: opacity 0.3s ease;
}

.footer-logo:hover { opacity: 0.85; }

.footer-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-nav a {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--faint);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-nav a:hover { color: var(--muted); }

.footer-nav span { color: #222; font-size: 10px; }

.footer-copy {
  font-size: 10px;
  color: #2e2e2e;
  letter-spacing: 0.5px;
}

/* ════════════════════════════════════════
   MOBILE — 768px and below
════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Nav */
  .nav-links { display: none; }
  .nav-inner { justify-content: space-between; }

  /* Hero */
  .hero-h1 { font-size: 30px; letter-spacing: -0.5px; }
  .hero-sub { font-size: 11px; }
  .hero-photo { background-position: 56% 25%; }
  .hero-press { padding: 16px 20px 12px; max-width: 92%; }
  .hero-press-quote { font-size: 14px; line-height: 1.5; }
  .hero-press-source { font-size: 10px; letter-spacing: 2px; }
  .hero-press-mark { font-size: 30px; }
  .hero-search-summary {
    font-size: 12px;
    line-height: 1.55;
    margin-top: 20px;
    max-width: 92vw;
  }

  /* Photo strip */
  .photo-strip { height: 180px; }
  .strip-item { filter: brightness(0.6); }
  .strip-item:hover { flex: 1; filter: brightness(0.6); }

  /* Credibility (new) */
  #credibility {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .cred-text {
    padding: 56px 24px;
    order: 2;
  }
  .cred-anchor {
    font-size: 22px;
    margin-bottom: 32px;
  }
  .cred-photo {
    min-height: 280px;
    order: 1;
  }
  .cred-photo::before {
    background: linear-gradient(to bottom, transparent 60%, var(--dark) 100%);
  }
  .cred-press-names {
    font-size: 12px;
    gap: 8px;
  }
  .cred-press-names .press-nyt { font-size: 15px; }
  .celeb-paragraph { font-size: 13px; line-height: 1.9; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: 340px; }
  .card-body { max-height: none; opacity: 1; }
  .card-bullets { max-height: none; opacity: 1; }
  .card-link { opacity: 1; transform: translateY(0); }

  /* Testimonials */
  .t-grid { grid-template-columns: 1fr; }
  .t-nyt { grid-column: 1; }
  .t-mom { grid-column: 1; }
  .t-nyt .t-quote { font-size: 16px; }

  /* About */
  #about { grid-template-columns: 1fr; }
  .about-photo {
    height: 280px;
    background-position: center 20%;
  }
  .about-photo::after {
    background: linear-gradient(to bottom, transparent 50%, var(--dark) 100%);
  }
  .about-text { padding: 40px 24px; }
  .about-title { font-size: 24px; }

  /* Video */
  #video { padding: 60px 0 0; }

  /* Clients */
  .logo-grid { grid-template-columns: repeat(2, 1fr); }

  /* SEO info / FAQ */
  .seo-info { padding: 60px 20px; }
  .seo-info-header { text-align: left; }
  .areas-served {
    justify-content: flex-start;
    margin-bottom: 32px;
  }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { padding: 24px 20px; }

  /* Contact */
  #contact { padding: 60px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-field { margin-bottom: 24px; }
  .submit-btn { width: 100%; text-align: center; align-self: stretch; }
  .human-modal { padding: 12px; align-items: flex-start; }
  .human-modal-panel {
    width: calc(100vw - 24px);
    width: calc(100dvw - 24px);
    max-width: calc(100vw - 24px);
    max-width: calc(100dvw - 24px);
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    padding: 24px 14px 18px;
  }
  .human-modal-title { font-size: 21px; margin-bottom: 16px; }
  .human-card-row {
    grid-template-columns: repeat(3, minmax(0, 82px));
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
  }
  .human-card { padding: 5px; }
  .human-slider-label { font-size: 9px; line-height: 1.4; }
}

/* ════════════════════════════════════════
   SMALL MOBILE — 480px and below
════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-h1 { font-size: 26px; }
  .section-title { font-size: 22px; }
  .contact-title { font-size: 26px; }
  .service-chips { gap: 6px; }
  .chip span { font-size: 9px; padding: 6px 12px; }
  .logo-cell img { width: 148px; height: 46px; }
  .human-modal { padding: 6px; }
  .human-modal-panel {
    width: calc(100vw - 12px);
    width: calc(100dvw - 12px);
    max-width: calc(100vw - 12px);
    max-width: calc(100dvw - 12px);
    max-height: calc(100vh - 12px);
    max-height: calc(100dvh - 12px);
    padding: 20px 8px 14px;
  }
  .human-card-row {
    grid-template-columns: repeat(3, minmax(0, 70px));
    justify-content: center;
    gap: 5px;
  }
  .human-card { padding: 3px; }
  .human-modal-title { font-size: 19px; }
  .human-slider { width: calc(100% - 8px); margin: 0 auto; }
  .human-modal-status { font-size: 12px; }
}

/* ════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-eyebrow,
  .hero-h1,
  .hero-sub,
  .hero-ctas {
    opacity: 1;
    transform: none;
  }

  .reveal, .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }

  .logo-cell {
    opacity: 1;
    transform: none;
  }
}

/* ── HAMBURGER ───────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--muted);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile-menu {
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: rgba(6,6,6,0.98);
  border-bottom: 1px solid #111;
  display: flex;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
  z-index: 850;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-mobile-menu.open { transform: translateY(0); }

.mobile-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid #1a1a1a;
  transition: color 0.2s ease;
}

.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--gold); }

@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
}

/* ── LIGHTBOX ────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  transform: scale(0.96);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}

.lightbox.open .lightbox-img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.lightbox-close:hover {
  border-color: var(--gold);
  transform: rotate(90deg);
}

[data-zoom] { cursor: zoom-in; }

/* ── AVAILABILITY PILL ──────────────────── */
.availability-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 8px 16px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.3px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(201,168,76,0); }
}

/* ── CONTACT PROCESS (3 steps) ──────────── */
.contact-process {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin: 36px 0 44px;
  padding: 24px 0;
  border-top: 1px solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 8px;
}

.step-num {
  font-size: 10px;
  letter-spacing: 1.8px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 800;
}

.step-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1px;
}

.step-desc {
  font-size: 11px;
  color: #888;
  line-height: 1.55;
}

.process-divider {
  width: 1px;
  background: #1c1c1c;
  align-self: stretch;
}

/* ── TESTIMONIALS POST-CTA ──────────────── */
.t-cta-wrap {
  text-align: center;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

/* Update the post-testimonials CTA for new bg */
.t-cta {
  display: inline-block;
  background: #c9a84c;
  color: #1a1612;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.t-cta:hover {
  background: #e8c86a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

/* Mobile overrides for new bits */
@media (max-width: 768px) {
  .contact-process {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 28px 0 36px;
  }
  .process-step { padding: 14px 0; }
  .process-divider {
    width: 100%;
    height: 1px;
    background: #1c1c1c;
  }
  .availability-pill { font-size: 10px; padding: 6px 14px; }
  .t-cta { font-size: 11px; padding: 14px 24px; }
}
