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

:root {
  --cream: #F7F5F0;
  --cream-dark: #EDE9E0;
  --black: #111111;
  --gold: #C4955A;
  --white: #FFFFFF;
  --gray: #525252;
  --gray-light: #7a7a7a;
  --border: #E2DDD6;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Nunito Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background-color: var(--cream);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
img { display: block; max-width: 100%; height: auto; }
em { font-style: italic; color: var(--gold); font-family: var(--font-serif); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== TYPOGRAPHY ===== */
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.section-label.light { color: rgba(255,255,255,0.6); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 32px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover { background: var(--cream); }
.btn-primary .arrow { font-size: 14px; }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  padding: 18px 32px;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  font-family: var(--font-sans);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.95); background: rgba(255,255,255,0.18); }

.btn-pill-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 22px;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: rgba(255,255,255,0.95);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  transition: border-color 0.2s, background 0.2s;
}
.btn-pill-light:hover { border-color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.15); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  font-family: var(--font-sans);
  transition: background 0.2s;
}
.btn-dark:hover { background: #2a2a2a; }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 1.5px solid var(--black);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  font-family: var(--font-sans);
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

.btn-book-service {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 1.5px solid var(--black);
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  font-family: var(--font-sans);
  background: transparent;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}
.btn-book-service:hover { background: var(--black); color: var(--white); }

.btn-book-now {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  font-family: var(--font-sans);
  transition: background 0.2s;
}
.btn-book-now:hover { background: #2a2a2a; }

.nav-membership {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-membership:hover { opacity: 0.7; }

/* ===== HSA/FSA BANNER ===== */
.hsa-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--black);
  padding: 14px 24px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.03em;
  line-height: 1;
  transition: background 0.2s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  width: 100%;
  overflow: hidden;        /* contain children — no nowrap on the wrapper */
}
.hsa-bar:hover { background: #1a1a1a; }
.hsa-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;            /* allow shrinking in flex context */
}
.hsa-bar-badge {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border-radius: 4px;
  padding: 3px 8px;
}
.hsa-bar-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(255,255,255,0.75);
}
.hsa-bar-text-short {
  display: none;
  white-space: nowrap;
  color: rgba(255,255,255,0.75);
}
.hsa-bar-cta {
  flex-shrink: 0;
  white-space: nowrap;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}
/* Tablet / large phone: swap to short text */
@media (max-width: 768px) {
  .hsa-bar { padding: 11px 20px; gap: 10px; }
  .hsa-bar-text { display: none; }
  .hsa-bar-text-short { display: inline; }
}
/* Small phone: hide text entirely, show badge + CTA only */
@media (max-width: 480px) {
  .hsa-bar { padding: 10px 14px; gap: 8px; }
  .hsa-bar-text-short { display: none; }
  .hsa-bar-cta { font-size: 11px; }
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 40px; /* overridden by JS to match banner height */
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(14, 9, 4, 0.32);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.site-header.scrolled {
  background: rgba(247, 245, 240, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 0 var(--border);
}

.logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color 0.3s;
  text-decoration: none;
}
.site-header.scrolled .logo { color: var(--black); }

.main-nav {
  display: flex;
  gap: 36px;
}
.nav-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  cursor: pointer;
}
.nav-link:hover { color: var(--white); }
.site-header.scrolled .nav-link { color: var(--gray); }
.site-header.scrolled .nav-link:hover { color: var(--black); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gift-dropdown { position: relative; }
.btn-gift {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-gift:hover { border-color: rgba(255,255,255,0.8); }
.site-header.scrolled .btn-gift { border-color: var(--black); color: var(--black); }
.dropdown-arrow { font-size: 9px; }

.gift-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  min-width: 260px;
}
.gift-menu.open { display: block; }
.gift-option {
  display: flex;
  flex-direction: column;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.gift-option:last-child { border-bottom: none; }
.gift-option:hover { background: var(--cream); }
.gift-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-light); }
.gift-name { font-size: 14px; font-weight: 400; color: var(--black); margin: 2px 0; }
.gift-price { font-size: 13px; font-weight: 600; color: var(--gold); margin-top: 4px; }
.gift-breakdown { font-size: 10px; color: var(--gray-light); letter-spacing: 0.02em; line-height: 1.5; margin-top: 3px; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.3s;
}
.site-header.scrolled .mobile-menu-btn span { background: var(--black); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  padding: 32px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
body.menu-open { overflow: hidden; }
.mobile-close {
  align-self: flex-end;
  font-size: 20px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-sans);
}
.mobile-logo { font-family: var(--font-serif); font-size: 28px; font-weight: 300; margin: 24px 0; }
.mobile-nav { display: flex; flex-direction: column; gap: 20px; }
.mobile-nav button {
  font-size: 24px;
  font-family: var(--font-serif);
  font-weight: 300;
  text-align: left;
  cursor: pointer;
  color: var(--black);
  background: none;
  border: none;
}
.mobile-nav hr { border: none; border-top: 1px solid var(--border); margin: 8px 0; }
.mobile-gift-link { font-size: 13px; color: var(--gray); }
.mobile-book { margin-top: 8px; align-self: flex-start; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  padding-top: 130px;   /* hard floor: content never rises above nav + buffer */
  padding-bottom: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(12, 6, 2, 0.84) 0%,
      rgba(12, 6, 2, 0.64) 30%,
      rgba(12, 6, 2, 0.28) 58%,
      rgba(12, 6, 2, 0.0) 78%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.42) 0%,
      rgba(0,0,0,0.12) 18%,
      rgba(0,0,0,0.0) 38%,
      rgba(0,0,0,0.18) 65%,
      rgba(0,0,0,0.52) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 700px;
}
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 28px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(4px);
}
.pin-icon { font-size: 12px; }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: #D9AC72;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.95);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-gift-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.hero-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--cream-dark);
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
}
.stat-icon { color: var(--gold); font-size: 10px; }
.stat-text {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}
.stat-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--cream);
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.service-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196, 149, 90, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
}
.service-price {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--black);
}
.service-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
}
.service-duration {
  font-size: 12px;
  color: var(--gray-light);
  letter-spacing: 0.05em;
}
.service-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}

/* Section subtitle */
.section-subtitle {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-top: -12px;
  margin-bottom: 32px;
  max-width: 520px;
}

/* Featured signature card */
.service-card--featured {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 24px;
}
.service-featured-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-featured-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  min-width: 200px;
  flex-shrink: 0;
}
.service-duration-pricing {
  width: 100%;
  border-top: 1px solid var(--border);
}
.sdp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.sdp-dur {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.04em;
}
.sdp-price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--black);
}

/* Service card inline pricing table (non-featured cards) */
.service-card-pricing {
  width: 100%;
  border-top: 1px solid var(--border);
  margin-bottom: 4px;
}
.scp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.scp-dur {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.04em;
}
.scp-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.01em;
}

/* Best-for tags */
.service-best-for {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.best-for-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-right: 2px;
  flex-shrink: 0;
}
.best-for-tag {
  font-size: 11px;
  color: var(--gray);
  background: rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
}
.service-card--featured .best-for-tag {
  background: rgba(196,149,90,0.07);
  border-color: rgba(196,149,90,0.2);
  color: var(--gray);
}

/* Group card */
.service-card--group {
  margin-top: 24px;
}

/* VIP Section */
.vip-section {
  background: var(--black);
  border-radius: 24px;
  padding: 64px;
  color: var(--white);
}
.vip-section .section-label { color: rgba(255,255,255,0.5); }
.vip-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 40px;
}
.vip-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.vip-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vip-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vip-savings {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196, 149, 90, 0.15);
  padding: 4px 10px;
  border-radius: 100px;
}
.vip-price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
}
.vip-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
}
.vip-duration { font-size: 12px; color: rgba(255,255,255,0.5); }
.vip-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; flex: 1; }
.vip-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vip-perks li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding-left: 16px;
  position: relative;
}
.vip-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}
.vip-card .btn-book-service { border-color: rgba(255,255,255,0.3); color: var(--white); align-self: flex-start; }
.vip-card .btn-book-service:hover { background: var(--white); color: var(--black); }
.vip-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  letter-spacing: 0.05em;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 56px;
}
.step {
  flex: 1;
  padding: 0 32px;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-connector {
  width: 1px;
  height: 80px;
  background: var(--border);
  margin-top: 20px;
  flex-shrink: 0;
}
.step-number {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 12px;
}
.step-desc { font-size: 14px; color: var(--gray); line-height: 1.7; }
.how-cta { text-align: center; }

/* ===== EXPERIENCE ===== */
.experience {
  background: var(--black);
  color: var(--white);
}
.experience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.experience-text {
  padding: 100px 80px 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.experience-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 48px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.4; }
.experience-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
}
.experience-title em { color: var(--gold); }
.experience-desc { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 16px; }
.experience-text .btn-outline-dark {
  align-self: flex-start;
  margin-top: 20px;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.experience-text .btn-outline-dark:hover { background: var(--white); color: var(--black); }

.experience-images {
  overflow: hidden;
}
.exp-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.van-details {
  background: var(--cream);
  padding: 80px 0;
}
.van-details-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.van-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--black);
}
.van-desc { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
.van-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.van-feature { font-size: 13px; color: var(--gray); }
.van-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.van-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 20%;
  background: var(--cream-dark);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
/* Van exterior — landscape image, contain so logo/tagline never crops */
.van-img:last-child {
  object-fit: contain;
  object-position: center center;
  background: #0e0904;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 100px 0;
  background: var(--white);
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
}
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.rating-text { font-size: 13px; color: var(--gray); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.review-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--black);
  flex: 1;
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 300;
}
.reviewer-name { font-size: 13px; font-weight: 600; }
.reviewer-location { font-size: 12px; color: var(--gray-light); }
.reviews-cta { text-align: center; }

/* ===== GIFT SECTION ===== */
.gift-section {
  padding: 100px 0;
  background: var(--cream);
}
.gift-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.gift-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
}
.gift-desc { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.gift-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.gift-note { font-size: 12px; color: var(--gray-light); line-height: 1.65; margin-top: 14px; letter-spacing: 0.01em; }

.gift-card {
  background: var(--black);
  border-radius: 20px;
  padding: 40px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.gift-card-brand {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
}
.gift-card-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 20px;
}
.gc-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.gc-value { font-size: 18px; font-family: var(--font-serif); font-weight: 300; }
.gc-price { color: var(--gold); font-size: 28px; }
.gift-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gift-tag {
  font-size: 11px;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  color: rgba(255,255,255,0.6);
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--white);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto 48px;
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  padding-bottom: 22px;
}
.faq-item.open .faq-answer { display: block; }

.faq-disclaimer { text-align: center; font-size: 12px; color: var(--gray-light); margin-bottom: 32px; }
.faq-contact { text-align: center; }
.faq-contact-label { font-size: 13px; color: var(--gray); margin-bottom: 8px; }
.faq-contact a { color: var(--black); font-size: 14px; text-decoration: underline; text-underline-offset: 3px; }
.faq-contact a:hover { color: var(--gold); }

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
}
.newsletter-inner { text-align: center; max-width: 520px; margin: 0 auto; }
.newsletter .section-label { color: rgba(255,255,255,0.5); }
.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 16px;
}
.newsletter-title em { color: var(--gold); }
.newsletter-desc { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.4); }
.newsletter .btn-dark { background: var(--white); color: var(--black); white-space: nowrap; }
.newsletter .btn-dark:hover { background: var(--cream); }
.newsletter-disclaimer { font-size: 11px; color: rgba(255,255,255,0.3); line-height: 1.5; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  padding: 64px 80px 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 8px;
}
.footer-tagline { font-size: 12px; color: var(--gray); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 4px;
}
.footer-link {
  font-size: 13px;
  color: var(--gray);
  font-family: var(--font-sans);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0;
}
.footer-link:hover { color: var(--black); }

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.social-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer-social:hover .social-icon { opacity: 1; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--gray-light);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-tagline-bottom { font-style: italic; font-family: var(--font-serif); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--gray-light); transition: color 0.2s; font-size: 12px; }
.footer-legal a:hover { color: var(--black); }

/* ===== LEGAL PAGES ===== */
.legal-header {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.legal-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  text-decoration: none;
  color: var(--black);
}
.legal-back {
  font-size: 12px;
  color: var(--gray);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.legal-back:hover { color: var(--black); }

.legal-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 32px;
}
.legal-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.legal-main h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 12px;
}
.legal-date {
  font-size: 13px;
  color: var(--gray-light);
  margin-bottom: 64px;
}
.legal-section { margin-bottom: 48px; }
.legal-section h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.legal-section p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-section ul {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.legal-section li { font-size: 15px; color: var(--gray); line-height: 1.7; }
.legal-section a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }
.legal-section strong { font-weight: 600; color: var(--black); }

.legal-footer {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-light);
}
.legal-footer-links { display: flex; gap: 24px; }
.legal-footer a { color: var(--gray-light); transition: color 0.2s; }
.legal-footer a:hover { color: var(--black); }

/* ===== PRICING TRANSPARENCY ===== */
.hero-pricing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-tag {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(4px);
  padding: 6px 14px;
  border-radius: 100px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-booking-note {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.06em;
  line-height: 1.65;
  margin-top: 14px;
}

.pricing-transparency {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 36px;
  margin-bottom: 48px;
}
.pt-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}
.pt-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(196,149,90,0.12);
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pt-icon--fee {
  background: rgba(17,17,17,0.06);
  color: var(--black);
}
.pt-icon--hsa {
  background: rgba(196,149,90,0.1);
  color: var(--gold);
  font-size: 16px;
}
.pt-label--hsa {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.01em;
  text-decoration: none;
}
.pt-label--hsa:hover { text-decoration: underline; }
.pt-text { display: flex; flex-direction: column; gap: 3px; }
.pt-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.01em;
}
.pt-label--fee {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.01em;
}
.pt-desc { font-size: 13px; color: #4a4a4a; line-height: 1.5; }
.pt-divider {
  width: 1px;
  background: var(--border);
  margin: 0 36px;
  align-self: stretch;
}

.service-hsa-note {
  display: inline-block;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.03em;
  text-decoration: none;
  margin-top: 4px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.service-hsa-note:hover { opacity: 1; text-decoration: underline; }

.service-total {
  font-size: 11px;
  color: var(--gray-light);
  letter-spacing: 0.04em;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

.vip-transparency {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 4px;
}
.vip-trans-item { font-size: 12px; color: rgba(255,255,255,0.5); }
.vip-trans-sep { color: rgba(255,255,255,0.2); font-size: 12px; }

/* ===== MEMBERSHIP ===== */
.membership-section {
  background: var(--black);
  padding: 96px 0;
}
.membership-inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
.membership-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.membership-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 5px 14px;
}
.membership-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
}
.membership-title em {
  color: var(--gold);
  font-style: italic;
}
.membership-body {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.membership-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 40px;
  transition: opacity 0.2s ease;
}
.membership-cta:hover { opacity: 0.85; }
.membership-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}
.membership-rollover {
  margin-top: 20px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}
.membership-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.membership-price-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 28px;
}
.membership-price {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.membership-per {
  font-size: 18px;
  color: rgba(255,255,255,0.4);
}
.membership-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.membership-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.perk-icon {
  color: var(--gold);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}
.membership-perk div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.membership-perk strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.membership-perk span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 768px) {
  .membership-section { padding: 72px 0; }
  .membership-inner { flex-direction: column; gap: 48px; }
  .membership-right { width: 100%; }
  .membership-price { font-size: 56px; }
}

.faq-pricing-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  margin-bottom: 32px;
  padding: 20px 32px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.faq-pricing-note span { font-size: 13px; color: var(--gray); line-height: 1.5; }
.faq-pricing-note span:first-child { font-weight: 500; color: var(--black); }

@media (max-width: 768px) {
  .pricing-transparency { flex-direction: column; gap: 24px; padding: 24px; }
  .pt-divider { width: 100%; height: 1px; margin: 0; }
  .faq-pricing-note { padding: 16px 20px; }
}

/* ===== POP-UP ===== */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1002;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}
.popup-overlay.open { display: flex; }
body.popup-open { overflow: hidden; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.popup-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 48px 52px 40px;
  max-width: 540px;
  width: 100%;
  position: relative;
  animation: slideUp 0.35s cubic-bezier(0.16,1,0.3,1);
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 16px;
  color: var(--gray-light);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  padding: 4px;
  font-family: var(--font-sans);
  transition: color 0.2s;
}
.popup-close:hover { color: var(--black); }

.popup-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 28px;
}

.popup-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.popup-headline {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: var(--black);
  margin-bottom: 6px;
}

.popup-subheadline {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 20px;
}
.popup-subheadline em { font-style: italic; color: var(--gold); font-size: inherit; }

.popup-divider {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 20px;
}

.popup-body {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 28px;
}

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

.popup-field { border-bottom: 1px solid var(--border); margin-bottom: 4px; }

.popup-input {
  width: 100%;
  padding: 14px 0;
  font-size: 14px;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--black);
  background: transparent;
  border: none;
  outline: none;
}
.popup-input::placeholder { color: var(--gray-light); }
.popup-field:focus-within { border-bottom-color: var(--black); }

.popup-submit {
  margin-top: 28px;
  width: 100%;
  padding: 18px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
}
.popup-submit:hover:not(:disabled) { background: #2a2a2a; }
.popup-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.popup-disclaimer {
  margin-top: 16px;
  font-size: 11px;
  color: var(--gray-light);
  line-height: 1.6;
  text-align: center;
}

.popup-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0 8px;
  gap: 12px;
}
.popup-success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(196,149,90,0.12);
  color: var(--gold);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-success-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
}
.popup-success-body {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 340px;
}

@media (max-width: 600px) {
  .popup-card { padding: 36px 28px 32px; }
  .popup-headline { font-size: 52px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .service-card--featured { gap: 32px; }
  .service-cards { grid-template-columns: 1fr 1fr; }
  .vip-cards { grid-template-columns: 1fr; }
  .experience-inner { grid-template-columns: 1fr; }
  .experience-text { padding: 80px 40px; }
  .experience-images { height: 400px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .header-actions { display: none; }
  .mobile-menu-btn { display: flex; }
  .site-header { padding: 16px 24px; }
  .hero {
    align-items: flex-start;
    padding-top: 160px;
    padding-bottom: 56px;
    height: auto;
    min-height: 100vh;
  }
  .hero-content { padding: 0 24px; }
  .hero-ctas { gap: 10px; }
  .stats-bar { flex-direction: column; gap: 16px; padding: 32px 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .service-card--featured { flex-direction: column; gap: 28px; padding: 32px 24px; }
  .service-featured-aside { width: 100%; min-width: unset; }
  .service-cards { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 40px; }
  .step-connector { width: 60px; height: 1px; margin: 0; }
  .step { padding: 0; }
  .van-details-inner, .gift-inner { grid-template-columns: 1fr; gap: 40px; }
  .review-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 48px 24px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .container { padding: 0 20px; }
  .vip-section { padding: 40px 24px; }
  .services, .how-it-works, .reviews, .gift-section, .faq, .newsletter { padding: 72px 0; }
  .van-gallery { grid-template-columns: 1fr; }
  .legal-header { padding: 20px 24px; }
  .legal-footer { flex-direction: column; gap: 12px; }
}

/* ===== SHORT VIEWPORT (landscape laptops, compressed browsers) ===== */
@media (max-height: 780px) and (min-width: 769px) {
  .hero {
    padding-bottom: 52px;
  }
  .hero-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.08;
    margin-bottom: 18px;
  }
  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 22px;
  }
  .hero-ctas {
    gap: 10px;
    margin-bottom: 14px;
  }
}
