/* ==========================================================================
   Quantum Bottle — qubottle.com
   Oura-inspired editorial redesign: full-bleed dark hero, calm light
   editorial sections with big-number stats, horizontal tech cards,
   alternating dark/light rhythm. Brand: Deep Navy / Glacier / Beige.
   ========================================================================== */

:root {
  --navy: #002E4C;
  --ink: #001B2E;          /* near-black navy for dark sections */
  --ink-2: #00243d;
  --glacier: #C0E7FA;
  --glacier-deep: #6db6dd;
  --beige: #F5EAD3;
  --cream: #FAF7F0;        /* warm off-white page background */
  --green: #004422;
  --text: #0e2233;         /* body text on light */
  --muted: #56728a;        /* secondary text on light */
  --muted-dark: #9db8cc;   /* secondary text on dark */
  --line: rgba(0, 46, 76, 0.12);
  --radius: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

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

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

::selection { background: var(--glacier); color: var(--ink); }

/* Anchored sections land clear of the fixed nav */
section[id] { scroll-margin-top: 72px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.kicker {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.only-wide { display: none; }
@media (min-width: 800px) { .only-wide { display: inline; } }

/* ===== Buttons (Oura pill style) ===== */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.95rem 2.1rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-align: center;
}
.btn--solid {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #dbf2fd 0%, var(--glacier) 45%, #a5d9f2 100%);
  color: var(--ink);
  box-shadow: 0 0 0 rgba(192, 231, 250, 0);
}
.btn--solid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, 0.65) 50%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(192, 231, 250, 0.45); }
.btn--solid:hover::after { transform: translateX(130%); }
.btn--solid:disabled { opacity: 0.7; cursor: wait; transform: none; }
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn--block { display: block; width: 100%; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--glacier-deep);
  outline-offset: 3px;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__brand { display: flex; align-items: center; }
.nav__logo {
  display: block;
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.35s var(--ease);
}
.nav__links {
  display: none;
  gap: 1.9rem;
  margin: 0 auto;
}
.nav__links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s var(--ease);
  padding: 0.35rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1.5px;
  background: currentColor;
  transition: right 0.3s var(--ease);
}
.nav__links a:hover::after, .nav__links a.is-current::after { right: 0; }
.nav__links a:hover, .nav__links a.is-current { color: #fff; }
.nav__cta {
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.6rem 1.35rem;
  border-radius: 100px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}
.nav__cta:hover { transform: translateY(-1px); background: #fff; }
@media (min-width: 800px) {
  .nav__links { display: flex; }
  .nav__cta { margin-left: 0; }
}

.nav.is-scrolled {
  background: rgba(250, 247, 240, 0.86);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-scrolled .nav__logo { filter: brightness(0); }
.nav.is-scrolled .nav__links a { color: var(--muted); }
.nav.is-scrolled .nav__links a:hover, .nav.is-scrolled .nav__links a.is-current { color: var(--ink); }
.nav.is-scrolled .nav__cta { background: var(--ink); color: #fff; }

/* ==========================================================================
   HERO — full-bleed video, Oura-style lower-third text
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
/* Blurred cover backdrop fills any letterbox space around the contained film */
.hero__blur {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(46px) brightness(0.5) saturate(1.15);
  transform: scale(1.12);
}
/* The film itself is never cropped — its baked-in narrative text stays fully visible */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero__video img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0, 15, 26, 0.88) 0%, rgba(0, 15, 26, 0.35) 38%, rgba(0, 15, 26, 0.12) 60%, rgba(0, 15, 26, 0.3) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 7rem 1.4rem clamp(4.5rem, 10vh, 7.5rem);
}
.hero__eyebrow, .hero__title, .hero__sub, .hero__actions, .hero__film {
  animation: rise 0.9s var(--ease) both;
}
.hero__title { animation-delay: 0.12s; }
.hero__sub { animation-delay: 0.24s; }
.hero__actions { animation-delay: 0.36s; }
.hero__film { animation-delay: 0.48s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--glacier);
  margin-bottom: 1.1rem;
}
.hero__title {
  font-size: clamp(2.7rem, 7.4vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  color: #fff;
  max-width: 14ch;
}
.hero__sub {
  margin-top: 1.3rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  max-width: 46ch;
  line-height: 1.55;
}
.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero__film {
  margin-top: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}
.hero__film:hover { color: #fff; }
.hero__film-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  font-size: 0.6rem;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  padding-left: 2px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.hero__film:hover .hero__film-icon { border-color: #fff; background: rgba(255, 255, 255, 0.1); }
.hero__scroll {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
  width: 26px; height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  display: none;
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 9px;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.75);
  animation: scrollhint 2.2s var(--ease) infinite;
}
@keyframes scrollhint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  55% { transform: translateY(14px); opacity: 0; }
  56% { transform: translateY(0); opacity: 0; }
}
@media (min-width: 800px) { .hero__scroll { display: block; } }

/* ==========================================================================
   MARQUEE — Nike-style outlined type strip (decorative, aria-hidden)
   ========================================================================== */
.marquee {
  background: var(--ink);
  overflow: hidden;
  padding: 1.05rem 0;
  border-top: 1px solid rgba(192, 231, 250, 0.12);
  /* Fade both edges so scrolling words dissolve instead of clipping mid-letter */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee span {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.3vw, 1.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(192, 231, 250, 0.35);
}
@supports (-webkit-text-stroke: 1px #000) {
  .marquee span {
    color: transparent;
    -webkit-text-stroke: 1.1px rgba(192, 231, 250, 0.55);
  }
}
@keyframes marquee { to { transform: translateX(-50%); } }
/* No-motion fallback: a single centered line, nothing clipped */
@media (prefers-reduced-motion: reduce) {
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee__track { animation: none; width: 100%; justify-content: center; }
  .marquee span { white-space: normal; text-align: center; }
  .marquee span + span { display: none; }
}

/* ==========================================================================
   EDITORIAL STATEMENT + STATS (light, Oura editorial)
   ========================================================================== */
.statement {
  background: var(--cream);
  padding: clamp(5rem, 12vw, 9rem) 1.4rem clamp(3.5rem, 7vw, 5.5rem);
  text-align: center;
}
.statement__inner { max-width: 820px; margin: 0 auto; }
.statement h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  color: var(--ink);
}
.statement__lead {
  margin: 1.6rem auto 0;
  max-width: 60ch;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: var(--muted);
}

.stats {
  max-width: 1100px;
  margin: clamp(3.5rem, 8vw, 6rem) auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.6rem 1.4rem;
  text-align: center;
}
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat__num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  background: linear-gradient(125deg, var(--navy) 30%, var(--glacier-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat__num .stat__unit { -webkit-text-fill-color: var(--glacier-deep); }
.stat__unit {
  font-size: 0.42em;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--glacier-deep);
  margin-left: 0.18em;
}
.stat__label {
  margin: 0.8rem auto 0;
  max-width: 24ch;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}
.statement__fine {
  margin-top: 3rem;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.75;
}

/* ==========================================================================
   FEATURES — alternating editorial rows, rounded imagery
   ========================================================================== */
.feature { background: var(--cream); padding: clamp(2.5rem, 6vw, 4.5rem) 1.4rem; }
.feature--dark { background: var(--ink); color: #fff; padding: clamp(4rem, 9vw, 7rem) 1.4rem; }
.feature__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: 2.2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .feature__inner { grid-template-columns: 1.15fr 0.85fr; gap: clamp(3rem, 6vw, 6rem); }
  .feature--reverse .feature__img { order: 2; }
  .feature--reverse .feature__text { order: 1; }
}
.feature__img {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
}
.feature__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.feature__img:hover img { transform: scale(1.025); }
.feature__text h3 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: var(--ink);
}
.feature--dark .feature__text h3 { color: #fff; }
.feature--dark .kicker { color: var(--glacier); }
.feature__text p:not(.kicker) {
  margin-top: 1.25rem;
  max-width: 46ch;
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.feature--dark .feature__text p:not(.kicker) { color: var(--muted-dark); }

/* ==========================================================================
   TECH — horizontal scroll-snap cards (Oura feature carousel)
   ========================================================================== */
.tech {
  background: var(--beige);
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}
.tech__head {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.4rem;
}
.tech__head h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  color: var(--ink);
  max-width: 18ch;
}
.tech__scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(320px, 78vw);
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: clamp(2.2rem, 5vw, 3.5rem) max(1.4rem, calc((100vw - 1240px) / 2 + 1.4rem)) 1rem;
  scrollbar-width: none;
}
.tech__scroller::-webkit-scrollbar { display: none; }
.tech__card {
  scroll-snap-align: start;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 2rem 1.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: 0 2px 20px rgba(0, 46, 76, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.tech__card:hover {
  transform: translateY(-6px);
  border-color: rgba(109, 182, 221, 0.45);
  box-shadow: 0 16px 44px rgba(0, 46, 76, 0.12);
}
.tech__card svg {
  width: 40px; height: 40px;
  color: var(--navy);
  background: var(--glacier);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 0 0 rgba(192, 231, 250, 0);
  transition: box-shadow 0.35s var(--ease);
}
.tech__card:hover svg { box-shadow: 0 0 24px rgba(192, 231, 250, 0.75); }
.tech__card h4 { font-size: 1.15rem; color: var(--ink); letter-spacing: -0.015em; }
.tech__card p { font-size: 0.92rem; font-weight: 300; color: var(--muted); line-height: 1.65; }
.tech__hint {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.6;
}

/* ==========================================================================
   QUOTE — full-bleed dark statement with the LED-ring motif
   ========================================================================== */
.quote {
  position: relative;
  background: radial-gradient(ellipse at 50% 120%, var(--ink-2), var(--ink) 65%);
  color: #fff;
  padding: clamp(7rem, 20vw, 14rem) 1.4rem;
  text-align: center;
  overflow: hidden;
}
.quote__bg { position: absolute; inset: 0; }
.quote__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
}
.quote__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 27, 46, 0.78) 0%, rgba(0, 27, 46, 0.45) 50%, rgba(0, 27, 46, 0.82) 100%);
}
.quote__ring {
  position: absolute;
  left: 50%; top: 50%;
  width: min(72vw, 620px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(192, 231, 250, 0.28);
  box-shadow:
    0 0 80px rgba(192, 231, 250, 0.14),
    inset 0 0 80px rgba(192, 231, 250, 0.08);
  pointer-events: none;
}
.quote__inner { position: relative; max-width: 900px; margin: 0 auto; }
.quote h2 {
  font-size: clamp(2.8rem, 9vw, 6.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.98;
  color: #fff;
}
.quote p {
  margin-top: 1.6rem;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: var(--muted-dark);
}

/* ==========================================================================
   FINISHES
   ========================================================================== */
.finishes {
  background: var(--cream);
  padding: clamp(4.5rem, 10vw, 7.5rem) 1.4rem;
}
.finishes__head {
  max-width: 900px;
  margin: 0 auto clamp(2.2rem, 5vw, 3.5rem);
  text-align: center;
}
.finishes__head h2 { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--ink); }
.finishes__img {
  max-width: 1240px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}
.finishes__list {
  max-width: 1240px;
  margin: 1.8rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2.4rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}
.finishes__list li { display: flex; align-items: center; gap: 0.6rem; }
.dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--sw);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   LIFESTYLE BAND
   ========================================================================== */
.band {
  background: var(--cream);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.4rem clamp(4rem, 9vw, 7rem);
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 760px) { .band { grid-template-columns: 1fr 1fr; } }
.band__item {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 3;
}
.band__item picture { height: 100%; }
.band__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.band__item:hover img { transform: scale(1.03); }

/* ==========================================================================
   RESERVE — dark waitlist panel
   ========================================================================== */
.reserve {
  position: relative;
  background: linear-gradient(180deg, var(--ink) 0%, var(--navy) 100%);
  padding: clamp(4.5rem, 10vw, 8rem) 1.4rem;
  color: #fff;
  overflow: hidden;
}
.reserve::before {
  content: "";
  position: absolute;
  right: -12%; top: -18%;
  width: min(56vw, 640px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid rgba(192, 231, 250, 0.16);
  box-shadow: 0 0 120px rgba(192, 231, 250, 0.1), inset 0 0 90px rgba(192, 231, 250, 0.06);
  pointer-events: none;
}
.reserve__panel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) { .reserve__panel { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 5.5rem); } }
.reserve__preview {
  border-radius: var(--radius);
  overflow: hidden;
}
.reserve__preview img { transition: transform 1.2s var(--ease); }
.reserve__preview:hover img { transform: scale(1.025); }
.reserve__form .kicker { color: var(--glacier); }
.reserve__form h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  color: #fff;
}
.reserve__lead {
  margin-top: 1.1rem;
  font-weight: 300;
  color: var(--muted-dark);
  max-width: 44ch;
}
.perks {
  margin: 1.6rem 0 2rem;
  display: grid;
  gap: 0.65rem;
}
.perks li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}
.perks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.42em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--glacier);
  box-shadow: 0 0 12px rgba(192, 231, 250, 0.8);
}
.fields { margin-bottom: 1rem; }
.field span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted-dark);
  margin-bottom: 0.55rem;
}
.field input {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  padding: 0.95rem 1.4rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input::placeholder { color: rgba(255, 255, 255, 0.4); }
.field input:focus {
  outline: none;
  border-color: var(--glacier);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(192, 231, 250, 0.15);
}
.reserve__fine {
  margin-top: 1.1rem;
  font-size: 0.8rem;
  color: var(--muted-dark);
}

/* ==========================================================================
   FILM LIGHTBOX
   ========================================================================== */
.filmbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 12, 20, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  animation: fade 0.3s var(--ease);
}
.filmbox[hidden] { display: none; }
.filmbox__frame {
  width: min(1100px, 96vw);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}
.filmbox__frame video { width: 100%; height: 100%; object-fit: contain; }
.filmbox__close {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top));
  right: 1.2rem;
  width: 46px; height: 46px;
  font-size: 1.6rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.filmbox__close:hover { background: rgba(255, 255, 255, 0.25); }

/* ==========================================================================
   SUCCESS MODAL
   ========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(0, 12, 20, 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  animation: fade 0.3s var(--ease);
}
.modal[hidden] { display: none; }
.modal__card {
  background: var(--cream);
  color: var(--text);
  border-radius: var(--radius);
  padding: 2.6rem 2.2rem 2.2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}
.modal__check {
  width: 58px; height: 58px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--ink);
  background: var(--glacier);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(192, 231, 250, 0.6);
}
.modal__card h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 0.5rem; }
.modal__card p { color: var(--muted); margin-bottom: 1.6rem; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ==========================================================================
   STICKY MOBILE BAR
   ========================================================================== */
.stickybar {
  position: fixed;
  left: 0.9rem; right: 0.9rem;
  bottom: calc(0.9rem + env(safe-area-inset-bottom));
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(0, 27, 46, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #fff;
  border-radius: 100px;
  padding: 0.7rem 0.7rem 0.7rem 1.3rem;
  transform: translateY(140%);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.stickybar.is-visible { transform: translateY(0); }
.stickybar__info { font-size: 0.82rem; color: rgba(255, 255, 255, 0.85); }
.stickybar__info strong { font-weight: 600; color: #fff; }
.stickybar__cta {
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--glacier);
  border-radius: 100px;
  padding: 0.6rem 1.1rem;
}
@media (min-width: 800px) { .stickybar { display: none; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--ink);
  color: var(--muted-dark);
  padding: 3.5rem 1.4rem calc(2.5rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(192, 231, 250, 0.14);
}
.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: 1.6rem;
  justify-items: center;
  text-align: center;
}
.footer__logo {
  display: block;
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  font-size: 0.88rem;
}
.footer__links a { color: var(--muted-dark); transition: color 0.2s var(--ease); }
.footer__links a:hover { color: #fff; }
.footer__fine {
  max-width: 62ch;
  font-size: 0.75rem;
  line-height: 1.6;
  opacity: 0.7;
}
.footer__copy { font-size: 0.78rem; opacity: 0.6; }

/* ==========================================================================
   SCROLL REVEAL (classes added by script.js when motion is allowed)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease) var(--d, 0s), transform 0.9s var(--ease) var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   SIZES & PRICING (audit P07: merged from site/)
   ========================================================================== */
.pricing {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7.5rem) 1.4rem;
}
.pricing__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.4rem, 5vw, 3.4rem);
}
.pricing__head h2 { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--ink); }
.pricing__sub { color: var(--muted); font-weight: 300; margin-top: 0.9rem; }
.pricing__grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.3rem 1.6rem 1.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(0, 46, 76, 0.12);
}
.price-card h3 { font-size: 1.5rem; color: var(--ink); }
.price-card__ml { font-size: 0.85rem; color: var(--muted); }
.price-card__price {
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.45rem;
  letter-spacing: -0.02em;
}
.price-card__note { font-size: 0.9rem; font-weight: 300; color: var(--muted); margin-bottom: 1.2rem; flex: 1; }
.price-card .btn { margin-top: auto; }
.price-card--popular {
  border: 1.5px solid var(--glacier-deep);
  box-shadow: 0 14px 44px rgba(0, 46, 76, 0.1), 0 0 36px rgba(192, 231, 250, 0.35);
}
.price-card--popular:hover {
  box-shadow: 0 18px 52px rgba(0, 46, 76, 0.14), 0 0 48px rgba(192, 231, 250, 0.5);
}
.price-card__badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--glacier);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.32rem 0.95rem;
  border-radius: 100px;
  white-space: nowrap;
}
.btn--line {
  background: transparent;
  color: var(--ink);
  border-color: rgba(0, 46, 76, 0.35);
}
.btn--line:hover { border-color: var(--ink); background: rgba(0, 46, 76, 0.05); transform: translateY(-2px); }
.pricing__fine { text-align: center; font-size: 0.85rem; color: var(--muted); margin-top: 2rem; }

/* ==========================================================================
   SPECIFICATIONS (audit P07: merged from site/)
   ========================================================================== */
.specsheet {
  background: #fff;
  padding: clamp(4rem, 9vw, 7.5rem) 1.4rem;
}
.specsheet__head {
  max-width: 860px;
  margin: 0 auto clamp(2rem, 4vw, 2.8rem);
  text-align: center;
}
.specsheet__head h2 { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--ink); }
.specsheet__scroll { max-width: 860px; margin: 0 auto; overflow-x: auto; }
.specsheet__table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.specsheet__table th,
.specsheet__table td {
  text-align: left;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.specsheet__table th {
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
  width: 32%;
}
.specsheet__table td { color: var(--muted); font-weight: 300; line-height: 1.65; }

/* ==========================================================================
   FAQ (audit P07: merged from site/)
   ========================================================================== */
.faq {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7.5rem) 1.4rem;
}
.faq__head { text-align: center; margin-bottom: clamp(2rem, 4vw, 2.8rem); }
.faq__head h2 { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--ink); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0.2rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.45rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 0.2rem 1.3rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 62ch;
}

/* ==========================================================================
   FORM SPAM GUARD + CONSENT (audit P08)
   ========================================================================== */
/* Honeypot: moved off-screen (NOT display:none, so bot autofill still fills it);
   removed from the tab order and assistive tech in the markup. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0 0 1.15rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted-dark);
  cursor: pointer;
}
.consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.12rem;
  accent-color: var(--glacier);
  cursor: pointer;
}
.consent a { color: var(--glacier); text-decoration: underline; text-underline-offset: 2px; }
.consent a:hover { color: #fff; }

/* ==========================================================================
   MOBILE TYPE SCALE — display type sized for phone screens
   ========================================================================== */
@media (max-width: 600px) {
  .hero__title { font-size: 2.15rem; }
  .hero__sub { font-size: 0.98rem; }
  .hero__eyebrow { font-size: 0.72rem; }
  .marquee span { font-size: 0.95rem; }
  .statement h2 { font-size: 1.65rem; }
  .statement__lead { font-size: 0.95rem; }
  .stat__num { font-size: 2.15rem; }
  .feature__text h3 { font-size: 1.55rem; }
  .tech__head h2 { font-size: 1.65rem; }
  .quote h2 { font-size: 2.3rem; }
  .finishes__head h2 { font-size: 1.55rem; }
  .pricing__head h2 { font-size: 1.6rem; }
  .specsheet__head h2 { font-size: 1.6rem; }
  .faq__head h2 { font-size: 1.6rem; }
  .reserve__form h2 { font-size: 1.7rem; }
  .kicker { font-size: 0.7rem; }
}

/* ==========================================================================
   LEGAL PAGES — privacy.html / terms.html (audit P08)
   ========================================================================== */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: calc(6rem + env(safe-area-inset-top)) 1.4rem 5rem;
}
.legal h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.legal .legal__updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2.4rem;
}
.legal h2 {
  font-size: 1.25rem;
  color: var(--ink);
  margin: 2.2rem 0 0.7rem;
  letter-spacing: -0.01em;
}
.legal p, .legal li {
  color: var(--text);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 0.9rem;
}
.legal ul { padding-left: 1.3rem; margin-bottom: 0.9rem; }
.legal ul li { list-style: disc; margin-bottom: 0.4rem; }
.legal a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.legal .legal__back {
  display: inline-block;
  margin-top: 2.6rem;
  text-decoration: none;
  font-weight: 500;
}
