/* ==========================================================================
   SOUL BY 911 — site.css
   Palette sampled from the brand board (3 bands + logo tones).
   Everything the site uses is declared once, here, in :root.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300&family=Jost:wght@200;300;400;500&display=swap');

:root {
  /* --- Brand palette ------------------------------------------------- */
  --olive-900: #2b2721;   /* deepest shade — scrims, footer */
  --olive-700: #3d3829;   /* dark surfaces */
  --olive:     #565041;   /* PRIMARY DARK — top band of the brand board */
  --olive-500: #6c6555;   /* raised dark surface / hover */
  --olive-300: #8d8676;   /* muted text on dark */

  --taupe:     #cbbeab;   /* MIDDLE BAND of the brand board */
  --taupe-200: #d9cfc0;   /* lighter taupe */
  --sand:      #c8b9a2;   /* the logo tone on the dark band */

  --cream:     #e7e5d9;   /* BOTTOM BAND — the page background */
  --cream-100: #f0efe7;   /* raised light surface */
  --ink:       #1b1b1b;   /* near-black — logo on the light band */

  /* --- Hairlines (the near-invisible framing) ------------------------- */
  --line:        rgba(86, 80, 65, 0.16);
  --line-soft:   rgba(86, 80, 65, 0.09);
  --line-strong: rgba(86, 80, 65, 0.30);
  --line-dark:       rgba(231, 229, 217, 0.14);
  --line-dark-soft:  rgba(231, 229, 217, 0.07);

  /* --- Type ----------------------------------------------------------- */
  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans:  'Jost', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* --- Metrics -------------------------------------------------------- */
  --gutter: 40px;
  --maxw: 1440px;
  --maxw-narrow: 720px;
  --nav-h: 82px;
  --section-y: clamp(80px, 11vw, 160px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* --- Brandmark ------------------------------------------------------
     Declared once so the standalone single-file build can swap in an
     embedded copy without touching any markup. */
  --logo-cream: url('../img/logo-cream.png');
}

.brandmark {
  display: block;
  aspect-ratio: 1398 / 690;
  background-image: var(--logo-cream);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* ==========================================================================
   Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--olive); color: var(--cream); }

:focus-visible {
  outline: 1px solid var(--olive);
  outline-offset: 4px;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-narrow {
  width: 100%;
  max-width: var(--maxw-narrow);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--olive);
  color: var(--cream);
  padding: 14px 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ==========================================================================
   Typographic primitives
   ========================================================================== */

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--olive);
  opacity: 0.62;
}
.on-dark .eyebrow, .eyebrow.on-dark { color: var(--sand); opacity: 0.85; }

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.005em;
  font-size: clamp(38px, 6.2vw, 84px);
}
.h2 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.12;
  font-size: clamp(30px, 4.2vw, 56px);
}
.h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  font-size: clamp(22px, 2.4vw, 30px);
}

.lede {
  font-size: clamp(16px, 1.35vw, 18.5px);
  line-height: 1.85;
  font-weight: 300;
  color: rgba(27, 27, 27, 0.78);
}
.body-text p { margin-bottom: 1.35em; color: rgba(27, 27, 27, 0.76); }
.body-text p:last-child { margin-bottom: 0; }

.on-dark { color: var(--cream); }
.on-dark .lede,
.on-dark .body-text p { color: rgba(231, 229, 217, 0.72); }

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
}
.rule-dark { height: 1px; background: var(--line-dark); border: 0; }

/* Thin animated rule used under section headings */
.rule-grow {
  height: 1px;
  width: 0;
  background: var(--line-strong);
  transition: width 1.4s var(--ease) 0.15s;
}
.reveal.is-in .rule-grow { width: 72px; }

/* ==========================================================================
   Links & buttons — hairline, luxury-catalogue feel
   ========================================================================== */

.link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.4s var(--ease), gap 0.4s var(--ease);
}
.link::after {
  content: '';
  width: 16px; height: 1px;
  background: currentColor;
  opacity: 0.55;
  transition: width 0.4s var(--ease);
}
.link:hover { border-color: currentColor; gap: 16px; }
.link:hover::after { width: 24px; }
.on-dark .link { border-color: var(--line-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 38px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border: 1px solid var(--olive);
  color: var(--olive);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.45s var(--ease), border-color 0.45s var(--ease);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--olive);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn > * { position: relative; z-index: 1; }
.btn:hover { color: var(--cream); }
.btn:hover::before { transform: scaleY(1); }

.btn-solid {
  background: var(--olive);
  color: var(--cream);
  border-color: var(--olive);
}
.btn-solid::before { background: var(--olive-700); }
.btn-solid:hover { color: var(--cream); border-color: var(--olive-700); }

.btn-light {
  border-color: var(--line-dark);
  color: var(--cream);
}
.btn-light::before { background: var(--cream); }
.btn-light:hover { color: var(--olive); border-color: var(--cream); }

.btn-block { width: 100%; }

.btn:disabled,
.btn[aria-disabled='true'] { opacity: 0.4; cursor: not-allowed; }
.btn:disabled::before { transform: scaleY(0); }

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

/* Over the hero: transparent + light content. Elsewhere / on scroll: solid. */
.nav[data-mode='over'] { background: transparent; color: var(--cream); }
.nav[data-mode='solid'] {
  background: var(--olive);
  color: var(--cream);
  border-bottom-color: var(--line-dark-soft);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-list a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.82;
  padding: 6px 0;
  position: relative;
  transition: opacity 0.35s var(--ease);
}
.nav-list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav-list a:hover { opacity: 1; }
.nav-list a:hover::after,
.nav-list a[aria-current='page']::after { transform: scaleX(1); transform-origin: left; }
.nav-list a[aria-current='page'] { opacity: 1; }

.nav-logo {
  justify-self: center;
  display: block;
  padding: 8px;
}
.nav-logo .brandmark {
  /* 'BY 911' is small in the mark — below ~64px it stops being readable */
  width: 68px;
  transition: opacity 0.35s var(--ease);
}
.nav-logo:hover .brandmark { opacity: 0.75; }

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
}

.cart-btn {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.35s var(--ease);
}
.cart-btn:hover { opacity: 1; }
.cart-btn .count {
  font-size: 10px;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.nav-burger {
  display: none;
  width: 26px;
  height: 12px;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transition: transform 0.45s var(--ease), opacity 0.3s;
}
.nav-burger span:nth-child(1) { top: 0; }
.nav-burger span:nth-child(2) { bottom: 0; }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile drop panel */
.nav-mobile {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  background: var(--olive);
  color: var(--cream);
  z-index: 115;
  padding: 26px var(--gutter) 40px;
  transform: translateY(-102%);
  visibility: hidden;
  transition: transform 0.6s var(--ease), visibility 0s linear 0.6s;
  border-bottom: 1px solid var(--line-dark-soft);
}
body.menu-open .nav-mobile {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.6s var(--ease), visibility 0s linear 0s;
}
.nav-mobile a {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark-soft);
}
.nav-mobile a:last-child { border-bottom: 0; }

/* ==========================================================================
   Hero — full-bleed video stage (Vacheron-style)
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--olive-900);
  color: var(--cream);
  text-align: center;
}

.hero-media { position: absolute; inset: 0; z-index: 0; }

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero.has-video .hero-video { opacity: 1; }
.hero.has-video .hero-fallback { opacity: 0; }

/* --- Temporary animated backdrop, shown until the film is dropped in --- */
.hero-fallback {
  position: absolute;
  inset: -8%;
  transition: opacity 1s ease;
  background:
    radial-gradient(120% 90% at 50% 8%,  #6f6857 0%, transparent 62%),
    radial-gradient(80% 70% at 18% 88%, #4a4536 0%, transparent 60%),
    linear-gradient(168deg, #4c4738 0%, #38332a 46%, #262218 100%);
  animation: heroDrift 68s ease-in-out infinite alternate;
}

/* two slow-moving light bodies */
.hero-fallback::before,
.hero-fallback::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
.hero-fallback::before {
  width: 60vw; height: 60vw;
  left: 4%; top: -14%;
  background: radial-gradient(circle, rgba(200, 185, 162, 0.30) 0%, rgba(200, 185, 162, 0) 68%);
  animation: heroOrbA 46s ease-in-out infinite alternate;
}
.hero-fallback::after {
  width: 52vw; height: 52vw;
  right: 2%; bottom: -18%;
  background: radial-gradient(circle, rgba(203, 190, 171, 0.22) 0%, rgba(203, 190, 171, 0) 70%);
  animation: heroOrbB 58s ease-in-out infinite alternate;
}

/* a slow diagonal sheen crossing the frame */
.hero-sheen {
  position: absolute;
  inset: -40%;
  background: linear-gradient(104deg,
    transparent 34%,
    rgba(231, 229, 217, 0.085) 47%,
    rgba(231, 229, 217, 0.13) 50%,
    rgba(231, 229, 217, 0.085) 53%,
    transparent 66%);
  transform: translateX(-38%);
  animation: heroSheen 21s linear infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* film grain */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.30;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='180' height='180' filter='url(%23n)' opacity='0.42'/></svg>");
  animation: grainShift 0.9s steps(3) infinite;
}

/* vignette + bottom scrim so the type always reads */
.hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* tuned for the bright collage photo behind it — a dark video/still would
     need lighter values, the fallback gradient's old ones are a fair start */
  background:
    radial-gradient(90% 75% at 50% 46%, rgba(24, 21, 16, 0.45) 0%, rgba(24, 21, 16, 0.82) 100%),
    linear-gradient(to bottom, rgba(24, 21, 16, 0.55) 0%, rgba(24, 21, 16, 0.35) 30%, rgba(24, 21, 16, 0.42) 60%, rgba(24, 21, 16, 0.8) 100%);
}

@keyframes heroDrift {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(-1.5%, -1.8%, 0); }
}
@keyframes heroOrbA {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(14%, 18%, 0) scale(1.22); }
}
@keyframes heroOrbB {
  from { transform: translate3d(0, 0, 0) scale(1.1); }
  to   { transform: translate3d(-16%, -12%, 0) scale(0.9); }
}
@keyframes heroSheen {
  0%   { transform: translateX(-42%); }
  60%  { transform: translateX(42%); }
  100% { transform: translateX(42%); }
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  33%  { transform: translate(-2%, 1.5%); }
  66%  { transform: translate(1.5%, -2%); }
  100% { transform: translate(0, 0); }
}

/* --- Hero content ---------------------------------------------------- */
.hero-inner {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 40px) var(--gutter) 140px;
  max-width: 900px;
  margin-inline: auto;
}
.hero-logo {
  width: min(360px, 62vw);
  margin: 0 auto 44px;
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 1.5s var(--ease) 0.25s forwards;
}
.hero-eyebrow {
  opacity: 0;
  transform: translateY(14px);
  animation: heroIn 1.3s var(--ease) 0.6s forwards;
}
.hero h1 {
  margin-top: 22px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: 1.1;
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 1.4s var(--ease) 0.78s forwards;
}
.hero h1 em { font-style: italic; opacity: 0.9; }
.hero-sub {
  margin: 26px auto 0;
  max-width: 52ch;
  font-size: clamp(14.5px, 1.15vw, 16.5px);
  line-height: 1.85;
  color: rgba(231, 229, 217, 0.74);
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn 1.4s var(--ease) 0.95s forwards;
}
.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn 1.4s var(--ease) 1.12s forwards;
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(231, 229, 217, 0.55);
  opacity: 0;
  animation: heroIn 1.4s var(--ease) 1.5s forwards;
}
.hero-scroll i {
  display: block;
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, rgba(231,229,217,0.5), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll i::after {
  content: '';
  position: absolute;
  left: 0; top: -46px;
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  animation: scrollDot 2.6s var(--ease) infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); }
  70%  { transform: translateY(92px); }
  100% { transform: translateY(92px); }
}

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */

.page-head {
  padding: calc(var(--nav-h) + clamp(64px, 9vw, 120px)) 0 clamp(46px, 6vw, 78px);
  background: var(--cream);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}
.page-head .eyebrow { display: block; margin-bottom: 22px; }
.page-head .lede { margin: 26px auto 0; max-width: 60ch; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(27, 27, 27, 0.45);
  margin-bottom: 26px;
}
.breadcrumb a:hover { color: var(--olive); }
.breadcrumb span { opacity: 0.5; }

/* ==========================================================================
   Generic sections
   ========================================================================== */

.section { padding-block: var(--section-y); }
.section-dark { background: var(--olive); color: var(--cream); }
.section-deep { background: var(--olive-900); color: var(--cream); }
.section-taupe { background: var(--taupe); }
.section-tight { padding-block: clamp(56px, 7vw, 96px); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(44px, 5vw, 76px);
}
.section-head .eyebrow { display: block; margin-bottom: 20px; }
.section-head .lede { margin-top: 22px; }
.section-head .rule-grow { margin: 30px auto 0; }

/* Manifesto — the introduction block on the home page */
.manifesto {
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}
.manifesto .h2 { margin-top: 24px; }
.manifesto-body {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  text-align: left;
}
.manifesto-body p {
  font-size: 15.5px;
  line-height: 1.9;
  color: rgba(27, 27, 27, 0.72);
}
.manifesto-sign {
  margin-top: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.manifesto-sign img { width: 132px; opacity: 0.55; }
.manifesto-sign span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(27, 27, 27, 0.42);
}

/* ==========================================================================
   Feature / editorial split (IWC-style: big visual + copy beside it)
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
}
.split-reverse .split-media { order: 2; }

.split-copy .eyebrow { display: block; margin-bottom: 20px; }
.split-copy .h2 { margin-bottom: 26px; }
.split-copy .link { margin-top: 34px; }

.split-media {
  position: relative;
  border: 1px solid var(--line);
  background: var(--cream-100);
  overflow: hidden;
}
.section-dark .split-media,
.section-deep .split-media { border-color: var(--line-dark); background: var(--olive-700); }
.split-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Numbered chapter list (Gunther Werks-style storytelling) */
.chapters { display: grid; gap: 0; }
.chapter {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(34px, 4vw, 54px) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.chapter:last-child { border-bottom: 1px solid var(--line); }
.section-dark .chapter, .section-deep .chapter { border-color: var(--line-dark); }
.chapter-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  opacity: 0.32;
  line-height: 1;
}
.chapter h3 { margin-bottom: 14px; }

/* ==========================================================================
   Product grid — hairline framing, almost invisible
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 34px);
}
.product-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-soft);
  background: var(--cream-100);
  transition: border-color 0.6s var(--ease), transform 0.6s var(--ease);
}
.product-card:hover {
  border-color: var(--line);
  transform: translateY(-3px);
}
.section-dark .product-card,
.section-deep .product-card {
  border-color: var(--line-dark-soft);
  background: var(--olive-700);
}
.section-dark .product-card:hover,
.section-deep .product-card:hover { border-color: var(--line-dark); }

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream);
}
.section-dark .product-media, .section-deep .product-media { background: var(--olive-900); }
.product-media > * {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--ease);
}
.product-card:hover .product-media > * { transform: scale(1.035); }

.product-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 6px 11px;
  border: 1px solid var(--line);
  background: rgba(231, 229, 217, 0.82);
  color: var(--olive);
  backdrop-filter: blur(4px);
  inset-inline-end: auto;
  inset-block-end: auto;
  width: auto; height: auto;
  aspect-ratio: auto;
  object-fit: initial;
  transform: none !important;
}

.product-body {
  padding: 24px 26px 28px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.section-dark .product-body, .section-deep .product-body { border-color: var(--line-dark-soft); }
.product-ref {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.45;
}
.product-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}
.product-desc {
  font-size: 13.5px;
  line-height: 1.7;
  opacity: 0.66;
}
.product-foot {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.product-price {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  opacity: 0.8;
}
.product-cta {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.55;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.4s var(--ease), gap 0.4s var(--ease);
}
.product-card:hover .product-cta { opacity: 1; gap: 12px; }

/* Collection meta line above a grid */
.collection-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  margin-bottom: clamp(28px, 3.5vw, 46px);
  border-bottom: 1px solid var(--line);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(27, 27, 27, 0.5);
}

/* ==========================================================================
   Product detail
   ========================================================================== */

.pdp {
  padding-top: var(--nav-h);
  border-bottom: 1px solid var(--line-soft);
}
.pdp-inner {
  display: grid;
  /* a fixed share, not a size derived from the gallery's own content — see
     the note on .pdp-thumbs below for why that intrinsic-sizing route broke */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 80px);
  padding-block: clamp(40px, 5vw, 74px);
  align-items: start;
}

/* --- gallery ---
   The hero needs to fit a laptop screen without scrolling AND show every
   shot exactly as framed, with no object-fit:cover crop. Those two only
   agree if the box shrinks in both dimensions together: cap the height and
   derive the width from it via aspect-ratio, rather than stretching hero
   width to the full column and cropping whatever the height cap leaves out.

   A first version tried to have the *column itself* shrink-wrap that
   narrower width (grid-template-columns: max-content, .pdp-gallery:
   width:fit-content) so the info column would sit snugly beside the photo.
   That created a circular sizing dependency — the thumbnails' width is a
   percentage of .pdp-thumbs, whose fit-content width was in turn supposed
   to come FROM the thumbnails — and browsers resolve that kind of loop by
   collapsing it, which is the sliver bug this replaces. The column now uses
   a fixed fr share instead (leaves some empty space beside the photo on
   very wide screens, but never breaks), and .pdp-thumbs is given the exact
   same height→width formula as .pdp-hero directly, so the two always match
   without either depending on the other's rendered size. */
/* align-items:flex-start is load-bearing: flex's default 'stretch' would
   otherwise force .pdp-hero to the column's full width (it has no width of
   its own, only height+aspect-ratio), overriding the ratio and making the
   box wider than its height implies. */
.pdp-gallery { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.pdp-hero {
  position: relative;
  height: min(760px, 80vh);
  aspect-ratio: 4 / 5;
  max-width: 100%;
  border: 1px solid var(--line-soft);
  background: var(--cream-100);
  overflow: hidden;
}
.pdp-hero > * {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.pdp-nav-arrow {
  position: absolute;
  inset: auto;
  top: 50%; left: auto; right: auto; bottom: auto;
  width: 40px; height: 40px;
  transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(231, 229, 217, 0.45);
  background: rgba(43, 39, 33, 0.28);
  backdrop-filter: blur(3px);
  color: var(--cream);
  cursor: pointer;
  z-index: 4;
  opacity: 0.8;
  transition: opacity 0.3s var(--ease), background 0.3s var(--ease);
}
.pdp-nav-arrow:hover { opacity: 1; background: rgba(43, 39, 33, 0.45); }
.pdp-nav-arrow.prev { left: 14px; }
.pdp-nav-arrow.next { right: 14px; }
.pdp-nav-arrow svg { width: 16px; height: 16px; display: block; }

/* small thumbnails, packed close together, whose outer edges still line up
   with the hero image above — smaller than a plain 1fr stretch, but not so
   small that the fixed gap reads as more empty space than photo */
.pdp-thumbs {
  /* same height→width formula as .pdp-hero (760px/80vh × 4/5), computed
     independently rather than inherited, so it always matches the hero's
     rendered width without the two depending on each other to resolve */
  width: min(608px, 64vh);
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.pdp-thumb {
  position: relative;
  flex: 0 0 auto;
  width: clamp(52px, 18%, 118px);
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line-soft);
  background: var(--cream-100);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.45s var(--ease);
}
.pdp-thumb > * { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb[aria-selected='true'] { border-color: var(--line-strong); }
.pdp-thumb:hover { border-color: var(--line); }

/* --- info column --- */
.pdp-info { position: sticky; top: calc(var(--nav-h) + 34px); }
.pdp-info .eyebrow { display: block; margin-bottom: 18px; }
.pdp-info h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.1;
}
.pdp-price {
  margin-top: 16px;
  font-size: 15px;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
.pdp-summary {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 15px;
  line-height: 1.85;
  color: rgba(27, 27, 27, 0.74);
}

.size-block { margin-top: 30px; }
.size-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}
.size-head .eyebrow { margin: 0; }
.size-guide-btn {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: opacity 0.35s;
}
.size-guide-btn:hover { opacity: 0.9; }

.size-options { display: flex; flex-wrap: wrap; gap: 10px; }
.size-opt {
  min-width: 62px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(27, 27, 27, 0.72);
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}
.size-opt:hover { border-color: var(--line-strong); }
.size-opt[aria-pressed='true'] {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--cream);
}
.size-error {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #8a4a35;
  min-height: 18px;
}

.pdp-actions { margin-top: 22px; display: grid; gap: 12px; }

.spec-list { margin-top: 40px; border-top: 1px solid var(--line-soft); }
.spec-row {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13.5px;
}
.spec-row dt {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.5;
  padding-top: 3px;
}
.spec-row dd { color: rgba(27, 27, 27, 0.78); line-height: 1.7; }

/* --- story block below the fold --- */
.pdp-story { padding-block: var(--section-y); }
.pdp-story-head { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 68px); text-align: center; }
.pdp-story-head .eyebrow { display: block; margin-bottom: 20px; }
.pdp-story-body {
  max-width: 660px;
  margin-inline: auto;
  font-size: 16px;
  line-height: 1.95;
}
.pdp-story-body p { margin-bottom: 1.5em; color: rgba(231, 229, 217, 0.75); }
.pdp-story-body p:last-child { margin-bottom: 0; }

.pdp-story-figures {
  margin-top: clamp(46px, 6vw, 84px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.pdp-figure {
  position: relative;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--line-dark-soft);
  background: var(--olive-700);
  overflow: hidden;
}
.pdp-figure > * { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pdp-figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 34px 18px 16px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(231, 229, 217, 0.9);
  background: linear-gradient(to top, rgba(24, 21, 16, 0.82) 0%, rgba(24, 21, 16, 0.42) 52%, transparent 100%);
  width: auto; height: auto; inset-block-start: auto;
  aspect-ratio: auto; object-fit: initial;
}
.pdp-figure.is-wide { grid-column: 1 / -1; aspect-ratio: 16 / 7; }

/* the 16:7 crop is much wider than this archival shot's own ~3:2 frame, so a
   centred cover crop cut into the car's front and lower body — bias the crop
   toward the bottom of the source so the whole car stays in frame */
.pdp-figure img[src*="targa-florio-story-1"] { object-position: center 72%; }
.pdp-figure img[src*="key-that-faces-left-story-1"] { object-position: center 95%; }
.pdp-figure img[src*="carrera-panamericana-story-1"] { object-position: center 65%; }
.pdp-figure img[src*="born-in-stuttgart-story-1"] { object-position: center 66%; }

/* ==========================================================================
   Craft strip
   ========================================================================== */

.craft {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.section-dark .craft, .section-deep .craft { border-color: var(--line-dark); }
.craft-item {
  padding: clamp(30px, 3.5vw, 48px) clamp(20px, 2.6vw, 40px);
  border-right: 1px solid var(--line);
}
.section-dark .craft-item, .section-deep .craft-item { border-color: var(--line-dark); }
.craft-item:last-child { border-right: 0; }
.craft-item .eyebrow { display: block; margin-bottom: 16px; }
.craft-item h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; margin-bottom: 12px; }
.craft-item p { font-size: 14px; line-height: 1.8; opacity: 0.7; }

/* ==========================================================================
   Signup band
   ========================================================================== */

.signup { text-align: center; }
.signup .h2 { margin-bottom: 20px; }
.signup .lede { max-width: 48ch; margin-inline: auto; }
.signup-form {
  margin-top: 38px;
  display: flex;
  gap: 0;
  max-width: 460px;
  margin-inline: auto;
  border-bottom: 1px solid var(--line-dark);
}
.signup-form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  padding: 14px 4px;
}
.signup-form input::placeholder { color: rgba(231, 229, 217, 0.4); }
.signup-form input:focus { outline: none; }
.signup-form button {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0 4px 0 18px;
  opacity: 0.8;
  transition: opacity 0.35s;
}
.signup-form button:hover { opacity: 1; }
.signup-note { margin-top: 16px; font-size: 11.5px; opacity: 0.45; letter-spacing: 0.04em; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--olive-900);
  color: var(--cream);
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line-dark-soft);
}
.footer-brand .brandmark { width: 158px; opacity: 0.9; }
.footer-brand p {
  margin-top: 22px;
  max-width: 34ch;
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(231, 229, 217, 0.55);
}
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(200, 185, 162, 0.85);
  margin-bottom: 18px;
  font-weight: 400;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 11px;
  color: rgba(231, 229, 217, 0.62);
  transition: color 0.35s var(--ease);
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: rgba(231, 229, 217, 0.35);
}

/* ==========================================================================
   Cart drawer + modal
   ========================================================================== */

.overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(27, 24, 18, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.overlay.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 210;
  width: min(440px, 100vw);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transform: translateX(101%);
  transition: transform 0.65s var(--ease);
  border-left: 1px solid var(--line);
}
.drawer.is-open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 30px 20px;
  border-bottom: 1px solid var(--line-soft);
}
.drawer-head h2 {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.icon-btn {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.icon-btn:hover { opacity: 1; }

.drawer-body { flex: 1; overflow-y: auto; padding: 8px 30px 20px; }
.drawer-empty {
  padding: 48px 0;
  text-align: center;
  font-size: 14px;
  color: rgba(27, 27, 27, 0.45);
}
.drawer-empty .link { margin-top: 24px; }

.cart-line {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}
.cart-line-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-soft);
  background: var(--cream-100);
  overflow: hidden;
}
.cart-line-media > * { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cart-line-name { font-family: var(--serif); font-size: 19px; line-height: 1.25; }
.cart-line-meta {
  margin-top: 5px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(27, 27, 27, 0.45);
}
.cart-line-foot {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
}
.qty button {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  font-size: 14px;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.qty button:hover { opacity: 1; }
.qty span { min-width: 26px; text-align: center; font-size: 13px; }
.cart-line-foot + .cart-line-foot { margin-top: 9px; }
.cart-line-price { font-size: 13px; letter-spacing: 0.08em; }
.cart-remove {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.42;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: opacity 0.3s;
}
.cart-remove:hover { opacity: 0.85; }

.drawer-foot { padding: 22px 30px 30px; border-top: 1px solid var(--line-soft); }
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.cart-total strong { font-family: var(--serif); font-size: 24px; font-weight: 400; letter-spacing: 0.02em; }
.cart-note { font-size: 11.5px; color: rgba(27, 27, 27, 0.45); margin-bottom: 20px; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  max-width: 480px;
  width: 100%;
  padding: 46px 42px 40px;
  text-align: center;
  transform: translateY(14px);
  transition: transform 0.5s var(--ease);
}
.modal.is-open .modal-card { transform: translateY(0); }
.modal-card .eyebrow { display: block; margin-bottom: 18px; }
.modal-card .h3 { margin-bottom: 16px; }
.modal-card p { font-size: 14.5px; line-height: 1.8; color: rgba(27, 27, 27, 0.7); margin-bottom: 28px; }
.modal-close { position: absolute; top: 12px; right: 12px; }

.modal-card .size-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  font-size: 13px;
  text-align: left;
}
.modal-card .size-table th,
.modal-card .size-table td {
  padding: 9px 6px;
  border-bottom: 1px solid var(--line-soft);
}
.modal-card .size-table th {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 320;
  transform: translate(-50%, 20px);
  background: var(--olive);
  color: var(--cream);
  padding: 14px 26px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d='1'] { transition-delay: 0.1s; }
.reveal[data-d='2'] { transition-delay: 0.2s; }
.reveal[data-d='3'] { transition-delay: 0.3s; }
.reveal[data-d='4'] { transition-delay: 0.4s; }

/* ==========================================================================
   Placeholder artwork (until real photography lands)
   ========================================================================== */

.ph {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.ph-note {
  position: absolute;
  right: 12px; bottom: 12px;
  z-index: 3;
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(86, 80, 65, 0.3);
  pointer-events: none;
  width: auto; height: auto; inset-block-start: auto; inset-inline-start: auto;
  aspect-ratio: auto; object-fit: initial; transform: none !important;
}
.on-dark .ph-note, .section-dark .ph-note, .section-deep .ph-note,
.pdp-figure .ph-note { color: rgba(231, 229, 217, 0.28); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (min-width: 901px) {
  .nav-mobile { display: none; }
}

@media (max-width: 1080px) {
  :root { --gutter: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  .nav .wrap { grid-template-columns: 1fr auto 1fr; }
  .nav-list { display: none; }
  .nav-burger { display: block; }
  .cart-btn .label { display: none; }

  .split { grid-template-columns: 1fr; }
  .split-reverse .split-media { order: 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp-inner { grid-template-columns: 1fr; }
  .pdp-info { position: static; }
  /* the desktop height cap exists to keep a wide gallery column from
     towering over the viewport — on a single mobile column the plain 4/5
     height is already short, so let the hero (and the thumbnails, matched
     to it above) run full width instead. align-self:stretch is load-bearing:
     .pdp-gallery's flex-start (needed on desktop, see the note above it)
     otherwise leaves .pdp-hero with no width to derive height:auto from —
     its only children are position:absolute, so they contribute nothing to
     intrinsic sizing and the box collapses to near-zero. */
  .pdp-hero { height: auto; max-width: none; align-self: stretch; }
  .pdp-thumbs { width: 100%; max-width: none; }
  .craft { grid-template-columns: 1fr; }
  .craft-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .section-dark .craft-item, .section-deep .craft-item { border-color: var(--line-dark); }
  .craft-item:last-child { border-bottom: 0; }
  .manifesto-body { grid-template-columns: 1fr; gap: 0; }
  .manifesto-body p { margin-bottom: 1.3em; }
  .pdp-story-figures { grid-template-columns: 1fr; }
  .pdp-figure.is-wide { aspect-ratio: 3 / 2; }
  .chapter { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; }
  body { font-size: 15px; }
  .product-grid, .product-grid.cols-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pdp-thumbs { gap: 9px; }
  .size-options { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .size-opt { min-width: 0; padding: 13px 4px; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; }
  .hero-inner { padding-bottom: 132px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .drawer { width: 100vw; }
  .collection-meta { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ==========================================================================
   Motion preferences
   ========================================================================== */

@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;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-logo, .hero-eyebrow, .hero h1, .hero-sub, .hero-actions, .hero-scroll { opacity: 1; transform: none; }
  .rule-grow { width: 72px; }
}
