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

:root {
  /* Brand palette pulled from texasautoclub.com */
  --cream: #E4CEBD;
  --ink: #20201F;

  --black: #EFE7DF;        /* page ground (cream) */
  --surface: #FFFFFF;      /* cards + section bands */
  --surface-2: #FBF5EF;    /* warm tint / hover */
  --surface-3: #E4CEBD;    /* deep cream accent */
  --border: rgba(32,32,31,0.13);
  --orange: #CC5210;
  --orange-dim: rgba(204,82,16,0.09);
  --orange-glow: rgba(204,82,16,0.26);
  --gold: #9A7220;
  --gold-dim: rgba(154,114,32,0.11);
  --white: #20201F;        /* strongest text on cream */
  --text: #3F3F3F;
  --muted: #6F675E;
  --font-display: 'Besley', 'Georgia', serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-ui: 'Inter', system-ui, sans-serif;
  --water: #7FA8BC;
  --water-ink: #0E171D;
  --nav-h: 72px;
  --max-w: 1200px;
  --radius: 3px;
  --radius-lg: 6px;
}


/* ── DARK ZONES ──────────────────────────────
   Hero, page hero, nav and footer stay dark (they sit over photography,
   same as texasautoclub.com). Redefining the tokens here flips every
   descendant without touching component rules. */
.nav, .hero, .page-hero, .footer, .cta-banner, .promo {
  --black: #171310;
  --surface: #1E1914;
  --surface-2: #262019;
  --surface-3: #2F2820;
  --border: rgba(242,234,224,0.12);
  --white: #F4EDE4;
  --text: #E9E0D4;
  --muted: rgba(238,229,217,0.6);
  --orange-dim: rgba(204,82,16,0.16);
  --gold: #D8B463;
  --gold-dim: rgba(216,180,99,0.14);
}
.cta-banner { --text: rgba(255,255,255,0.88); --muted: rgba(255,255,255,0.72); }

html { scroll-behavior: smooth; }

html { overflow-x: hidden; }

body {
  overflow-x: hidden;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 60px 0; }

.eyebrow {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.4vw, 74px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.015em;
  color: var(--white);
  text-wrap: balance;
}
.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(29px, 3.9vw, 46px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  text-wrap: balance;
}
.heading-md {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 27px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  text-wrap: balance;
}
.accent { color: var(--orange); }
.accent-gold { color: var(--gold); }
.sub-center { color: var(--muted); margin-top: 16px; max-width: 560px; margin-left: auto; margin-right: auto; font-size: 15px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: #A84208; transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--white); border: 1.5px solid currentColor; opacity: 0.92; }
.btn--outline:hover { border-color: var(--orange); color: var(--orange); }
.btn--white { background: #fff; color: var(--orange); }
.btn--white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(32,32,31,0.16); }
.btn--lg { padding: 18px 40px; font-size: 12.5px; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); transition: background 0.3s, box-shadow 0.3s; }
.nav.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo { display: flex; align-items: center; gap: 12px; line-height: 1; flex-shrink: 0; }
.nav__logo-img { height: 52px; width: auto; }
.nav__logo-text { display: flex; flex-direction: column; }
.nav__logo-main { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--white); }
.nav__logo-main span { color: var(--orange); }
.nav__logo-sub { font-family: var(--font-display); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav__links a { white-space: nowrap; font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); transition: color 0.18s; }
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__links a.active { color: var(--orange); }
.nav__hamburger { display: none; background: none; border: none; color: var(--white); cursor: pointer; padding: 4px; }
.nav__mobile { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); padding: 24px; flex-direction: column; gap: 20px; }
.nav__mobile.open { display: flex; }
.nav__mobile a { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); }
@media (max-width: 900px) {
  .nav__links, .nav__cta-desktop { display: none; }
  .nav__hamburger { display: block; }
  .nav { background: rgba(8,8,8,0.96); }
}

/* PAGE HERO (interior pages) */
.page-hero {
  padding: calc(var(--nav-h) + 88px) 0 72px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.page-hero--photo {
  padding: calc(var(--nav-h) + 130px) 0 90px;
  background-size: cover;
  background-position: center;
}
.page-hero--photo::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(5,5,5,0.93) 0%, rgba(5,5,5,0.72) 55%, rgba(5,5,5,0.35) 100%);
}
.page-hero--photo::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 120px;
  background: linear-gradient(to top, var(--black), transparent);
}
.page-hero--photo .container { position: relative; z-index: 2; }
.page-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,115,32,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,115,32,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 0%, transparent 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__sub { font-size: 16px; color: var(--muted); max-width: 620px; margin-top: 20px; line-height: 1.7; }
.page-hero__sub strong { color: var(--text); font-weight: 500; }
.breadcrumb { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* HOME HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 80px; position: relative; overflow: hidden; background: var(--black); }
.hero__photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__photo::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(5,5,5,0.97) 8%, rgba(5,5,5,0.55) 45%, rgba(5,5,5,0.35) 100%),
    linear-gradient(to right, rgba(5,5,5,0.75) 0%, transparent 60%);
}
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(232,115,32,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(232,115,32,0.04) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 0%, transparent 100%); -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 0%, transparent 100%); }
.hero__slash { position: absolute; top: 0; right: 0; width: 55%; height: 100%; overflow: hidden; pointer-events: none; }
.hero__slash::before { content: ''; position: absolute; top: -10%; right: -3%; width: 6px; height: 120%; background: linear-gradient(180deg, transparent, var(--orange), transparent); transform: rotate(-10deg); opacity: 0.5; }
.hero__slash::after { content: ''; position: absolute; top: -10%; right: 8%; width: 160px; height: 120%; background: linear-gradient(90deg, transparent, rgba(232,115,32,0.05), transparent); transform: rotate(-10deg); }
.hero__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 75% 40%, rgba(232,115,32,0.1) 0%, transparent 70%); pointer-events: none; }
.hero__content { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; padding-top: var(--nav-h); width: 100%; }
.hero__badge { display: inline-flex; align-items: center; gap: 10px; background: var(--orange-dim); border: 1px solid rgba(232,115,32,0.22); border-radius: 100px; padding: 7px 18px; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 36px; }
.hero__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.5); } }
.hero__h1 { margin-bottom: 28px; }
.hero__h1 .line-2 { color: var(--orange); display: block; }
.hero__sub { font-size: 17px; color: var(--muted); max-width: 540px; margin-bottom: 44px; line-height: 1.65; }
.hero__sub strong { color: var(--text); font-weight: 500; }
.hero__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 80px; }
.hero__tel { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--gold); letter-spacing: 0.04em; transition: color 0.18s; }
.hero__tel:hover { color: var(--orange); }
.hero__stats { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; max-width: 500px; }
.hero__stat { flex: 1; padding: 20px 24px; border-right: 1px solid var(--border); background: rgba(255,255,255,0.02); }
.hero__stat:last-child { border-right: none; }
.hero__stat-val { font-family: var(--font-display); font-size: 28px; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 4px; }
.hero__stat-val span { color: var(--orange); }
.hero__stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }

/* TRUST BAR — auto-sliding, no manual swipe needed */
.trust-bar {
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.trust-bar__scroll { display: flex; width: max-content; animation: trustSlide 32s linear infinite; }
.trust-bar:hover .trust-bar__scroll, .trust-bar:focus-within .trust-bar__scroll { animation-play-state: paused; }
@keyframes trustSlide { to { transform: translateX(-50%); } }
.trust-item { display: flex; align-items: center; gap: 10px; padding: 18px 32px; border-right: 1px solid var(--border); white-space: nowrap; flex-shrink: 0; }
.trust-item__icon { font-size: 18px; }
.trust-item__label { font-family: var(--font-ui); font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* SCROLL CUE — between the trust bar and packages */
.scroll-cue { display: flex; justify-content: center; padding: 16px 0; background: var(--surface); }
.scroll-cue__link { display: inline-flex; padding: 8px; border-radius: 50%; color: var(--muted); animation: scrollCueBob 2s ease-in-out infinite; transition: color 0.18s; }
.scroll-cue__link:hover, .scroll-cue__link:focus-visible { color: var(--orange); }
@keyframes scrollCueBob { 0%, 100% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(5px); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue__link { animation: none; opacity: 0.7; } }
@media (max-width: 640px) { .scroll-cue { padding: 10px 0; } }

/* SERVICE CARDS */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 900px) { .services__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .services__grid { grid-template-columns: 1fr; } }
.service-card { background: var(--surface); padding: 36px 32px; position: relative; transition: background 0.18s; display: block; }
.service-card--photo { padding: 0; overflow: hidden; }
.service-card--photo .sc__body { padding: 28px 32px 36px; }
.sc__img {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.35s ease;
}
.service-card--photo:hover .sc__img { transform: scale(1.04); }
.sc__img-wrap { overflow: hidden; position: relative; }
.sc__img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--surface) 0%, transparent 45%);
  pointer-events: none;
}
.service-card:hover { background: var(--surface-2); }
.service-card--photo:hover .sc__img-wrap::after { background: linear-gradient(to top, var(--surface-2) 0%, transparent 45%); }
.service-card:hover .sc__arrow { opacity: 1; transform: translateX(0); }
.sc__pill { display: inline-flex; font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; margin-bottom: 20px; }
.sc__pill--popular { background: var(--orange-dim); color: var(--orange); border: 1px solid rgba(232,115,32,0.2); }
.sc__pill--premium { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(201,168,76,0.2); }
.sc__icon { font-size: 26px; margin-bottom: 14px; }
.sc__name { font-family: var(--font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 10px; letter-spacing: 0.02em; }
.sc__desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 22px; }
.sc__price { font-family: var(--font-display); font-size: 30px; font-weight: 900; color: var(--orange); line-height: 1; }
.sc__price em { font-style: normal; font-size: 14px; font-weight: 400; color: var(--muted); font-family: var(--font-body); }
.sc__book { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); }
.sc__arrow { transition: opacity 0.18s, transform 0.18s; opacity: 0; transform: translateX(-4px); }

/* URABLE EMBED */
.urable-embed { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: #141414; }
.urable-embed iframe { display: block; border: 0; width: 100%; }
.embed-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 16px; }
.embed-note a { color: var(--orange); }

/* PRICING TABLE */
.pt-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.pt-wrap table { width: 100%; border-collapse: collapse; min-width: 660px; }
.pt-wrap thead th { background: var(--surface-3); padding: 13px 20px; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); text-align: left; border-bottom: 1px solid var(--border); }
.pt-wrap thead th:first-child { color: var(--white); width: 38%; }
.pt-wrap tbody td { padding: 16px 20px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text); font-variant-numeric: tabular-nums; vertical-align: top; }
.pt-wrap tbody tr:last-child td { border-bottom: none; }
.pt-wrap tbody tr:hover td { background: var(--surface-2); }
.pt-wrap tbody td:first-child { font-family: var(--font-display); font-size: 17px; font-weight: 700; text-transform: uppercase; color: var(--white); }
.td-note { display: block; font-family: var(--font-body); font-size: 12px; font-weight: 400; text-transform: none; color: var(--muted); margin-top: 3px; letter-spacing: 0; }
.td-price { color: var(--orange); font-weight: 600; }
.td-dash { color: var(--muted); }
.td-badge { display: inline-block; font-family: var(--font-display); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 2px 7px; border-radius: 100px; margin-left: 6px; vertical-align: middle; }
.tb-pop { background: var(--orange-dim); color: var(--orange); border: 1px solid rgba(232,115,32,0.2); }
.tb-prem { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(201,168,76,0.2); }

/* WHY */
.why__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 768px) { .why__inner { grid-template-columns: 1fr; gap: 40px; } }
.why__list { list-style: none; display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.why__item { display: flex; gap: 18px; }
.why__bullet { width: 44px; height: 44px; border-radius: var(--radius); background: var(--orange-dim); border: 1px solid rgba(232,115,32,0.18); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.why__it-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 6px; letter-spacing: 0.02em; }
.why__it-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.why__visual { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.why__visual--photo { background-size: cover; background-position: center; }
.why__pattern { position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 28px, rgba(232,115,32,0.025) 28px, rgba(232,115,32,0.025) 29px); }
.why__stripe { position: absolute; top: 0; left: 0; width: 6px; height: 100%; background: linear-gradient(180deg, var(--orange), var(--gold)); }
.why__vis-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px; background: linear-gradient(to top, var(--surface) 0%, rgba(17,17,17,0.6) 60%, transparent 100%); }
.why__big-num { font-family: var(--font-display); font-size: 96px; font-weight: 900; line-height: 1; color: var(--orange); margin-bottom: 4px; }
.why__big-label { font-family: var(--font-display); font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 4px; }
.why__big-sub { font-size: 13px; color: var(--muted); }
@media (max-width: 768px) { .why__visual { display: none; } }

/* AREAS */
.areas__chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 800px; margin: 0 auto; }
.chip { background: var(--surface-3); border: 1px solid var(--border); border-radius: 100px; padding: 8px 18px; font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); transition: all 0.18s; }
.chip:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-dim); }

/* REVIEWS */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .reviews__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reviews__grid { grid-template-columns: 1fr; } }
.review-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; }
.review-stars { color: #FFB800; font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.75; font-style: italic; flex: 1; margin-bottom: 22px; }
.review-sep { height: 1px; background: var(--border); margin-bottom: 18px; }
.review-author { font-family: var(--font-display); font-size: 15px; font-weight: 700; text-transform: uppercase; color: var(--white); letter-spacing: 0.04em; }
.review-vehicle { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* FAQ */
.faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 640px) { .faq__grid { grid-template-columns: 1fr; } }
.faq-item { background: var(--surface); padding: 28px 32px; transition: background 0.18s; }
.faq-item:hover { background: var(--surface-2); }
.faq-q { font-family: var(--font-display); font-size: 17px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 10px; letter-spacing: 0.02em; }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* FEATURE LIST (service pages) */
.feature-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.feature-cols > div { min-width: 0; }
@media (max-width: 700px) { .feature-cols { grid-template-columns: 1fr; } }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 12px; font-size: 14.5px; color: var(--text); line-height: 1.6; }
.check-list li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* CTA BANNER */
.cta-banner { background: #1B1611; padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner__grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(242,234,224,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(242,234,224,0.05) 1px, transparent 1px); background-size: 72px 72px; }
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner .heading-lg { color: #F4EDE4; margin-bottom: 16px; }
.cta-banner .heading-lg em { color: var(--orange); }
.cta-banner__sub { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 40px; }
.cta-banner__tel { display: block; margin-top: 22px; font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.62); letter-spacing: 0.14em; transition: color 0.18s; }
.cta-banner__tel:hover { color: #fff; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 16px; display: flex; gap: 18px; align-items: flex-start; transition: border-color 0.18s; }
.contact-card:hover { border-color: rgba(232,115,32,0.35); }
.contact-card__icon { width: 46px; height: 46px; border-radius: var(--radius); background: var(--orange-dim); border: 1px solid rgba(232,115,32,0.18); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-card__title { font-family: var(--font-display); font-size: 17px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.contact-card__val { font-size: 15px; color: var(--orange); font-weight: 500; }
.contact-card__sub { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* FOOTER */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 72px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr; gap: 36px; } }
.footer__brand { font-family: var(--font-display); font-size: 26px; font-weight: 900; text-transform: uppercase; color: var(--white); letter-spacing: 0.04em; margin-bottom: 12px; }
.footer__brand span { color: var(--orange); }
.footer__tagline { font-size: 14px; color: var(--muted); max-width: 310px; line-height: 1.7; margin-bottom: 24px; }
.footer__contacts { display: flex; flex-direction: column; gap: 6px; }
.footer__contacts a { font-size: 14px; color: var(--muted); transition: color 0.18s; }
.footer__contacts a:hover { color: var(--orange); }
.footer__col-head { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: var(--muted); transition: color 0.18s; }
.footer__links a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: 13px; color: var(--muted); }
.footer__legal { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.footer__legal a { color: var(--muted); transition: color 0.18s; }
.footer__legal a:hover { color: var(--orange); }
.footer__legal span { opacity: 0.5; }

/* COOKIE NOTICE */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  padding: 16px;
}
.cookie-bar.open { transform: translateY(0); }
.cookie-bar__inner {
  max-width: 900px; margin: 0 auto;
  background: var(--ink, #20201F); color: #F2ECE4;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-bar__text { font-size: 13.5px; line-height: 1.6; color: rgba(242,236,228,0.82); flex: 1; min-width: 240px; }
.cookie-bar__text a { color: var(--gold, #D8B463); text-decoration: underline; text-underline-offset: 2px; }
.cookie-bar__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-bar__btn {
  font-family: var(--font-display); font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 11px 20px; border-radius: 100px; border: none; cursor: pointer;
  background: var(--orange); color: #fff; transition: all 0.18s;
}
.cookie-bar__btn:hover { background: #F47F2A; transform: translateY(-1px); }
.cookie-bar__btn--outline { background: transparent; color: rgba(242,236,228,0.75); border: 1px solid rgba(255,255,255,0.18); }
.cookie-bar__btn--outline:hover { color: #fff; border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.05); }
@media (max-width: 640px) {
  .cookie-bar__inner { flex-direction: column; align-items: stretch; text-align: left; }
  .cookie-bar__actions { width: 100%; }
  .cookie-bar__btn { flex: 1; }
}

/* ─── MOTION SYSTEM (Apple-style) ─────────── */

/* Word-by-word heading reveal */
.split .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.split .wi {
  display: inline-block;
  transform: translateY(115%);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease;
  transition-delay: calc(var(--i, 0) * 55ms);
  will-change: transform;
}
.split.in .wi { transform: translateY(0); opacity: 1; }

/* Generic fade-up reveal */
.rv {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--d, 0) * 45ms);
  will-change: transform;
}
.rv.in { opacity: 1; transform: translateY(0); }

/* Hero slideshow */
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero__slide.active {
  opacity: 1;
  animation: kenburns 7s ease-out forwards;
}
@keyframes kenburns { from { transform: scale(1.07); } to { transform: scale(1); } }
.hero__slides::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(5,5,5,0.97) 8%, rgba(5,5,5,0.55) 45%, rgba(5,5,5,0.35) 100%),
    linear-gradient(to right, rgba(5,5,5,0.75) 0%, transparent 60%);
}
.hero__dots {
  display: flex; gap: 8px;
  position: absolute; right: 32px; bottom: 32px; z-index: 3;
}
.hero__dot {
  width: 28px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  border: none; padding: 0;
  transition: background 0.3s;
}
.hero__dot.active { background: var(--orange); }

/* Hero content parallax fade handled by JS via --hp */
.hero__content { transform: translateY(calc(var(--hp, 0) * 0.22px)); opacity: calc(1 - var(--hp, 0) / 1100); }

/* Nav hide-on-scroll-down */
.nav { transform: translateY(0); transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), background 0.3s, box-shadow 0.3s; }
.nav.hidden { transform: translateY(-100%); }

/* ─── MAKES STRIP ─────────────────────────── */
.makes { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 44px 0; }
.makes__label {
  text-align: center; font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px;
}
.makes__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; max-width: 900px; margin: 0 auto; }
.make {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  padding: 7px 16px; border: 1px solid var(--border); border-radius: var(--radius);
  transition: color 0.2s, border-color 0.2s;
}
.make:hover { color: var(--gold); border-color: rgba(201,168,76,0.3); }

/* ─── SIZE SELECTOR + PACKAGES ────────────── */
.sizer { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 40px; }
.sizer__btn {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 11px 20px; border-radius: 100px; cursor: pointer;
  background: var(--surface-3); color: var(--muted);
  border: 1px solid var(--border); transition: all 0.2s;
}
.sizer__btn:hover { color: var(--white); border-color: rgba(32,32,31,0.22); }
.sizer__btn.on { background: var(--orange); color: #fff; border-color: var(--orange); }

.packs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 800px) { .packs { grid-template-columns: 1fr; } }
.pack {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.2s;
}
.pack:hover { border-color: rgba(232,115,32,0.3); }
.pack--feature { border-color: rgba(232,115,32,0.35); }
.pack__img { height: 210px; background-size: cover; background-position: center; position: relative; }
.pack__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--surface), transparent 55%); }
.pack__body { padding: 28px 30px 30px; flex: 1; display: flex; flex-direction: column; }
.pack__tag {
  align-self: flex-start; font-family: var(--font-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px;
  background: var(--orange-dim); color: var(--orange); border: 1px solid rgba(232,115,32,0.22);
  margin-bottom: 14px;
}
.pack__tag--gold { background: var(--gold-dim); color: var(--gold); border-color: rgba(201,168,76,0.22); }
.pack__name {
  font-family: var(--font-display); font-size: 27px; font-weight: 800;
  text-transform: uppercase; color: var(--white); line-height: 1; margin-bottom: 8px;
}
.pack__meta { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.pack__price {
  font-family: var(--font-display); font-size: 46px; font-weight: 900;
  color: var(--orange); line-height: 1; margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.pack__price-note { font-size: 12px; color: var(--muted); margin-bottom: 24px; }
.pack__list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; flex: 1; }
.pack__list li { display: flex; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.55; }
.pack__list li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.pack .btn { justify-content: center; }

/* ─── WE COME TO YOU ──────────────────────── */
.spots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 860px) { .spots { grid-template-columns: 1fr 1fr; } }
.spot {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 24px; text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.spot:hover { border-color: rgba(232,115,32,0.3); transform: translateY(-3px); }
.spot__icon { font-size: 30px; margin-bottom: 14px; }
.spot__name {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  text-transform: uppercase; color: var(--white); margin-bottom: 7px; letter-spacing: 0.04em;
}
.spot__desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── PROCESS ─────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--surface); padding: 36px 32px; }
.step__num {
  font-family: var(--font-display); font-size: 40px; font-weight: 900;
  color: var(--orange); line-height: 1; margin-bottom: 14px; opacity: 0.9;
}
.step__title {
  font-family: var(--font-display); font-size: 19px; font-weight: 700;
  text-transform: uppercase; color: var(--white); margin-bottom: 9px; letter-spacing: 0.03em;
}
.step__desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─── STATS ───────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 860px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
}
.stat__val {
  font-family: var(--font-display); font-size: 44px; font-weight: 900;
  color: var(--white); line-height: 1; margin-bottom: 8px;
}
.stat__val span { color: var(--orange); }
.stat__label {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}

/* ─── AREA COLUMNS ────────────────────────── */
.areacols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 760px) { .areacols { grid-template-columns: 1fr; gap: 28px; } }
.areacol__head {
  font-family: var(--font-display); font-size: 15px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange);
  padding-bottom: 12px; margin-bottom: 16px; border-bottom: 1px solid var(--border);
}
.areacol ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.areacol li { font-size: 14px; color: var(--muted); }

/* ─── ICONS ───────────────────────────────── */
.trust-item__icon svg, .why__bullet svg, .spot__icon svg,
.contact-card__icon svg, .sc__icon svg { display: block; }
.trust-item__icon svg { width: 19px; height: 19px; color: var(--orange); }
.why__bullet svg { width: 21px; height: 21px; color: var(--orange); }
.spot__icon { display: flex; justify-content: center; }
.spot__icon svg { width: 30px; height: 30px; color: var(--orange); }
.contact-card__icon svg { width: 21px; height: 21px; color: var(--orange); }
.sc__icon svg { width: 26px; height: 26px; color: var(--orange); }
.sc__icon { line-height: 0; }

/* ─── REVIEW MARQUEE ──────────────────────── */
.marquee {
  overflow: hidden;
  max-width: 100vw;
  position: relative;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 78s linear infinite;
}
.marquee--rev .marquee__track { animation-direction: reverse; animation-duration: 92s; }
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.rev {
  flex: 0 0 380px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
}
.rev__stars { color: #E09400; font-size: 13px; letter-spacing: 3px; margin-bottom: 14px; }
.rev__text {
  font-size: 14px; color: var(--text); line-height: 1.72;
  flex: 1; margin-bottom: 18px;
}
.rev__foot { display: flex; align-items: center; gap: 11px; border-top: 1px solid var(--border); padding-top: 15px; }
.rev__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--orange-dim); border: 1px solid rgba(232,115,32,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 15px; font-weight: 800;
  color: var(--orange); flex-shrink: 0;
}
.rev__name {
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  text-transform: uppercase; color: var(--white); letter-spacing: 0.04em; line-height: 1.2;
}
.rev__src { font-size: 11.5px; color: var(--muted); margin-top: 1px; }

/* ─── PREMIUM PRICING ─────────────────────── */
.pricing-wrap { position: relative; }
.pricing-wrap::before {
  content: '';
  position: absolute; left: 50%; top: -60px;
  width: 620px; height: 620px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(232,115,32,0.055) 0%, transparent 68%);
  pointer-events: none;
}
.pricing-wrap > * { position: relative; }

.sizer {
  display: inline-flex; flex-wrap: wrap; gap: 4px; justify-content: center;
  margin: 0 auto 44px; padding: 5px;
  background: rgba(32,32,31,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
}
.sizer__btn {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 11px 22px; border-radius: 100px; cursor: pointer;
  background: transparent; color: var(--muted);
  border: none; transition: color 0.22s, background 0.22s, box-shadow 0.22s;
}
.sizer__btn:hover { color: var(--white); }
.sizer__btn.on {
  background: linear-gradient(180deg, #F0801f, var(--orange));
  color: #fff;
  box-shadow: 0 4px 14px rgba(232,115,32,0.32);
}
.sizer-row { text-align: center; }

.pack {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pack:hover {
  transform: translateY(-4px);
  border-color: rgba(232,115,32,0.32);
  box-shadow: 0 18px 40px rgba(32,32,31,0.14);
}
.pack--feature {
  border-color: rgba(232,115,32,0.34);
  box-shadow: 0 0 0 1px rgba(232,115,32,0.07), 0 18px 46px rgba(0,0,0,0.4);
}
.pack--feature::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange) 22%, var(--gold) 50%, var(--orange) 78%, transparent);
  z-index: 3;
}
.pack__img { height: 220px; background-size: cover; background-position: center; position: relative; }
.pack__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--surface-2) 2%, rgba(25,25,25,0.35) 50%, transparent 100%);
}
.pack__body { padding: 26px 32px 32px; flex: 1; display: flex; flex-direction: column; }
.pack__tag {
  align-self: flex-start;
  font-family: var(--font-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  background: var(--orange-dim); color: var(--orange);
  border: 1px solid rgba(232,115,32,0.25);
  margin-bottom: 16px;
}
.pack__tag--gold { background: var(--gold-dim); color: var(--gold); border-color: rgba(201,168,76,0.28); }
.pack__name {
  font-family: var(--font-display); font-size: 30px; font-weight: 800;
  text-transform: uppercase; color: var(--white);
  line-height: 1; margin-bottom: 9px; letter-spacing: 0.01em;
}
.pack__meta {
  font-size: 12.5px; color: var(--muted); margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.pack__price-row {
  display: flex; align-items: baseline; gap: 10px;
  padding-bottom: 20px; margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.pack__price {
  font-family: var(--font-display); font-size: 54px; font-weight: 900;
  color: var(--white); line-height: 0.9;
  font-variant-numeric: tabular-nums; letter-spacing: -0.015em;
}
.pack__price-note { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
.pack__list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; flex: 1; }
.pack__list li { display: flex; gap: 11px; font-size: 14px; color: var(--text); line-height: 1.55; }
.pack__list li::before {
  content: ''; flex-shrink: 0; margin-top: 6px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,115,32,0.14);
}
.pack .btn { justify-content: center; padding: 16px 28px; }

/* ─── MOBILE ──────────────────────────────── */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section--tight { padding: 48px 0; }
  .hero { min-height: 92vh; padding-bottom: 56px; }
  .hero__slides::after,
  .hero__photo::before {
    background: linear-gradient(to top, rgba(5,5,5,0.985) 14%, rgba(5,5,5,0.86) 42%, rgba(5,5,5,0.62) 100%);
  }
  .page-hero--photo::before {
    background: linear-gradient(to right, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.88) 100%);
  }
  .hero__sub { font-size: 16px; }
  .hero__sub strong { color: #fff; }
  .hero__stats { flex-direction: column; max-width: 100%; }
  .hero__stat { border-right: none; border-bottom: 1px solid var(--border); }
  .hero__stat:last-child { border-bottom: none; }
  .hero__actions { margin-bottom: 48px; }
  .hero__dots { right: 20px; bottom: 20px; }
  .page-hero, .page-hero--photo { padding: calc(var(--nav-h) + 64px) 0 52px; }
  .container { padding: 0 20px; }
  .nav__logo-sub { display: none; }
  .cta-banner { padding: 64px 0; }
  .rev { flex: 0 0 290px; padding: 22px 24px; }
  .marquee__track { gap: 12px; }
  .contact-card { padding: 22px; gap: 14px; }
  .contact-card__val { font-size: 14px; word-break: break-word; overflow-wrap: anywhere; }
  .contact-card > div { min-width: 0; }
  .footer__contacts a { word-break: break-word; overflow-wrap: anywhere; }
  .btn { white-space: normal; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .rv, .split .wi { opacity: 1 !important; transform: none !important; }
  .hero__slide { opacity: 1 !important; }
  .hero__content { transform: none !important; opacity: 1 !important; }
}

/* ─── MEMBERSHIP / PLAN TOGGLE ────────────── */
.plan-row { text-align: center; margin-bottom: 16px; }
.plan {
  display: inline-flex; gap: 4px; padding: 5px;
  background: rgba(32,32,31,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
}
.plan__btn {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 11px 24px; border-radius: 100px; cursor: pointer;
  background: transparent; color: var(--muted);
  border: none; transition: color 0.22s, background 0.22s, box-shadow 0.22s;
  display: inline-flex; align-items: center; gap: 8px;
}
.plan__btn:hover { color: var(--white); }
.plan__btn.on {
  background: linear-gradient(180deg, #F0801f, var(--orange));
  color: #fff; box-shadow: 0 4px 14px rgba(232,115,32,0.32);
}
.plan__btn--member.on {
  background: linear-gradient(180deg, #D7B558, var(--gold));
  color: #1a1400; box-shadow: 0 4px 14px rgba(201,168,76,0.3);
}
.plan__save {
  font-size: 10px; letter-spacing: 0.08em;
  padding: 2px 7px; border-radius: 100px;
  background: rgba(201,168,76,0.18); color: var(--gold);
}
.plan__btn.on .plan__save { background: rgba(0,0,0,0.18); color: inherit; }

/* price with member state */
.pack__price-was {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--muted); text-decoration: line-through;
  text-decoration-color: rgba(232,115,32,0.6);
  align-self: center;
}
.pack__save {
  display: none;
  align-self: center;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px;
  background: rgba(201,168,76,0.14); color: var(--gold);
  border: 1px solid rgba(201,168,76,0.28);
  white-space: nowrap;
}
.is-member .pack__save { display: inline-block; }
.pack__save:empty { display: none !important; }
.is-member .pack--feature { border-color: rgba(201,168,76,0.4); }
.is-member .pack--feature::before {
  background: linear-gradient(90deg, transparent, var(--gold) 22%, #E8D9A0 50%, var(--gold) 78%, transparent);
}
.pack__cycle { font-size: 13px; color: var(--muted); align-self: flex-end; padding-bottom: 6px; }

.pack__member-note {
  display: none;
  margin: -8px 0 22px;
  padding: 13px 16px;
  border-radius: var(--radius);
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  font-size: 13px; color: var(--text); line-height: 1.6;
}
.is-member .pack__member-note { display: block; }
.pack__member-note b { color: var(--gold); font-weight: 600; }

/* ─── MEMBERSHIP TIERS ────────────────────── */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  background: linear-gradient(180deg, var(--surface), var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 32px 30px;
  display: flex; flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.tier:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-4px); box-shadow: 0 20px 44px rgba(0,0,0,0.4); }
.tier--mid { border-color: rgba(201,168,76,0.3); }
.tier__label {
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
  text-transform: uppercase; color: var(--white); letter-spacing: 0.03em; margin-bottom: 4px;
}
.tier__sub { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 22px; }
.tier__price {
  font-family: var(--font-display); font-size: 50px; font-weight: 900;
  color: var(--gold); line-height: 0.9; font-variant-numeric: tabular-nums;
}
.tier__per { font-size: 14px; color: var(--muted); margin: 6px 0 20px; }
.tier__upgrade {
  padding: 14px 16px; border-radius: var(--radius);
  background: rgba(232,115,32,0.08); border: 1px solid rgba(232,115,32,0.2);
  font-size: 13px; color: var(--text); line-height: 1.55; margin-bottom: 24px;
}
.tier__upgrade b { color: var(--orange); font-weight: 600; }
.tier .btn { justify-content: center; margin-top: auto; }

/* ─── MEMBER BAND (service pages) ─────────── */
.member-band {
  background: linear-gradient(100deg, rgba(201,168,76,0.1), rgba(232,115,32,0.06));
  border-top: 1px solid rgba(201,168,76,0.22);
  border-bottom: 1px solid rgba(201,168,76,0.22);
  padding: 30px 0;
}
.member-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap;
}
.member-band__left { display: flex; align-items: center; gap: 18px; }
.member-band__icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: rgba(201,168,76,0.14); border: 1px solid rgba(201,168,76,0.28);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.member-band__icon svg { width: 23px; height: 23px; color: var(--gold); }
.member-band__title {
  font-family: var(--font-display); font-size: 21px; font-weight: 800;
  text-transform: uppercase; color: var(--white); letter-spacing: 0.02em; margin-bottom: 3px;
}
.member-band__desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; max-width: 560px; }
.member-band__desc b { color: var(--gold); font-weight: 600; }
@media (max-width: 700px) {
  .member-band__inner { flex-direction: column; align-items: flex-start; }
  .member-band .btn { width: 100%; justify-content: center; }
}

/* member column in price table */
.td-member { color: var(--gold); font-weight: 600; }
.pt-wrap thead th.th-member { color: var(--gold); }

/* Discount popup */
.promo { position: fixed; inset: 0; z-index: 999; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.35s ease; }
.promo.open { opacity: 1; visibility: visible; }
.promo__backdrop { position: absolute; inset: 0; background: rgba(4,4,4,0.78); backdrop-filter: blur(4px); }
.promo__card { position: relative; width: 100%; max-width: 440px; background: linear-gradient(165deg, var(--surface-2), var(--black)); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px 36px 30px; box-shadow: 0 30px 90px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,76,0.08); transform: translateY(24px) scale(0.97); transition: transform 0.4s cubic-bezier(.2,.9,.25,1); }
.promo.open .promo__card { transform: translateY(0) scale(1); }
.promo__card::before { content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 2px; background: linear-gradient(90deg, transparent, var(--orange), var(--gold), transparent); }
.promo__close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); background: rgba(255,255,255,0.03); color: var(--muted); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.18s; }
.promo__close:hover { color: var(--white); border-color: var(--orange); background: var(--orange-dim); }
.promo__eyebrow { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.promo__title { font-family: var(--font-display); font-size: 32px; font-weight: 800; line-height: 1.08; color: var(--white); margin-bottom: 14px; letter-spacing: 0.01em; }
.promo__title span { color: var(--orange); }
.promo__sub { font-size: 14.5px; line-height: 1.6; color: var(--text); margin-bottom: 24px; }
.promo__toggle { display: flex; gap: 6px; background: var(--surface); border: 1px solid var(--border); border-radius: 100px; padding: 4px; margin-bottom: 14px; }
.promo__toggle-btn { flex: 1; border: none; background: transparent; color: var(--muted); font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 9px 0; border-radius: 100px; cursor: pointer; transition: all 0.18s; }
.promo__toggle-btn.on { background: var(--orange); color: #fff; }
.promo__input { width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); color: var(--white); font-family: var(--font-body); font-size: 15px; padding: 14px 16px; margin-bottom: 14px; transition: border-color 0.18s; }
.promo__input:focus { outline: none; border-color: var(--orange); }
.promo__input::placeholder { color: var(--muted); }
.promo__submit { display: block; width: 100%; text-align: center; background: var(--orange); color: #fff; border: none; font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 15px 0; border-radius: var(--radius); cursor: pointer; transition: all 0.18s; text-decoration: none; }
.promo__submit:hover { background: #F47F2A; transform: translateY(-2px); box-shadow: 0 10px 26px var(--orange-glow); }
.promo__fine { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }
.promo__success { display: none; text-align: center; padding-top: 6px; }
.promo__success.show { display: block; }
.promo__success-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--orange-dim); border: 1px solid rgba(232,115,32,0.3); color: var(--orange); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.promo__success .promo__title { font-size: 26px; margin-bottom: 10px; }
.promo__success .promo__sub { margin-bottom: 22px; }
.promo__submit--book { display: inline-block; width: 100%; }
body.promo-lock { overflow: hidden; }
@media (max-width: 480px) {
  .promo__card { padding: 32px 22px 24px; }
  .promo__title { font-size: 26px; }
}


/* ================================================================
   IDENTITY 2.0 — quiet-premium layer
   Serif sentence-case display, hairline detailing, restrained accent,
   the RO/DI water chapter, editorial services, hallmark device.
   ================================================================ */
.heading-xl em, .heading-lg em, .heading-md em, .svc-ed__title em {
  font-style: italic; font-weight: 500; color: var(--orange);
}
.heading-lg .accent { color: var(--orange); font-style: italic; font-weight: 500; }
.sub-center { max-width: 540px; font-size: 15px; }
::selection { background: rgba(204,82,16,0.22); }

/* hero recomposition */
.hero__badge { font-family: var(--font-ui); font-size: 10px; font-weight: 600; letter-spacing: 0.22em; background: transparent; border-color: var(--border); color: var(--muted); }
.hero__sub { max-width: 600px; }
.hero__tel { font-family: var(--font-ui); font-size: 13px; font-weight: 600; letter-spacing: 0.12em; color: var(--muted); }
.hero__stat-val { font-family: var(--font-display); font-weight: 600; }
.hero__stat-label { font-family: var(--font-ui); letter-spacing: 0.18em; }

/* hallmark stamp */
.hallmark { width: 116px; height: 116px; color: rgba(238,229,217,0.72); }
.hallmark svg { width: 100%; height: 100%; display: block; overflow: visible; }
.hallmark__spin { transform-origin: 60px 60px; animation: hallmarkSpin 46s linear infinite; }
@keyframes hallmarkSpin { to { transform: rotate(360deg); } }
.hallmark text { font-family: var(--font-ui); font-size: 9.2px; font-weight: 600; letter-spacing: 0.3em; fill: currentColor; }
.hallmark__drop { fill: var(--orange); }
.hallmark__ring { fill: none; stroke: currentColor; stroke-opacity: 0.35; stroke-width: 1; }
.hero .hallmark { position: absolute; right: 52px; bottom: 48px; z-index: 3; }
@media (max-width: 960px) { .hero .hallmark { display: none; } }

/* ── THE WATER CHAPTER ─────────────────────── */
.water { background: var(--water-ink); color: #D5E2E9; padding: 112px 0 92px; position: relative; overflow: hidden; }
.water .eyebrow { color: var(--water); }
.water .eyebrow::before { background: var(--water); }
.water__title { color: #F0F5F8; max-width: 660px; }
.water__lede { max-width: 570px; color: rgba(213,226,233,0.72); font-size: 16px; line-height: 1.8; margin-top: 18px; }
.water__compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; margin: 70px 0 60px; }
.water__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(70px, 10vw, 142px); line-height: 0.9; letter-spacing: -0.02em; color: rgba(213,226,233,0.32); font-variant-numeric: tabular-nums; }
.water__num--zero { color: #A5D2E5; text-shadow: 0 0 70px rgba(127,168,188,0.4); }
.water__unit { font-family: var(--font-ui); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(213,226,233,0.48); margin: 16px 0 6px; }
.water__label { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: #F0F5F8; margin-bottom: 10px; }
.water__note { font-size: 13.5px; line-height: 1.7; color: rgba(213,226,233,0.6); max-width: 340px; }
.water__vs { align-self: start; font-family: var(--font-display); font-style: italic; font-size: 17px; color: rgba(213,226,233,0.42); padding-top: 148px; }
.water-scale { margin-bottom: 52px; }
.water-scale__track { height: 3px; background: rgba(213,226,233,0.14); position: relative; overflow: hidden; }
.water-scale__fill { position: absolute; inset: 0; background: linear-gradient(90deg, #55809A, #A5D2E5); width: 100%; transition: width 2.2s cubic-bezier(0.6, 0, 0.15, 1) 0.35s; }
.water-scale.in .water-scale__fill { width: 0; }
.water-scale__ticks { display: flex; justify-content: space-between; margin-top: 12px; font-family: var(--font-ui); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(213,226,233,0.42); }
.water-scale__ticks .tick--zero { color: #A5D2E5; }
.water__foot { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: baseline; border-top: 1px solid rgba(213,226,233,0.12); padding-top: 26px; }
.water__step { font-family: var(--font-ui); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(213,226,233,0.58); }
.water__step b { color: #A5D2E5; font-weight: 600; margin-right: 7px; }
.water__result { margin-left: auto; font-family: var(--font-display); font-style: italic; font-size: 16px; color: #E8F0F4; }
.water .hallmark { position: absolute; top: 56px; right: 50px; color: rgba(213,226,233,0.46); }
.water .hallmark .hallmark__drop { fill: #A5D2E5; }
@media (max-width: 880px) {
  .water { padding: 50px 0 42px; }
  .water .heading-lg { font-size: 27px; }
  .water__lede { font-size: 13.5px; line-height: 1.6; margin-top: 10px; }
  .water__compare { grid-template-columns: 1fr 1fr; gap: 8px 16px; margin: 26px 0 24px; align-items: start; }
  .water__vs { display: none; }
  .water__num { font-size: 46px; }
  .water__unit { font-size: 8px; letter-spacing: 0.16em; margin: 6px 0 2px; }
  .water__label { font-size: 14px; margin-bottom: 0; }
  .water__note { display: none; }
  .water__after { display: none; }
  .water__fig { margin-top: 10px; max-width: 100%; }
  .water .water__fig-img, .water .water__fig-img--tall { aspect-ratio: 4 / 3; background-position: center 55%; }
  .water__fig-img::after { inset: -5px; }
  .water__fig figcaption { display: none; }
  .water-scale { margin-bottom: 24px; }
  .water-scale__ticks { font-size: 8px; margin-top: 8px; }
  .water__foot { gap: 7px 16px; padding-top: 15px; }
  .water__step { font-size: 8.5px; letter-spacing: 0.12em; }
  .water__result { margin-left: 0; font-size: 13px; }
  .water .hallmark { display: none; }
}

/* ── EDITORIAL SERVICES ────────────────────── */
.svc-ed { display: flex; flex-direction: column; }
.svc-ed__row { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(28px, 5vw, 76px); align-items: center; padding: 54px 0; border-top: 1px solid var(--border); }
.svc-ed__row:last-of-type { border-bottom: 1px solid var(--border); }
.svc-ed__row:nth-of-type(even) .svc-ed__media { order: 2; }
.svc-ed__media { aspect-ratio: 4 / 3; background-size: cover; background-position: center; border-radius: 3px; position: relative; }
.svc-ed__media::after { content: ''; position: absolute; inset: -10px; border: 1px solid var(--border); border-radius: 5px; pointer-events: none; }
.svc-ed__label { font-family: var(--font-ui); font-size: 10px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.svc-ed__title { font-family: var(--font-display); font-size: clamp(23px, 2.9vw, 33px); font-weight: 600; line-height: 1.15; color: var(--white); margin-bottom: 13px; max-width: 460px; transition: color 0.2s; }
.svc-ed__row:hover .svc-ed__title { color: var(--orange); }
.svc-ed__desc { font-size: 14.5px; line-height: 1.75; color: var(--muted); max-width: 470px; margin-bottom: 20px; }
.svc-ed__foot { display: flex; align-items: baseline; gap: 24px; }
.svc-ed__price { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--white); }
.svc-ed__go { font-family: var(--font-ui); font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); display: inline-flex; align-items: center; gap: 7px; }
.svc-ed__go svg { transition: transform 0.2s; }
.svc-ed__row:hover .svc-ed__go svg { transform: translateX(4px); }
.svc-ed__more { display: flex; gap: 40px; justify-content: center; padding-top: 34px; font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.svc-ed__more a { color: var(--muted); border-bottom: 1px solid var(--border); padding-bottom: 4px; transition: color 0.2s, border-color 0.2s; }
.svc-ed__more a:hover { color: var(--orange); border-color: var(--orange); }
@media (max-width: 780px) {
  .svc-ed__row { grid-template-columns: 1fr; gap: 20px; padding: 34px 0; }
  .svc-ed__row:nth-of-type(even) .svc-ed__media { order: 0; }
  .svc-ed__media { aspect-ratio: 16 / 9; }
  .svc-ed__media::after { inset: -6px; }
}

/* ── QUIET COMPONENT REFINEMENTS ───────────── */
.step { background: transparent; padding: 26px 0 0; border-top: 1px solid var(--border); }
.step__num { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.step__title { font-family: var(--font-display); font-weight: 600; text-transform: none; letter-spacing: 0; font-size: 21px; }
.spot__name, .areacol__head, .why__it-title, .sc__name, .footer__brand, .member-band__title, .tier__price, .stat__val, .why__big-num, .promo__title, .rev__name {
  font-family: var(--font-display); font-weight: 600; text-transform: none; letter-spacing: 0;
}
.footer__brand { font-size: 23px; }
.footer__brand span { color: var(--orange); font-style: italic; }
.why__big-num { font-weight: 600; }
.pack__name { text-transform: none; letter-spacing: 0; font-weight: 600; }
.pack__tag, .sc__pill, .td-badge, .tier__label, .plan__btn, .sizer__btn, .footer__col-head { font-family: var(--font-ui); }
.pack__price, .tier__price { font-weight: 600; }
.pack__list li::before { content: '\2013'; background: none; box-shadow: none; width: auto; height: auto; margin-top: 0; color: var(--muted); border-radius: 0; font-weight: 400; }
.rev__stars { color: var(--orange); }
.promo__title { text-transform: none; }

.service-card .sc__icon { display: none; }
.sc__price { font-family: var(--font-display); font-weight: 600; }

.faq-q { font-family: var(--font-display); font-weight: 600; text-transform: none; letter-spacing: 0; font-size: 17px; }

.sub-book { text-align: center; margin-top: 10px; font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); }

/* water spots figure */
.water__fig { margin-top: 24px; max-width: 360px; }
.water__fig-img { aspect-ratio: 16 / 10; background-size: cover; background-position: center; border-radius: 3px; position: relative; }
.water__fig-img--tall { aspect-ratio: 4 / 3.4; background-position: center 62%; }
.water__fig-img::after { content: ''; position: absolute; inset: -8px; border: 1px solid rgba(213,226,233,0.18); border-radius: 5px; pointer-events: none; }
.water__fig figcaption { margin-top: 16px; font-family: var(--font-display); font-style: italic; font-size: 13px; color: rgba(213,226,233,0.55); }
.water__after { margin-top: 24px; font-family: var(--font-display); font-style: italic; font-size: 14.5px; color: rgba(213,226,233,0.5); }

/* Reviews on mobile: one track, tighter cards, button close behind */
@media (max-width: 700px) {
  .marquee--rev { display: none; }
  .rev { flex: 0 0 280px; }
  .rev__text {
    display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical;
    overflow: hidden;
  }
  #reviews { padding-bottom: 56px; }
  #reviews > .container:last-child { margin-top: 18px !important; }
}

/* Compact pricing packs on mobile — the whole array fits with minimal scrolling */
@media (max-width: 700px) {
  .pricing-wrap { padding: 40px 0; }
  .pricing-wrap .heading-lg { font-size: 28px; }
  .pricing-wrap .sub-center { font-size: 13px; }
  .pricing-wrap > .container > div:first-child { margin-bottom: 12px; }
  .plan-row, .sizer-row { margin-bottom: 8px; }
  /* Selectors: keep each control to a single tight row */
  .plan { width: 100%; padding: 4px; gap: 3px; }
  .plan__btn { flex: 1; justify-content: center; padding: 9px 8px; font-size: 11.5px;
               letter-spacing: 0.05em; gap: 5px; white-space: nowrap; }
  .plan__save { font-size: 9px; padding: 2px 5px; letter-spacing: 0.03em; }
  .sizer { width: 100%; padding: 4px; gap: 3px; margin-bottom: 0; border-radius: 14px;
           display: grid; grid-template-columns: 1fr 1fr; }
  .sizer__btn { padding: 9px 6px; font-size: 11px; letter-spacing: 0.04em;
                border-radius: 10px; white-space: nowrap; }

  /* Immersive compact card: full-bleed photo, scrim, bold overlay type. All 4 fit one screen. */
  .packs { gap: 8px; margin-top: 10px; }
  .pack {
    position: relative; min-height: 108px;
    border-radius: 20px; border: 1px solid rgba(32,32,31,0.10);
    background: #101010; overflow: hidden;
    box-shadow: 0 10px 26px rgba(32,32,31,0.16);
  }
  .pack--feature { border-color: rgba(232,115,32,0.55); box-shadow: 0 12px 30px rgba(232,115,32,0.22); }
  .pack--feature::before { display: none; }
  .pack__img {
    position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0;
  }
  .pack__img::after {
    display: block; content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.72) 48%, rgba(8,8,8,0.28) 100%);
  }
  .pack__body {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 12px 16px 11px; min-height: 108px;
  }
  .pack__tag {
    display: inline-flex; margin-bottom: 6px; align-self: flex-start;
    font-size: 8.5px; padding: 3px 9px; letter-spacing: 0.14em;
    background: rgba(232,115,32,0.22); color: #FFB073; border-color: rgba(232,115,32,0.4);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  }
  .pack__tag--gold { background: rgba(201,168,76,0.22); color: #E8D9A0; border-color: rgba(201,168,76,0.4); }
  .pack__name {
    font-size: 21px; color: #fff; margin-bottom: 3px; line-height: 0.95;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  }
  .pack__meta {
    font-size: 9.5px; color: rgba(255,255,255,0.72); margin-bottom: 0;
    letter-spacing: 0.07em; max-width: 78%;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .pack__price-row {
    flex-direction: row; align-items: baseline; gap: 7px;
    padding-bottom: 0; margin-bottom: 0; margin-top: auto; border-bottom: none;
    padding-top: 7px;
  }
  .pack__price {
    font-size: 25px; color: #fff; line-height: 1;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  }
  .pack__cycle { font-size: 10px; color: rgba(255,255,255,0.65); align-self: baseline; padding-bottom: 0; white-space: nowrap; }
  .pack__save { font-size: 8.5px; padding: 3px 8px; align-self: baseline; }
  .pack__member-note { display: none !important; }
  .pack__list { display: none !important; }
  .pack .btn {
    position: absolute; z-index: 3; right: 12px; bottom: 12px;
    width: 38px; height: 38px; padding: 0; border-radius: 50%;
    font-size: 0; justify-content: center; align-items: center;
  }
  .pack .btn--outline {
    background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.35); color: #fff;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  }
  .pack .btn svg { width: 16px; height: 16px; }
}

/* Mobile: give dense text links a bit more forgiving tap area without changing their look */
@media (max-width: 700px) {
  .footer__links a, .footer__contacts a, .breadcrumb a, .footer__legal a { display: inline-block; padding: 5px 0; }
  .nav__mobile a { padding: 6px 0; }
}

/* ── MOBILE HERO: everything above the fold ── */
@media (max-width: 640px) {
  .hero { min-height: 0; padding-bottom: 18px; }
  .hero__content { padding-top: calc(var(--nav-h) + 14px); }
  .hero__badge { margin-bottom: 10px; font-size: 8.5px; padding: 5px 12px; letter-spacing: 0.18em; }
  .hero__h1 { font-size: 36px; line-height: 1.06; margin-bottom: 14px; }
  .hero__sub { font-size: 14px; line-height: 1.46; margin-bottom: 12px; }
  .hero__actions { margin-bottom: 14px; gap: 16px; flex-wrap: nowrap; }
  .hero .btn--lg { padding: 14px 22px; font-size: 11px; white-space: nowrap; }
  .hero__tel { font-size: 12px; white-space: nowrap; }
  .hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 100%; }
  .hero__stat { border-right: 1px solid var(--border); border-bottom: none; padding: 10px 10px; }
  .hero__stat:last-child { border-right: none; }
  .hero__stat-val { font-size: 19px; margin-bottom: 3px; }
  .hero__stat-val span { font-size: 12px; }
  .hero__stat-label { font-size: 8px; letter-spacing: 0.1em; line-height: 1.3; }
  .hero__dots { display: none; }
  .trust-item { padding: 13px 28px; }
}


/* ── CITY LOCATION PAGES ─────────────────── */
.city-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 22px; }
.city-trust { display: flex; flex-wrap: wrap; gap: 8px 26px; font-family: var(--font-ui); font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.city-copy-wrap { max-width: 680px; margin-top: 22px; }
.city-copy { font-size: 15.5px; line-height: 1.85; color: var(--text); margin-bottom: 18px; }
.city-hoods { margin-top: 34px; }
.city-hoods__label { font-family: var(--font-ui); font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.city-others { text-align: center; margin-top: 36px; font-size: 13.5px; color: var(--muted); }
.city-others a { color: var(--orange); }
.cta-stick { display: none; }
@media (max-width: 700px) {
  .cta-stick {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    gap: 1px; background: var(--border);
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
  }
  .cta-stick a {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 16px 10px; font-family: var(--font-ui); font-size: 12px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
  }
  .cta-stick svg { width: 15px; height: 15px; }
  .cta-stick__call { background: #201B16; color: #F2EAE0; }
  .cta-stick__book { background: var(--orange); color: #fff; }
  .city-spacer { height: 58px; }
  .city-hero__actions .btn { flex: 1; justify-content: center; padding: 14px 14px; font-size: 11px; white-space: nowrap; }
  .city-trust { gap: 6px 16px; font-size: 9px; }
}
.areacol a { color: inherit; transition: color 0.18s; }
.areacol a:hover { color: var(--orange); }
