/* ═══════════════════════════════════════════════
   PROMO BANNER
═══════════════════════════════════════════════ */
#promoBanner {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1001; /* above nav */
  background: #0a0a0a;
  color: #fff;
  padding: 12px 20px;
  text-align: center;
  display: none;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08), 0 10px 30px rgba(0,0,0,0.18);
}
#promoBanner.visible { display: block !important; }
.promo-inner {
  min-height: 24px; max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.promo-link {
  display: flex; align-items: baseline; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  color: #fff; text-align: center; text-decoration: none;
}
.promo-badge {
  color: var(--gold);
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap; flex-shrink: 0;
}
.promo-text {
  font-size: 16px; display: flex; gap: 8px; align-items: baseline; justify-content: center; flex-wrap: wrap;
}
.promo-text strong { font-weight: 750; }
.promo-text span { color: rgba(255,255,255,0.74); font-size: 14px; }
.promo-cta {
  color: #fff;
  font-size: 14px; font-weight: 800;
  text-decoration: underline; text-underline-offset: 3px;
  padding: 0;
  white-space: nowrap; flex-shrink: 0;
  transition: color 0.2s;
}
.promo-link:hover .promo-cta { color: var(--gold-light); }
.promo-countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid rgba(0,191,207,0.45);
  border-radius: 999px;
  background: rgba(0,191,207,0.10);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.promo-countdown-label {
  color: rgba(255,255,255,0.62);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.promo-countdown-time { color: var(--gold-light); }
/* Push nav + content down when banner is visible */
body.promo-active .nav { top: var(--promo-height, 52px); }
body.promo-active .hero { padding-top: var(--promo-height, 52px); }

@media (max-width: 720px) {
  #promoBanner { padding: 10px 12px; }
  .promo-inner { gap: 6px; }
  .promo-link { gap: 5px 8px; }
  .promo-badge { font-size: 10px; width: 100%; }
  .promo-text {
    min-width: 0;
    width: 100%;
    gap: 2px;
    line-height: 1.25;
  }
  .promo-text strong,
  .promo-text span { display: block; width: 100%; }
  .promo-text strong { font-size: 15px; }
  .promo-text span { font-size: 12px; }
  .promo-cta { font-size: 12px; }
  .promo-countdown { margin-top: 2px; padding: 3px 9px; font-size: 11px; }
  .promo-countdown-label { font-size: 9px; }
  body.promo-active .nav { top: var(--promo-height, 92px); }
  body.promo-active .hero { padding-top: var(--promo-height, 92px); }
}

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

:root {
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --warm-bg: #F4F5F6;
  --stone: #E2E5E8;
  --text: #1A1A1A;
  --text-light: #555;
  --text-muted: #888;
  --black: #1A1A1A;
  --gold: #00BFCF;
  --gold-light: #7FD9E2;
  --gold-dark: #0099AA;
  --accent: #9CA3AF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans); color: var(--text); background: var(--white);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== REVEAL ANIMATIONS ===== */
html.js-loaded .reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
html.js-loaded .reveal.visible {
  opacity: 1; transform: translateY(0);
}
html.js-loaded .reveal:nth-child(2) { transition-delay: 0.1s; }
html.js-loaded .reveal:nth-child(3) { transition-delay: 0.2s; }

/* ===== GRAIN TEXTURE ===== */
.hero-grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 500; font-size: 14px;
  letter-spacing: 0.04em; border-radius: 4px;
  padding: 14px 32px; transition: all 0.35s var(--ease);
  cursor: pointer; border: none; text-decoration: none;
  position: relative;
}
.btn-primary {
  background: var(--black); color: var(--white);
}
.btn-primary:hover {
  background: #333; transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.btn-outline {
  background: transparent; color: var(--black); border: 1.5px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-light {
  background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12); border-color: var(--white);
}
.btn-nav {
  padding: 10px 24px; font-size: 13px;
  background: var(--gold); color: var(--white); border-radius: 4px;
}
.btn-nav:hover { background: var(--gold-dark); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 48px; font-size: 16px; letter-spacing: 0.06em; }
.btn-full { width: 100%; }

/* ===== NAV ===== */
/* ═══════════════════════════════════════════════
   NAV — Premium floating navigation
═══════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  padding: 8px 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 0;
}

/* Logo */
.nav-logo { flex: 0 0 auto; margin-right: auto; text-decoration: none; }
.nav-logo img {
  height: 36px; display: block;
  transition: filter 0.4s, opacity 0.4s;
}
.nav:not(.scrolled) .nav-logo img { filter: brightness(0) invert(1); }
.nav.scrolled .nav-logo img { filter: none; }

/* Desktop link list */
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.nav-link {
  display: flex; align-items: center; gap: 4px;
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.01em;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px; border-radius: 100px;
  text-decoration: none;
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}
.nav.scrolled .nav-link { color: var(--text); }
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.12); }
.nav.scrolled .nav-link:hover { color: var(--black); background: rgba(0,0,0,0.05); }
.nav-chevron { transition: transform 0.25s var(--ease); flex-shrink: 0; }

/* Dropdown trigger */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown:hover .nav-chevron { transform: rotate(180deg); }
.nav-has-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

/* Dropdown panel */
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 0;
  transform: translateY(-8px);
  min-width: 300px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 24px 64px rgba(0,0,0,0.14);
  border: 1px solid rgba(0,0,0,0.06);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 100;
  padding: 10px;
}
.nav-dropdown-sm { min-width: 220px; }
/* Arrow pointer — aligned to trigger text (~24px from left edge of item) */
.nav-dropdown::before {
  content: '';
  position: absolute; top: -6px; left: 24px;
  transform: rotate(45deg);
  width: 12px; height: 12px;
  background: #fff; border-left: 1px solid rgba(0,0,0,0.06); border-top: 1px solid rgba(0,0,0,0.06);
  border-radius: 2px;
}
.nav-dropdown-inner { display: flex; flex-direction: column; gap: 2px; }
.nav-drop-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 12px;
  text-decoration: none; color: var(--text);
  transition: background 0.2s;
}
.nav-drop-item:hover { background: var(--off-white); }
.nav-drop-icon { font-size: 18px; flex-shrink: 0; line-height: 1; }
.nav-drop-item strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--black); line-height: 1.3; }
.nav-drop-item small { display: block; font-size: 11.5px; color: var(--text-light); margin-top: 1px; }

/* Desktop CTAs */
.nav-ctas {
  display: flex; align-items: center; gap: 8px; margin-left: 16px; flex-shrink: 0;
}
.nav-signup-btn {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.9);
  font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 100px;
  cursor: pointer; white-space: nowrap;
  transition: all 0.25s var(--ease);
  font-family: var(--sans);
  letter-spacing: 0.01em;
}
.nav.scrolled .nav-signup-btn {
  border-color: rgba(0,0,0,0.18);
  color: var(--text);
}
.nav-signup-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}
.nav.scrolled .nav-signup-btn:hover {
  background: var(--off-white);
  border-color: rgba(0,0,0,0.25);
  color: var(--black);
}
.nav-book-btn {
  background: var(--gold);
  color: #fff; font-size: 13px; font-weight: 700;
  padding: 9px 22px; border-radius: 100px;
  text-decoration: none; white-space: nowrap;
  letter-spacing: 0.02em;
  transition: background 0.25s var(--ease), transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.nav-book-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  cursor: pointer; padding: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  flex-shrink: 0;
}
.nav.scrolled .nav-hamburger {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.12);
}
.nav-hamburger:hover { transform: scale(1.05); }
.ham-bar {
  display: block; width: 18px; height: 1.5px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav.scrolled .ham-bar { background: var(--black); }
.nav-hamburger.open .ham-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open .ham-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open .ham-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   MOBILE MENU — full-screen slide-in panel
═══════════════════════════════════════════════ */
.mobile-menu-overlay {
  position: fixed; inset: 0; z-index: 1098;
  background: rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
  backdrop-filter: blur(4px);
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 1099;
  display: flex; flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.32, 0, 0.15, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-inner {
  display: flex; flex-direction: column;
  height: 100%; padding: 0;
}
/* X close button — top right, no logo */
.mobile-menu-close {
  position: absolute; top: 20px; right: 24px;
  width: 30px; height: 30px;
  background: rgba(0,0,0,0.07); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--black);
  font-size: 14px; font-weight: 500;
  line-height: 1;
  transition: background 0.2s;
  z-index: 10;
}
.mobile-menu-close:hover { background: rgba(0,0,0,0.12); }
/* Nav list — Apple style: big, left-aligned, stacked */
.mobile-nav {
  flex: 1;
  padding: 64px 32px 24px;
  display: flex; flex-direction: column;
}
/* Top-level items */
.mobile-nav-top {
  display: block;
  font-family: var(--serif);
  font-size: 28px; font-weight: 400;
  color: var(--black);
  line-height: 1.15;
  padding: 10px 0;
  text-decoration: none;
  background: none; border: none;
  text-align: left; width: 100%;
  cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.mobile-nav-top:last-of-type { border-bottom: none; }
.mobile-nav-top:hover { color: var(--gold); }
/* Nested services — slides open */
.mobile-services-nest {
  display: flex; flex-direction: column; gap: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.mobile-services-nest.open { max-height: 600px; }
.mobile-nav-sub {
  display: block;
  font-size: 17px; font-weight: 400;
  color: var(--text-light);
  padding: 9px 0 9px 20px;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-sub:hover { color: var(--black); }
/* Services + Locations toggle arrows */
#mobileServicesToggle,
#mobileLocationsToggle { position: relative; }
#mobileServicesToggle::after,
#mobileLocationsToggle::after {
  content: '';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 10px; height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform-origin: center;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.3s var(--ease);
}
#mobileServicesToggle[aria-expanded="true"]::after,
#mobileLocationsToggle[aria-expanded="true"]::after {
  transform: translateY(-35%) rotate(225deg);
}
/* Bottom CTAs */
.mobile-menu-ctas {
  padding: 20px 32px 48px;
  display: flex; flex-direction: column; gap: 12px;
  flex-shrink: 0;
}
.btn-gold-full {
  width: 100%; padding: 18px;
  background: var(--gold); color: #fff;
  border: none; border-radius: 100px;
  font-size: 17px; font-weight: 700;
  cursor: pointer; font-family: var(--sans);
  letter-spacing: 0.01em;
  transition: background 0.25s;
}
.btn-gold-full:hover { background: var(--gold-dark); }
.btn-outline-full {
  width: 100%; padding: 17px;
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.2);
  border-radius: 100px; color: var(--black);
  font-size: 17px; font-weight: 600;
  text-align: center; text-decoration: none;
  display: block;
  transition: border-color 0.25s, background 0.25s;
}
.btn-outline-full:hover { border-color: var(--black); background: var(--off-white); }

/* Responsive — hide desktop links on mobile, show hamburger */
@media (max-width: 900px) {
  .nav-links, .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-book-btn { display: inline-flex !important; }
  .nav-inner {
    padding: 0 18px;
    gap: 10px;
  }
  .nav-logo img {
    height: 30px;
  }
  .mobile-book-btn {
    margin-right: 0;
    padding: 9px 14px !important;
    font-size: 12px !important;
    flex-shrink: 0;
  }
}
.mobile-book-btn {
  display: none;
  font-size: 13px !important;
  padding: 9px 18px !important;
  border-radius: 100px !important;
  margin-right: 10px;
}

/* ===== HERO — FULL BLEED ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: flex-start;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  will-change: transform;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.72) 0%,
    rgba(10, 10, 10, 0.45) 50%,
    rgba(10, 10, 10, 0.30) 100%
  );
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 680px; padding: 0 24px;
  margin-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
  padding-top: 80px;
}
.hero-tag {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 24px; font-weight: 500;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(42px, 6vw, 80px);
  line-height: 1.05; font-weight: 400; margin-bottom: 28px;
  color: #fff; letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px); color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 44px; max-width: 520px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-primary {
  background: var(--gold); color: #fff;
}
.hero .btn-primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 30px rgba(0, 191, 207, 0.3);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--black); color: var(--white);
  padding: 40px 0; position: relative; z-index: 10;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
.stat-number {
  display: block; font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px); font-weight: 400;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5); font-weight: 500;
}

/* ===== FEATURED IN ===== */
.featured-in {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 24px 0;
  background: var(--white);
}
.featured-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.featured-in-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-muted); font-weight: 500; white-space: nowrap;
}
.press-logo {
  display: block;
  filter: grayscale(100%) opacity(0.45);
  transition: filter 0.3s;
  max-width: 120px;
}
.press-logo:hover { filter: grayscale(100%) opacity(0.7); }
/* legacy text fallback */
.logo-text {
  font-size: 17px; font-weight: 600; color: var(--accent);
  letter-spacing: 0.06em; transition: color 0.3s;
}
.logo-text:hover { color: var(--gold); }

/* ===== SECTION COMMON ===== */
.section-tag {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 500;
  text-align: center;
}
section > .container > h2,
section > .container > h2.reveal {
  font-family: var(--serif); font-size: clamp(36px, 4.5vw, 56px);
  text-align: center; margin-bottom: 64px; font-weight: 400;
  letter-spacing: -0.01em; line-height: 1.1;
}

/* ===== SERVICES ===== */
/* ===== SERVICES — CARD GRID ===== */
.services {
  background: var(--black);
  margin: 0;
  padding: 0;
}

.services-header {
  text-align: center;
  padding: 80px 24px 56px;
  background: var(--black);
}
.services-header h2 {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.services-subhead {
  color: rgba(255,255,255,0.5);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 21px);
  margin-top: 12px;
  letter-spacing: 0.01em;
  font-weight: 400;
}

/* Grid: 3 equal cols desktop, 2-col tablet, 1-col mobile */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

/* Featured card — equal to others */
.svc-card.svc-featured { grid-column: span 1; }

/* Base card — uses relative positioning so content can flow naturally */
.svc-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 480px; /* collapsed height */
  transition: min-height 0.5s cubic-bezier(0.4,0,0.2,1);
}
.svc-card.open { min-height: 600px; }

.svc-card:hover .svc-bg { transform: scale(1.06); }
.svc-card:hover .svc-overlay { opacity: 0.6; }

.svc-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.svc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.97) 0%,
    rgba(0,0,0,0.75) 40%,
    rgba(0,0,0,0.25) 75%,
    rgba(0,0,0,0.05) 100%
  );
  transition: opacity 0.4s;
  opacity: 0.82;
  z-index: 1;
}

/* Content sits in normal flow (not absolute) so card grows with it */
.svc-content {
  /* Absolute overlay so the card bg image always fills the full height */
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 24px 28px 28px;
  z-index: 2;
}

/* TOP ROW: title+tagline left, duration pill right */
.svc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.svc-top-left {
  display: flex; flex-direction: column; gap: 6px;
}

.svc-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: #fff;
  background: var(--gold); padding: 5px 12px; border-radius: 100px;
  align-self: flex-start;
}
.svc-tag-gold { background: var(--gold-dark); }

.svc-duration {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.35);
  padding: 5px 12px; border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
}

/* BOTTOM ROW: name, tagline, expandable, actions */
.svc-bottom {
  display: flex; flex-direction: column; gap: 8px;
}

.svc-card h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  color: var(--white);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.svc-featured h3 { font-size: clamp(26px, 3vw, 38px); }

.svc-tagline {
  font-size: clamp(13px, 1.4vw, 16px);
  color: rgba(255,255,255,0.7);
  margin: 0;
  font-style: italic;
  line-height: 1.4;
}

/* Expandable details */
.svc-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s;
  opacity: 0;
}
.svc-card.open .svc-details {
  max-height: 400px;
  opacity: 1;
}
.svc-details p {
  font-size: 14px; color: rgba(255,255,255,0.8);
  line-height: 1.75; margin: 10px 0 12px;
}
.svc-specs-row {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--gold);
  font-weight: 600; margin-bottom: 10px;
}
.svc-benefits {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.svc-benefits li {
  font-size: 13px; color: rgba(255,255,255,0.75);
  padding-left: 18px; position: relative; line-height: 1.5;
}
.svc-benefits li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--gold); font-weight: 700; font-size: 11px;
}

.svc-actions {
  display: flex; align-items: center; gap: 16px;
  margin-top: 14px; flex-wrap: wrap;
}

.svc-btn-book {
  display: inline-block;
  background: var(--gold);
  color: #fff; font-family: var(--sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 11px 24px; border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.svc-btn-book:hover { background: var(--gold-light); transform: translateY(-1px); }

.svc-btn-more {
  background: none; border: none; cursor: pointer;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  padding: 0;
  white-space: nowrap;
}
.svc-btn-more:hover { color: rgba(255,255,255,0.9); }
.svc-card.open .svc-btn-more { color: var(--gold); }

.svc-scroll-hint {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: rgba(255,255,255,0.35); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0 0 20px;
  animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(4px); opacity: 0.6; }
}

/* Tablet: 2-col grid */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc-card { min-height: 340px; }
  .svc-card.open { min-height: 520px; }
  .svc-card.svc-featured { grid-column: span 2; }
  .svc-content { padding: 20px 24px 24px; }
  .svc-benefits { grid-template-columns: 1fr; }
}

/* Mobile: single column, cards grow freely */
@media (max-width: 540px) {
  .services-header { padding: 72px 24px 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card, .svc-card.svc-featured {
    grid-column: span 1;
    min-height: 320px;
  }
  .svc-card.open { min-height: unset; }  /* let it grow naturally on mobile */
  .svc-content { padding: 20px 20px 24px; min-height: unset; }
  .svc-card h3 { font-size: 28px; }
  .svc-featured h3 { font-size: 28px; }
  .svc-benefits { grid-template-columns: 1fr; }
}

/* Remove old tab/panel rules */
.service-panel { display: none; }
.services-tabs { display: none; }

/* ===== EXPERIENCE ===== */
.experience { padding: 120px 0; background: var(--warm-bg); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.step {
  text-align: center;
  transition: transform 0.4s var(--ease);
}
.step:hover { transform: translateY(-6px); }
.step-number {
  font-family: var(--serif); font-size: 56px; color: var(--gold);
  margin-bottom: 20px; line-height: 1; font-weight: 400;
}
.step h3 {
  font-family: var(--serif); font-size: clamp(22px, 2vw, 26px);
  margin-bottom: 14px; font-weight: 400;
}
.step p {
  color: var(--text-light); font-size: 15px; line-height: 1.8;
  max-width: 320px; margin: 0 auto;
}

/* Contrast therapy service page refinements */
.service-experience-section {
  padding: 96px 24px;
  background: var(--warm-bg);
}
.service-experience-section .container {
  max-width: 1120px;
  margin: 0 auto;
}
.service-experience-section h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-align: left;
}
.service-section-intro {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 0 54px;
}
.service-visual-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.service-visual-step img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  margin-bottom: 28px;
  box-shadow: 0 18px 48px rgba(0,0,0,.08);
}
.service-visual-step--contain img {
  object-fit: contain;
  background: #f2f4f4;
  padding: 10px;
}
.service-visual-step .step-number {
  color: var(--cyan);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 12px;
}
.service-visual-step h3 {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.02;
  margin: 0 0 14px;
}
.service-visual-step p {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}
.contrast-page .locations .location-hours,
.contrast-page .locations .location-services,
.contrast-page .locations .loc-card-phone,
.contrast-page .locations .loc-btn-dir,
.contrast-page .locations .location-explore {
  display: none;
}
.contrast-page .locations .loc-card-actions {
  grid-template-columns: 1fr !important;
  margin-top: 22px;
  margin-bottom: 0;
}
.contrast-page .locations .loc-btn-book {
  width: 100%;
}
.service-trust-proof {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 auto 28px;
}
.service-trust-proof span { color: var(--gold); }
.service-final-cta {
  padding: 92px 0 96px;
  background: #0a0a0a;
  text-align: center;
}
.service-final-cta .container {
  max-width: 760px;
  padding: 0 24px;
}
.service-final-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 14px;
}
.service-final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  color: #fff;
  font-weight: 400;
  line-height: 1.02;
  margin-bottom: 16px;
  letter-spacing: 0;
}
.service-final-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  margin: 0 auto 24px;
  max-width: 440px;
}
.service-final-button {
  display: inline-block;
  background: #fff;
  color: #1A1A1A;
  padding: 16px 44px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .service-visual-steps { grid-template-columns: 1fr; gap: 58px; }
  .service-visual-step img { aspect-ratio: 1.12 / 1; border-radius: 24px; margin-bottom: 24px; }
}
@media (max-width: 520px) {
  .service-experience-section { padding: 72px 20px; }
  .service-trust-proof { display: flex; align-items: flex-start; text-align: left; border-radius: 14px; padding: 12px 14px; }
  .service-final-cta {
    padding: 68px 0 76px;
  }
  .service-final-cta .container {
    padding: 0 28px;
  }
  .service-final-cta h2 {
    font-size: 42px;
    line-height: 1.04;
    margin-bottom: 12px;
  }
  .service-final-sub {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px;
  }
  .service-final-cta .service-trust-proof {
    max-width: 300px;
    margin: 0 auto 22px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }
  .service-final-cta .service-trust-proof small {
    color: rgba(255,255,255,.72);
    font-size: 12px;
    font-weight: 600;
  }
  .service-final-button {
    width: min(100%, 260px);
    padding: 15px 28px;
  }
  .cryo-experience-section .container > h2 {
    font-size: 36px;
    line-height: 1.08;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: anywhere;
  }
  .cryo-experience-section .service-section-intro,
  .cryo-experience-section .service-visual-step p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

/* ===== PRICING ===== */
.pricing { padding: 100px 24px; background: var(--white); }
.pricing .container { max-width: 1100px; margin: 0 auto; }
.pricing-scroll-wrap { width: 100%; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 0;
}
@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.price-card {
  width: 100%;
}

.price-card {
  background: var(--off-white); border-radius: 16px; overflow: hidden;
  border: 1.5px solid #eee; position: relative;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  /* sizing now handled by flex in .pricing-grid */
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(165deg, #F0FAFB 0%, #FFFFFF 40%, #FFF 100%);
  box-shadow: 0 4px 30px rgba(0, 191, 207, 0.12);
}
.price-card.featured:hover {
  box-shadow: 0 20px 60px rgba(0, 191, 207, 0.2);
}
.price-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: var(--white);
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 6px 16px; border-radius: 100px;
}
.price-card-header { padding: 36px 28px 0; }
.price-card-header h3 {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  margin-bottom: 4px; letter-spacing: -0.01em;
}
.price-subtitle { font-size: 14px; color: var(--text-muted); }
.price-card-body { padding: 24px 28px; flex: 1; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0; font-size: 14px;
}
.price-row.highlight { font-weight: 600; color: var(--gold-dark); }
.price { font-weight: 600; font-size: 16px; }
.price small { font-weight: 400; font-size: 12px; color: var(--text-muted); }
.save-badge { color: #059669 !important; font-size: 14px; font-weight: 700; }
.price-divider { height: 1px; background: #eee; margin: 12px 0; }
.membership-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-muted); font-weight: 600; margin-bottom: 4px;
}
.price-card > .btn { margin: 0 28px 28px; }
.price-card > .btn.btn-full { width: auto; }
.price-card > .btn.btn-primary {
  background: transparent; color: var(--gold-dark); border: 1.5px solid var(--gold);
  font-weight: 500;
}
.price-card > .btn.btn-primary:hover {
  background: var(--gold); color: var(--white); box-shadow: 0 8px 25px rgba(0,191,207,0.25);
}
.pricing-note { text-align: center; color: var(--text-muted); font-size: 14px; }
.pricing-note a {
  text-decoration: underline; color: var(--gold); transition: color 0.3s;
}
.pricing-note a:hover { color: var(--gold-dark); }

/* ===== LOCATIONS ===== */
.locations { padding: 120px 0; background: var(--warm-bg); }
.locations .container { overflow: visible; }
.locations-scroll-wrap {
  overflow-x: visible;
}
/* Mobile: restore horizontal scroll */
@media (max-width: 900px) {
  .locations-scroll-wrap {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -24px;
    margin-right: -24px;
    padding-bottom: 16px;
  }
  .locations-scroll-wrap::-webkit-scrollbar { display: none; }
  .locations-grid {
    display: flex;
    flex-direction: row;
    width: max-content;
    padding: 0 24px;
    gap: 16px;
  }
  .location-card { flex: 0 0 300px; width: 300px; }
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: auto;
  padding: 0;
}
.location-card {
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 16px;
  padding: 0;
  position: relative;
  border: 1px solid #eee;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.location-pin {
  color: var(--gold); margin-bottom: 16px;
}
.location-badge {
  position: absolute; top: 24px; right: 24px;
  font-size: 12px; font-weight: 600; color: var(--gold);
  background: rgba(0, 191, 207, 0.1);
  padding: 4px 12px; border-radius: 100px;
}
.location-card h3 {
  font-family: var(--serif); font-size: 30px; font-weight: 400;
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.location-card h3 span {
  font-family: var(--sans); font-size: 14px; color: var(--text-muted); font-weight: 400;
}
.location-address {
  font-size: 14px; color: var(--text-light); margin-bottom: 16px; line-height: 1.6;
}
.location-hours { margin-bottom: 20px; }
.location-hours p { font-size: 13px; color: var(--text-light); margin-bottom: 2px; }
.location-hours strong { font-weight: 600; color: var(--text); }
.location-services {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px;
}
.location-services span {
  font-size: 11px; padding: 5px 12px; border-radius: 100px;
  background: var(--warm-bg); color: var(--text-light);
  font-weight: 500; letter-spacing: 0.02em;
  transition: all 0.3s;
}
.location-services span:hover {
  background: var(--gold); color: #fff;
}
.location-actions {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.location-phone {
  font-size: 13px; color: var(--text-light); margin-right: auto;
  transition: color 0.3s;
}
.location-phone:hover { color: var(--gold); }

/* ===== GALLERY ===== */
.gallery { padding: 120px 0; background: var(--black); }
.gallery .section-tag { color: var(--gold); }
.gallery h2 { color: var(--white); }

/* Bento grid — 4-image homepage collage */
.gallery-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 10px;
  margin-top: 60px;
}
.bento-item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
}
.bento-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s;
  display: block;
}
.bento-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3));
  opacity: 0; transition: opacity 0.4s;
  border-radius: 8px;
}
.bento-item:hover::after { opacity: 1; }
.bento-item:hover img { transform: scale(1.07); filter: brightness(1.06); }

/* Layout: item 1 = wide (col 1-2) + tall (row 1-2) */
.bento-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
/* item 2: col 3, row 1 */
/* item 3: col 4, row 1 */
/* item 4 = wide (col 3-4), row 2 */
.bento-item:nth-child(4) {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .gallery-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .bento-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/7;
  }
  .bento-item:nth-child(4) {
    grid-column: span 2;
    aspect-ratio: 16/7;
  }
  .bento-item { aspect-ratio: 1/1; }
}
@media (max-width: 540px) {
  .gallery-bento {
    grid-template-columns: 1fr;
  }
  .bento-item,
  .bento-item:nth-child(1),
  .bento-item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
}

/* Keep old gallery-grid for location pages */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 0;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}
.gallery-item.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }

/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: 120px 0; text-align: center;
  position: relative;
  background: #F4F5F6;
}
.social-proof::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('images/ang-float-1.jpg');
  background-size: cover; background-position: center;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.social-proof > * { position: relative; z-index: 1; }
.social-proof .container { position: relative; z-index: 1; }
.curry-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted); letter-spacing: 0.04em;
  margin-bottom: 56px; padding: 10px 24px;
  border: 1px solid rgba(0, 191, 207, 0.3); border-radius: 100px;
  background: rgba(0, 191, 207, 0.05);
}
.curry-badge strong { color: var(--text); }

.testimonials {
  position: relative; min-height: 180px; max-width: 720px; margin: 0 auto;
}
.testimonial-quote-mark {
  font-family: var(--serif); font-size: 160px; line-height: 0.8;
  color: var(--gold); opacity: 0.15;
  position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
  pointer-events: none; user-select: none;
}
.testimonial { display: none; animation: fadeTestimonial 0.6s var(--ease-out); }
.testimonial.active { display: block; }
@keyframes fadeTestimonial {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.testimonial blockquote {
  font-family: var(--serif); font-size: clamp(22px, 3vw, 32px);
  line-height: 1.45; font-weight: 400; font-style: italic;
  margin-bottom: 24px; color: var(--text);
}
.testimonial cite {
  font-size: 14px; color: var(--gold); font-style: normal;
  font-weight: 500; letter-spacing: 0.04em;
}

.testimonial-dots { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ddd; border: none; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.dot:hover { background: var(--gold-light); }
.dot.active { background: var(--gold); transform: scale(1.2); }

/* ===== SIGNUP WIDGET ===== */
.signup-section {
  position: relative;
  padding: 100px 24px;
  background: var(--black);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.signup-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: blur(12px) saturate(0.5);
  transform: scale(1.08);
  opacity: 0.18;
  pointer-events: none; z-index: 0;
}

.signup-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.9) 100%);
  z-index: 1;
}

.signup-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 540px;
  text-align: center;
}

.signup-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,191,207,0.12);
  border: 1px solid rgba(0,191,207,0.35);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 24px;
}
.signup-badge-icon { font-size: 16px; }

.signup-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.signup-headline em {
  font-style: italic;
  color: var(--gold);
}

.signup-sub {
  font-size: 16px; color: rgba(255,255,255,0.6);
  line-height: 1.7; margin-bottom: 36px;
  max-width: 420px; margin-left: auto; margin-right: auto;
}
.signup-sub strong { color: rgba(255,255,255,0.85); }

/* Form */
.signup-form { margin-bottom: 8px; }

.signup-field-wrap {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 0 0 0 18px;
  margin-bottom: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.signup-field-wrap:focus-within {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}

.signup-field-icon { font-size: 18px; margin-right: 10px; flex-shrink: 0; }

.signup-field-wrap input {
  flex: 1;
  background: none; border: none; outline: none;
  font-family: var(--sans); font-size: 16px;
  color: var(--white);
  padding: 18px 0;
  caret-color: var(--gold);
}
.signup-field-wrap input::placeholder { color: rgba(255,255,255,0.35); }

/* Inline email row */
.signup-field-row { padding-right: 6px; }
.signup-email-btn {
  background: rgba(255,255,255,0.1);
  border: none; border-radius: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 13px; font-weight: 600;
  padding: 10px 18px; cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.signup-email-btn:hover { background: var(--gold); color: #fff; }

.signup-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, #00bfcf 100%);
  color: #fff;
  font-family: var(--sans); font-size: 16px; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 18px 32px;
  border: none; border-radius: 12px;
  cursor: pointer; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  margin-bottom: 10px;
  box-shadow: 0 8px 32px rgba(0,191,207,0.25);
}
.signup-cta-btn:hover { opacity: 0.92; transform: translateY(-2px); }
.signup-cta-btn:active { transform: translateY(0); }

.signup-legal {
  font-size: 11px; color: rgba(255,255,255,0.3);
  line-height: 1.6; margin: 0 0 4px;
}

.signup-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 24px 0 20px;
  color: rgba(255,255,255,0.2); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.signup-divider::before, .signup-divider::after {
  content: ''; flex: 1;
  height: 1px; background: rgba(255,255,255,0.1);
}
.signup-divider span { white-space: nowrap; }

/* Success state */
.signup-success { animation: fadeIn 0.5s var(--ease-out); }
@keyframes fadeIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }
.signup-success-icon { font-size: 56px; margin-bottom: 20px; }

/* Trust signals */
.signup-trust {
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
  font-size: 12px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

@media (max-width: 540px) {
  .signup-section { padding: 72px 20px; }
  .signup-headline { font-size: 40px; }
  .signup-trust { gap: 16px; flex-direction: column; align-items: center; }
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 140px 0; background: var(--black); color: var(--white);
  text-align: center; position: relative; overflow: hidden;
}
.final-cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
.final-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
  z-index: 1;
}
.final-cta .hero-grain { z-index: 2; }
.final-cta .container { position: relative; z-index: 3; }
.final-cta h2 {
  font-family: var(--serif); font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 16px; font-weight: 400; color: var(--white);
  letter-spacing: -0.01em;
}
.final-cta p {
  font-size: 18px; color: rgba(255,255,255,0.5); margin-bottom: 44px;
}
.final-cta .btn-primary {
  background: var(--gold); color: #fff;
}
.final-cta .btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 30px rgba(0, 191, 207, 0.3);
}

/* ===== POPUP MODAL — full screen ===== */
.popup-backdrop {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex;
  animation: popupFadeIn 0.4s var(--ease-out);
}
.popup-backdrop.hidden { display: none; }
@keyframes popupFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.popup-modal {
  position: relative;
  display: flex;
  width: 100%; height: 100%;
  /* no border-radius, no max-width — true full screen */
  border-radius: 0;
  overflow: hidden;
  animation: popupSlideUp 0.45s var(--ease-out);
}
@keyframes popupSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: none; opacity: 1; }
}

.popup-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.1); border: none;
  color: rgba(255,255,255,0.7); font-size: 22px; line-height: 1;
  width: 38px; height: 38px; border-radius: 50%;
  cursor: pointer; z-index: 10;
  transition: background 0.2s, color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.popup-close:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* Left: photo panel — desktop only */
.popup-left {
  position: relative;
  width: 45%;
  flex-shrink: 0;
  display: none;
}
.popup-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.popup-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 60%);
}
.popup-img-text {
  position: absolute; bottom: 36px; left: 32px; right: 32px; z-index: 2;
}
.popup-img-quote {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; line-height: 1.65;
  color: rgba(255,255,255,0.92); margin-bottom: 12px;
}
.popup-img-cite {
  font-size: 12px; color: var(--gold); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* Right: form panel — full screen on mobile */
.popup-right {
  flex: 1;
  background: #0a0a0a;
  padding: 60px 32px 40px;
  display: flex; flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}

.popup-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,191,207,0.12);
  border: 1px solid rgba(0,191,207,0.3);
  border-radius: 100px; padding: 6px 14px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 20px; align-self: flex-start;
}

/* Popup steps — only one visible at a time */
.popup-step { display: flex; flex-direction: column; }
.popup-step[hidden] { display: none !important; }
.popup-step-success { align-items: center; text-align: center; }

/* Step progress indicator */
.popup-progress {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.popup-progress-step {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.07em; color: rgba(255,255,255,0.3);
  white-space: nowrap;
}
.popup-progress-step span {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.popup-progress-step.active { color: var(--white); }
.popup-progress-step.active span { background: var(--gold); border-color: var(--gold); color: #fff; }
.popup-progress-step.done { color: var(--gold); }
.popup-progress-step.done span { background: var(--gold); border-color: var(--gold); color: #fff; }
.popup-progress-reward { color: var(--gold); font-weight: 700; }
.popup-progress-line {
  flex: 1; height: 1.5px;
  background: rgba(255,255,255,0.1);
  min-width: 20px;
}
.popup-progress-line-done { background: var(--gold); }
.popup-close-success {
  background: none; border: none; cursor: pointer;
  font-size: 13px; color: rgba(255,255,255,0.3);
  margin-top: 16px; text-decoration: underline;
  transition: color 0.2s;
}
.popup-close-success:hover { color: rgba(255,255,255,0.6); }

/* Returning visitor perks list */
.rv-perks {
  display: flex; flex-direction: column; gap: 14px;
  margin: 24px 0 28px;
  padding: 20px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.rv-perk {
  display: flex; align-items: flex-start; gap: 14px;
}
.rv-perk-icon {
  font-size: 22px; flex-shrink: 0; margin-top: 1px;
}
.rv-perk div {
  display: flex; flex-direction: column; gap: 2px;
}
.rv-perk strong {
  font-size: 14px; font-weight: 600; color: var(--white);
}
.rv-perk span {
  font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.4;
}

.popup-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 400; color: var(--white);
  line-height: 1.1; margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.popup-headline em { font-style: italic; color: var(--gold); }

.popup-sub {
  font-size: 15px; color: rgba(255,255,255,0.55);
  line-height: 1.65; margin-bottom: 28px;
}
.popup-sub strong { color: rgba(255,255,255,0.85); }

/* Fields */
.popup-field {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 0 0 0 14px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.popup-field:focus-within { border-color: var(--gold); }
.popup-field-icon { font-size: 16px; margin-right: 8px; flex-shrink: 0; }
.popup-field input {
  flex: 1; background: none; border: none; outline: none;
  font-family: var(--sans); font-size: 15px; color: var(--white);
  padding: 15px 0; caret-color: var(--gold);
}
.popup-field input::placeholder { color: rgba(255,255,255,0.3); }

.popup-field-row { padding-right: 6px; }
.popup-email-btn {
  background: rgba(255,255,255,0.08); border: none; border-radius: 7px;
  color: rgba(255,255,255,0.65); font-size: 13px; font-weight: 600;
  padding: 9px 16px; cursor: pointer;
  transition: background 0.2s, color 0.2s; white-space: nowrap;
}
.popup-email-btn:hover { background: var(--gold); color: #fff; }

.popup-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, #00bfcf 100%);
  color: #fff; font-family: var(--sans);
  font-size: 15px; font-weight: 700; letter-spacing: 0.03em;
  padding: 16px 28px; border: none; border-radius: 10px;
  cursor: pointer; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 6px 24px rgba(0,191,207,0.2);
  margin-bottom: 10px;
}
.popup-cta-btn:hover { opacity: 0.9; transform: translateY(-1px); }

.popup-legal {
  font-size: 11px; color: rgba(255,255,255,0.28);
  line-height: 1.6; margin: 0 0 4px;
}

.popup-divider {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.2); font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin: 20px 0 16px;
}
.popup-divider::before, .popup-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08);
}

.popup-skip, .popup-skip-sms {
  background: none; border: none; cursor: pointer;
  font-size: 12px; color: rgba(255,255,255,0.2);
  text-decoration: underline; padding: 0; margin-top: 16px;
  text-align: center; width: 100%;
  transition: color 0.2s;
}
.popup-skip:hover, .popup-skip-sms:hover { color: rgba(255,255,255,0.45); }

.popup-step-success {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; justify-content: center; flex: 1;
  animation: popupFadeIn 0.4s var(--ease-out);
}
.popup-success-icon { font-size: 52px; margin-bottom: 16px; }

.popup-trust {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  font-size: 11px; color: rgba(255,255,255,0.25);
  margin-top: auto; padding-top: 20px; letter-spacing: 0.04em;
}

/* Show left photo panel on desktop */
@media (min-width: 768px) {
  .popup-left { display: block; }
  .popup-right { max-width: none; margin: 0; padding: 64px 52px 48px; }
}

/* Mobile: full screen, centered content */
@media (max-width: 767px) {
  .popup-right { padding: 72px 28px 40px; justify-content: flex-start; }
  .popup-headline { font-size: 36px; }
}

/* ===== ORIGIN STORY ===== */
.origin-story {
  padding: 120px 0;
  background: var(--black);
  overflow: hidden;
}
.origin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.origin-text p.section-tag { color: var(--gold); }
.origin-text h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.15;
}
.origin-text h2 em { font-style: italic; color: var(--gold); }
.origin-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 18px;
}
.origin-text .btn-outline {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
}
.origin-text .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.origin-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.origin-image img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; display: block;
}
.origin-stat {
  position: absolute;
  bottom: 28px; left: 28px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex; flex-direction: column; gap: 2px;
}
.origin-stat-num {
  font-family: var(--serif);
  font-size: 32px; font-weight: 400;
  color: var(--gold); line-height: 1;
}
.origin-stat-label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.5);
  font-weight: 600;
}
@media (max-width: 768px) {
  .origin-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .origin-image { order: -1; }
  .origin-image img { aspect-ratio: 16/9; }
}

/* ===== BLOG ===== */
.blog-section {
  padding: 120px 0;
  background: var(--off-white);
}
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400; line-height: 1.2;
  letter-spacing: -0.01em;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
  border: 1px solid #eee;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.blog-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.blog-card-body {
  padding: 24px 24px 28px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.blog-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold);
}
.blog-card h3 {
  font-family: var(--serif);
  font-size: 20px; font-weight: 400;
  line-height: 1.35; color: var(--text);
  margin: 0;
}
.blog-card p {
  font-size: 14px; color: var(--text-light);
  line-height: 1.7; margin: 0; flex: 1;
}
.blog-read {
  font-size: 13px; font-weight: 600;
  color: var(--gold); margin-top: 4px;
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 480px; margin: 0 auto;
  }
  .blog-header { flex-direction: column; align-items: flex-start; }
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0 32px; background: #0F0F0F; color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 36px;
}
.footer-brand p {
  color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.7;
  margin-top: 16px; max-width: 280px;
}
.footer-brand img { filter: brightness(0) invert(1); opacity: 0.9; }
.footer-social { display: flex; gap: 16px; margin-top: 24px; }
.footer-social a {
  color: rgba(255,255,255,0.4); transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links h4 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
  font-weight: 600; margin-bottom: 8px; color: rgba(255,255,255,0.7);
}
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.4); transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

/* Newsletter */
.footer-newsletter {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 40px 0; margin-bottom: 32px;
}
.newsletter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.newsletter-text h4 {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: rgba(255,255,255,0.9); margin-bottom: 4px;
}
.newsletter-text p {
  font-size: 14px; color: rgba(255,255,255,0.4);
}
.newsletter-form {
  display: flex; gap: 10px; flex: 1; max-width: 420px;
}
.newsletter-form input {
  flex: 1; padding: 14px 18px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px; background: rgba(255,255,255,0.05);
  color: #fff; font-family: var(--sans); font-size: 14px;
  transition: border-color 0.3s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus {
  outline: none; border-color: var(--gold);
}
.newsletter-form .btn {
  background: var(--gold); color: #fff; white-space: nowrap;
}
.newsletter-form .btn:hover { background: var(--gold-dark); }

.footer-bottom {
  padding-top: 24px; text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content {
    margin-left: 24px; max-width: 100%;
    padding-right: 24px;
  }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .service-panel.active { grid-template-columns: 1fr; }
  .service-specs { flex-wrap: wrap; }
  .service-benefits { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  /* pricing-grid stays horizontal scroll on mobile — no override needed */
  /* locations-grid stays horizontal scroll on mobile */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: clamp(40px, 6vw, 56px); }

  .nav-toggle { display: block; z-index: 10; }
  .nav-links {
    display: none; position: absolute; top: 80px; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 24px;
    gap: 20px; border-bottom: 1px solid #eee;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  }
  /* mobile nav now handled by .mobile-menu panel */
}

@media (max-width: 600px) {
  .hero-bg {
    background-image: url('images/lobby-mission.jpg') !important;
    background-position: 80% center;
  }
  .hero-content {
    width: calc(100% - 48px);
    max-width: none;
    margin-left: 24px;
    padding-left: 0;
    padding-right: 0;
  }
  .hero-sub br { display: none; }
  .hero h1 { font-size: 32px; }
  .hero-sub {
    font-size: 14px;
    line-height: 1.55;
    max-width: 300px;
  }
  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0.02em;
  }
  .service-experience-section .container {
    padding-left: 0;
    padding-right: 0;
  }
  .service-visual-step p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .contrast-benefits h2,
  .contrast-benefits-intro {
    overflow-wrap: anywhere;
  }
  .contrast-benefits h2 {
    font-size: 42px;
    line-height: 1.04;
  }
  .featured-logos { gap: 24px; }
  .logo-text { font-size: 15px; }
  .tab { padding: 8px 18px; font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr; }
  .location-actions { flex-direction: column; align-items: flex-start; }
  .newsletter-inner { flex-direction: column; align-items: stretch; }
  .newsletter-form { max-width: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-number { font-size: clamp(36px, 8vw, 48px); }
}

/* ===== LOCATION PAGES ===== */

/* Location Hero */
.loc-hero {
  position: relative; min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.loc-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
}
.loc-hero-content {
  position: relative; z-index: 3; max-width: 700px; padding: 100px 24px 60px;
}
.loc-hero-content h1 {
  font-family: var(--serif); font-size: clamp(48px, 7vw, 88px);
  font-weight: 400; color: #fff; margin-bottom: 16px; line-height: 1.05;
}
.loc-hero-content h1 em { font-style: italic; color: var(--gold-light); }
.loc-hero-address {
  font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.loc-hero .btn-primary { background: var(--gold); color: #fff; }
.loc-hero .btn-primary:hover { background: var(--gold-dark); box-shadow: 0 8px 30px rgba(184,149,110,0.3); }

/* Gallery */
.loc-gallery { padding: 100px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 12px; overflow: hidden; aspect-ratio: 4/3;
  cursor: pointer; position: relative;
}
.gallery-item.gallery-wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s;
}
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.25));
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1.05); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw; max-height: 85vh; border-radius: 12px;
  object-fit: contain;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: none; border: none;
  color: rgba(255,255,255,0.8); cursor: pointer;
  font-size: 40px; transition: color 0.3s;
  z-index: 10;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: #fff; }
.lightbox-close { top: 24px; right: 32px; font-size: 48px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); font-size: 56px; }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); font-size: 56px; }

/* Location Services Grid */
.loc-services { padding: 100px 0; background: var(--warm-bg); }
.loc-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.loc-service-card {
  background: var(--white); border-radius: 16px; padding: 36px 28px;
  border: 1px solid #eee;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.loc-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.loc-service-card h3 {
  font-family: var(--serif); font-size: 24px; font-weight: 400;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.loc-service-card p {
  font-size: 14px; color: var(--text-light); line-height: 1.7;
}

/* Location Info */
.loc-info { padding: 100px 0; background: var(--white); }
.loc-info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.loc-info-details h2 {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 48px);
  font-weight: 400; margin-bottom: 36px; text-align: left;
}
.loc-detail-block { margin-bottom: 28px; }
.loc-detail-block h4 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold); font-weight: 600; margin-bottom: 8px;
}
.loc-detail-block p {
  font-size: 15px; color: var(--text-light); line-height: 1.7;
}
.loc-detail-block a { color: var(--gold); transition: color 0.3s; }
.loc-detail-block a:hover { color: var(--gold-dark); }
.loc-detail-actions { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.loc-info-map {
  height: 420px; border-radius: 16px; overflow: hidden;
  background: var(--stone);
}
.loc-info-map iframe {
  width: 100%; height: 100%; border: 0; display: block;
}

/* Explore Link on Main Site Location Cards */
.location-explore {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--gold);
  margin-top: 16px; letter-spacing: 0.03em;
  transition: color 0.3s, gap 0.3s;
}
.location-explore:hover { color: var(--gold-dark); gap: 10px; }
.location-explore svg { transition: transform 0.3s; }
.location-explore:hover svg { transform: translateX(3px); }

/* Location Page Responsive */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.gallery-wide { grid-column: span 2; }
  .loc-services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .loc-info-grid { grid-template-columns: 1fr; }
  .loc-info-map { height: 320px; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gallery-wide { grid-column: span 1; }
  .loc-hero-content h1 { font-size: 40px; }
}

/* ===== LOCATION SERVICE CARDS WITH PHOTOS ===== */
.loc-services-v2 { padding: 96px 0; background: #f5f4f2; }
.loc-services-v2 h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 400; margin-bottom: 48px; }
.loc-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 88px;
}
.loc-svc-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: 16px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.loc-svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.loc-svc-img { width: 100%; height: 220px; overflow: hidden; }
.loc-svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.loc-svc-img-compression { object-position: center 54%; }
.loc-svc-card:hover .loc-svc-img img { transform: scale(1.04); }
.loc-svc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.loc-svc-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; margin-bottom: 8px; color: #1A1A1A; }
.loc-svc-body p { font-size: 14px; line-height: 1.6; color: #6b7280; flex: 1; }
.loc-svc-link { display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 600; color: #00BFCF; letter-spacing: 0.02em; }

@media (max-width: 900px) {
  .loc-svc-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 560px) {
  .loc-svc-grid { grid-template-columns: 1fr; }
  .services .loc-svc-grid { padding-bottom: 112px; }
  .loc-svc-img { height: 200px; }
  .loc-svc-card[href="/compression-boots"] .loc-svc-img { height: 260px; }
  .loc-svc-img-compression { object-position: center 52%; }
}

/* ===== LOCATION CARD REDESIGN ===== */
.loc-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.loc-card-city {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9CA3AF;
  margin-bottom: 4px;
}
.location-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0;
  color: #1A1A1A;
}
.loc-rating {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #1A1A1A;
  background: #f5f4f2;
  padding: 6px 12px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  margin-top: 4px;
  flex-shrink: 0;
}
.loc-rating:hover { background: #eee; }
.loc-card-phone {
  margin-bottom: 16px;
  margin-top: 4px;
}
.loc-card-phone a {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}
.loc-card-phone a:hover { color: #1A1A1A; }
.loc-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.loc-btn-book {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  background: #1A1A1A;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}
.loc-btn-book:hover { background: #333; }
.loc-btn-dir {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  background: transparent;
  color: #1A1A1A;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: border-color 0.2s, background 0.2s;
}
.loc-btn-dir:hover { border-color: #1A1A1A; background: #f9f9f9; }

/* Contrast benefits stat block */
.contrast-benefits {
  background: #fff;
  padding: 96px 24px 104px;
}
.contrast-benefits-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.contrast-benefits h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #252525;
  max-width: 980px;
  margin: 0 0 28px;
}
.contrast-benefits-intro {
  font-family: var(--serif);
  font-size: clamp(25px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  color: #444;
  max-width: 860px;
  margin: 0 0 56px;
}
.contrast-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.contrast-benefit-stat {
  text-align: center;
  border: 1px solid #e8ecef;
  border-radius: 18px;
  padding: 26px 18px 28px;
  background: #fbfcfc;
}
.contrast-benefit-label {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(100deg, rgba(0,191,207,0.12), rgba(245,247,248,0.95));
  color: #252525;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 22px;
}
.contrast-benefit-number {
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 84px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0;
  color: #252525;
  margin-bottom: 18px;
}
.contrast-benefit-copy {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.12;
  font-weight: 400;
  color: #252525;
  max-width: 260px;
  margin: 0 auto;
}
.contrast-benefit-copy sup,
.contrast-benefits-intro sup {
  font-size: 0.45em;
  line-height: 0;
}

@media (max-width: 760px) {
  .contrast-benefits { padding: 72px 24px 88px; }
  .contrast-benefits h2 { margin-bottom: 22px; }
  .contrast-benefits-intro { margin-bottom: 42px; }
  .contrast-benefit-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contrast-benefit-stat { padding: 24px 18px 26px; }
  .contrast-benefit-label { margin-bottom: 18px; }
  .contrast-benefit-number { margin-bottom: 14px; }
}

/* Location card photo header */
.location-card {
  padding: 0;
  overflow: hidden;
}
.loc-card-photo {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}
.location-card:hover .loc-card-photo {
  transform: scale(1.04);
}
.loc-card-content {
  padding: 28px 28px 24px;
}
/* Fix: equal-width buttons */
.loc-card-actions {
  grid-template-columns: 1fr 1fr !important;
}

/* Card content padding (photo takes full width, content below) */
.location-card .loc-card-header,
.location-card .location-address,
.location-card .location-hours,
.location-card .location-services,
.location-card .loc-card-phone,
.location-card .loc-card-actions,
.location-card .location-explore {
  padding-left: 28px;
  padding-right: 28px;
}
.location-card .loc-card-header { padding-top: 24px; }
.location-card .location-explore { padding-bottom: 24px; display: block; }

/* Desktop photo height */
.loc-card-photo { height: 180px; }

/* cache-bust: 1774240737 */

/* ===== BLOG POST ARTICLE ===== */
.blog-post-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.blog-post-article .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  text-decoration: none;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}
.blog-post-article .back-link:hover { color: #00BFCF; }
.blog-post-article .post-tag-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00BFCF;
  background: rgba(0,191,207,0.08);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.blog-post-article h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  color: #1A1A1A;
  margin-bottom: 24px;
}
.blog-post-article .post-meta {
  font-size: 13px;
  color: #9CA3AF;
  margin-bottom: 40px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.blog-post-article .post-hero-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 48px;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-post-article h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: #1A1A1A;
  margin: 48px 0 16px;
}
.blog-post-article h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: #1A1A1A;
  margin: 36px 0 12px;
}
.blog-post-article p {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 20px;
}
.blog-post-article ul, .blog-post-article ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.blog-post-article li {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 8px;
}
.blog-post-article strong {
  color: #1A1A1A;
}

.story-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 42px 0;
}
.story-photo-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.story-photo-grid figure {
  margin: 0;
  background: #f8f7f5;
  border-radius: 10px;
  overflow: hidden;
}
.story-photo-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.story-photo-grid figcaption {
  padding: 10px 12px 12px;
  font-size: 12px;
  line-height: 1.4;
  color: #666;
  text-align: center;
}
.blog-post-article blockquote {
  margin: 42px 0;
  padding: 28px 32px;
  border-left: 4px solid #00BFCF;
  background: #f8f7f5;
  color: #333;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  line-height: 1.45;
}
@media(max-width: 700px) {
  .story-photo-grid,
  .story-photo-grid-three {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .story-photo-grid img { height: 150px; }
  .story-photo-grid figcaption { font-size: 11px; padding: 8px; }
  .blog-post-article blockquote { font-size: 21px; padding: 22px; }
}

/* ===== SERVICE PAGE GALLERY GRID ===== */
.gallery-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:3px; }
.gallery-grid .g-img { height:320px; overflow:hidden; }
.gallery-grid .g-img img { width:100%; height:100%; object-fit:cover; display:block; }
@media(max-width:600px) {
  .gallery-grid { grid-template-columns:1fr 1fr; }
  .gallery-grid .g-img { height:180px; }
  .gallery-grid .g-img:first-child { grid-column:1/3; height:240px; }
  .compression-gallery .gallery-grid .g-img:first-child { grid-column:auto; height:180px; }
}

/* ===== SERVICE PAGE SECTIONS ===== */
.svc-science-section { padding:72px 0 80px; background:#111; }
.svc-science-inner { padding:0 24px; }
.svc-section-tag { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.12em; color:#00BFCF; text-align:center; margin-bottom:10px; }
.svc-section-h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(32px,4vw,52px); color:#fff; font-weight:400; line-height:1.1; letter-spacing:-0.01em; text-align:center; margin-bottom:48px; }
.svc-book-cta { padding:80px 0; background:#fff; text-align:center; }

/* ===== HOMEPAGE SECTION CLASSES ===== */
.section-book-cta { padding:100px 24px; background:#fff; text-align:center; }
.section-book-cta-tag { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.12em; color:#00BFCF; margin-bottom:14px; }
.section-book-cta-h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(38px,5vw,66px); font-weight:400; line-height:1.08; letter-spacing:-0.02em; margin-bottom:16px; color:#1A1A1A; }
.section-book-cta-sub { font-size:17px; color:#666; max-width:460px; margin:0 auto 36px; line-height:1.7; }
.section-book-cta-btn { display:inline-block; background:#1A1A1A; color:#fff; padding:16px 48px; border-radius:100px; text-decoration:none; font-weight:700; font-size:15px; letter-spacing:0.02em; }

/* ===== POPUP PROMO CODE BOX ===== */
.popup-code-box {
  display: inline-block;
  background: #f0fafb;
  border: 2px dashed var(--gold);
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 12px 28px;
  border-radius: 12px;
  margin: 12px auto 4px;
  user-select: all;
  cursor: text;
}
