/* HÉLIONT Calatrava Showcase
   Editorial close section: white-blue palette, cream paper for the watch,
   Genève Alpine landscape opener. Pinned 2-stage timeline:
   assembly (0-0.70) → editorial close (0.70-1.00). */

/* =========================================================
   Color tokens
   ========================================================= */

/* Heliont color tokens live on :root so the brand-landing extension
   sections (.hs-ext) sit outside #heliont-showcase scope but reuse the
   same palette. */
:root {
  --hs-paper:       #EAE3DD;    /* cream paper, exact bg of the watch images */
  --hs-paper-warm:  #F2EBE3;    /* lighter cream for gradients */
  --hs-ice:         #F4F7FB;    /* cool icy white, section base */
  --hs-mist:        #E6EEF5;    /* misty blue-white for fall-offs */
  --hs-alpine:      #1B3A5C;    /* deep alpine blue, accent + hands */
  --hs-alpine-2:    #2C5680;    /* lighter alpine for gradients */
  --hs-ink:         #1A2230;    /* near-black for body text */
  --hs-graphite:    #4A5562;    /* secondary text */
  --hs-mute:        #7C8694;    /* muted captions */
  --hs-line:        rgba(27, 58, 92, 0.22);
}

/* =========================================================
   Portal-Zoom additions to existing #websites-reveal mockup
   ========================================================= */

/* The mockup content during stage 3 is a heliont splash — wordmark on the
   same cool blue-white the heliont section opens with, so the portal-zoom
   transitions seamlessly without a hard color cut. */
#websites-reveal .wr-mock-heliont {
  position: absolute;
  inset: 0;
  background-color: #F4F7FB;
  background-image:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255, 255, 255, 0.85) 0%, transparent 70%),
    radial-gradient(ellipse 90% 50% at 50% 100%, rgba(27, 58, 92, 0.06) 0%, transparent 80%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: clamp(8px, 1.2vh, 14px);
}
#websites-reveal .wr-mock-heliont .wr-mock-brand {
  font-family: 'Cormorant Garamond', 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 56px);
  letter-spacing: 0.34em;
  color: rgba(27, 58, 92, 0.92);
  z-index: 2;
  text-indent: 0.34em;
}
#websites-reveal .wr-mock-heliont .wr-mock-geneve {
  font-family: 'Cormorant Garamond', 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(10px, 1.1vw, 14px);
  letter-spacing: 0.42em;
  color: rgba(27, 58, 92, 0.55);
  text-transform: uppercase;
  z-index: 2;
  text-indent: 0.42em;
}

#websites-reveal .wr-browser-wrap.is-portal {
  transform-origin: 50% 62%;
}

/* =========================================================
   #heliont-showcase — Calatrava close section
   ========================================================= */

#heliont-showcase {
  position: relative;
  background-color: var(--hs-ice);
  isolation: isolate;
  overflow: clip;
  color: var(--hs-ink);
  /* Defensive: full viewport width on every screen size. GSAP's
     pin-spacer is transparent, so if the section's width ever
     shrinks below 100% the body-bg (#000) leaks through on the
     right edge — happened intermittently on 4K viewports. */
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
/* Same defensive rule for every brand-landing extension stage */
.hs-ext {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Genève Alpine landscape backdrop — fixed-position, low opacity, sits behind
   everything. Provides the Swiss "place" feel without dominating. The
   landscape is most visible during the wordmark intro, then fades as the
   watch reveal takes over. */
#heliont-showcase .hs-landscape {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    /* base: very subtle cool blue-white wash */
    linear-gradient(180deg, rgba(244, 247, 251, 0.55) 0%, rgba(244, 247, 251, 0.95) 70%, rgba(244, 247, 251, 1.0) 100%),
    /* the Swiss alps photo */
    url('https://images.unsplash.com/photo-1518181835702-6eef8b4b2113?auto=format&fit=crop&w=2400&q=80');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  pointer-events: none;
  will-change: opacity;
}

/* Ambient warm bias under the watch when it's centered, to make it sit
   visually on a "paper proof" zone — the cream from the photos extends
   into the section subtly. */
#heliont-showcase .hs-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 56%, rgba(234, 227, 221, 0.85) 0%, rgba(234, 227, 221, 0.0) 70%),
    radial-gradient(ellipse 80% 35% at 50% 96%, rgba(27, 58, 92, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  filter: blur(2px);
}

#heliont-showcase .hs-sticky {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Wordmark intro (Stage 1 start, over the Alpine landscape) ---------- */
#heliont-showcase .hs-wordmark-intro {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: clamp(10px, 1.6vh, 18px);
  z-index: 5;
  pointer-events: none;
  text-align: center;
  will-change: opacity;
}
#heliont-showcase .hs-brand-intro {
  font-family: 'Cormorant Garamond', 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(54px, 8.5vw, 130px);
  letter-spacing: 0.32em;
  color: var(--hs-alpine);
  line-height: 1;
  text-indent: 0.32em;
}
#heliont-showcase .hs-geneve-intro {
  font-family: 'Cormorant Garamond', 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(12px, 1.4vw, 17px);
  letter-spacing: 0.5em;
  color: rgba(27, 58, 92, 0.58);
  text-transform: uppercase;
  text-indent: 0.5em;
}
#heliont-showcase .hs-intro-line {
  width: clamp(40px, 4vw, 64px);
  height: 1px;
  background: rgba(27, 58, 92, 0.4);
  margin-top: 4px;
}
#heliont-showcase .hs-intro-tag {
  font-family: 'Cormorant Garamond', 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.1em;
  color: rgba(27, 58, 92, 0.55);
  margin-top: 8px;
  max-width: 340px;
  line-height: 1.5;
}

/* ---------- Watch frame (Stage 1 layered states) ---------- */
/* Image PNGs have cream bg #EAE3DD baked in — section background fades to
   that exact color underneath so the watch sits seamlessly on a "paper proof"
   without needing alpha cutout. */
#heliont-showcase .hs-watch-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(86vmin, 720px);
  aspect-ratio: 1 / 1;
  z-index: 3;
  will-change: transform, opacity;
}
#heliont-showcase .hs-state {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  will-change: opacity;
  /* gentle drop shadow so the watch reads on the section bg */
  filter: drop-shadow(0 16px 32px rgba(27, 58, 92, 0.14)) drop-shadow(0 2px 6px rgba(27, 58, 92, 0.08));
}
/* Defensive fallback: if GSAP fails to initialize (iOS Safari edge case,
   blocked script, network error) the section gets the .hs-gsap-ready class
   added by heliont.js. Until that flips, the final watch (state-6) stays
   visible so the user never sees a blank section. GSAP setup overrides it
   immediately on a working browser. */
#heliont-showcase:not(.hs-gsap-ready) .hs-state-6 { opacity: 1; }
#heliont-showcase .hs-state-1 { z-index: 1; }
#heliont-showcase .hs-state-2 { z-index: 2; }
#heliont-showcase .hs-state-3 { z-index: 3; }
#heliont-showcase .hs-state-4 { z-index: 4; }
#heliont-showcase .hs-state-5 { z-index: 5; }
#heliont-showcase .hs-state-6 { z-index: 6; }

/* ---------- Annotations ---------- */
#heliont-showcase .hs-annotations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 7;
}
#heliont-showcase .hs-annot {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  will-change: opacity, transform;
}
#heliont-showcase .hs-annot::before {
  content: '';
  position: absolute;
  background: var(--hs-line);
  height: 1px;
  top: 50%;
}
#heliont-showcase .hs-annot-label {
  font-family: 'Cormorant Garamond', 'Fraunces', serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--hs-alpine);
  text-transform: uppercase;
}
#heliont-showcase .hs-annot-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--hs-graphite);
  letter-spacing: 0.02em;
}

#heliont-showcase .hs-annot-left {
  right: calc(50% + min(46vmin, 380px));
  text-align: right;
  align-items: flex-end;
  width: 260px;
}
#heliont-showcase .hs-annot-left::before {
  left: 100%;
  width: 56px;
  margin-left: 12px;
}
#heliont-showcase .hs-annot-right {
  left: calc(50% + min(46vmin, 380px));
  text-align: left;
  align-items: flex-start;
  width: 260px;
}
#heliont-showcase .hs-annot-right::before {
  right: 100%;
  width: 56px;
  margin-right: 12px;
}

/* Vertical positions per annotation, aimed at relevant part of the watch */
#heliont-showcase .hs-annot-case     { top: 36%; }   /* case ring */
#heliont-showcase .hs-annot-dial     { top: 44%; }   /* white lacquer dial */
#heliont-showcase .hs-annot-subdial  { top: 62%; }   /* small seconds at 6 */
#heliont-showcase .hs-annot-indices  { top: 32%; }   /* applied steel indices */
#heliont-showcase .hs-annot-hands    { top: 48%; }   /* heat-blued hands */
#heliont-showcase .hs-annot-strap    { top: 78%; }   /* alligator strap */

/* ---------- Tagline (Stage 2 editorial close) ---------- */
#heliont-showcase .hs-tagline {
  position: absolute;
  bottom: clamp(54px, 8vh, 96px);
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1vh, 12px);
  z-index: 8;
  text-align: center;
  will-change: opacity, transform;
}
#heliont-showcase .hs-brand-final {
  font-family: 'Cormorant Garamond', 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: 0.36em;
  color: var(--hs-alpine);
  text-indent: 0.36em;
  line-height: 1;
}
#heliont-showcase .hs-tagline-sub {
  font-family: 'Cormorant Garamond', 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(12px, 1.2vw, 15px);
  letter-spacing: 0.18em;
  color: var(--hs-graphite);
  text-wrap: balance;
}

/* Place + provenance row, sits above the wordmark tagline */
#heliont-showcase .hs-place-row {
  position: absolute;
  top: clamp(48px, 7vh, 80px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 8;
  opacity: 0;
  will-change: opacity, transform;
  font-family: 'Cormorant Garamond', 'Fraunces', serif;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(27, 58, 92, 0.55);
}
#heliont-showcase .hs-place-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hs-alpine);
}

/* =========================================================
   V3: Mobile sizing only — Desktop sticky watch-build active on mobile too.
   Was previously a force-static fallback; removed because user wants
   Desktop 1:1 (overflow-x: clip lets sticky pin work on mobile now).
   ========================================================= */

@media (max-width: 900px) {
  #heliont-showcase .hs-watch-frame {
    width: min(80vw, 380px);
  }
  #heliont-showcase .hs-annotations {
    display: none; /* annot-side-rail doesn't fit narrow viewport */
  }
}

/* =========================================================
   V3.2 Mobile: Phone-Frame wrap for heliont-showcase
   User: "1:1 Mockup nehmen, nur als Phone-Variante." → entire
   sticky watch-build choreography is now framed inside an
   iPhone-style bezel with dynamic island.
   ========================================================= */

/* =========================================================
   V3.5 Mobile: heliont-showcase is the MOBILE VERSION of the
   heliont.com website (full-viewport responsive, no decorative
   phone-bezel). User scrolled INTO this from the websites-reveal
   phone-mockup, so the section itself IS the mobile heliont page.
   Watch sits centered, build-up runs via GSAP 1:1 as desktop,
   typography re-sized for narrow viewport.
   ========================================================= */

@media (max-width: 768px) {
  /* Mobile: native sticky-pin + plain-JS scroll handler (see heliont.js
     setupMobileBuildup). GSAP ScrollTrigger pin is too fragile on iOS
     Safari, so we hand-build the build-up. Section is tall enough to
     give 6 states comfortable scroll room. */
  #heliont-showcase.hs-mobile-buildup {
    min-height: 560vh;
    position: relative;
  }
  #heliont-showcase.hs-mobile-buildup .hs-sticky {
    position: sticky !important;
    top: 0;
    height: 100vh;
    min-height: 0;
    width: 100%;
    overflow: hidden;
  }
  /* Center the watch — on desktop GSAP sets xPercent/yPercent: -50 inline,
     on mobile we skip GSAP so the centering must come from CSS. */
  #heliont-showcase .hs-watch-frame {
    width: min(78vw, 320px) !important;
    transform: translate(-50%, -50%) !important;
    -webkit-transform: translate(-50%, -50%) !important;
  }
  /* Annotations are positioned for desktop side-rails — hide on mobile */
  #heliont-showcase .hs-annotations {
    display: none !important;
  }
  /* Place row: smaller, tighter spacing for narrow viewport */
  #heliont-showcase .hs-place-row {
    font-size: 10px !important;
    letter-spacing: 0.22em !important;
    gap: 10px !important;
    padding: 0 24px;
    top: 14% !important;
  }
  /* Wordmark intro typography */
  #heliont-showcase .hs-brand-intro {
    font-size: clamp(34px, 9vw, 52px) !important;
    letter-spacing: 0.22em !important;
  }
  #heliont-showcase .hs-geneve-intro {
    font-size: 11px !important;
    letter-spacing: 0.42em !important;
  }
  #heliont-showcase .hs-intro-tag {
    font-size: 10px !important;
    letter-spacing: 0.18em !important;
    padding: 0 32px;
    text-align: center;
    line-height: 1.4;
  }
  /* Tagline typography */
  #heliont-showcase .hs-brand-final {
    font-size: clamp(28px, 7.5vw, 44px) !important;
    letter-spacing: 0.22em !important;
  }
  #heliont-showcase .hs-tagline-sub {
    font-size: 10px !important;
    letter-spacing: 0.28em !important;
    padding: 0 32px;
    text-align: center;
  }
}

/* =========================================================
   Brand-Landing Extension — Stage 5–8
   Heritage / Calibre / Atelier / Boutiques + Outro CTA.
   Purist editorial style: pure whites, alpine accent, generous
   whitespace, Cormorant Garamond + Geist Mono. Mobile-responsive.
   ========================================================= */

.hs-ext {
  position: relative;
  background: var(--hs-ice);
  color: var(--hs-ink);
  padding: clamp(96px, 14vh, 180px) clamp(24px, 6vw, 80px);
  overflow: hidden;
}
.hs-ext.hs-ext-paper {
  background: var(--hs-paper-warm);
}
.hs-ext-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.hs-ext-eyebrow {
  font-family: 'Geist Mono', 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hs-alpine);
  opacity: 0.85;
  margin: 0 0 clamp(20px, 3vh, 32px);
}
.hs-ext-heading {
  font-family: 'Cormorant Garamond', 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(40px, 6.5vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--hs-alpine);
  margin: 0 0 clamp(20px, 3vh, 36px);
}
.hs-ext-lede {
  font-family: 'Cormorant Garamond', 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--hs-graphite);
  margin: 0 0 clamp(48px, 7vh, 80px);
  max-width: 52ch;
}

/* ---------- Stage 5 · Heritage timeline ---------- */
.hs-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.hs-timeline::before {
  content: '';
  position: absolute;
  left: 92px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: var(--hs-line);
}
.hs-timeline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: flex-start;
  padding: clamp(22px, 3vh, 36px) 0;
  position: relative;
}
.hs-timeline-item::before {
  content: '';
  position: absolute;
  left: 88px;
  top: clamp(30px, 4vh, 48px);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hs-ice);
  border: 1px solid var(--hs-alpine);
  box-shadow: 0 0 0 4px var(--hs-ice);
}
.hs-timeline-year {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--hs-mute);
  padding-top: clamp(30px, 4vh, 48px);
  white-space: nowrap;
}
.hs-timeline-body h3 {
  font-family: 'Cormorant Garamond', 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.008em;
  color: var(--hs-alpine);
  margin: 0 0 10px;
}
.hs-timeline-body p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.05vw, 15.5px);
  line-height: 1.65;
  color: var(--hs-graphite);
  margin: 0;
  max-width: 48ch;
}
.hs-timeline-body p em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05em;
  color: var(--hs-ink);
}

/* ---------- Stage 6 · Le Calibre ---------- */
.hs-calibre-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: clamp(20px, 4vh, 48px) auto clamp(48px, 7vh, 80px);
  aspect-ratio: 1 / 1;
}
.hs-calibre-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(27, 58, 92, 0.12));
}
.hs-calibre-rail {
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--hs-line) 12%, var(--hs-line) 88%, transparent 100%);
  z-index: 0;
}
.hs-spec-pills {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(40px, 6vh, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 32px);
}
.hs-spec-pills li {
  text-align: center;
  border-top: 1px solid var(--hs-line);
  padding-top: 18px;
}
.hs-spec-num {
  display: block;
  font-family: 'Cormorant Garamond', 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1;
  color: var(--hs-alpine);
  letter-spacing: -0.012em;
}
.hs-spec-label {
  display: block;
  margin-top: 8px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hs-mute);
}
.hs-spec-detail p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.75;
  color: var(--hs-graphite);
  max-width: 56ch;
  margin: 0;
}

/* ---------- Stage 7 · Atelier quote ---------- */
.hs-atelier-inner {
  text-align: center;
  padding: clamp(40px, 8vh, 100px) 0;
}
.hs-atelier-quote {
  margin: 0 0 clamp(28px, 4vh, 48px);
}
.hs-atelier-quote p {
  font-family: 'Cormorant Garamond', 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(34px, 5.5vw, 68px);
  line-height: 1.18;
  letter-spacing: -0.014em;
  color: var(--hs-alpine);
  margin: 0;
  text-wrap: balance;
}
.hs-atelier-cite {
  display: block;
  font-style: normal;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hs-mute);
  margin-bottom: clamp(40px, 6vh, 72px);
}
.hs-atelier-coords {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hs-mute);
  margin: 0;
  opacity: 0.7;
}

/* ---------- Stage 8 · Boutiques + Newsletter + Bridge ---------- */
.hs-boutiques {
  list-style: none;
  padding: 0;
  margin: clamp(20px, 4vh, 48px) 0 clamp(64px, 9vh, 120px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 60px);
  border-top: 1px solid var(--hs-line);
  padding-top: clamp(28px, 4vh, 48px);
}
.hs-boutiques li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hs-boutique-city {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--hs-alpine);
  letter-spacing: -0.008em;
}
.hs-boutique-addr {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--hs-graphite);
  line-height: 1.6;
}
.hs-boutique-hours {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hs-mute);
  margin-top: auto;
}

.hs-newsletter {
  max-width: 480px;
  margin: 0 auto clamp(72px, 10vh, 140px);
  text-align: center;
}
.hs-newsletter-label {
  display: block;
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hs-mute);
  margin-bottom: 16px;
}
.hs-newsletter-row {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--hs-alpine);
  padding-bottom: 8px;
}
.hs-newsletter-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--hs-ink);
  padding: 6px 0;
}
.hs-newsletter-row input::placeholder {
  color: var(--hs-mute);
  opacity: 0.6;
}
.hs-newsletter-row button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--hs-alpine);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.hs-newsletter-row button:hover {
  transform: translateX(4px);
}
.hs-newsletter-fine {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hs-mute);
  margin: 14px 0 0;
  opacity: 0.7;
}

/* Bridge back to Auralex */
.hs-bridge {
  text-align: center;
  border-top: 1px solid var(--hs-line);
  padding-top: clamp(48px, 7vh, 80px);
  margin-top: clamp(48px, 7vh, 80px);
}
.hs-bridge-eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hs-mute);
  margin: 0 0 18px;
}
.hs-bridge-lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.5;
  color: var(--hs-ink);
  max-width: 38ch;
  margin: 0 auto clamp(28px, 4vh, 40px);
}
.hs-bridge-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--hs-alpine);
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--hs-alpine);
  text-decoration: none;
  background: transparent;
  transition: background 0.4s cubic-bezier(0.22,1,0.36,1), color 0.4s cubic-bezier(0.22,1,0.36,1), transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.hs-bridge-cta:hover {
  background: var(--hs-alpine);
  color: var(--hs-paper-warm);
  transform: translateY(-1px);
}
.hs-bridge-cta svg { transition: transform 0.3s cubic-bezier(0.22,1,0.36,1); }
.hs-bridge-cta:hover svg { transform: translateX(4px); }

/* ---------- Scroll-reveal animations (.hs-ext stages) ----------
   Performance-safe: only opacity + transform (GPU compositor).
   .is-revealed class is added once per element by IntersectionObserver
   in heliont.js when the section approaches the viewport. */
.hs-ext .hs-ext-eyebrow,
.hs-ext .hs-ext-heading,
.hs-ext .hs-ext-lede,
.hs-ext .hs-timeline-item,
.hs-ext .hs-calibre-visual,
.hs-ext .hs-spec-pills > li,
.hs-ext .hs-spec-detail,
.hs-ext .hs-atelier-quote,
.hs-ext .hs-atelier-cite,
.hs-ext .hs-atelier-coords,
.hs-ext .hs-boutiques > li,
.hs-ext .hs-newsletter,
.hs-ext .hs-bridge {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.hs-ext.is-revealed .hs-ext-eyebrow,
.hs-ext.is-revealed .hs-ext-heading,
.hs-ext.is-revealed .hs-ext-lede,
.hs-ext.is-revealed .hs-calibre-visual,
.hs-ext.is-revealed .hs-spec-detail,
.hs-ext.is-revealed .hs-atelier-quote,
.hs-ext.is-revealed .hs-atelier-cite,
.hs-ext.is-revealed .hs-atelier-coords,
.hs-ext.is-revealed .hs-newsletter,
.hs-ext.is-revealed .hs-bridge {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger nested items so the section reads top-to-bottom */
.hs-ext.is-revealed .hs-ext-eyebrow  { transition-delay: 0s; }
.hs-ext.is-revealed .hs-ext-heading  { transition-delay: 0.05s; }
.hs-ext.is-revealed .hs-ext-lede     { transition-delay: 0.12s; }
.hs-ext.is-revealed .hs-calibre-visual { transition-delay: 0.18s; }
.hs-ext.is-revealed .hs-spec-detail  { transition-delay: 0.30s; }
.hs-ext.is-revealed .hs-atelier-quote   { transition-delay: 0.1s; }
.hs-ext.is-revealed .hs-atelier-cite    { transition-delay: 0.25s; }
.hs-ext.is-revealed .hs-atelier-coords  { transition-delay: 0.4s; }
.hs-ext.is-revealed .hs-newsletter   { transition-delay: 0.18s; }
.hs-ext.is-revealed .hs-bridge       { transition-delay: 0.3s; }
/* Per-child reveal for lists */
.hs-ext.is-revealed .hs-timeline-item,
.hs-ext.is-revealed .hs-spec-pills > li,
.hs-ext.is-revealed .hs-boutiques > li {
  opacity: 1;
  transform: translateY(0);
}
.hs-ext.is-revealed .hs-timeline-item:nth-child(1) { transition-delay: 0.10s; }
.hs-ext.is-revealed .hs-timeline-item:nth-child(2) { transition-delay: 0.18s; }
.hs-ext.is-revealed .hs-timeline-item:nth-child(3) { transition-delay: 0.26s; }
.hs-ext.is-revealed .hs-timeline-item:nth-child(4) { transition-delay: 0.34s; }
.hs-ext.is-revealed .hs-timeline-item:nth-child(5) { transition-delay: 0.42s; }
.hs-ext.is-revealed .hs-spec-pills > li:nth-child(1) { transition-delay: 0.22s; }
.hs-ext.is-revealed .hs-spec-pills > li:nth-child(2) { transition-delay: 0.27s; }
.hs-ext.is-revealed .hs-spec-pills > li:nth-child(3) { transition-delay: 0.32s; }
.hs-ext.is-revealed .hs-spec-pills > li:nth-child(4) { transition-delay: 0.37s; }
.hs-ext.is-revealed .hs-boutiques > li:nth-child(1) { transition-delay: 0.08s; }
.hs-ext.is-revealed .hs-boutiques > li:nth-child(2) { transition-delay: 0.14s; }
.hs-ext.is-revealed .hs-boutiques > li:nth-child(3) { transition-delay: 0.20s; }

@media (prefers-reduced-motion: reduce) {
  .hs-ext *,
  .hs-ext .hs-timeline-item,
  .hs-ext .hs-spec-pills > li,
  .hs-ext .hs-boutiques > li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- Mobile caption (cycles with build-up states) ---------- */
.hs-mobile-caption {
  display: none;
}
@media (max-width: 768px) {
  .hs-mobile-caption {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    bottom: clamp(60px, 9vh, 110px);
    left: 50%;
    transform: translateX(-50%);
    width: min(86vw, 360px);
    text-align: center;
    pointer-events: none;
    z-index: 12;
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.22,1,0.36,1);
    will-change: opacity;
  }
  .hs-mobile-caption.is-active { opacity: 1; }
  .hs-mobile-caption-label {
    font-family: 'Cormorant Garamond', 'Fraunces', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 17px;
    line-height: 1.2;
    color: var(--hs-alpine);
    letter-spacing: -0.005em;
  }
  .hs-mobile-caption-sub {
    font-family: 'Geist Mono', ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hs-mute);
  }
}

/* ---------- Mobile responsive (.hs-ext) ---------- */
@media (max-width: 768px) {
  .hs-ext {
    padding: 80px 22px;
  }
  .hs-timeline::before { left: 8px; }
  .hs-timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0 18px 28px;
  }
  .hs-timeline-item::before {
    left: 4px;
    top: 24px;
  }
  .hs-timeline-year {
    padding-top: 0;
    font-size: 11px;
    color: var(--hs-alpine);
    opacity: 0.75;
    margin-bottom: 6px;
  }
  .hs-timeline-body h3 { margin-bottom: 6px; }
  .hs-spec-pills {
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
  }
  .hs-boutiques {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hs-atelier-quote p {
    font-size: clamp(28px, 8vw, 38px);
  }
  .hs-atelier-quote p br { display: none; }
  .hs-bridge-cta {
    padding: 13px 22px;
    font-size: 12.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #heliont-showcase .hs-state-6 { opacity: 1 !important; }
  #heliont-showcase .hs-state-1,
  #heliont-showcase .hs-state-2,
  #heliont-showcase .hs-state-3,
  #heliont-showcase .hs-state-4,
  #heliont-showcase .hs-state-5 { opacity: 0 !important; }
  #heliont-showcase .hs-wordmark-intro { opacity: 0 !important; }
  #heliont-showcase .hs-tagline { opacity: 1 !important; transform: translate(-50%, 0) !important; }
  #heliont-showcase .hs-place-row { opacity: 1 !important; }
}
