/* ============================================================
   Thunder Ridge Farms — Luxury Estate Redesign
   Reference: Aman Resorts / Equinox Hotels / Kentucky horse estate
   Palette: near-black green + warm porcelain + champagne brass
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Dark surfaces */
  --ink:           #0C1410;
  --ink-mid:       #162018;
  --ink-light:     #1E2E1E;
  --ink-border:    rgba(194,168,120,0.18);

  /* Light surfaces */
  --porcelain:     #F7F4EE;
  --porcelain-mid: #F0EBE1;
  --porcelain-deep:#E8E0D2;

  /* Champagne brass — hairlines and accents only */
  --brass:         #C2A878;
  --brass-light:   #D4BC96;
  --brass-pale:    #E8D9BC;
  --brass-hairline:rgba(194,168,120,0.22);

  /* Text */
  --text-dark:     #1C1C1C;
  --text-mid:      #4A4540;
  --text-muted:    #7A746C;
  --text-light:    rgba(247,244,238,0.90);
  --text-dim:      rgba(247,244,238,0.50);

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Scale */
  --nav-h:        72px;
  --section-v:    clamp(80px, 10vw, 160px);
  --content-max:  1200px;
  --col-text-max: 38em;

  /* Geometry — sharp, no soft radius */
  --r:    2px;
  --r-md: 3px;

  /* Transitions */
  --ease:    0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in: 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--porcelain);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

/* ---------- Focus ---------- */
:focus-visible {
  outline: 1px solid var(--brass);
  outline-offset: 3px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--ink);
  color: var(--porcelain);
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.skip-link:focus { top: 1rem; }

/* ---------- Scroll animation base ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* Image reveal — scale from 1.05 → 1 */
.img-reveal {
  overflow: hidden;
}
.img-reveal img {
  transform: scale(1.06);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 1.2s ease;
  filter: brightness(0.9) saturate(0.88);
}
.img-reveal.visible img {
  transform: scale(1);
  filter: brightness(1) saturate(1);
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}
.section-pad { padding-block: var(--section-v); }

/* Hairline rules */
.rule-h {
  display: block;
  width: clamp(40px, 6vw, 80px);
  height: 1px;
  background: var(--brass);
  opacity: 0.65;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 0.75rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 300;
}

h1 { font-size: clamp(3.2rem, 7vw, 6rem); font-weight: 300; }
h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 300; }
h3 { font-size: clamp(1.3rem, 2vw, 1.85rem); font-weight: 400; }

em { font-style: italic; }

p {
  font-size: clamp(1rem, 1.1vw, 1.0625rem);
  line-height: 1.8;
  color: var(--text-mid);
  max-width: var(--col-text-max);
}

/* Dark section text overrides */
.on-dark p    { color: var(--text-light); }
.on-dark h1,
.on-dark h2,
.on-dark h3   { color: var(--text-light); }
.on-dark .eyebrow { color: var(--brass-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  padding: 1rem 2.5rem;
  transition: all var(--ease);
  border-radius: var(--r);
}

/* Ghost — primary CTA on dark */
.btn-ghost {
  background: transparent;
  color: var(--porcelain);
  border: 1px solid rgba(194,168,120,0.5);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
}

/* Ghost dark — on light backgrounds */
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(12,20,16,0.3);
}
.btn-ghost-dark:hover,
.btn-ghost-dark:focus-visible {
  background: var(--ink);
  color: var(--porcelain);
  border-color: var(--ink);
}

/* ============================================================
   NAV CTA — "Dark Pill" (solid near-black-green lozenge +
   full-opacity champagne-brass hairline edge). The primary nav action.
   Usage: <a class="btn nav-cta">Book $60 Trial</a>
   ============================================================ */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;

  padding: 0.7rem 1.6rem;
  color: var(--brass-light);
  background: linear-gradient(180deg, #11201A 0%, var(--ink) 100%);
  border: 1px solid var(--brass);
  border-radius: var(--r);

  box-shadow:
    inset 0 1px 0 rgba(232,217,188,0.10),
    0 6px 20px rgba(8,14,10,0.45);
  transition:
    background var(--ease),
    color var(--ease),
    border-color var(--ease),
    box-shadow var(--ease),
    transform var(--ease);
}
.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--ink);
  background: linear-gradient(180deg, var(--brass-light) 0%, var(--brass) 100%);
  border-color: var(--brass-light);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 8px 24px rgba(194,168,120,0.30);
  transform: translateY(-1px);
}
.nav-cta:active {
  transform: translateY(0);
  box-shadow:
    inset 0 1px 2px rgba(12,20,16,0.12),
    0 1px 2px rgba(12,20,16,0.22);
}
.nav-cta:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 2px;
}
.nav:not(.scrolled) .nav-cta {
  box-shadow:
    inset 0 1px 0 rgba(232,217,188,0.12),
    0 8px 26px rgba(8,14,10,0.55);
}
@media (prefers-reduced-motion: reduce) {
  .nav-cta:hover,
  .nav-cta:focus-visible,
  .nav-cta:active { transform: none; }
}
/* .nav-cta @480 is handled in the MOBILE OPTIMIZATION PASS block at end of file */


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
  transition: background var(--ease), border-color var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12,20,16,0.96);
  border-bottom-color: var(--brass-hairline);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: var(--content-max);
  width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  font-variant: small-caps;
  letter-spacing: 0.1em;
  color: var(--porcelain);
  line-height: 1;
}
.nav-logo-sub {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.78);
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--porcelain); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-phone {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--brass);
  transition: color var(--ease);
}
.nav-phone:hover { color: var(--brass-light); }

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-phone  { display: none; }
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 35%;
  filter: brightness(0.38) saturate(0.65) sepia(0.2);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(12,20,16,0.3) 0%, transparent 30%, rgba(12,20,16,0.7) 70%, rgba(12,20,16,0.96) 100%),
    linear-gradient(to right, rgba(12,20,16,0.55) 0%, transparent 60%);
}

/* Grain overlay on hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='0.035'/%3E%3C/svg%3E");
  z-index: 1;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
  padding-top: calc(var(--nav-h) + 4rem);
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-location-line {
  width: 3rem;
  height: 1px;
  background: var(--brass);
  opacity: 0.6;
}
.hero-location-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  font-weight: 300;
  color: var(--porcelain);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
  max-width: 14ch;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.45s forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--brass-pale);
}

.hero-sub {
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  color: rgba(247,244,238,0.92);
  max-width: 50ch;
  line-height: 1.8;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.75s forwards;
}

.hero-call-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.7);
  transition: color var(--ease);
}
.hero-call-link:hover { color: var(--brass-light); }

/* Balanced 2x2 spec grid (even, never 3+1), each badge led by a brass dot */
.hero-trust {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  align-items: center;
  gap: 0.9rem 2.75rem;
  max-width: 640px;
  margin-top: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--brass-hairline);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-light);
}
.hero-trust-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0;
}
.hero-trust-sep { display: none; }

@media (max-width: 560px) {
  .hero-trust { grid-template-columns: 1fr; gap: 0.75rem; max-width: none; }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 5vw, 3rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}
.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--brass), transparent);
  animation: scrollLine 1.8s ease infinite;
}
.scroll-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(194,168,120,0.4);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--ink);
  border-top: 1px solid var(--brass-hairline);
  padding: 1.1rem 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-strip-item {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}
.trust-strip-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--brass-hairline);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .trust-strip-dot { display: none; }
  .trust-strip-inner { gap: 1rem; }
}


/* ============================================================
   30-MINUTE TRIAL OFFER
   ============================================================ */
.offer {
  background: var(--porcelain);
  position: relative;
}

.offer-layout {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.offer-left {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.offer-numeral {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.85;
  color: rgba(12,20,16,0.06);
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}
.offer-left h2 {
  color: var(--ink);
  margin-bottom: 1.25rem;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}
.offer-left > p {
  color: var(--text-mid);
  margin-bottom: 2rem;
}
.offer-left .rule-h { margin-bottom: 2rem; }

.offer-steps {
  display: flex;
  flex-direction: column;
}
.offer-step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0 2rem;
  padding-block: 2.25rem;
  border-bottom: 1px solid var(--brass-hairline);
}
.offer-step:first-child {
  border-top: 1px solid var(--brass-hairline);
}
.offer-step-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brass);
  letter-spacing: 0.04em;
  padding-top: 0.05rem;
}
.offer-step-body h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.offer-step-body p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: none;
}

.offer-who {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--brass-hairline);
}
.offer-who h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.25rem;
}
.offer-who-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  list-style: none;
}
.offer-who-list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-mid);
}
.offer-who-list li::before {
  content: '—';
  color: var(--brass);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.offer-reassurance {
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  background: var(--ink);
  border-left: 1px solid var(--brass);
}
.offer-reassurance p {
  color: rgba(247,244,238,0.90);
  font-size: 1rem;
  max-width: none;
  line-height: 1.8;
}
.offer-reassurance strong {
  color: var(--brass-light);
  font-weight: 600;
}

.offer-cta-row {
  margin-top: 2.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .offer-layout { grid-template-columns: 1fr; }
  .offer-left { position: static; }
  .offer-numeral { font-size: clamp(4rem, 16vw, 7rem); }
}


/* ============================================================
   WHY THUNDER RIDGE — editorial numbered list, no card boxes
   ============================================================ */
.why {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
/* Grain */
.why::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 0;
  mix-blend-mode: overlay;
}
/* Faint estate bg */
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/fb-cover.jpg') center/cover no-repeat;
  opacity: 0.04;
  filter: blur(3px) sepia(0.3);
  z-index: 0;
}

.why-inner { position: relative; z-index: 1; }

.why-header {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--brass-hairline);
}
.why-header-left h2 {
  color: var(--text-light);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}
.why-header-right p {
  color: rgba(247,244,238,0.86);
  font-size: 1.0625rem;
  max-width: 42ch;
  margin-left: auto;
  max-width: none;
}

.why-pillars {
  display: flex;
  flex-direction: column;
}
.why-pillar {
  display: grid;
  grid-template-columns: 4rem 1fr 1.4fr;
  gap: 0 3rem;
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--brass-hairline);
  transition: background var(--ease);
}
.why-pillar:hover {
  background: rgba(194,168,120,0.025);
}
.why-pillar-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--brass-light);
  letter-spacing: 0.04em;
  padding-top: 0.05rem;
  align-self: start;
}
.why-pillar-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: -0.01em;
  align-self: start;
  padding-top: 0.05rem;
}
.why-pillar-body {
  font-size: 1rem;
  color: rgba(247,244,238,0.85);
  line-height: 1.8;
  max-width: none;
}

@media (max-width: 900px) {
  .why-header { grid-template-columns: 1fr; }
  .why-pillar { grid-template-columns: 3rem 1fr; gap: 0 1.5rem; }
  .why-pillar-body { grid-column: 2; margin-top: 0.5rem; }
}
@media (max-width: 580px) {
  .why-pillar { grid-template-columns: 1fr; gap: 0.4rem 0; padding-block: 2rem; }
}


/* ============================================================
   PHOTO BAND — atmospheric divider
   ============================================================ */
.photo-band {
  position: relative;
  height: clamp(240px, 32vw, 400px);
  overflow: hidden;
  background: var(--ink);
}
.photo-band-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.26) saturate(0.55) sepia(0.25);
  transform: scale(1.08);
  will-change: transform;
}
.photo-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,20,16,0.5) 0%, rgba(12,20,16,0.1) 50%, rgba(12,20,16,0.55) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: clamp(1.5rem, 8vw, 6rem);
  z-index: 1;
}
.photo-band-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--text-light);
  text-align: center;
  max-width: 720px;
  line-height: 1.35;
  letter-spacing: -0.015em;
}
.photo-band-quote em {
  color: var(--brass-pale);
  font-style: italic;
}
/* Grain */
.photo-band::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 2;
  mix-blend-mode: overlay;
}


/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.proof {
  background: var(--porcelain-mid);
  position: relative;
}

.proof-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.proof-left {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.proof-left h2 {
  color: var(--ink);
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}
.proof-left .rule-h { margin-bottom: 1.5rem; }
.proof-left p { color: var(--text-mid); margin-bottom: 0.75rem; }
.proof-left p:last-of-type {
  font-style: italic;
  color: var(--text-mid);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

/* Google badge */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--brass-hairline);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.google-badge-stars {
  color: #C8922A;
  letter-spacing: 1px;
  font-size: 13px;
}

/* Ribbon photos */
.proof-ribbons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin-bottom: 3rem;
}
.ribbon-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.ribbon-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s var(--ease);
  filter: brightness(0.9) saturate(0.85);
}
.ribbon-photo:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}

.ribbon-caption {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-mid);
  font-style: italic;
  text-align: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--brass-hairline);
  margin-bottom: 3rem;
}

/* Testimonials */
.proof-testimonials {
  display: flex;
  flex-direction: column;
}
.testimonial {
  padding-block: 2.25rem;
  border-bottom: 1px solid var(--brass-hairline);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 2rem;
}
.testimonial:first-child { border-top: 1px solid var(--brass-hairline); }
.testimonial-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--brass-pale);
  line-height: 0.7;
  padding-top: 0.3rem;
  width: 1.8rem;
}
.testimonial-stars {
  color: #C8922A;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 0.875rem;
  max-width: none;
}
.testimonial-attr {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8F744A;
}

@media (max-width: 900px) {
  .proof-layout { grid-template-columns: 1fr; }
  .proof-left { position: static; }
}
@media (max-width: 600px) {
  .proof-ribbons { grid-template-columns: repeat(3, 1fr); }
}


/* ============================================================
   GALLERY — asymmetric masonry
   ============================================================ */
.gallery {
  background: var(--porcelain);
}
.gallery-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--brass-hairline);
}
.gallery-header-left h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}
.gallery-header-right p {
  color: var(--text-mid);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1rem;
  text-align: right;
}

/* Asymmetric grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
}
/* Item 1 — wide, spans 2 rows. No aspect-ratio: stretch to fill both row
   tracks (set by the square tiles) so its bottom aligns with cols 2 & 3. */
.gallery-item:nth-child(1) {
  grid-row: 1 / 3;
  grid-column: 1;
  height: 100%;
}
/* Items 2, 3 — col 2 stacked (explicit rows so col 3 can't drift down) */
.gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; aspect-ratio: 1; }
.gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; aspect-ratio: 1; }
/* Items 4, 5 — col 3 stacked, aligned to the same two rows */
.gallery-item:nth-child(4) { grid-column: 3; grid-row: 1; aspect-ratio: 1; }
.gallery-item:nth-child(5) { grid-column: 3; grid-row: 2; aspect-ratio: 1; }
/* Item 6 — full-width cinematic strip */
.gallery-item:nth-child(6) {
  grid-column: 1 / 4;
  aspect-ratio: 21/6;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.9s ease;
  filter: brightness(0.92) saturate(0.87);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.875rem 1rem;
  background: linear-gradient(to top, rgba(12,20,16,0.88) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--ease);
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption p {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(247,244,238,0.9);
  max-width: none;
  line-height: 1.4;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8,14,10,0.97);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open {
  display: flex;
  animation: fadeIn 0.2s ease;
}
.lightbox-img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid var(--brass-hairline);
  color: var(--brass);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ease);
  font-size: 1rem;
  border-radius: var(--r);
}
.lightbox-close:hover { background: rgba(194,168,120,0.1); border-color: var(--brass); }

@media (max-width: 768px) {
  .gallery-header { grid-template-columns: 1fr; }
  .gallery-header-right p { text-align: left; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; aspect-ratio: 16/9; }
  .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; aspect-ratio: 1; }
  .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; aspect-ratio: 1; }
  .gallery-item:nth-child(4) { grid-column: 1; grid-row: 3; aspect-ratio: 1; }
  .gallery-item:nth-child(5) { grid-column: 2; grid-row: 3; aspect-ratio: 1; }
  .gallery-item:nth-child(6) { grid-column: 1 / 3; grid-row: 4; aspect-ratio: 16/7; }
}


/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.faq::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 0;
  mix-blend-mode: overlay;
}
.faq-inner { position: relative; z-index: 1; }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 6vw, 6rem);
}
.faq-left h2 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}
.faq-left p {
  color: rgba(247,244,238,0.82);
  font-size: 1rem;
}

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--brass-hairline); }
.faq-item:first-child { border-top: 1px solid var(--brass-hairline); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  color: rgba(247,244,238,0.85);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: color var(--ease);
}
.faq-question:hover { color: var(--text-light); }
.faq-question[aria-expanded="true"] { color: var(--brass-light); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--brass-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--ease), border-color var(--ease);
  color: var(--brass);
  border-radius: var(--r);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  border-color: var(--brass);
}

.faq-answer {
  display: none;
  padding-bottom: 1.5rem;
  color: rgba(247,244,238,0.85);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 64ch;
}
.faq-answer a { color: var(--brass-light); }
.faq-answer.open { display: block; animation: fadeUp 0.3s ease; }

@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; }
}


/* ============================================================
   BOOKING FORM
   ============================================================ */
.booking {
  background: var(--porcelain);
  position: relative;
}
.booking::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--brass-hairline);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.booking-left h2 {
  color: var(--ink);
  margin-bottom: 0.75rem;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}
.booking-left > p { color: var(--text-mid); margin-bottom: 2.5rem; }
.booking-left .rule-h { margin-bottom: 2.5rem; }

.booking-contacts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.booking-contact {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.booking-contact-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  width: 3.5rem;
  flex-shrink: 0;
  padding-top: 0.15rem;
}
.booking-contact-value {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.booking-contact-value a {
  color: var(--text-dark);
  transition: color var(--ease);
}
.booking-contact-value a:hover { color: var(--brass); }

.booking-img-wrap {
  overflow: hidden;
  aspect-ratio: 3/2;
  margin-top: 1.5rem;
  filter: brightness(0.9) saturate(0.85);
  transition: filter 0.8s ease;
}
.booking-img-wrap:hover { filter: brightness(1) saturate(1); }
.booking-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}
.booking-img-wrap:hover img { transform: scale(1); }

/* Form — underline-only inputs */
.booking-form-card {
  background: var(--ink);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
}
.booking-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent 60%);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
}
.form-sub {
  font-size: 0.9375rem;
  color: rgba(247,244,238,0.82);
  margin-bottom: 2rem;
  max-width: none;
}

.form-row {
  margin-bottom: 1.75rem;
  position: relative;
}
.form-row label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 0.5rem;
}
.form-row input,
.form-row select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(194,168,120,0.28);
  padding: 0.6rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-light);
  transition: border-color var(--ease);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.form-row input::placeholder { color: rgba(247,244,238,0.30); font-size: 0.94rem; }
.form-row input:focus,
.form-row select:focus {
  border-bottom-color: var(--brass);
}
.form-row input.error,
.form-row select.error {
  border-bottom-color: #c0392b;
}
/* Select arrow */
.select-wrap { position: relative; }
.select-wrap::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-25%);
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(194,168,120,0.45);
  pointer-events: none;
}
.form-row select option { background: var(--ink-mid); color: var(--text-light); }

.form-error {
  display: none;
  font-size: 0.72rem;
  color: #e05a4e;
  margin-top: 0.3rem;
  letter-spacing: 0.03em;
}
.form-error.show { display: block; }

.form-submit { width: 100%; margin-top: 0.5rem; }

.form-privacy {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(194,168,120,0.35);
  text-transform: uppercase;
  margin-top: 1rem;
}

/* Confirmation */
.form-confirmation {
  display: none;
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.form-confirmation.show {
  display: block;
  animation: fadeUp 0.4s ease;
}
.confirm-mark {
  width: 46px;
  height: 46px;
  border: 1px solid var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--brass);
}
.form-confirmation h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.form-confirmation p {
  font-size: 1rem;
  color: rgba(247,244,238,0.85);
  line-height: 1.8;
  max-width: 36ch;
  margin-inline: auto;
}
.confirm-contact {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(194,168,120,0.75);
}
.confirm-contact a { color: var(--brass-light); }

@media (max-width: 768px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-layout > * { min-width: 0; }
  .booking-img-wrap { display: none; }
}


/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/TRF2.jpg') center/cover no-repeat;
  opacity: 0.05;
  filter: blur(4px) sepia(0.3);
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 0;
  mix-blend-mode: overlay;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-inline: auto;
}
.cta-inner h2 {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
}
.cta-inner > p {
  color: rgba(247,244,238,0.88);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-inline: auto;
  margin-bottom: 2.75rem;
}

.cta-contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--brass-hairline);
}
.cta-contact-item {
  padding-inline: 2.5rem;
  text-align: center;
  border-right: 1px solid var(--brass-hairline);
}
.cta-contact-item:last-child { border-right: none; }
.cta-contact-item strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.5rem;
}
.cta-contact-item a,
.cta-contact-item span {
  font-size: 1rem;
  color: rgba(247,244,238,0.85);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.cta-contact-item a:hover { color: var(--brass-light); }

.cta-hours {
  margin-top: 2rem;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(194,168,120,0.72);
}

.directions-text {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(247,244,238,0.7);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
  font-style: italic;
  font-family: var(--font-display);
}

@media (max-width: 640px) {
  .cta-contact-item { padding-inline: 1rem; border-right: none; margin-bottom: 1.25rem; }
  .cta-contact-row { flex-direction: column; align-items: center; }
}


/* ============================================================
   MAP
   ============================================================ */
.map-section {
  line-height: 0;
  border-top: 1px solid var(--brass-hairline);
}
.map-section iframe {
  width: 100%;
  height: clamp(240px, 28vw, 360px);
  border: 0;
  display: block;
  filter: saturate(0.65) brightness(0.85) sepia(0.08);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  padding: clamp(3rem, 5vw, 5rem) 0 2rem;
  border-top: 1px solid var(--brass-hairline);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--brass-hairline);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  font-variant: small-caps;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 3px;
}
.footer-brand-tag {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.25rem;
}
.footer-brand-desc {
  font-size: 0.9375rem;
  color: rgba(247,244,238,0.62);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 32px;
  height: 32px;
  border: 1px solid var(--brass-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,244,238,0.38);
  transition: all var(--ease);
}
.social-link:hover {
  border-color: var(--brass);
  color: var(--brass);
}

/* Small caps headings in footer */
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.25rem;
  font-variant: small-caps;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col li a,
.footer-col li span {
  font-size: 0.875rem;
  color: rgba(247,244,238,0.62);
  transition: color var(--ease);
  line-height: 1.5;
}
.footer-col li a:hover { color: rgba(247,244,238,0.7); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copyright {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(247,244,238,0.18);
}
.footer-chamber {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(194,168,120,0.32);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* ============================================================
   MOBILE STICKY CTA BAR — slim, editorial
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(12,20,16,0.97);
  border-top: 1px solid var(--brass-hairline);
  padding: 0.75rem 1.25rem;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mobile-cta-bar .btn {
  flex: 1;
  padding: 0.75rem 0.75rem;
}
.mobile-cta-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid var(--brass-hairline);
  color: var(--brass);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  transition: all var(--ease);
  white-space: nowrap;
}
.mobile-cta-call:hover { border-color: var(--brass); background: rgba(194,168,120,0.07); }

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 62px; }
}


/* ============================================================
   PARALLAX
   ============================================================ */
.parallax-img { will-change: transform; }


/* ============================================================
   MOBILE FINE-TUNING
   ============================================================ */
@media (max-width: 640px) {
  :root { --section-v: clamp(60px, 12vw, 100px); }

  .eyebrow { letter-spacing: 0.12em; }

  .hero-headline { font-size: clamp(2.6rem, 10vw, 4rem); }

  .offer-step { grid-template-columns: 2.5rem 1fr; gap: 0 1rem; }

  .why-pillar { grid-template-columns: 1fr; gap: 0.35rem 0; }

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

  .gallery-item:nth-child(6) { aspect-ratio: 4/3; }

  .faq-question { font-size: 0.95rem; }
}


/* ============================================================
   MOBILE OPTIMIZATION PASS (post-readability bump)
   Overflow fixes, 44px+ tap targets, heading floors, safe-area.
   Appended last so it layers over earlier rules where intended.
   ============================================================ */

/* Custom select arrow — larger + nudged in, easier to aim on touch */
.select-wrap::after {
  border-left-width: 5px;
  border-right-width: 5px;
  border-top-width: 6px;
  right: 2px;
}

@media (max-width: 768px) {
  /* Sticky bar clearance + iPhone home-indicator safe area */
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .mobile-cta-bar { padding-bottom: calc(0.75rem + env(safe-area-inset-bottom)); }
  /* Sticky bar buttons — comfortable touch height */
  .mobile-cta-bar .btn,
  .mobile-cta-call { min-height: 46px; }
  /* Footer contact/hours links — real tap area for tel:/mailto: */
  .footer-col ul { gap: 0.85rem; }
  .footer-col li a,
  .footer-col li span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  /* Gallery: captions visible on touch (no hover); bigger lightbox close */
  .gallery-caption { opacity: 1; }
  .lightbox-close { width: 48px; height: 48px; top: 1rem; right: 1rem; }
}

@media (max-width: 640px) {
  /* Heading floors so display type breathes on small phones */
  .hero-headline {
    font-size: clamp(2.15rem, 9vw, 3.4rem);
    line-height: 1.08;
    overflow-wrap: break-word;
  }
  h2 { font-size: clamp(1.85rem, 7.5vw, 2.4rem); }
  .offer-left h2,
  .proof-left h2,
  .booking-left h2,
  .gallery-header-left h2,
  .why-header-left h2,
  .cta-inner h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  /* Micro-labels — slightly more legible */
  .form-row label { font-size: 10.5px; letter-spacing: 0.2em; }
  .footer-col h4 { font-size: 10.5px; letter-spacing: 0.22em; }
  .form-error { font-size: 0.82rem; }
}

@media (max-width: 480px) {
  /* PRIMARY OVERFLOW FIX — long CTA label wraps (scoped; NOT the nav/bar pills) */
  .btn-ghost,
  .btn-ghost-dark {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    letter-spacing: 0.16em;
    padding: 0.95rem 1.5rem;
    min-height: 48px;
    max-width: 100%;
  }
  /* Keep the slim sticky-bar button single-line (short label) */
  .mobile-cta-bar .btn { white-space: nowrap; }
  /* Hero CTA stacks full-width above the call link */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .hero-actions .btn-ghost { width: 100%; }
  .hero-call-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 44px;
  }
  /* Nav: fit logo + CTA on one row at 320px; raise CTA to a 44px touch target */
  .nav-inner { gap: 0.75rem; }
  .nav-logo { min-width: 0; }
  .nav-logo-name {
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-cta {
    flex-shrink: 0;
    padding: 0 1.1rem;
    min-height: 44px;
    letter-spacing: 0.14em;
  }
  /* Form fields — comfortable touch height (font stays 1rem to avoid iOS zoom) */
  .form-row input,
  .form-row select { padding: 0.85rem 0; min-height: 44px; }
  .form-row select { padding-right: 1.5rem; }
}
