/* ===== NEUTRAFACE TEXT (self-hosted) ===== */
@font-face {
  font-family: 'Neutraface Text';
  src: url('fonts/neutraface/Neutraface Text Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neutraface Text';
  src: url('fonts/neutraface/Neutraface Text Light Italic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Neutraface Text';
  src: url('fonts/neutraface/Neutraface Text Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neutraface Text';
  src: url('fonts/neutraface/Neutraface Text Book Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Neutraface Text';
  src: url('fonts/neutraface/Neutraface Text Demi.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neutraface Text';
  src: url('fonts/neutraface/Neutraface Text Demi Italic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Neutraface Text';
  src: url('fonts/neutraface/Neutraface Text Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neutraface Text';
  src: url('fonts/neutraface/Neutraface Text Bold Italic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}


/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── ARCHITECTURAL PALETTE ───────────────────────────────────────── */
  --background:  #F4F0E8;   /* Plaster White  — primary canvas        */
  --cream:       #F4F0E8;   /* Plaster White  — cards / sections       */
  --text:        #2B2925;   /* Charcoal       — headlines / primary    */
  --muted:       #6C665E;   /* Warm Stone     — body copy / support    */
  --bronze:      #8C5A3C;   /* Walnut         — accent, use sparingly  */
  --bronze-dark: #6E4530;   /* Walnut dark    — hover treatment         */
  --border:      #D8D1C5;   /* Travertine     — borders / dividers      */
  --dark:        #1F1C19;   /* Walnut Black   — footer / dark sections  */
  --terracotta:  #B86A47;   /* Terracotta     — rare detail only        */

  /* ── ALIASES (keep existing rules working) ──────────────────────── */
  --navy:        #1F1C19;
  --navy-dark:   rgba(31, 28, 25, 0.96);
  --gold:        #8C5A3C;
  --gold-dark:   #6E4530;
  --white:       #F4F0E8;
  --off-white:   #F4F0E8;
  --gray:        #6C665E;

  /* ── ACCENT (olive — nav hover / form focus only) ───────────────── */
  --sage:        #717A64;   /* Olive — extremely sparingly              */

  /* ── SEMANTIC ALIASES (planned components) ──────────────────────── */
  --plaster:        #F4F0E8;   /* = --white / --background              */
  --charcoal-black: #1F1C19;   /* = --dark / --navy                     */
  --warm-stone:     #6C665E;   /* = --muted / --gray                    */
  --travertine:     #D8D1C5;   /* = --border                            */
  --olive:          #717A64;   /* = --sage                              */

  /* ── FONTS ──────────────────────────────────────────────────────── */
  --font-heading:  'Neutraface Text', Avenir, sans-serif;
  --font-body:     'Manrope', Inter, system-ui, sans-serif;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-ui:       'Neutraface Text', Avenir, sans-serif;
  --font-logo:     'Neutraface Text', Avenir, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--navy-dark);
  backdrop-filter: blur(6px);
  transition: background 0.4s ease;
}

body.has-hero .site-header {
  background: rgba(14, 11, 9, 0.80);
  backdrop-filter: none;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-ui);
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bronze);
  line-height: 1;
}

.logo-img {
  height: 58px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--bronze);
}

.nav-cta {
  padding: 10px 22px;
  background: var(--bronze);
  border: 1px solid var(--bronze);
  border-radius: 2px;
  color: var(--plaster);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.nav-cta:hover {
  background: var(--cream);
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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


/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid var(--dark);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.1s;
}

.btn:active { transform: scale(0.98); }

.btn-gold {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}

.btn-gold:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--cream);
}


/* ===== HERO CAROUSEL ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #141210;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(14, 11, 9, 0.96) 0%,
    rgba(14, 11, 9, 0.96) 22%,
    rgba(14, 11, 9, 0.72) 32%,
    rgba(14, 11, 9, 0.30) 45%,
    rgba(14, 11, 9, 0.08) 57%,
    rgba(14, 11, 9, 0.00) 65%
  );
}

.hero-panel {
  position: relative;
  z-index: 3;
  width: 41%;
  max-width: 558px;
  padding: 0 28px 0 56px;
}

/* ── Slide images ── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
}

/* ── Hero content ── */
.hero-content {
  animation: hero-content-enter 1s ease forwards;
  text-shadow: 0 1px 12px rgba(14, 11, 9, 0.85);
}

@keyframes hero-content-enter {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 22px;
}

.hero-eyebrow::before {
  content: none;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.52rem, 4.05vw, 4.95rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--plaster);
  margin-bottom: 28px;
}

.hero-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(244, 240, 232, 0.72);
  max-width: 400px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 44px;
  background: var(--bronze);
  color: var(--plaster);
  border: 1px solid var(--bronze);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-150%);
  animation: btn-shimmer 2.2s ease-in-out infinite;
  pointer-events: none;
}

.btn-hero-primary:hover {
  background: var(--cream);
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.btn-hero-primary:hover::after {
  animation-play-state: paused;
}

@keyframes btn-shimmer {
  0%   { transform: translateX(-150%); }
  100% { transform: translateX(300%); }
}


.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.75);
  background: transparent;
  border: none;
  padding: 4px 0;
  border-bottom: 1px solid rgba(244, 240, 232, 0.28);
  transition: color 0.3s, border-color 0.3s;
}

.btn-hero-secondary:hover {
  color: rgba(244, 240, 232, 1);
  border-bottom-color: rgba(244, 240, 232, 0.6);
}

.hero-slide-nav {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: auto;
  top: auto;
  transform: none;
  margin-top: 0;
  z-index: 3;
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.hero-slide-nav-btn {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(244, 240, 232, 0.75);
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  text-align: left;
  line-height: 1;
  transition: color 0.25s, transform 0.25s;
  position: relative;
  text-shadow:
    0 1px 6px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(0, 0, 0, 0.6);
}

.hero-slide-nav-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--bronze);
  transition: width 0.3s;
}

.hero-slide-nav-btn.is-active {
  color: var(--bronze);
}

.hero-slide-nav-btn.is-active::after {
  width: 100%;
}

.hero-slide-nav-btn:hover {
  color: rgba(244, 240, 232, 0.95);
  transform: scale(1.15);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-panel {
    width: 100%;
    max-width: 100%;
    padding: 0 28px;
  }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero-body  { max-width: 100%; }
  .hero-slide-nav {
    right: 16px;
    bottom: 24px;
    left: auto;
  }
  .hero-slide-nav-btn::after { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { gap: 16px; }
}


/* ===== FEATURES ===== */
.features {
  background: var(--navy);
  padding: 80px 24px;
}

.features-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 8px 8px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  color: var(--gold);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.feature-title .comma {
  color: var(--gold);
}

.feature-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}


/* ===== SERVICES ===== */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.services-image {
  overflow: hidden;
}

.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-content {
  background: var(--background);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  gap: 18px;
}

.services-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: 0;
}

.services-subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--bronze);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}


/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 48px 24px 0;
}

.testimonials-cta {
  text-align: center;
  padding: 56px 24px 80px;
}

.testimonials-blurb {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  color: var(--text);
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: 0.02em;
}

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

.testimonial-card {
  background: var(--cream);
  border-radius: 2px;
  border: 1px solid var(--border);
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(43, 41, 37, 0.12);
}

.testimonial-card .strip-stars {
  margin-bottom: 0;
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 300;
  line-height: 0.6;
  color: var(--bronze);
  user-select: none;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  flex: 1;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  color: var(--bronze);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(140, 90, 60, 0.20);
}


/* ===== CONTACT ===== */
.contact {
  position: relative;
  background-image: url('https://static.wixstatic.com/media/d9ba30_7c4662c129cd4328bf8a80daa7860f0f~mv2.jpg');
  background-size: cover;
  background-position: center;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: rgba(31, 28, 25, 0.86);
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.contact-subtitle {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--bronze);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.contact-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

.contact-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 10px;
}

.contact-detail {
  display: block;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 6px;
  transition: color 0.2s;
}

.contact-detail:hover {
  color: var(--gold);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sage);
  background: rgba(255,255,255,0.15);
}

.contact-form textarea {
  resize: vertical;
}

.form-success {
  display: none;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
}

.form-success.visible {
  display: block;
}


/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  height: 104px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.footer-socials {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-socials a {
  opacity: 0.75;
  transition: opacity 0.2s;
}

.footer-socials a:hover {
  opacity: 1;
}

.footer-socials img {
  filter: brightness(0) invert(49%) sepia(38%) saturate(639%) hue-rotate(334deg) brightness(96%) contrast(88%);
}

.footer-copy {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--terracotta);
  letter-spacing: 0.06em;
}


/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-pop {
  opacity: 0;
  transform: scale(0.95) translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0, 0.2, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0, 0.2, 1);
}

.reveal.is-visible,
.reveal-pop.is-visible,
.reveal-fade.is-visible,
.reveal-right.is-visible,
.reveal-left.is-visible {
  opacity: 1;
  transform: none;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .services-image {
    height: 320px;
  }

  .services-content {
    padding: 48px 32px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ===== BOOKING PAGE ===== */
.book-hero {
  background: var(--navy);
  padding: 140px 24px 80px;
  text-align: center;
}

.book-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
}

.book-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.book-hero-body {
  font-size: 16px;
  color: rgba(244, 240, 232, 0.75);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

.book-form-section {
  background: var(--background);
  padding: 72px 24px 96px;
}

.book-form-inner {
  max-width: 680px;
  margin: 0 auto;
}

.question-group {
  margin-bottom: 44px;
}

.question-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.option-card {
  position: relative;
}

.option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.option-card label {
  display: block;
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  line-height: 1.4;
  user-select: none;
}

.option-card label:hover {
  border-color: var(--bronze);
}

.option-card input[type="radio"]:checked + label {
  border-color: var(--bronze);
  background: var(--dark);
  color: var(--cream);
}

.option-card--wide {
  grid-column: 1 / -1;
}

.field-error {
  display: none;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #b52a2a;
  margin-top: 10px;
  text-transform: uppercase;
}

.field-error.visible {
  display: block;
}

.book-submit-wrap {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.btn-book-submit {
  min-width: 240px;
}

.book-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .header-inner {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 0;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-link {
    padding: 14px 24px;
    border-radius: 0;
  }

  .nav-cta {
    margin: 8px 24px;
    text-align: center;
    border-radius: 2px;
  }

  .hero-content {
    padding: 100px 24px 64px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    padding: 60px 20px;
  }

  .book-hero {
    padding: 120px 24px 56px;
  }

  .options-grid {
    grid-template-columns: 1fr;
  }

  .option-card--wide {
    grid-column: auto;
  }

  .book-submit-wrap {
    align-items: stretch;
  }

  .btn-book-submit {
    text-align: center;
    width: 100%;
  }
}


/* ===== MARKETING SELECTOR PAGE (choose.html) ===== */

.choose-section {
  background: var(--background);
  padding: 72px 24px 96px;
  min-height: calc(100vh - 72px);
}

.choose-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.choose-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: 2px;
  border: 1px solid var(--border);
  box-shadow: none;
  overflow: hidden;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.choose-card:hover,
.choose-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(43, 41, 37, 0.12);
  outline: none;
}

/* Placeholder image area — swap this div for an <img> when you have photos */
.choose-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.choose-card-image-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 0 16px;
}

.choose-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 40px 36px 44px;
  gap: 16px;
}

.choose-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: 0;
}

.choose-card-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  flex: 1;
}

/* pointer-events: none so the parent <a> handles all clicks */
.choose-card-btn {
  display: inline-block;
  align-self: flex-start;
  pointer-events: none;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .choose-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .choose-section {
    padding: 48px 16px 72px;
  }

  .choose-card-body {
    padding: 28px 24px 32px;
  }

  .choose-card-btn {
    align-self: stretch;
    text-align: center;
  }
}


/* ===== CREDIBILITY STRIP ===== */
.credibility {
  background-color: var(--background);
  overflow: hidden;
  position: relative;
  padding: 40px 24px 0;
  text-align: center;
}

.credibility-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.cred-bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}

.cred-photo {
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: center bottom;
}
.cred-photo--left  { left: 0; }
.cred-photo--right { right: 0; }


.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 64px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.4s ease;
}

.stat-landed {
  color: var(--terracotta);
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
}

.stat-suffix {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color 0.4s ease;
}

.stat-landed + .stat-suffix,
.stat-number-wrap:has(.stat-landed) .stat-suffix {
  color: var(--terracotta);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
  flex-shrink: 0;
}

.credibility-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Carousel */
.brokerage-carousel {
  overflow: hidden;
  width: 100%;
  max-width: 980px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 93px, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 93px, black 92%, transparent);
}

.brokerage-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: brokerage-scroll 28s linear infinite;
}


@keyframes brokerage-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brokerage-logo {
  height: 68px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(1);
  opacity: 0.5;
  mix-blend-mode: multiply;
  transition: opacity 0.2s;
}

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

/* Per-logo size overrides */
.logo-compass   { height: 40px; max-width: 130px; }
.logo-elliman   { height: 40px; max-width: 160px; }
.logo-akg       { height: 54px; max-width: 80px;  }
.logo-agency    { height: 68px; }
.logo-sothebys  { height: 52px; max-width: 170px; }
.logo-coldwell  { height: 80px; }
.logo-berkshire { height: 90px; }
.logo-remax     { height: 46px; max-width: 110px; }
.logo-kw        { height: 80px; }
.logo-serhant   { height: 28px; }

@media (max-width: 640px) {
  .credibility-stats {
    gap: 24px 0;
  }

  .stat-item {
    padding: 0 28px;
  }

  .stat-divider {
    height: 36px;
  }

  .brokerage-track {
    gap: 40px;
  }
}


/* ===== REPOSITIONED HOMEPAGE SECTIONS ===== */

/* Hero actions row */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Outline button — secondary CTA on dark backgrounds */
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* Section eyebrow — shared across new sections */
.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 16px;
}

.section-eyebrow--light {
  color: var(--bronze);
}


/* ===== PROBLEM SECTION ===== */
.problem {
  background: var(--dark);
  padding: 96px 24px 0;
  border-top: 2px solid var(--bronze);
}

/* ─── COMPARISON CARDS ─────────────────────────────────────────── */
.comparison-row {
  padding: 64px 24px 80px;
}

.comparison-row-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.comparison-row-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.comparison-row--sameness .comparison-row-eyebrow {
  color: rgba(244, 240, 232, 0.4);
}

.comparison-row--snz .comparison-row-eyebrow {
  color: var(--terracotta);
}

.comparison-row-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  text-align: center;
}

.comparison-row--sameness .comparison-row-heading {
  color: var(--background);
}

.comparison-row--snz .comparison-row-heading {
  color: var(--dark);
}

.comparison-row--sameness {
  padding-bottom: 140px;
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.comparison-card {
  padding: 32px 28px 36px;
  border-radius: 2px;
}

/* ── Sameness cards — dark surface on dark section ── */
.comparison-row--sameness .comparison-card {
  background: rgba(244, 240, 232, 0.05);
  border: 1px solid var(--terracotta);
}

.comparison-row--sameness .comparison-card-num   { color: var(--bronze); }
.comparison-row--sameness .comparison-card-title { color: var(--background); }
.comparison-row--sameness .comparison-card-body  { color: rgba(244, 240, 232, 0.62); }

/* ── S&Z cards — white surface on cream section ── */
.comparison-row--snz .comparison-card {
  background: #ffffff;
  border: 1px solid var(--terracotta);
  box-shadow: 0 2px 16px rgba(31, 28, 25, 0.07);
}

.comparison-row--snz .comparison-card-num   { color: var(--terracotta); }
.comparison-row--snz .comparison-card-title { color: var(--dark); }
.comparison-row--snz .comparison-card-body  { color: rgba(31, 28, 25, 0.65); }

.comparison-card-num {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.comparison-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 10px;
}

.comparison-card-body {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .comparison-cards {
    grid-template-columns: 1fr;
  }
  .comparison-card {
    padding: 24px 20px 28px;
  }
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  padding: 0 48px;
}

.problem-copy {
  text-align: center;
  width: 100%;
}

.problem-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 28px;
}

.problem-marker::before,
.problem-marker::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--bronze);
  opacity: 0.6;
}

.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  font-weight: 300;
  color: var(--background);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.problem-body {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(244, 240, 232, 0.65);
}

.problem-images {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem-frames {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.sameness-frame {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sameness-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.sameness-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sameness-img--muted {
  filter: grayscale(25%) saturate(0.8);
}

.sameness-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.7);
  padding-top: 10px;
}

.problem-break-row {
  display: flex;
  gap: 10px;
  position: relative;
}

.problem-break-row::before {
  content: 'Different.';
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(5rem, 14vw, 18rem);
  color: var(--terracotta);
  opacity: 0.07;
  position: absolute;
  left: -3%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.03em;
  z-index: 0;
}

.sameness-break {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.sameness-break-wrap {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.sameness-break-wrap .sameness-img {
  height: 100%;
}

.sameness-label--break {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--terracotta);
  padding-top: 12px;
}


/* ===== TRANSFORMATION SECTION ===== */
.transformation {
  background: var(--background);
  padding: 96px 24px;
  margin-top: -60px;
}

.transformation-header {
  text-align: center;
  margin-bottom: 64px;
}

.transformation-header .section-title {
  margin-bottom: 0;
}

.pillars-grid {
  display: flex;
  flex-direction: column;
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.pillar-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-template-rows: auto auto;
  gap: 0 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.pillar-number {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  color: var(--bronze);
  opacity: 0.22;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pillar-title {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.pillar-body {
  grid-column: 2;
  grid-row: 2;
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 520px;
}


/* ===== PORTFOLIO SECTION ===== */
.portfolio {
  background: var(--background);
  padding: 96px 24px;
  border-top: 1px solid var(--border);
}

.portfolio-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.portfolio-header .section-title {
  margin-bottom: 16px;
}

.portfolio-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

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

.portfolio-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(43, 41, 37, 0.12);
}

.portfolio-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.04);
}

.portfolio-card-image-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.portfolio-card-label {
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}


/* ===== SERVICES LIST (seller presentation) ===== */
.services-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  margin: 0;
  padding: 0;
}

.services-list li {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.services-list li:not(:last-child)::after {
  content: '\00b7';
  margin: 0 10px;
  color: var(--border);
}


/* ===== PROCESS SECTION ===== */
.process {
  background: var(--dark);
  padding: 96px 24px;
}

.process-inner {
  max-width: 1300px;
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title--light {
  color: var(--white);
}

.process-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0 16px;
  max-width: 1300px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: rgba(244, 240, 232, 0.04);
  border: 1px solid rgba(244, 240, 232, 0.1);
  border-top: 2px solid var(--terracotta);
  padding: 32px 24px 36px;
}

.step-badge {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184, 106, 71, 0.5);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  flex-shrink: 0;
}

.step-arrow {
  display: flex;
  align-items: flex-start;
  padding-top: 55px;
  color: rgba(184, 106, 71, 0.4);
  font-size: 18px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.step-body {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(244, 240, 232, 0.65);
}

/* ===== CLOSING CTA SECTION ===== */
.process-cta-section {
  background: var(--background);
  padding: 96px 24px;
  text-align: center;
}

.process-cta {
  max-width: 680px;
  margin: 0 auto;
}

.process-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.process-cta-body {
  font-size: 1rem;
  color: rgba(31, 28, 25, 0.65);
  margin-bottom: 36px;
}

.process-cta-contact {
  margin-top: 24px;
  font-size: 0.9rem;
}

.process-cta-detail {
  color: rgba(31, 28, 25, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.process-cta-detail:hover { color: var(--dark); }
.process-cta-sep { color: rgba(31, 28, 25, 0.35); }


/* ===== WHY STEEL & ZANE ===== */
.why-snz {
  background: var(--background);
  border-top: none;
  padding: 96px 24px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: -60px;
}

.why-snz-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 72px;
  align-items: center;
}

.why-copy { padding-right: 8px; }

.why-title-accent {
  color: var(--terracotta);
  display: inline-block;
  padding-left: 0.5ch;
  text-shadow:
    0 0 24px rgba(184, 106, 71, 0.35),
    0 4px 32px rgba(184, 106, 71, 0.2);
}

.why-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.why-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 380px;
  margin-bottom: 48px;
}

.why-pillars {
  list-style: none;
  border-top: 1px solid rgba(212,203,195,0.5);
  max-width: 380px;
}

.why-pillar {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  padding: 15px 0;
  border-bottom: 1px solid rgba(212,203,195,0.5);
  display: flex;
  align-items: center;
  gap: 14px;
}

.why-pillar::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--bronze);
  flex-shrink: 0;
}


.why-images {
  position: relative;
  height: 620px;
}

.why-img {
  position: absolute;
  box-shadow: 0 12px 32px -4px rgba(0,0,0,0.28);
}

.why-img--primary {
  top: 0;
  left: 0;
  width: 68%;
  height: auto;
  z-index: 1;
}

.why-img--atmosphere {
  top: 18%;
  right: 16px;
  width: 42%;
  height: auto;
  z-index: 2;
  outline: 8px solid var(--background);
  outline-offset: -8px;
}

.why-img--detail {
  bottom: 0;
  left: 48%;
  width: 38%;
  height: auto;
  z-index: 2;
  outline: 8px solid var(--background);
  outline-offset: -8px;
}


/* ===== FINAL CTA ===== */
.cta-close {
  background: var(--dark);
  padding: 96px 24px;
  text-align: center;
}

.cta-close-inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-close-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.cta-close-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(244, 240, 232, 0.75);
  margin-bottom: 40px;
}

.cta-close-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ===== RESPONSIVE — NEW SECTIONS ===== */
@media (max-width: 900px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .step-arrow { display: none; }

  /* Why SNZ */
  .why-snz {
    margin-top: 0;
    padding-top: 80px;
    border-top: 1px solid var(--border);
  }
  .why-snz-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .why-images { height: 460px; }
  .why-body { max-width: 100%; }
  /* Problem */
  .problem-inner { gap: 40px; }
  .problem-copy { max-width: 100%; }
  .problem-headline { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  /* Pillars ledger */
  .pillars-grid { max-width: 560px; }
  .pillar-card { grid-template-columns: 72px 1fr; gap: 0 28px; padding: 36px 0; }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .cta-close-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-close-actions .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  /* Why SNZ */
  .why-snz { padding: 80px 24px 100px; }
  .why-images { height: 320px; }
  .why-img--atmosphere { display: none; }
  .why-img--primary { width: 80%; height: 72%; }
  .why-img--detail { left: 5%; }

  /* Problem */
  .problem { padding: 80px 24px 72px; }
  .problem-frames {
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .problem-frames::-webkit-scrollbar { display: none; }
  .sameness-frame { min-width: 100px; flex-shrink: 0; }
}

/* ===== PHOTOGRAPHY DIFFERENCE ===== */
.photo-diff {
  background: var(--charcoal-black);
  padding: 96px 48px;
}

.photo-diff-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.photo-diff-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.photo-diff-intro {
  color: var(--travertine);
  font-size: 1.05rem;
  margin-top: 16px;
  line-height: 1.6;
}

.photo-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.photo-diff-pillar {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 48px;
}

.photo-diff-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--plaster);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.photo-diff-body {
  color: var(--warm-stone);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .photo-diff { padding: 80px 32px; }
  .photo-diff-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .photo-diff { padding: 72px 24px; }
}

/* ===== TESTIMONIAL STRIP ===== */
.testimonials-strip {
  margin-top: 56px;
  margin-left: -24px;
  margin-right: -24px;
  overflow: hidden;
  border-top: 1px solid rgba(139, 90, 60, 0.12);
  padding-top: 40px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.testimonials-strip-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testimonials-scroll 55s linear infinite;
}
.testimonials-strip-track:hover { animation-play-state: running; }
.strip-card {
  width: 300px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid rgba(139, 90, 60, 0.12);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
}
.strip-stars {
  color: var(--bronze);
  font-size: 0.75rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.strip-quote {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 14px;
  font-style: italic;
}
.strip-author {
  font-size: 0.75rem;
  color: var(--warm-stone);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.strip-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.strip-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(140, 90, 60, 0.20);
}
@keyframes testimonials-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}



/* ── Cursor follower (desktop only) ── */
@media (pointer: fine) {
  * { cursor: none !important; }

  .cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--terracotta);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .cursor-ring {
    position: fixed;
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--terracotta);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.2s ease, height 0.2s ease, opacity 0.3s ease;
  }

  .cursor-dot.is-visible  { opacity: 1; }
  .cursor-ring.is-visible { opacity: 0.55; }
  .cursor-ring.is-hovered { width: 48px; height: 48px; opacity: 0.85; }
}

/* ─── Scroll progress bar ──────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 200;
  overflow: hidden;
  pointer-events: none;
}
.scroll-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(to right, var(--bronze), var(--terracotta));
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
}

/* ===== MOBILE OVERRIDES ===== */

@media (max-width: 900px) {
  .comparison-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(14, 11, 9, 0.88) 0%,
      rgba(14, 11, 9, 0.55) 50%,
      rgba(14, 11, 9, 0.20) 100%
    );
  }
}

@media (max-width: 640px) {
  .problem-inner { padding: 0 20px; }

  .comparison-row--sameness { padding-bottom: 80px; }

  .stat-divider { display: none; }
  .credibility-stats { flex-direction: column; align-items: center; gap: 24px 0; }
  .cred-photo { display: block; width: 135px; height: 220px; top: 100px; }
  .cred-photo--left  { left: -10px; }
  .cred-photo--right { right: -10px; }
  .cred-bottom-row { display: block; }

  .hero-content { padding: 100px 0 64px; }

  .testimonials-cta { padding: 40px 24px 56px; }

  .process { padding: 64px 24px; }
  .process-cta-section { padding: 64px 24px; }
}

/* ===== MOBILE OVERRIDES — ROUND 2 ===== */

/* Fix 1: flat dark veil replaces gradient on hero (overrides the to-top gradient above) */
@media (max-width: 768px) {
  .hero-overlay {
    background: rgba(14, 11, 9, 0.65);
  }
}

@media (max-width: 640px) {
  /* Fix 2: problem headline — remove terracotta accent, all-white on mobile */
  .problem-headline span[style] {
    color: var(--background) !important;
  }

  /* Fix 3: comparison frames — show 2 side-by-side, hide 3rd */
  .problem-frames {
    overflow-x: visible;
    flex-wrap: nowrap;
  }
  .sameness-frame {
    min-width: 0;
    flex-shrink: 1;
    flex: 1;
  }
  .sameness-frame:last-child {
    display: none;
  }

  /* Fix 4: why-snz images — overlay collage on mobile */
  .why-images {
    position: relative;
    display: block;
    height: auto;
    margin-bottom: 80px;
  }
  .why-img {
    position: static;
    width: 100%;
    height: auto;
    outline: none;
  }
  .why-img--primary {
    display: block;
    width: 100%;
  }
  .why-img--atmosphere {
    display: block;
    position: absolute;
    top: -70px;
    left: 0;
    width: 60%;
    height: auto;
    outline: 6px solid var(--background);
    outline-offset: -6px;
  }
  .why-img--detail {
    display: block;
    position: absolute;
    bottom: -70px;
    right: 0;
    left: auto;
    width: 40%;
    height: auto;
    outline: 6px solid var(--background);
    outline-offset: -6px;
  }

  /* Fix 5: comparison row bottom padding — reduce dead space on mobile */
  .comparison-row--sameness { padding-bottom: 56px; }
  .comparison-row--snz      { padding-bottom: 48px; }
}

/* ===== CHOOSE PAGE — SPLIT SCREEN ===== */

.choose-main {
  overflow: visible;
}

.choose-question-card {
  position: relative;
  width: 100%;
  background: var(--bronze);
  border-bottom: none;
  padding: 20px 32px;
  min-height: 120px;
  text-align: center;
}

.choose-logo-link {
  position: absolute;
  top: 50%;
  left: 32px;
  transform: translateY(-50%);
  display: block;
}

.choose-logo-link .logo-img {
  height: 87px;
  filter: brightness(0) invert(1);
}

.choose-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.65);
  margin-bottom: 8px;
}

.choose-question {
  font-family: var(--font-display);
  font-size: clamp(1.36rem, 2.125vw, 2.38rem);
  font-weight: 300;
  color: var(--plaster);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.choose-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.choose-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 32px 32px 40px;
  gap: 6px;
  text-decoration: none;
}

.choose-panel--signature {
  background: var(--background);
  overflow: hidden;
}

.choose-panel--standard {
  background: var(--dark);
  border-left: 1px solid rgba(244, 240, 232, 0.08);
  padding-left: 24px;
  padding-right: 24px;
}


.choose-panel--standard .choose-panel-tagline {
  font-size: clamp(1.36rem, 2.125vw, 2.38rem);
}

.choose-panel--standard .choose-panel-body {
  font-size: 12px;
}

.choose-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid rgba(184, 106, 71, 0.35);
  padding: 4px 12px;
  border-radius: 1px;
}

.sig-note {
  display: block;
  font-size: 10px;
  letter-spacing: 0.03em;
  font-style: italic;
  color: rgba(184, 106, 71, 0.55);
  margin-top: 1px;
  white-space: nowrap;
}

.choose-panel-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.choose-panel--signature .choose-panel-eyebrow { color: var(--bronze); }
.choose-panel--standard  .choose-panel-eyebrow { color: rgba(244, 240, 232, 0.45); }

.choose-panel-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  min-height: 53px;
}

.choose-panel--signature .choose-panel-tagline { color: var(--dark); }
.choose-panel--standard  .choose-panel-tagline { color: var(--background); }

.choose-panel--signature .btn-hero-primary:hover {
  background: #ffffff;
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.choose-panel-body {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  max-width: 100%;
  margin-top: -34px;
  margin-bottom: 0;
}

.choose-panel--signature .choose-panel-body { color: var(--muted); }
.choose-panel--standard  .choose-panel-body { color: rgba(244, 240, 232, 0.55); }

.choose-panel-btn { pointer-events: auto; cursor: pointer; margin-top: 10px; }

.sig-bullets-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.choose-panel-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  text-align: left;
}

.sig-photo-row {
  position: relative;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 600px;
}

.sig-photo {
  display: block;
  position: absolute;
  width: auto;
  height: 90%;
  top: 0;
  object-fit: contain;
  object-position: center bottom;
}

.sig-photo--left  { left:  -45px; height: 72%; top: 0%; }
.sig-photo--right { right: -70px; height: 72%; }

.choose-panel-bullets li {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.choose-panel-bullets li:last-child {
  border-bottom: none;
}

.choose-panel-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-size: 11px;
  top: 8px;
}

/* Signature-exclusive items — terracotta */
.choose-panel-bullets li.sig-only {
  color: var(--terracotta);
  border-bottom-color: rgba(184, 106, 71, 0.18);
}

.choose-panel-bullets li.sig-only::before {
  color: var(--terracotta);
}

/* Visual break between exclusive and shared groups — single terracotta border-bottom on last sig-only is the divider */
.choose-panel-bullets li.sig-only + li:not(.sig-only) {
  margin-top: 4px;
}

/* Standard panel — light text on dark background */
.choose-panel--standard .choose-panel-bullets li {
  color: rgba(244, 240, 232, 0.65);
  border-bottom-color: rgba(244, 240, 232, 0.08);
}

.choose-panel--standard .choose-panel-bullets li::before {
  color: rgba(244, 240, 232, 0.45);
}

/* Standard Marketing button — deliberately understated on dark panel */
.btn-standard {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: rgba(244, 240, 232, 0.08);
  color: rgba(244, 240, 232, 0.65);
  border: 1px solid rgba(244, 240, 232, 0.20);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-standard:hover {
  background: rgba(244, 240, 232, 0.14);
  color: rgba(244, 240, 232, 0.85);
  border-color: rgba(244, 240, 232, 0.35);
}


/* ── Choose page load animations ───────────────────────────────────────── */

@keyframes check-enter {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

@keyframes photo-enter-left {
  from { opacity: 0; transform: translateX(-80px); }
  to   { opacity: 1; transform: none; }
}

@keyframes photo-enter-right {
  from { opacity: 0; transform: translateX(80px); }
  to   { opacity: 1; transform: none; }
}

/* Checklist cascade — Signature side only */
.choose-panel--signature .choose-panel-bullets li {
  opacity: 0;
  animation: check-enter 0.35s ease forwards;
}
.choose-panel--signature .choose-panel-bullets li:nth-child(1)  { animation-delay: 0.20s; }
.choose-panel--signature .choose-panel-bullets li:nth-child(2)  { animation-delay: 0.27s; }
.choose-panel--signature .choose-panel-bullets li:nth-child(3)  { animation-delay: 0.34s; }
.choose-panel--signature .choose-panel-bullets li:nth-child(4)  { animation-delay: 0.41s; }
.choose-panel--signature .choose-panel-bullets li:nth-child(5)  { animation-delay: 0.48s; }
.choose-panel--signature .choose-panel-bullets li:nth-child(6)  { animation-delay: 0.55s; }
.choose-panel--signature .choose-panel-bullets li:nth-child(7)  { animation-delay: 0.62s; }
.choose-panel--signature .choose-panel-bullets li:nth-child(8)  { animation-delay: 0.69s; }
.choose-panel--signature .choose-panel-bullets li:nth-child(9)  { animation-delay: 0.76s; }
.choose-panel--signature .choose-panel-bullets li:nth-child(10) { animation-delay: 0.83s; }
.choose-panel--signature .choose-panel-bullets li:nth-child(11) { animation-delay: 0.90s; }

/* Photographer entrance — slide in from sides */
.sig-photo--left {
  animation: photo-enter-left 0.9s cubic-bezier(0.25, 0, 0.2, 1) forwards;
  animation-delay: 0.1s;
  opacity: 0;
}
.sig-photo--right {
  animation: photo-enter-right 0.9s cubic-bezier(0.25, 0, 0.2, 1) forwards;
  animation-delay: 0.25s;
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .choose-panel--signature .choose-panel-bullets li,
  .sig-photo--left,
  .sig-photo--right {
    animation: none;
    opacity: 1;
  }
}

/* Mobile: stack vertically, Signature on top */
@media (max-width: 768px) {
  .choose-main {
    height: auto;
    overflow: visible;
  }
  .choose-split {
    grid-template-columns: 1fr;
    height: auto;
  }
  .choose-question-card {
    padding: 20px 20px 18px;
  }
  .choose-logo-link {
    display: none;
  }
  .choose-panel--standard {
    border-left: none;
    border-top: 1px solid rgba(244, 240, 232, 0.08);
  }
  .choose-panel {
    padding: 56px 32px 64px;
  }
  .choose-panel-bullets {
    max-width: 100%;
  }
  .choose-panel--signature .choose-panel-bullets li {
    animation-play-state: paused;
  }
  .choose-panel--signature .choose-panel-bullets.bullets-visible li {
    animation-play-state: running;
  }
  .sig-photo {
    display: none;
  }
  .choose-panel-tagline,
  .choose-panel--standard .choose-panel-tagline {
    white-space: normal;
    font-size: clamp(1.725rem, 5.7vw, 3rem);
  }
  .choose-question {
    white-space: normal;
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }
  .sig-note {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .choose-panel {
    padding: 48px 24px 56px;
  }
}
