/* =====================================================================
   SunSpa Hektor XL — Landing page
   Kráľovstvo pôžitkov · "Zaslúžený luxus"
   Design system: light, airy, elegant, emotional.
   Inspiration: Apple · Tesla · Bang & Olufsen · Polestar
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette (BrandPack — Kráľovstvo pôžitkov) */
  --crimson:      #C4355A;
  --crimson-deep: #9E2847;
  --black:        #1A1A1A;
  --ivory:        #F5F0EA;
  --ivory-dark:   #EDE6DC;
  --gold:         #B89B6A;
  --gold-light:   #D4B98A;
  --white:        #FDFCFA;
  --mid:          #6B5B52;

  /* Derived surfaces */
  --surface:       var(--white);
  --surface-alt:   var(--ivory);
  --surface-warm:  var(--ivory-dark);
  --line:          rgba(26, 26, 26, 0.08);
  --line-strong:   rgba(26, 26, 26, 0.14);
  --gold-soft:     rgba(184, 155, 106, 0.16);
  --crimson-soft:  rgba(196, 53, 90, 0.08);
  --text:          var(--black);
  --text-soft:     #4A433E;
  --text-mute:     var(--mid);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Rhythm */
  --container: 1240px;
  --container-narrow: 920px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(72px, 11vw, 160px);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;

  /* Elevation */
  --shadow-sm: 0 2px 10px rgba(26, 26, 26, 0.05);
  --shadow-md: 0 18px 50px -24px rgba(26, 26, 26, 0.28);
  --shadow-lg: 0 40px 90px -40px rgba(26, 26, 26, 0.4);
  --shadow-crimson: 0 18px 40px -16px rgba(196, 53, 90, 0.45);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  font-family: var(--font-sans);
  background: var(--surface);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--crimson); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--crimson); color: var(--white); }

/* ---------- Typography scale ---------- */
.display {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; }
.section-title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  letter-spacing: -0.025em;
  line-height: 1.04;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.eyebrow--center::before { display: none; }
.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text-soft);
  line-height: 1.6;
  font-weight: 400;
}
.muted { color: var(--text-mute); }
.accent { color: var(--crimson); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); position: relative; }
.section > .container { position: relative; z-index: 1; }
.section--alt,
.section--warm {
  overflow: hidden;
}
.section--alt { background: var(--surface-alt); }
.section--warm { background: var(--surface-warm); }
.section--alt::before,
.section--warm::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.34;
  background:
    radial-gradient(ellipse 42% 30% at 82% 12%, rgba(255,255,255,0.72), transparent 58%),
    repeating-radial-gradient(ellipse at 18% 20%, rgba(184,155,106,0.13) 0 1px, transparent 1px 18px);
  mask-image: linear-gradient(110deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
}
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head .lead { margin-top: 22px; }
.divider { width: 100%; height: 1px; background: var(--line); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 1.05em 1.8em;
  border-radius: var(--radius-pill);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s ease, color 0.3s ease;
  position: relative;
  white-space: nowrap;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.btn--primary { background: var(--crimson); color: var(--white); box-shadow: var(--shadow-crimson); }
.btn--primary:hover { background: var(--crimson-deep); transform: translateY(-3px); box-shadow: 0 24px 50px -18px rgba(196, 53, 90, 0.6); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1.5px var(--line-strong); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--text); transform: translateY(-3px); }
.btn--light { background: var(--white); color: var(--black); box-shadow: var(--shadow-md); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--on-dark { background: transparent; color: var(--white); box-shadow: inset 0 0 0 1.5px rgba(253, 252, 250, 0.3); }
.btn--on-dark:hover { box-shadow: inset 0 0 0 1.5px var(--white); transform: translateY(-3px); }
.btn--lg { padding: 1.2em 2.2em; font-size: 1rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--crimson);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* =====================================================================
   Header / Navigation
   ===================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 80px;
}
.header.is-scrolled {
  background: rgba(253, 252, 250, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 30px -20px rgba(26, 26, 26, 0.3);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo { height: 34px; width: auto; }
.brand__sep { width: 1px; height: 26px; background: var(--line-strong); }
.brand__product { display: flex; flex-direction: column; line-height: 1.05; }
.brand__product b { font-size: 0.86rem; font-weight: 700; letter-spacing: 0.01em; }
.brand__product span { font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.nav { display: flex; align-items: center; gap: 34px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-soft);
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1.5px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }
.header__cta { display: inline-flex; align-items: center; gap: 14px; }
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}
.header__phone svg { width: 17px; height: 17px; color: var(--crimson); }
.header__phone span { transition: color 0.3s ease; }
.header__phone:hover span { color: var(--crimson); }

.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.4s var(--ease), opacity 0.3s ease; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  padding: 110px var(--gutter) 40px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.55s var(--ease), opacity 0.4s ease, visibility 0.4s;
  display: flex;
  flex-direction: column;
}
.drawer.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.drawer a.drawer__link {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer__link svg { width: 20px; height: 20px; color: var(--gold); }
.drawer__foot { margin-top: auto; display: flex; flex-direction: column; gap: 14px; padding-top: 30px; }

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
  position: relative;
  padding-top: clamp(150px, 14vw, 210px);
  padding-bottom: clamp(64px, 9vw, 120px);
  background:
    radial-gradient(ellipse 72% 46% at 80% 0%, rgba(184,155,106,0.2), transparent 62%),
    radial-gradient(ellipse 68% 48% at 0% 100%, rgba(196,53,90,0.1), transparent 58%),
    linear-gradient(180deg, rgba(253,252,250,0.92), rgba(245,240,234,0.74)),
    var(--surface);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background:
    radial-gradient(ellipse 35% 18% at 18% 34%, rgba(255,255,255,0.88), transparent 70%),
    repeating-radial-gradient(ellipse at 72% 22%, rgba(184,155,106,0.16) 0 1px, transparent 1px 22px);
  mask-image: linear-gradient(120deg, transparent 0%, #000 18%, #000 66%, transparent 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(30px, 4.5vw, 58px);
  align-items: end;
  position: relative;
  z-index: 1;
}
.hero__copy { grid-column: 1 / span 6; max-width: 690px; }
.hero__eyebrow { margin-bottom: 26px; }
.hero h1 { margin-bottom: 26px; }
.hero h1 .serif { display: block; color: var(--crimson); font-weight: 400; }
.hero__lead { margin-bottom: 18px; max-width: 33em; }
.hero__slogan {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; }
.hero__stock { display: flex; flex-direction: column; max-width: 24em; }
.hero__stock b { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; color: var(--crimson); }
.hero__stock span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mute); line-height: 1.5; }
.hero__meta-sep { width: 1px; height: 40px; background: var(--line-strong); }
.hero__meta-item { font-size: 0.85rem; color: var(--text-soft); max-width: 16em; }
.hero__meta-item b { display: block; font-size: 0.95rem; color: var(--text); }

.hero__media {
  grid-column: 1 / -1;
  position: relative;
  width: 100vw;
  aspect-ratio: 21 / 9;
  min-height: clamp(460px, 58vw, 760px);
  margin-inline: calc(50% - 50vw);
  border-radius: 0;
  box-shadow: 0 54px 110px -72px rgba(26, 26, 26, 0.58);
  isolation: isolate;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(26,26,26,0.42), rgba(26,26,26,0.06) 44%, rgba(26,26,26,0.16)),
    linear-gradient(0deg, rgba(26,26,26,0.18), transparent 38%);
}
.hero__badge {
  position: absolute;
  left: max(var(--gutter), calc((100vw - var(--container)) / 2));
  bottom: clamp(28px, 5vw, 56px);
  z-index: 3;
  background: rgba(253,252,250,0.92);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 240px;
}
.hero__badge .ring { color: var(--crimson); flex-shrink: 0; }
.hero__badge b { display: block; font-size: 0.92rem; }
.hero__badge span { font-size: 0.74rem; color: var(--text-mute); line-height: 1.4; }
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.hero__scroll .mouse {
  width: 22px; height: 34px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  position: relative;
}
.hero__scroll .mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  width: 3px; height: 6px;
  background: var(--crimson);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollPulse 1.8s var(--ease) infinite;
}
@keyframes scrollPulse { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 10px); } 100% { opacity: 0; } }

/* =====================================================================
   Media placeholder system
   Swap .media__ph for <img>/<video> later — keep the .media wrapper.
   ===================================================================== */
.media {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: var(--ivory-dark);
  box-shadow: var(--shadow-md);
}
.media > img, .media > video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.media[data-media="hero-video"] > img,
.media[data-media="hero-video"] > video { object-position: center 52%; }
.media[data-media="gallery-1"] > img { object-position: center 50%; }
.media[data-media="gallery-2"] > img { object-position: center 54%; }
.media[data-media="gallery-3"] > img { object-position: center 58%; }
.media[data-media="specs"] > img { object-position: center center; }
.media[data-media="gallery-4"] > img { object-position: center 50%; }
.media[data-media="gallery-5"] > img,
.media[data-media="lifestyle"] > img { object-position: center 52%; }
.media__ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(212, 185, 138, 0.35), transparent 55%),
    linear-gradient(300deg, rgba(196, 53, 90, 0.12), transparent 50%),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-dark) 100%);
  color: var(--mid);
  overflow: hidden;
}
.media__ph::before {
  /* moving sheen — reads as "intentional", not broken */
  content: '';
  position: absolute;
  inset: -50%;
  background: linear-gradient(115deg, transparent 40%, rgba(253, 252, 250, 0.55) 50%, transparent 60%);
  transform: translateX(-30%);
  animation: sheen 6s ease-in-out infinite;
}
@keyframes sheen { 0%, 100% { transform: translateX(-40%); } 50% { transform: translateX(40%); } }
.media__ph svg { width: 40px; height: 40px; color: var(--gold); position: relative; z-index: 1; opacity: 0.9; }
.media__ph-label {
  position: relative; z-index: 1;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.media__ph-sub {
  position: relative; z-index: 1;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-mute);
  max-width: 22em;
}
.media__tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(26, 26, 26, 0.72);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}
.media--video .media__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
  width: 76px; height: 76px;
  display: grid;
  place-items: center;
}
.media__play-btn {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(253, 252, 250, 0.92);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  transition: transform 0.4s var(--ease), background 0.3s ease;
}
.media__play-btn::before {
  content: '';
  position: absolute;
  width: 76px; height: 76px;
  border-radius: 50%;
  border: 1.5px solid rgba(253, 252, 250, 0.7);
  animation: ripple 2.6s var(--ease) infinite;
}
@keyframes ripple { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.8); opacity: 0; } }
.media__play-btn svg { width: 24px; height: 24px; color: var(--crimson); margin-left: 3px; }
.media--video:hover .media__play-btn { transform: scale(1.08); }

/* =====================================================================
   Marquee strip (trust)
   ===================================================================== */
.strip { background: var(--black); color: var(--white); padding-block: 0; overflow: hidden; }
.strip__track {
  display: flex;
  gap: 60px;
  padding-block: 22px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.strip:hover .strip__track { animation-play-state: paused; }
.strip__item { display: inline-flex; align-items: center; gap: 14px; font-size: 0.9rem; letter-spacing: 0.04em; color: rgba(253, 252, 250, 0.85); }
.strip__item svg { width: 18px; height: 18px; color: var(--gold-light); }
.strip__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--crimson); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =====================================================================
   Why / feature cards
   ===================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.section--alt .feature { background: var(--white); }
.feature::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--crimson), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature:hover::after { transform: scaleX(1); }
.feature__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--gold-soft);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: background 0.4s ease;
}
.feature__icon svg { width: 28px; height: 28px; color: var(--crimson); }
.feature:hover .feature__icon { background: var(--crimson-soft); }
.feature h3 { font-size: 1.25rem; margin-bottom: 12px; }
.feature p { font-size: 0.96rem; color: var(--text-soft); }
.feature__metric { margin-top: 18px; font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; color: var(--gold); }

/* =====================================================================
   Costs / availability
   ===================================================================== */
.costs {
  background:
    radial-gradient(ellipse 52% 44% at 12% 18%, rgba(184,155,106,0.12), transparent 64%),
    linear-gradient(180deg, var(--surface), var(--surface-alt));
  overflow: hidden;
}
.costs::after {
  content: '';
  position: absolute;
  inset: auto -8% -30% auto;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(184,155,106,0.16);
  border-radius: 48% 52% 43% 57%;
  animation: waterDrift 18s var(--ease) infinite alternate;
  pointer-events: none;
}
@keyframes waterDrift { to { transform: translate3d(-4%, -3%, 0) rotate(8deg); } }
.costs__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.costs__copy { position: relative; z-index: 1; }
.costs__copy h2 { margin: 22px 0; }
.costs__note {
  margin-top: 28px;
  padding: 24px 28px;
  border-left: 2px solid var(--gold);
  background: rgba(253,252,250,0.72);
  box-shadow: var(--shadow-sm);
}
.costs__note b { display: block; margin-bottom: 6px; }
.costs__note span { color: var(--text-soft); font-size: 0.94rem; }
.availability {
  position: relative;
  z-index: 1;
  padding: clamp(30px, 4vw, 52px);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(184,155,106,0.24);
  box-shadow: var(--shadow-md);
}
.availability__label {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.availability h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
.availability p { color: var(--text-soft); margin-bottom: 28px; }

/* =====================================================================
   Comparison
   ===================================================================== */
.compare {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.compare__cell { padding: clamp(16px, 2vw, 24px) clamp(16px, 2.4vw, 30px); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.compare__row-label { font-weight: 600; font-size: 0.95rem; }
.compare__head { background: var(--surface-warm); border-bottom: 1px solid var(--line-strong); }
.compare__head--hero { background: var(--black); color: var(--white); }
.compare__head h3 { font-size: 1.05rem; }
.compare__head span { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; }
.compare__head--hero span { color: var(--gold-light); }
.compare__head:not(.compare__head--hero) span { color: var(--text-mute); }
.compare__val { font-size: 0.92rem; color: var(--text-soft); }
.compare__col--hektor { background: linear-gradient(180deg, rgba(196, 53, 90, 0.04), transparent); }
.compare__cell .ic-yes { color: var(--crimson); flex-shrink: 0; }
.compare__cell .ic-no { color: var(--text-mute); opacity: 0.5; flex-shrink: 0; }
.compare__cell svg { width: 20px; height: 20px; }
.compare__row:last-child .compare__cell { border-bottom: none; }

/* =====================================================================
   Lifestyle (editorial split)
   ===================================================================== */
.lifestyle__grid { display: grid; gap: clamp(36px, 5vw, 80px); align-items: center; }
.lifestyle__media { aspect-ratio: 5 / 6; border-radius: var(--radius-lg); }
.lifestyle h2 { margin-bottom: 24px; }
.lifestyle__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.lifestyle__quote span { color: var(--crimson); }
.lifestyle__list { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; }
.lifestyle__list li { display: flex; gap: 16px; align-items: flex-start; }
.lifestyle__list .tick {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--crimson-soft);
  display: grid; place-items: center;
}
.lifestyle__list .tick svg { width: 15px; height: 15px; color: var(--crimson); }
.lifestyle__list b { display: block; font-size: 1rem; }
.lifestyle__list p { font-size: 0.92rem; color: var(--text-soft); }

/* =====================================================================
   Gallery
   ===================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(230px, 21vw, 340px);
  gap: clamp(16px, 2vw, 28px);
}
.gallery__item { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.gallery__item .media { box-shadow: none; }
.gallery__item .media__ph,
.gallery__item img { transition: transform 0.7s var(--ease); }
.gallery__item:hover .media__ph,
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 18px;
  background: linear-gradient(to top, rgba(26,26,26,0.55), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease);
}
.gallery__item:hover .gallery__item-cap { opacity: 1; transform: translateY(0); }
.g-a { grid-column: span 7; grid-row: span 2; }
.g-b { grid-column: span 5; grid-row: span 1; }
.g-c { grid-column: span 5; grid-row: span 1; }
.g-d { grid-column: span 12; grid-row: span 2; }

/* Color swatches */
.colors { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.swatch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}
.swatch:hover { transform: translateY(-2px); border-color: var(--gold); }
.swatch__chip { width: 30px; height: 30px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1); }
.swatch__chip--silver { background: linear-gradient(135deg, #e9e6e1, #b9b4ad 60%, #d7d3cc); }
.swatch__chip--choco { background: linear-gradient(135deg, #6f4c38, #3d271b 60%, #5a3a29); }
.swatch b { font-size: 0.9rem; }
.swatch span { font-size: 0.72rem; color: var(--text-mute); display: block; }

/* =====================================================================
   Technical parameters
   ===================================================================== */
.specs__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.specs__media { aspect-ratio: 4 / 3; border-radius: var(--radius-lg); }
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.spec {
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}
.spec:nth-child(odd) { padding-right: 24px; }
.spec:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }
.spec dt { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 6px; }
.spec dd { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; }
.spec dd small { font-size: 0.85rem; font-weight: 500; color: var(--text-mute); letter-spacing: 0; }
.specs__price {
  margin-top: 30px;
  padding: 28px 32px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.specs__price .label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); }
.specs__price .value { font-size: 2.2rem; font-weight: 700; letter-spacing: -0.02em; }
.specs__price .note { font-size: 0.78rem; color: rgba(253,252,250,0.6); }

/* =====================================================================
   Warranty
   ===================================================================== */
.warranty-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(18px, 2.4vw, 28px); }
.warranty {
  position: relative;
  padding: clamp(30px, 3.4vw, 44px);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.warranty:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.warranty--hero { background: linear-gradient(160deg, var(--black), #2a2422); color: var(--white); border-color: transparent; }
.warranty__years { font-family: var(--font-serif); font-style: italic; font-size: clamp(3rem, 6vw, 4.4rem); line-height: 0.9; letter-spacing: -0.02em; color: var(--crimson); margin-bottom: 8px; }
.warranty--hero .warranty__years { color: var(--gold-light); }
.warranty__unit { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 18px; }
.warranty--hero .warranty__unit { color: rgba(253,252,250,0.55); }
.warranty h3 { font-size: 1.2rem; margin-bottom: 10px; }
.warranty p { font-size: 0.92rem; color: var(--text-soft); }
.warranty--hero p { color: rgba(253,252,250,0.78); }
.warranty__icon { position: absolute; top: 30px; right: 30px; opacity: 0.18; }
.warranty__icon svg { width: 40px; height: 40px; }
.balboa-note {
  max-width: 760px;
  margin: clamp(24px, 4vw, 42px) auto 0;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.98rem;
}

/* =====================================================================
   Split feature blocks (Service / Showroom)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { aspect-ratio: 4 / 3; border-radius: var(--radius-lg); }
.split h2 { margin-bottom: 22px; }
.split__points { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.split__point { display: flex; gap: 18px; }
.split__point .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 36px;
}
.split__point b { display: block; font-size: 1.05rem; margin-bottom: 4px; }
.split__point p { font-size: 0.92rem; color: var(--text-soft); }
.showroom__info { display: flex; flex-wrap: wrap; gap: 26px; margin: 28px 0 32px; }
.showroom__info > div b { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 4px; }
.showroom__info > div span { font-size: 1rem; font-weight: 600; }

/* =====================================================================
   Stats band
   ===================================================================== */
.stats {
  background:
    radial-gradient(ellipse 70% 60% at 92% 0%, rgba(184,155,106,0.16), transparent 64%),
    linear-gradient(180deg, var(--white), var(--surface-alt));
  color: var(--text);
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background: repeating-radial-gradient(ellipse at 18% 35%, rgba(184,155,106,0.13) 0 1px, transparent 1px 20px);
  mask-image: linear-gradient(115deg, transparent 0%, #000 16%, #000 68%, transparent 100%);
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat__num { font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.stat__num .accent { color: var(--gold); }
.stat__label { margin-top: 12px; font-size: 0.85rem; color: var(--text-mute); letter-spacing: 0.02em; }
.stats__divider { height: 1px; background: rgba(253,252,250,0.1); margin-bottom: clamp(40px,6vw,64px); }

/* =====================================================================
   References / testimonials
   ===================================================================== */
.refs__rating { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.refs__stars { display: inline-flex; gap: 3px; }
.refs__stars svg { width: 22px; height: 22px; color: var(--gold); }
.refs__rating b { font-size: 1.1rem; }
.refs__rating span { color: var(--text-mute); font-size: 0.9rem; }
.refs-grid { columns: 3; column-gap: clamp(16px, 2vw, 26px); }
.ref {
  break-inside: avoid;
  margin-bottom: clamp(16px, 2vw, 26px);
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.section--alt .ref { background: var(--surface); }
.ref:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ref__stars { display: inline-flex; gap: 2px; margin-bottom: 16px; }
.ref__stars svg { width: 15px; height: 15px; color: var(--gold); }
.ref p { font-size: 0.98rem; line-height: 1.6; margin-bottom: 18px; }
.ref__by { display: flex; align-items: center; gap: 12px; }
.ref__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-soft); color: var(--crimson); display: grid; place-items: center; font-weight: 700; font-size: 0.9rem; }
.ref__by b { font-size: 0.88rem; display: block; }
.ref__by span { font-size: 0.74rem; color: var(--text-mute); }

/* =====================================================================
   Timeline
   ===================================================================== */
.timeline-section {
  background:
    linear-gradient(180deg, var(--surface), var(--surface-alt));
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.timeline__item {
  background: rgba(253,252,250,0.86);
  padding: clamp(26px, 3vw, 38px);
  min-height: 250px;
  transition: background 0.4s ease, transform 0.5s var(--ease);
}
.timeline__item:hover { background: var(--white); transform: translateY(-4px); }
.timeline__num {
  display: block;
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 34px;
}
.timeline__item h3 { font-size: 1.15rem; margin-bottom: 10px; }
.timeline__item p { color: var(--text-soft); font-size: 0.94rem; line-height: 1.6; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 28px 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.faq__icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; position: relative; transition: border-color 0.3s ease, background 0.3s ease; }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; background: var(--text); border-radius: 2px; transition: transform 0.4s var(--ease), background 0.3s ease; }
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after { width: 2px; height: 12px; }
.faq__item.is-open .faq__icon { background: var(--crimson); border-color: var(--crimson); }
.faq__item.is-open .faq__icon::before, .faq__item.is-open .faq__icon::after { background: var(--white); }
.faq__item.is-open .faq__icon::after { transform: scaleY(0); }
.faq__a { overflow: hidden; height: 0; transition: height 0.45s var(--ease); }
.faq__a-inner { padding-bottom: 28px; color: var(--text-soft); font-size: 1rem; max-width: 64ch; }

/* =====================================================================
   Final CTA + Form
   ===================================================================== */
.cta-final { background: linear-gradient(150deg, #171615 0%, #2a2320 54%, #3a1f2a 100%); color: var(--white); position: relative; overflow: hidden; }
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(253,252,250,0.06), transparent 28%),
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(196,53,90,0.34), transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(184,155,106,0.24), transparent 55%);
  pointer-events: none;
}
.cta-final__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; position: relative; z-index: 1; }
.cta-final .eyebrow { color: var(--gold-light); }
.cta-final h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin: 22px 0 22px; }
.cta-final h2 .serif { color: var(--gold-light); }
.cta-final__lead { color: rgba(253,252,250,0.78); font-size: 1.1rem; max-width: 32em; margin-bottom: 38px; }
.cta-choices { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.cta-choice {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid rgba(212,185,138,0.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(253,252,250,0.09), rgba(253,252,250,0.03));
  box-shadow: inset 0 1px 0 rgba(253,252,250,0.09);
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s var(--ease), box-shadow 0.4s ease;
}
.cta-choice:hover { background: linear-gradient(135deg, rgba(253,252,250,0.14), rgba(253,252,250,0.05)); border-color: rgba(212,185,138,0.62); transform: translateX(4px); box-shadow: 0 22px 54px -34px rgba(212,185,138,0.72), inset 0 1px 0 rgba(253,252,250,0.14); }
.cta-choice__ic { width: 48px; height: 48px; border-radius: 14px; background: rgba(196,53,90,0.16); display: grid; place-items: center; flex-shrink: 0; }
.cta-choice__ic svg { width: 22px; height: 22px; color: var(--gold-light); }
.cta-choice b { display: block; font-size: 1rem; }
.cta-choice span { font-size: 0.84rem; color: rgba(253,252,250,0.6); }
.cta-choice__arrow { margin-left: auto; color: rgba(253,252,250,0.4); transition: transform 0.4s var(--ease), color 0.3s ease; }
.cta-choice:hover .cta-choice__arrow { transform: translateX(5px); color: var(--gold-light); }

/* Form */
.form-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 44px);
  box-shadow: var(--shadow-lg);
}
.form-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form-card > p { font-size: 0.92rem; color: var(--text-mute); margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 8px; color: var(--text-soft); }
.field label .req { color: var(--crimson); }
.field input, .field textarea, .field select {
  width: 100%;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--text);
  background: var(--surface-alt);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--crimson);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--crimson-soft);
}
.field input::placeholder, .field textarea::placeholder { color: #a39a92; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form__consent { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 22px; }
.form__consent input { width: auto; margin-top: 4px; accent-color: var(--crimson); }
.form__consent label { font-size: 0.78rem; color: var(--text-mute); line-height: 1.5; font-weight: 400; letter-spacing: 0; }
.form__success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.form__success.is-visible { display: block; animation: fadeUp 0.6s var(--ease); }
.form__success .check { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--crimson-soft); display: grid; place-items: center; }
.form__success .check svg { width: 30px; height: 30px; color: var(--crimson); }
.form__success h3 { margin-bottom: 8px; }
.form__success p { color: var(--text-mute); font-size: 0.95rem; }
.form.is-submitted .form__body { display: none; }

/* =====================================================================
   Sticky mobile CTA bar (always-visible conversion)
   ===================================================================== */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(253, 252, 250, 0.9);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px -20px rgba(26,26,26,0.3);
  padding: 12px var(--gutter);
  transform: translateY(120%);
  transition: transform 0.5s var(--ease);
  display: none;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__inner { display: flex; gap: 12px; align-items: center; max-width: var(--container); margin-inline: auto; }
.sticky-cta .btn { flex: 1; padding: 0.95em 1em; font-size: 0.9rem; }
.sticky-cta__call {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 1.5px var(--line-strong);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.sticky-cta__call svg { width: 20px; height: 20px; color: var(--crimson); }

/* =====================================================================
   Footer
   ===================================================================== */
.footer { background: var(--black); color: rgba(253,252,250,0.7); padding-block: clamp(56px, 7vw, 84px) 40px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(253,252,250,0.1); }
.footer__brand-link { display: inline-block; }
.footer__brand-logo { height: 40px; width: auto; margin-bottom: 20px; }
.footer__brand p { font-size: 0.92rem; max-width: 30ch; line-height: 1.6; }
.footer__brand .serif { color: var(--gold-light); font-size: 1.05rem; display: block; margin-top: 16px; }
.footer h4 { color: var(--white); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer ul a, .footer ul li { font-size: 0.92rem; transition: color 0.3s ease; }
.footer ul a:hover { color: var(--gold-light); }
.footer__contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 28px; font-size: 0.8rem; color: rgba(253,252,250,0.45); }
.footer__bottom a:hover { color: var(--gold-light); }

/* =====================================================================
   Scroll reveal
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-stagger.is-in > * { opacity: 1; transform: none; }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 0.40s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (min-width: 901px) {
  .lifestyle__grid { grid-template-columns: 0.9fr 1.1fr; }
}

@media (max-width: 1080px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .refs-grid { columns: 2; }
}

@media (max-width: 900px) {
  body { font-size: 16px; }
  .nav__links, .header__cta { display: none; }
  .burger { display: flex; }
  .sticky-cta { display: block; }
  .hero { padding-top: 110px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { grid-column: 1; }
  .hero__media { grid-column: 1; aspect-ratio: 16 / 11; min-height: clamp(360px, 74vw, 620px); }
  .hero__badge { left: 16px; }
  .lifestyle__grid, .specs__grid, .split { grid-template-columns: 1fr; }
  .costs__grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .compare { grid-template-columns: 1fr 1fr; }
  .compare__head:first-child,
  .compare__cell:has(.compare__row-label) {
    grid-column: 1 / -1;
    background: var(--surface-warm);
    padding-block: 14px;
  }
  .compare__head:first-child { display: none; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .cta-final__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; }
  .g-a { grid-column: span 4; }
  .g-b, .g-c { grid-column: span 2; }
  .g-d { grid-column: span 4; grid-row: span 2; }
}

@media (max-width: 600px) {
  :root { --section-y: clamp(60px, 14vw, 90px); }
  .refs-grid { columns: 1; }
  .feature-grid { grid-template-columns: 1fr; }
  .spec-list { grid-template-columns: 1fr; }
  .spec:nth-child(even) { padding-left: 4px; border-left: none; }
  .spec:nth-child(odd) { padding-right: 4px; }
  .field-row { grid-template-columns: 1fr; }
  .specs__price { flex-direction: column; align-items: flex-start; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .timeline { grid-template-columns: 1fr; }
  .timeline__item { min-height: auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-a { grid-column: span 2; grid-row: span 2; }
  .g-b, .g-c { grid-column: span 1; }
  .g-d { grid-column: span 2; grid-row: span 2; }
  .hero__meta-sep { display: none; }
  .hero__actions .btn--lg { padding: 0.95em 1.5em; font-size: 0.9rem; }
  .compare__head h3 { font-size: 0.92rem; }
}
