/* ═══════════════════════════════════════════════════════
   HOFFMANN ATELIER — Luxury Scroll Website
   Aero Mecanique R9 · Edition Limitee
═══════════════════════════════════════════════════════ */

:root {
  /* Brand-aligned palette (per Brand Guidelines) */
  --onyx: #050505;
  --black: #0A0A0A;
  --black-soft: #0d0d0d;
  --black-elevated: #111111;
  --steel: #1e1e1e;
  --ivory: #F0EAD6;
  --ivory-soft: #d8cfb6;
  --platinum: #b0b0b0;
  --silver: #7a7a7a;
  --gold: #C9980A;
  --gold-light: #E8C96A;
  --gold-deep: #8a6a00;
  --gold-glow: rgba(201, 152, 10, 0.22);

  /* Brand typography */
  --font-display: 'Cormorant Garamond', 'EB Garamond', 'Cormorant', Georgia, serif;
  --font-body: 'EB Garamond', 'Cormorant', Georgia, serif;
  --font-sans: 'Josefin Sans', 'Helvetica Neue', sans-serif;

  --container: min(92%, 1400px);
  --container-narrow: min(92%, 1100px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-luxury: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --header-h: 80px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--ivory);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga", "calt";
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold); color: var(--black); }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ═══════ TYPOGRAPHY (brand-aligned: Cormorant Garamond italic, Josefin labels) ═══════ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  line-height: 1.02;
  letter-spacing: -0.012em;
  font-feature-settings: "liga", "dlig", "swsh";
}
h1, h2 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 500;
}
h3 { font-weight: 500; }
h4 { font-weight: 600; }
h1 em, h2 em, h3 em { font-style: normal; color: var(--gold); font-weight: 400; }
.no-italic { font-style: normal !important; }

.gold-text { color: var(--gold); }
.gold-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, #f0d060 70%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  opacity: 0.95;
}

.gold-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem 0 2rem;
  position: relative;
}
.gold-rule::after {
  content: '\25C6';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 0.55rem;
  background: var(--black);
  padding: 0 8px;
}

/* ═══════ LOADER — luxury maison entrance ═══════ */
.loader {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 45% at 50% 50%, rgba(201, 152, 10, 0.10) 0%, transparent 70%),
    var(--black);
  overflow: hidden;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* Ambient gold halo — soft warmth behind the seal */
.loader-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 30% 25% at 50% 48%, rgba(201, 152, 10, 0.16) 0%, transparent 65%);
  filter: blur(8px);
  animation: glowBreathe 4s var(--ease) infinite;
}
@keyframes glowBreathe {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1.0; transform: scale(1.05); }
}

/* Architectural gold corner ornaments — frame the entire viewport */
.loader-corner {
  position: absolute;
  width: clamp(40px, 6vw, 72px);
  height: clamp(40px, 6vw, 72px);
  border: 1px solid rgba(201, 152, 10, 0.35);
  pointer-events: none;
  transition: opacity 0.8s var(--ease);
}
.loader-corner--tl { top: clamp(24px, 4vw, 56px); left: clamp(24px, 4vw, 56px); border-right: none; border-bottom: none; }
.loader-corner--tr { top: clamp(24px, 4vw, 56px); right: clamp(24px, 4vw, 56px); border-left: none; border-bottom: none; }
.loader-corner--bl { bottom: clamp(24px, 4vw, 56px); left: clamp(24px, 4vw, 56px); border-right: none; border-top: none; }
.loader-corner--br { bottom: clamp(24px, 4vw, 56px); right: clamp(24px, 4vw, 56px); border-left: none; border-top: none; }

.loader-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  z-index: 2;
}

/* Eyebrow above the seal — wide letter-spaced editorial line */
.loader-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: loaderFadeIn 1.4s 0.1s var(--ease) forwards;
  padding-left: 0.42em;  /* compensate for the trailing letter-spacing */
}

/* Gold diamond ornament dividers */
.loader-ornament {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0;
  opacity: 0;
  animation: loaderFadeIn 1.4s 0.3s var(--ease) forwards;
}
.loader-ornament--small { font-size: 0.5rem; opacity: 0; animation-delay: 1.2s; }

/* Wax-seal in arch porthole — matches lookbook silhouette */
.loader-logo {
  width: 220px;
  aspect-ratio: 4 / 5;                /* same arch silhouette as the lookbook */
  height: auto;
  object-fit: contain;                /* tight-cropped seal — contain shows it whole */
  object-position: center 54%;        /* optical centering inside the arch geometry */
  padding: 28px 18px 22px;            /* breathing room: bigger top/bottom for arch curve */
  display: block;
  border-radius: 45% 45% 10% 10% / 28% 28% 6% 6%;
  border: 1.5px solid rgba(201, 152, 10, 0.55);
  background: #0a0a0e;
  overflow: hidden;
  margin: 0.5rem 0;
  box-shadow:
    0 0 0 5px rgba(201, 152, 10, 0.05),
    0 0 0 6px rgba(201, 152, 10, 0.20),
    0 30px 80px -10px rgba(201, 152, 10, 0.25);
  filter: drop-shadow(0 0 36px rgba(201, 152, 10, 0.35)) saturate(1.05);
  opacity: 0;
  animation:
    loaderSealEntrance 1.8s 0.5s var(--ease-luxury) forwards,
    logoPulse 4s 2.3s var(--ease) infinite;
}
@keyframes loaderSealEntrance {
  0%   { opacity: 0; transform: scale(0.85); filter: drop-shadow(0 0 0 rgba(201,152,10,0)) saturate(0.9); }
  60%  { opacity: 1; transform: scale(1.03); }
  100% { opacity: 1; transform: scale(1.0); filter: drop-shadow(0 0 36px rgba(201, 152, 10, 0.35)) saturate(1.05); }
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1.0); filter: drop-shadow(0 0 28px rgba(201, 152, 10, 0.30)) saturate(1.04); }
  50%      { transform: scale(1.015); filter: drop-shadow(0 0 44px rgba(201, 152, 10, 0.50)) saturate(1.10); }
}

/* Refined gold progress bar — longer + faded gradient ends */
.loader-bar {
  width: 240px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 224, 204, 0.15) 30%, rgba(232, 224, 204, 0.15) 70%, transparent);
  overflow: hidden;
  margin-top: 0.4rem;
  opacity: 0;
  animation: loaderFadeIn 1.4s 0.7s var(--ease) forwards;
}
.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), rgba(232, 200, 74, 1), var(--gold), transparent);
  width: 0%;
  transition: width 0.4s var(--ease);
  box-shadow: 0 0 8px rgba(201, 152, 10, 0.45);
}

/* Primary tagline — restrained, wide tracking */
.loader-text {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.46em;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: loaderFadeIn 1.4s 0.9s var(--ease) forwards;
  padding-left: 0.46em;
  margin: 0.3rem 0 0;
}

/* Edition line — italic Cormorant, French phrasing */
.loader-edition {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: rgba(232, 224, 204, 0.7);
  opacity: 0;
  animation: loaderFadeIn 1.4s 1.4s var(--ease) forwards;
  margin: 0;
}
.loader-edition em {
  color: var(--ivory);
  font-style: italic;
  font-weight: 500;
}

@keyframes loaderFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .loader-eyebrow { font-size: 0.66rem; letter-spacing: 0.32em; }
  .loader-logo { width: 170px; }
  .loader-bar { width: 200px; }
  .loader-text { font-size: 0.56rem; letter-spacing: 0.38em; }
  .loader-edition { font-size: 0.85rem; }
}

/* ═══════ REVEAL ANIMATIONS ═══════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.line-reveal { display: block; overflow: hidden; }

/* ═══════ HEADER ═══════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.85), rgba(10,10,10,0));
  transition: all 0.5s var(--ease);
}
.site-header.scrolled {
  padding: 0.7rem 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(201, 152, 10, 0.15);
}

.header-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-link { display: flex; align-items: center; transition: opacity 0.3s var(--ease); }
.logo-link:hover { opacity: 0.8; }
.logo-svg { transition: transform 0.5s var(--ease); }
.logo-link:hover .logo-svg { transform: scale(1.03); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.85;
  position: relative;
  padding: 0.4rem 0;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-link:hover { opacity: 1; color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-link--cta {
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold);
  background: transparent;
  transition: all 0.4s var(--ease);
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* ═══════ LANGUAGE SELECTOR ═══════ */
.lang-selector { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(201, 152, 10, 0.4);
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--ivory);
  transition: all 0.3s var(--ease);
}
.lang-btn:hover { border-color: var(--gold); background: rgba(201, 152, 10, 0.08); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 152, 10, 0.25);
  list-style: none;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s var(--ease);
}
.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown li { list-style: none; }
.lang-opt {
  padding: 0.6rem 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.2s var(--ease);
  /* Anchor reset — links should look like menu items */
  text-decoration: none;
  color: var(--ivory);
}
.lang-opt:hover, .lang-opt:focus { background: rgba(201, 152, 10, 0.1); color: var(--gold); outline: none; }
.lang-opt--active { color: var(--gold); }
.lang-flag { font-size: 1rem; }

/* ═══════ NAV TOGGLE (MOBILE) ═══════ */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ivory);
  transition: all 0.4s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--gold); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--gold); }

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease);
  border-bottom: 1px solid rgba(201, 152, 10, 0.2);
}
.mobile-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav-link {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(232, 224, 204, 0.08);
  color: var(--ivory);
}
.mobile-nav-link--cta {
  margin-top: 0.5rem;
  text-align: center;
  background: var(--gold);
  color: var(--black) !important;
  border-radius: 2px;
  padding: 1rem !important;
  letter-spacing: 0.15em;
  font-weight: 600;
}

/* ═══════ HERO ═══════ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#motor-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
  touch-action: pan-y;
  /* Pure onyx bg so canvas never shows white/grey square before WebGL renders */
  background: var(--black);
  display: block;
}

/* Hero section: pure onyx bg as fallback during initial paint */
.hero { background: var(--black); }

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(10,10,10,0.4) 70%, var(--black) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.6) 0%, transparent 30%, transparent 70%, rgba(10,10,10,0.85) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: var(--container);
  pointer-events: none;
}

.hero-edition-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(201, 152, 10, 0.4);
  border-radius: 100px;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}
.badge-diamond { font-size: 0.5rem; }

.hero-title {
  /* Quieter, more ethereal — sits with the 3D engine instead of competing with it */
  font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 8vw, 6.4rem);  /* reduced from 12vw/9rem */
  font-weight: 300;                       /* light, not regular */
  font-style: italic;
  line-height: 1.02;
  letter-spacing: 0.005em;                /* slightly relaxed — less crammed */
  margin-bottom: 1.6rem;
  color: rgba(245, 241, 232, 0.92);       /* slight transparency — feels atmospheric */
  text-shadow: 0 2px 20px rgba(10, 10, 10, 0.55);
}
.hero-title-line { display: block; font-weight: 300; }
.hero-title-accent {
  /* Refined gold — softer gradient, lighter weight, no extra-bold competition */
  background: linear-gradient(135deg, rgba(232, 200, 74, 0.95), var(--gold), rgba(240, 208, 96, 0.9));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 400;                       /* light-regular — quietly distinctive */
  letter-spacing: 0;
}

.hero-tagline {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.85;
  margin-bottom: 3rem;
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  pointer-events: auto;
}

.hero-scarcity {
  position: absolute;
  bottom: 5rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 152, 10, 0.3);
  border-radius: 4px;
  z-index: 4;
}
.scarcity-pulse {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}
.scarcity-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes pulseRing { 0% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(2); } }

.scarcity-count {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.scarcity-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.85;
}

/* ═══════ 360° ROTATE HINT — invites visitors to interact with the 3D R9 ═══════ */
.rotate-hint {
  position: absolute;
  top: 50%;
  right: clamp(2rem, 4vw, 4.5rem);
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.95rem;
  pointer-events: none;
  color: var(--gold);
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}
.rotate-hint.is-visible { opacity: 1; }
.rotate-hint.is-faded { opacity: 0 !important; }

.rotate-hint-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(6, 6, 10, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 152, 10, 0.35);
  box-shadow: 0 0 36px -8px rgba(201, 152, 10, 0.35);
  animation: rotateHintBreathe 3.4s var(--ease) infinite;
}
@keyframes rotateHintBreathe {
  0%, 100% { transform: scale(1); box-shadow: 0 0 36px -8px rgba(201, 152, 10, 0.35); }
  50%      { transform: scale(1.06); box-shadow: 0 0 56px -8px rgba(201, 152, 10, 0.55); }
}
.rotate-hint-icon svg .rh-arrow--left {
  transform-origin: 21px 21px;
  animation: rotateHintArrowL 2.6s var(--ease) infinite;
}
.rotate-hint-icon svg .rh-arrow--right {
  transform-origin: 21px 21px;
  animation: rotateHintArrowR 2.6s var(--ease) infinite;
}
@keyframes rotateHintArrowL {
  0%, 100% { transform: translateX(0); opacity: 0.55; }
  50%      { transform: translateX(-3px); opacity: 1; }
}
@keyframes rotateHintArrowR {
  0%, 100% { transform: translateX(0); opacity: 0.55; }
  50%      { transform: translateX(3px); opacity: 1; }
}
.rotate-hint-icon svg .rh-dot { animation: rotateHintDot 2.6s var(--ease) infinite; }
@keyframes rotateHintDot {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.25); }
}

.rotate-hint-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  white-space: nowrap;
}
.rh-eyebrow {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--gold);
}
.rh-text {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.92rem;
  color: rgba(245, 241, 232, 0.88);
  letter-spacing: 0.01em;
}
/* Show desktop copy by default; touch devices swap to the touch label via JS */
.rh-text--touch { display: none; }
body.is-touch .rh-text--desktop { display: none; }
body.is-touch .rh-text--touch { display: inline; }

@media (max-width: 750px) {
  /* Mobile rotate-hint — moved to TOP of hero (just under header) as a discreet
     glassmorphism chip. Naturally points downward at the engine that fills the
     screen below; never competes with the CTAs or the edition counter at the
     bottom of the hero. */
  .rotate-hint {
    top: calc(var(--header-h, 64px) + 0.9rem);
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    padding: 0.42rem 0.95rem 0.42rem 0.5rem;
    background: rgba(6, 6, 10, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(201, 152, 10, 0.32);
    border-radius: 999px;
    box-shadow: 0 10px 26px -10px rgba(6, 6, 10, 0.7),
                0 0 24px -8px rgba(201, 152, 10, 0.22);
    max-width: calc(100vw - 2rem);
  }
  .rotate-hint-icon {
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    box-shadow: none;
    animation: none;
    flex-shrink: 0;
  }
  .rotate-hint-icon svg { width: 26px; height: 26px; }
  .rotate-hint-label {
    align-items: flex-start;
    gap: 0.05rem;
    text-align: left;
  }
  .rh-eyebrow {
    font-size: 0.48rem;
    letter-spacing: 0.32em;
    line-height: 1;
  }
  .rh-text {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.scroll-cue-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: scrollFlow 2.4s ease-in-out infinite;
}
@keyframes scrollFlow {
  0% { top: -50%; }
  100% { top: 100%; }
}
.scroll-cue span {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 300;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  white-space: nowrap;
  text-align: center;
  font-style: normal;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: var(--black);
  border: 1px solid var(--gold);
  box-shadow: 0 8px 32px rgba(201, 152, 10, 0.25);
}
.btn--primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 224, 204, 0.4), transparent);
  transition: left 0.7s var(--ease);
}
.btn--primary:hover::before { left: 100%; }
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(201, 152, 10, 0.45);
}
.btn--primary:active { transform: translateY(0); }

.btn-price {
  padding-left: 0.8rem;
  border-left: 1px solid rgba(10, 10, 10, 0.3);
  font-weight: 700;
}

.btn--ghost {
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ivory);
  border: 1px solid rgba(232, 224, 204, 0.4);
}
.btn--ghost:hover {
  background: rgba(232, 224, 204, 0.08);
  border-color: var(--ivory);
  color: var(--ivory);
}

.btn--large {
  padding: 1.4rem 3rem;
  font-size: 0.88rem;
  letter-spacing: 0.25em;
}

/* ═══════ MARQUEE ═══════ */
.marquee-strip {
  background: var(--black-elevated);
  border-top: 1px solid rgba(201, 152, 10, 0.15);
  border-bottom: 1px solid rgba(201, 152, 10, 0.15);
  padding: 1.4rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: marqueeScroll 35s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--ivory);
}
.marquee-track span:not(.marquee-dot) { padding: 0 1rem; }
.marquee-dot { color: var(--gold); font-size: 0.6rem; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════ THE MATERIALITY — three-column composition celebrating
   the deliberate juxtaposition of textures, tones and finishes ═══════ */
.materiality {
  position: relative;
  padding: 7rem 0 8rem;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201, 152, 10, 0.07) 0%, transparent 60%),
    var(--black);
  overflow: hidden;
}
.materiality::before,
.materiality::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 152, 10, 0.4), transparent);
}
.materiality::before { top: 0; }
.materiality::after { bottom: 0; }

.materiality-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5vw;
  text-align: center;
}
.materiality-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--ivory);
  margin: 1rem 0 0;
}
.materiality-heading .gold-text { color: var(--gold); }
.materiality-heading .line-reveal { display: block; }
.materiality-heading em { font-style: italic; font-weight: 400; }

.materiality-intro {
  max-width: 740px;
  margin: 0 auto 4.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  letter-spacing: 0.005em;
  color: rgba(232, 224, 204, 0.78);
}
.materiality-intro em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.materiality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.4rem);
  margin: 0 auto 4rem;
  max-width: 1180px;
}

.material-card {
  position: relative;
  text-align: left;
  padding: 2.4rem 2rem 2.6rem;
  background: linear-gradient(180deg, #0a0a0e 0%, #050507 100%);
  border: 1px solid rgba(201, 152, 10, 0.20);
  transition: border-color 0.6s var(--ease), transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  overflow: hidden;
}
/* Top architectural gold corner accents — lookbook language */
.material-card::before,
.material-card::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1px solid var(--gold);
  pointer-events: none;
  transition: width 0.5s var(--ease), height 0.5s var(--ease), border-color 0.5s var(--ease);
}
.material-card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.material-card::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.material-card:hover {
  border-color: rgba(201, 152, 10, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.7),
              0 0 100px -40px rgba(201, 152, 10, 0.18);
}
.material-card:hover::before,
.material-card:hover::after {
  width: 40px;
  height: 40px;
  border-color: rgba(232, 200, 74, 1);
}

.material-roman {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3rem, 4.5vw, 4.4rem);
  line-height: 1;
  color: rgba(201, 152, 10, 0.22);
  letter-spacing: -0.02em;
  display: block;
  margin: 0 0 1.4rem;
}
.material-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.material-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.3vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ivory);
  margin: 0 0 1.2rem;
}
.material-body {
  font-family: var(--font-body, var(--font-display));
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(232, 224, 204, 0.78);
  margin: 0 0 1.6rem;
}
.material-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  border-top: 1px solid rgba(201, 152, 10, 0.2);
  padding-top: 1rem;
  margin-top: 0.4rem;
  width: 100%;
}

.materiality-close {
  max-width: 740px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
  line-height: 1.7;
  color: var(--ivory);
}
.materiality-close em {
  color: rgba(201, 152, 10, 0.85);
  font-weight: 300;
}

@media (max-width: 880px) {
  .materiality { padding: 5rem 0 6rem; }
  .materiality-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .material-card { padding: 2rem 1.6rem 2.2rem; }
}

/* ═══════ CRAFT SECTION ═══════ */
.craft {
  padding: 8rem 0;
  background: var(--black);
  position: relative;
}
.craft-inner {
  width: var(--container-narrow);
  margin: 0 auto;
}
.craft-heading {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 700;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}
.craft-heading .line-reveal { display: block; }
.craft-heading .gold-text { font-style: italic; color: var(--gold); }

.craft-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.craft-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.8rem;
  color: var(--ivory);
  opacity: 0.92;
}
.craft-text p:last-child { margin-bottom: 0; }

.craft-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--black-elevated);
  border: 1px solid rgba(201, 152, 10, 0.2);
  border-radius: 4px;
  position: relative;
}
.craft-stats::before {
  content: '\25C6';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  padding: 0 10px;
  color: var(--gold);
  font-size: 0.7rem;
}
.stat-item { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-unit {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.7;
  margin-top: 0.3rem;
}
.stat-desc {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.5;
  margin-top: 0.4rem;
}

/* ═══════ FEATURES ═══════ */
.features {
  padding: 8rem 0;
  background: var(--black-soft);
  position: relative;
}
.features-inner {
  width: var(--container);
  margin: 0 auto;
}
.features-heading {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.feature-card {
  padding: 2.5rem 2rem;
  background: var(--black-elevated);
  border: 1px solid rgba(201, 152, 10, 0.12);
  border-radius: 4px;
  position: relative;
  transition: all 0.6s var(--ease);
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(201, 152, 10, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.feature-card:hover {
  border-color: rgba(201, 152, 10, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 152, 10, 0.3);
  border-radius: 50%;
  margin-bottom: 1.4rem;
  transition: all 0.5s var(--ease);
}
.feature-card:hover .feature-icon {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 152, 10, 0.3);
  transform: rotate(8deg);
}
.feature-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.5;
  letter-spacing: 0.1em;
}
.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ivory);
  opacity: 0.78;
}

/* ═══════ SPECIFICATIONS ═══════ */
.specifications {
  padding: 8rem 0;
  background: var(--black);
}
.specs-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.specs-left { position: sticky; top: 120px; }
.specs-heading {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.specs-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ivory);
  opacity: 0.78;
  max-width: 380px;
}

.specs-table { display: flex; flex-direction: column; }
.spec-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(232, 224, 204, 0.08);
  transition: all 0.4s var(--ease);
}
.spec-row:hover {
  border-bottom-color: var(--gold);
  padding-left: 1rem;
}
.spec-row:hover .spec-label { color: var(--gold); }
.spec-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.7;
  transition: color 0.4s var(--ease);
}
.spec-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 152, 10, 0.3), transparent);
}
.spec-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ivory);
  text-align: right;
}

/* ═══════ GALLERY (HORIZONTAL SCROLL) ═══════ */
.gallery {
  padding: 8rem 0;
  background: var(--black-soft);
  overflow: hidden;
}
.gallery-header {
  width: var(--container);
  margin: 0 auto 4rem;
  text-align: center;
}
.gallery-heading {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.gallery-header .gold-rule { margin: 1.5rem auto 0; }

.gallery-scroll-wrap {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0 2rem;
  scrollbar-width: thin;
}
.gallery-scroll-wrap::-webkit-scrollbar { height: 4px; }
.gallery-track {
  display: flex;
  gap: 2rem;
  padding: 0 5vw;
  width: max-content;
}
.gallery-card {
  flex: 0 0 min(80vw, 520px);
  scroll-snap-align: center;
}
.gallery-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--black-elevated);
  border: 1px solid rgba(201, 152, 10, 0.15);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: all 0.6s var(--ease);
}
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Default: zoom in to crop reflections / busy edges of source photos */
  transform: scale(1.45);
  object-position: center 35%;
  transition: transform 0.8s var(--ease);
}
.gallery-card:hover .gallery-img {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(201, 152, 10, 0.2);
}
.gallery-card:hover .gallery-img img { transform: scale(1.55); }

/* Full-view modifier: shows the COMPLETE composition (motor + base + display) */
.gallery-img--full img {
  transform: scale(1) !important;
  object-position: center center !important;
}
.gallery-card:hover .gallery-img--full img { transform: scale(1.04) !important; }

/* ═══════ ATELIER LOOKBOOK — editorial asymmetric spread ═══════
   Redesigned 2026-05-05: moved up in page flow, mixed aspect ratios
   (cinematic / tall / square / film-strip), gold-corner architectural framing,
   floating Roman numerals, editorial right-aligned and centered captions.
   Photos & video use object-fit: contain — full product visible, no zoom. */
.lookbook {
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(201, 152, 10, 0.06) 0%, transparent 70%),
    var(--black);
  padding: 5rem 0 7rem;
  position: relative;
  overflow: hidden;
}
.lookbook::before {
  /* Top hairline divider — anchors the section */
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 152, 10, 0.5), transparent);
  pointer-events: none;
}
.lookbook-header {
  max-width: var(--container-narrow);
  margin: 0 auto 4.5rem;
  padding: 0 5vw;
  text-align: center;
}
.lookbook-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ivory);
  margin: 1rem 0 1.5rem;
}
.lookbook-heading em { color: var(--gold); font-weight: 400; }
.lookbook-sub {
  margin-top: 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(240, 234, 214, 0.5);
}

/* === Editorial spread === */
.lookbook-spread {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.plate {
  margin: 0;
  display: grid;
  position: relative;
  gap: 1.4rem;
}

/* === Floating Roman numeral — large, editorial, sits beside the frame === */
.plate-roman {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 1;
  color: rgba(201, 152, 10, 0.12);
  letter-spacing: -0.03em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: color 0.7s var(--ease);
}
.plate:hover .plate-roman { color: rgba(201, 152, 10, 0.28); }

/* ═══════ HOFFMANN ATELIER PORTHOLE FRAME — refined evolution of the octagon
   Thematic reference: aviator porthole + luxury watch crystal (Royal Oak case viewed
   from above) + precision-engineered display vitrine. Smooth asymmetric arches
   replace the harsh polygon — same brand DNA, dramatically more elegant. ═══════ */
.plate-frame--octagon {
  position: relative;
  width: 100%;
  z-index: 1;
  /* Pronounced asymmetric arch — aviator porthole on portrait,
     panavision arch on cinematic. Reads unmistakably as a curved frame. */
  border-radius: 45% 45% 10% 10% / 28% 28% 6% 6%;
  overflow: hidden;
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.65),
    0 0 0 1.5px rgba(201, 152, 10, 0.42),
    inset 0 0 0 1px rgba(201, 152, 10, 0.10);
}
.plate--photo .plate-frame--octagon,
.plate--video .plate-frame--octagon {
  aspect-ratio: 4 / 5;                /* same portrait shape across photos AND video */
  /* Inherits the unified arch — same porthole silhouette for every plate */
}

/* Inner double-border (museum-mat treatment) — drawn over the image edge */
.plate-frame--octagon::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 0.5px solid rgba(201, 152, 10, 0.38);
  border-radius: 43% 43% 8% 8% / 26% 26% 5% 5%;
  pointer-events: none;
  z-index: 4;
  transition: border-color 0.6s var(--ease);
}
/* Photo + video both use the same inner-mat hairline radius (set above) */

/* Ambient gold halo behind each frame — separates the photo from the dark page bg */
.plate-frame--octagon::before {
  content: "";
  position: absolute;
  inset: -45px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201, 152, 10, 0.18) 0%, rgba(201, 152, 10, 0.06) 35%, transparent 65%);
  z-index: -1;
  pointer-events: none;
  transition: inset 0.7s var(--ease), opacity 0.7s var(--ease);
  filter: blur(2px);
}

/* Image / video — fills the frame, inherits parent's elegant curve.
   `border-radius: inherit` is critical for <video>: in some Chromium builds
   the video element ignores the parent's overflow:hidden + corner radius,
   so we explicitly inherit the arched shape onto the video itself. */
.plate-frame--octagon img,
.plate-frame--octagon video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: inherit;
  -webkit-border-radius: inherit;
  transition: transform 1.6s var(--ease-luxury);
  position: relative;
  z-index: 1;
}

/* Legacy octagonal SVG outline — superseded by the porthole frame's
   built-in box-shadow + ::after double-border. Hidden, kept in DOM
   for backwards compatibility if any older plate references it. */
.plate-outline {
  display: none;
}

/* Hover state — outline brightens, halo expands, frame lifts */
.plate:hover .plate-frame--octagon {
  transform: translateY(-4px);
}
.plate:hover .plate-frame--octagon::before {
  inset: -60px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(232, 200, 74, 0.28) 0%, rgba(201, 152, 10, 0.08) 35%, transparent 65%);
}
.plate:hover .plate-frame--octagon img,
.plate:hover .plate-frame--octagon video {
  transform: scale(1.02);
}
.plate:hover .plate-outline { color: rgba(232, 200, 74, 1); }

/* === Layout per plate === */
.plate--lead {
  grid-template-columns: 1fr;
  max-width: 720px;                    /* Plate I and IV — generous featured size */
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding-left: clamp(0px, 5vw, 70px);  /* room for the floating roman */
}
.plate--lead .plate-roman {
  top: -0.08em;
  left: 0;
  font-size: clamp(5rem, 10vw, 10rem);
}

/* Plate IV roman positions bottom-right for variation */
.plate--video .plate-roman {
  top: auto;
  bottom: -0.05em;
  left: auto;
  right: 0;
}
.plate--video.plate--lead { padding-left: 0; padding-right: clamp(0px, 5vw, 70px); }

/* Editorial diptych — Plate II + III side-by-side */
.plate-diptych {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: end;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}
.plate-diptych .plate { grid-template-columns: 1fr; }
.plate-diptych .plate--photo:nth-child(1) { margin-top: 0; }
.plate-diptych .plate--photo:nth-child(2) { margin-top: clamp(2rem, 4vw, 3rem); }  /* offset for editorial rhythm */
.plate-diptych .plate-roman {
  top: -0.4em;
  font-size: clamp(3.5rem, 7.5vw, 6.5rem);
}
.plate-diptych .plate--photo:nth-child(1) .plate-roman { right: -0.15em; }
.plate-diptych .plate--photo:nth-child(2) .plate-roman { left: -0.1em; }

/* Floating film tag for the video plate */
.plate-film-tag {
  position: absolute;
  top: 22px;
  left: 18%;                            /* clears the chamfered corner */
  z-index: 4;
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(232, 200, 74, 0.92);
  background: rgba(0, 0, 0, 0.55);
  padding: 0.5em 1em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(201, 152, 10, 0.3);
  pointer-events: none;
}

/* === Editorial caption — floats below the frame, mixed alignment per plate === */
.plate-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  padding-top: 0.4rem;
  position: relative;
  z-index: 2;
}
.plate-meta--right { align-items: flex-end; text-align: right; }
.plate-meta--centered { align-items: center; text-align: center; }

.plate-meta-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 152, 10, 0.05));
}
.plate-meta--right .plate-meta-rule {
  background: linear-gradient(270deg, var(--gold), rgba(201, 152, 10, 0.05));
}
.plate-meta--centered .plate-meta-rule {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 64px;
}
.plate-meta-title {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 300;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(240, 234, 214, 0.78);
}
.plate-meta-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--ivory);
  margin-left: 0.3rem;
}
.plate-meta-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  color: rgba(201, 152, 10, 0.7);
}

/* === Tablet === */
@media (max-width: 980px) {
  .plate-diptych {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .plate-diptych .plate--photo:nth-child(2) { margin-top: 0; }
}

/* === Mobile === */
@media (max-width: 640px) {
  .lookbook { padding: 3.5rem 0 5rem; }
  .lookbook-header { margin-bottom: 2.5rem; }
  .lookbook-spread { gap: 4rem; padding: 0 6vw; }
  .plate--lead { padding-left: 0; padding-right: 0; }
  .plate-roman { font-size: clamp(3rem, 14vw, 5.5rem) !important; }
  .plate-frame--octagon::before { inset: -25px; }
  .plate:hover .plate-frame--octagon::before { inset: -35px; }
  .plate-film-tag { font-size: 0.5rem; padding: 0.4em 0.7em; left: 18%; }
}

/* ═══════ 360° SPIN VIEWER ═══════ */
.spin-section {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 152, 10, 0.05) 0%, transparent 70%),
    var(--black);
  padding: 5rem 0 6rem;
  position: relative;
}
.spin-inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.spin-inner .section-eyebrow { margin-bottom: 1rem; }
.spin-heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ivory);
  margin-bottom: 1.2rem;
}
.spin-heading em { color: var(--gold); font-style: italic; font-weight: 400; }
.spin-inner .gold-rule { margin: 0 auto 1.4rem; }
.spin-sub {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(240, 234, 214, 0.55);
  margin-bottom: 2.4rem;
}

.spin-360 {
  position: relative;
  width: min(86%, 760px);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  background: var(--black);
  border: 1px solid rgba(201, 152, 10, 0.4);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 6px rgba(6, 6, 6, 1),
    0 0 0 7px rgba(201, 152, 10, 0.18);
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  overflow: hidden;
}
.spin-360.is-dragging { cursor: grabbing; }
.spin-360-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.spin-360.is-ready .spin-360-img { opacity: 1; }
.spin-360-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: var(--black);
  z-index: 2;
  transition: opacity 0.4s ease;
}
.spin-360.is-ready .spin-360-loader { opacity: 0; pointer-events: none; }
.spin-360-loader-bar {
  width: 180px;
  height: 1px;
  background: rgba(201, 152, 10, 0.2);
  overflow: hidden;
}
.spin-360-loader-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.2s ease;
}
.spin-360-loader-text {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.spin-360-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.1rem;
  background: rgba(6, 6, 6, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(201, 152, 10, 0.35);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 3;
  pointer-events: none;
  opacity: 0.95;
  animation: spinHintPulse 2.6s ease-in-out infinite;
  transition: opacity 0.4s ease;
}
.spin-360.has-interacted .spin-360-hint { opacity: 0; }
@keyframes spinHintPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-3px); }
}
.spin-360-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
  pointer-events: none;
  opacity: 0.85;
  z-index: 1;
}
.spin-360-corner--tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.spin-360-corner--tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.spin-360-corner--bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.spin-360-corner--br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.spin-caption {
  margin-top: 2rem;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(240, 234, 214, 0.55);
}
@media (max-width: 700px) {
  .spin-section { padding: 3.5rem 0 4.5rem; }
  .spin-360 { width: 92%; }
  .spin-360-corner { width: 18px; height: 18px; }
}

/* ═══════ STUDIO FILM SECTION (full-width hero video) ═══════ */
.studio-film {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 152, 10, 0.04) 0%, transparent 70%),
    var(--black);
  padding: 5rem 0 6rem;
  position: relative;
}
.studio-film-inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.studio-film-inner .section-eyebrow { margin-bottom: 1rem; }
.studio-film-heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ivory);
  margin-bottom: 1.4rem;
}
.studio-film-heading em { color: var(--gold); font-style: italic; font-weight: 400; }
.studio-film-inner .gold-rule { margin: 0 auto 3rem; }

.studio-film-frame {
  position: relative;
  width: min(86%, 1080px);
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  max-height: 78vh;
  background: #000;
  overflow: hidden;
  border: 1px solid rgba(201, 152, 10, 0.4);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 6px rgba(6, 6, 6, 1),
    0 0 0 7px rgba(201, 152, 10, 0.18);
}
.studio-film-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.06) saturate(1.05);
}
.studio-film-overlay { display: none; }
/* Decorative gold corner brackets — bezel feel */
.studio-film-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  pointer-events: none;
  opacity: 0.85;
}
.studio-film-corner--tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.studio-film-corner--tr { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.studio-film-corner--bl { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.studio-film-corner--br { bottom: 14px; right: 14px; border-left: none; border-top: none; }

.studio-film-caption {
  margin-top: 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(240, 234, 214, 0.55);
}

@media (max-width: 900px) {
  .studio-film { padding: 3rem 0 4rem; }
  .studio-film-frame { width: 92%; aspect-ratio: 3 / 4; max-height: 72vh; }
  .studio-film-corner { width: 20px; height: 20px; }
}

/* Video card — same frame, autoplay loop */
.gallery-img--video {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.gallery-img--video::after { display: none; }
.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.gallery-card--video:hover .gallery-video { transform: scale(1.04); }
.gallery-card--video figcaption::before {
  content: "▶ ";
  font-size: 0.8em;
  margin-right: 0.3em;
}
.gallery-card figcaption {
  margin-top: 1.2rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* Certificate card */
.gallery-img--cert {
  background: linear-gradient(180deg, #f4ecd6 0%, var(--ivory) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.cert-preview {
  text-align: center;
  color: var(--black);
  width: 100%;
}
.cert-mark {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.cert-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 1.5rem;
  color: var(--black);
}
.cert-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.5rem;
  color: var(--black);
}
.cert-model {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: var(--gold-deep);
}
.cert-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.2rem auto;
}
.cert-serial {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.4rem;
  color: var(--black);
}
.cert-sign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-deep);
}

/* ═══════ INCLUDED ═══════ */
.included {
  padding: 8rem 0;
  background: var(--black);
}
.included-inner {
  width: var(--container-narrow);
  margin: 0 auto;
  text-align: center;
}
.included-heading {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.included-inner .gold-rule { margin: 1.5rem auto 4rem; }
.included-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.included-item {
  padding: 2rem 1rem;
  border: 1px solid rgba(201, 152, 10, 0.15);
  border-radius: 4px;
  background: var(--black-elevated);
  transition: all 0.5s var(--ease);
}
.included-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.included-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1rem;
}
.included-item h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--ivory);
}
.included-item p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ivory);
  opacity: 0.7;
}

/* ═══════ FOUNDER ═══════ */
.founder {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
  position: relative;
}
.founder-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: center;
}
.founder-heading {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.founder-quote {
  margin: 3rem 0;
  padding: 2rem 0 2rem 2rem;
  border-left: 2px solid var(--gold);
  position: relative;
}
.founder-quote::before {
  content: '\201C';
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.founder-quote p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ivory);
  letter-spacing: 0.005em;
}
.founder-sig { display: flex; flex-direction: column; gap: 0.3rem; }
.sig-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold);
}
.sig-title {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.8;
}
.sig-loc {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.55;
}

/* Founder badge — circular emblem */
.founder-badge {
  display: flex;
  justify-content: center;
}
/* ═══════ FOUNDER BADGE — OFFICIAL WAX SEAL ═══════ */
.founder-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}
.wax-seal {
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible; /* crown extends near top edge — never clip */
  filter:
    drop-shadow(0 0 22px rgba(201, 152, 10, 0.25))
    drop-shadow(0 16px 30px rgba(0, 0, 0, 0.55))
    saturate(1.06);
}
.wax-seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
  /* The dark paper background of the JPG blends with the onyx site bg */
}

.badge-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
  margin: 0;
}
.badge-caption-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.005em;
  line-height: 1;
}
.badge-caption-rule {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.badge-caption-meta {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(240, 234, 214, 0.65);
  line-height: 1.5;
  max-width: 280px;
}
.badge-h {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}

/* ═══════ TRUST STRIP ═══════ */
.trust {
  padding: 3rem 0;
  background: var(--black-elevated);
  border-top: 1px solid rgba(201, 152, 10, 0.15);
  border-bottom: 1px solid rgba(201, 152, 10, 0.15);
}
.trust-inner {
  width: var(--container);
  margin: 0 auto;
}
.trust-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
}
.trust-icon { color: var(--gold); font-size: 1.1rem; }
.trust-divider {
  width: 1px; height: 24px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

/* ═══════ ACQUIRE / CTA ═══════ */
.acquire {
  padding: 10rem 0 8rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.acquire-inner {
  width: var(--container-narrow);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.acquire-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  max-width: 100%;
  background: radial-gradient(circle, rgba(201, 152, 10, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.acquire-heading {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.acquire-note {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ivory);
  opacity: 0.85;
  margin: 2.5rem auto 2rem;
  max-width: 560px;
}
.acquire-price-block { margin: 2.5rem 0; }
.acquire-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.price-currency {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.7;
}
.acquire-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.7;
}

.acquire-urgency {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.4rem;
  background: rgba(201, 152, 10, 0.08);
  border: 1px solid rgba(201, 152, 10, 0.3);
  border-radius: 100px;
}
.urgency-pulse {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.urgency-count {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.urgency-text {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.85;
}

.acquire-contact {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  display: inline-block;
  transition: border-color 0.4s var(--ease);
}
.acquire-contact:hover { border-bottom-color: var(--gold); }

/* ═══════ FOOTER ═══════ */
.site-footer {
  padding: 5rem 0 2rem;
  background: var(--black);
  border-top: 1px solid rgba(201, 152, 10, 0.15);
}
.footer-inner { width: var(--container); margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(232, 224, 204, 0.08);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ivory);
  opacity: 0.7;
  margin-top: 0.2rem;
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.75;
  transition: color 0.3s var(--ease);
}
.footer-links a:hover { color: var(--gold); opacity: 1; }

.footer-social { display: flex; align-items: center; gap: 1rem; }
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ivory);
  opacity: 0.75;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
}
.footer-social-link:hover {
  color: var(--gold);
  opacity: 1;
}
.footer-social-link svg {
  width: 18px;
  height: 18px;
  transition: stroke 0.3s var(--ease);
}
.footer-social-handle { white-space: nowrap; }

.footer-bottom {
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.55;
}
.footer-tagline-sm { font-style: italic; text-transform: none; letter-spacing: 0.1em; }

/* Legal fine print — visible to law, invisible to eye.
   Tiny font, near-bg color, subdued — present for compliance, not for marketing. */
.footer-legal-fineprint {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(240, 234, 214, 0.18);
  margin-top: 1.6rem;
  max-width: 720px;
  text-transform: none;
}
.footer-legal-fineprint a {
  color: rgba(240, 234, 214, 0.28);
  text-decoration: none;
  border-bottom: 1px dotted rgba(240, 234, 214, 0.18);
}
.footer-legal-fineprint a:hover { color: rgba(201, 152, 10, 0.7); }

/* ═══════ FLOATING CTA ═══════ */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5s var(--ease);
}
.floating-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.floating-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  color: var(--black);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(201, 152, 10, 0.4);
  transition: all 0.4s var(--ease);
}
.floating-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201, 152, 10, 0.55);
}
.floating-cta-price {
  padding-left: 0.7rem;
  border-left: 1px solid rgba(10, 10, 10, 0.3);
  font-weight: 700;
}

/* ═══════ GOOGLE TRANSLATE SUPPRESSION ═══════ */
.goog-te-banner-frame, .goog-te-balloon-frame, #goog-gt-tt, .goog-te-spinner-pos { display: none !important; }
.goog-tooltip { display: none !important; }
body { top: 0 !important; }
font[style*="background-color"], font[style*="color"] { background: transparent !important; box-shadow: none !important; }

/* ═══════ RESPONSIVE — TABLET ═══════ */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(3rem, 14vw, 7rem); }

  .craft-grid { grid-template-columns: 1fr; gap: 3rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .specs-inner { grid-template-columns: 1fr; gap: 3rem; }
  .specs-left { position: static; }
  .included-grid { grid-template-columns: 1fr 1fr 1fr; }
  .founder-inner { grid-template-columns: 1fr; gap: 3rem; }
  .founder-badge { order: -1; }

  .gallery-card { flex: 0 0 min(85vw, 460px); }
}

/* ═══════ RESPONSIVE — MOBILE (iOS / ANDROID) ═══════ */
@media (max-width: 640px) {
  :root { --header-h: 64px; }

  .header-inner { gap: 0.8rem; }
  .lang-btn { padding: 0.4rem 0.6rem; font-size: 0.65rem; }

  /* Hero on mobile — extra top/bottom padding keeps the centered content
     clear of the rotate-hint chip (top) and the scarcity pill (bottom). */
  .hero { min-height: 620px; padding: 5.5rem 1rem 4.5rem; }
  .hero-title { font-size: clamp(2.8rem, 18vw, 5rem); margin-bottom: 1.4rem; }
  .hero-tagline { font-size: 0.7rem; letter-spacing: 0.2em; margin-bottom: 2rem; }
  .hero-edition-badge { font-size: 0.55rem; padding: 0.4rem 0.9rem; }
  .hero-cta-row { flex-direction: column; width: 100%; gap: 0.7rem; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  /* Mobile edition counter — compact pill flush to the bottom of the hero,
     just above the marquee strip. Never crashes into the stacked CTA column. */
  .hero-scarcity {
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.42rem 0.85rem;
    gap: 0.5rem;
    border-radius: 999px;
    max-width: calc(100vw - 2rem);
    white-space: nowrap;
  }
  .hero-scarcity .scarcity-pulse {
    width: 6px;
    height: 6px;
  }
  .hero-scarcity .scarcity-count {
    font-size: 0.95rem;
    line-height: 1;
  }
  .hero-scarcity .scarcity-label {
    font-size: 0.52rem;
    letter-spacing: 0.18em;
  }
  .scroll-cue { display: none; }

  .craft, .features, .specifications, .gallery, .included, .founder, .acquire {
    padding: 5rem 0;
  }
  .craft-heading, .features-heading, .specs-heading, .gallery-heading, .included-heading, .founder-heading {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
  .craft-text p { font-size: 0.95rem; }
  .craft-stats { grid-template-columns: 1fr 1fr; padding: 1.8rem 1.4rem; gap: 1.5rem; }
  .stat-number { font-size: 2.4rem; }

  .features-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .feature-card { padding: 2rem 1.5rem; }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 1.1rem 0;
  }
  .spec-divider { display: none; }
  .spec-value { text-align: left; font-size: 1rem; }

  .gallery-card { flex: 0 0 min(85vw, 360px); }
  .gallery-img--cert { padding: 2rem; }

  .included-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .included-item { padding: 1.5rem 0.8rem; }

  .founder-quote p { font-size: 1.1rem; }
  .wax-seal { width: 260px; height: 260px; }
  .badge-caption-text { font-size: 1.2rem; }

  .trust-items { gap: 1rem; flex-direction: column; }
  .trust-divider { display: none; }

  .acquire-heading { font-size: clamp(2.2rem, 9vw, 3rem); }
  .acquire-note { font-size: 0.95rem; padding: 0 1rem; }
  .acquire-meta { gap: 0.8rem; font-size: 0.65rem; }
  .btn--large { padding: 1.2rem 2rem; font-size: 0.78rem; width: 100%; max-width: 360px; justify-content: center; }

  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }

  .floating-cta { bottom: 1rem; right: 1rem; left: 1rem; }
  .floating-cta-btn { width: 100%; justify-content: center; padding: 1rem; }

  .marquee-track { font-size: 1rem; gap: 1.4rem; }
}

/* ═══════ EDITIONS — TWO-TIER PRICING ═══════ */
.editions {
  padding: 8rem 0;
  background: var(--black);
  position: relative;
}
.editions-inner {
  width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.editions-heading {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.editions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.edition-card {
  position: relative;
  padding: 3rem 2.5rem;
  background: var(--black-elevated);
  border: 1px solid rgba(201, 152, 10, 0.2);
  border-radius: 6px;
  text-align: left;
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.edition-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.edition-card--collector {
  background: linear-gradient(160deg, var(--black-elevated) 0%, rgba(201, 152, 10, 0.08) 100%);
  border-color: rgba(201, 152, 10, 0.5);
  box-shadow: 0 20px 60px rgba(201, 152, 10, 0.12);
}
.edition-card--collector:hover {
  box-shadow: 0 30px 80px rgba(201, 152, 10, 0.25);
}

.edition-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
  border: 1px solid rgba(232, 224, 204, 0.25);
  border-radius: 100px;
  margin-bottom: 1.2rem;
  align-self: flex-start;
}
.edition-tag--gold {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 152, 10, 0.05);
}

/* Coming Soon variant — desaturated, refined, not loud */
.edition-card--soon {
  position: relative;
}
.edition-card--soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, 0.18);
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
.edition-card--soon > * {
  position: relative;
  z-index: 2;
}
.edition-ribbon--soon {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a) !important;
  color: var(--gold) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
  border: 1px solid rgba(201, 152, 10, 0.4) !important;
}

.edition-ribbon {
  position: absolute;
  top: 1.5rem;
  right: -0.6rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  color: var(--black);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  box-shadow: 0 6px 20px rgba(201, 152, 10, 0.4);
}
.edition-ribbon::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  border-style: solid;
  border-width: 0.4rem 0.6rem 0 0;
  border-color: var(--gold-deep) transparent transparent transparent;
}

.edition-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--ivory);
}
.edition-card--collector .edition-name {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.edition-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ivory);
  opacity: 0.65;
  margin-bottom: 1.8rem;
}

.edition-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 152, 10, 0.2);
}
.edition-price-amount {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.edition-price-currency {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.7;
}

.edition-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}
.edition-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.55rem 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ivory);
  border-bottom: 1px solid rgba(232, 224, 204, 0.05);
}
.edition-features li:last-child { border-bottom: none; }
.edition-check {
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
}
.edition-feature--disabled {
  opacity: 0.35;
  color: var(--ivory-soft);
}
.edition-feature--disabled span {
  color: var(--ivory);
  opacity: 0.5;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.editions-note {
  margin-top: 3rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ivory);
  opacity: 0.78;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ═══════ FOUNDER — SIGNATURE BLOCK ═══════ */
.founder-sig-block {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.founder-signature {
  margin-bottom: 0.4rem;
  filter: drop-shadow(0 2px 6px rgba(232, 224, 204, 0.15));
}

/* ═══════ ACQUIRE — TIER LINKS ═══════ */
.acquire-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  max-width: 760px;
  margin: 3rem auto 2rem;
}
.acquire-tier {
  position: relative;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(201, 152, 10, 0.3);
  border-radius: 4px;
  background: rgba(15, 15, 15, 0.7);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: all 0.4s var(--ease);
  text-align: center;
}
.acquire-tier:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 152, 10, 0.15);
}
.acquire-tier--collector {
  background: linear-gradient(160deg, rgba(15,15,15,0.7), rgba(201, 152, 10, 0.08));
  border-color: rgba(201, 152, 10, 0.5);
}
.tier-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  color: var(--black);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: 100px;
}
.tier-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ivory);
  letter-spacing: 0.05em;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.tier-meta {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.65;
}

/* ═══════ INCLUDED — note ═══════ */
.included-note {
  margin-top: 3rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ivory);
  opacity: 0.78;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ═══════ ACQUIRE — final sale legal note ═══════ */
.acquire-finesale {
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: var(--ivory);
  opacity: 0.5;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════ CERT preview — updated ═══════ */
.cert-logo { margin: 0 auto 1rem; display: block; }
.cert-sig {
  margin: 1.2rem auto 0.4rem;
  display: block;
}

/* ═══════ FOOTER — legal block ═══════ */
.footer-legal {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232, 224, 204, 0.05);
}
.footer-legal p {
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: var(--ivory);
  opacity: 0.4;
  max-width: 900px;
}

/* ═══════ EDITIONS — RESPONSIVE ═══════ */
@media (max-width: 1024px) {
  .editions-grid { grid-template-columns: 1fr; gap: 2rem; }
  .acquire-tiers { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .edition-card { padding: 2.2rem 1.6rem; }
  .edition-name { font-size: 1.6rem; }
  .edition-price-amount { font-size: 2.6rem; }
  .editions { padding: 5rem 0; }
}

/* ═══════ MOTOR PART LABELS (3D overlay) ═══════ */
.motor-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.motor-label {
  position: absolute;
  top: 0; left: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translate(-50%, -50%) translateX(0);
  transition: opacity 0.5s var(--ease);
  white-space: nowrap;
  pointer-events: none;
}
.motor-label.is-visible { opacity: 1; }
.ml-line {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  position: relative;
}
.ml-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--gold);
}
.ml-text {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  background: rgba(6, 6, 6, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(201, 152, 10, 0.25);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
}
.ml-text em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
@media (max-width: 640px) {
  .motor-label { display: none; }
}

/* ═══════ BRAND POLISH — Playfair italic + Josefin labels ═══════ */
.hero-title { font-style: italic; }
.hero-title-line { font-style: italic; }
.hero-title-accent { font-style: italic; font-weight: 500; }

.hero-tagline {
  font-family: var(--font-sans);
  font-weight: 300;
  font-style: normal;
}
.hero-edition-badge {
  font-family: var(--font-sans);
  font-weight: 300;
}

/* Stat numbers — italic Playfair (matches brand cert) */
.stat-number, .price-amount, .edition-price-amount, .tier-price {
  font-style: italic;
}

/* Spec values are EB Garamond italic (brand) */
.spec-value, .spec-label, .lang-btn span, .scarcity-label, .urgency-text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-style: normal;
}

.lang-opt {
  font-family: var(--font-sans);
  font-weight: 300;
}

.feature-num, .included-num, .tier-label {
  font-family: var(--font-sans);
}

.founder-quote-secondary {
  margin-top: 1.4rem;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--platinum);
  line-height: 1.7;
  opacity: 0.85;
}

.footer-tagline-sm, .marquee-track {
  font-family: var(--font-display);
  font-style: italic;
}
.marquee-track { font-weight: 400; }

/* All small "uppercase tracked" labels use Josefin */
.cert-sub, .tier-meta, .cta-meta, .acquire-meta, .trust-text, .stat-unit, .stat-desc, .price-currency, .edition-tag, .edition-price-currency {
  font-family: var(--font-sans);
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.28em;
}

/* Body paragraphs use EB Garamond italic for elegance */
.craft-text p, .specs-intro, .acquire-note, .editions-note, .included-note {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
}

/* ═══════ REAL BRAND IMAGES — header logo blended into onyx ═══════ */
.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  /* logo-clean.png has transparent dark pixels; drop-shadow adds the gold halo */
  filter: drop-shadow(0 0 14px rgba(201, 152, 10, 0.32));
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}
.logo-link:hover .logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 22px rgba(232, 200, 74, 0.55)) brightness(1.05);
}
.site-header.scrolled .logo-img { height: 48px; }

/* Loader-logo override removed — single canonical definition lives in the LOADER block above. */

.cert-logo {
  display: block;
  margin: 0 auto 1rem;
  width: 110px; height: auto;
}
.cert-sig {
  display: block;
  margin: 1rem auto 0.4rem;
  width: 130px; height: auto;
}

.founder-signature {
  display: block;
  margin: 0 0 0.4rem;
  width: 260px; height: auto;
  filter: drop-shadow(0 2px 6px rgba(232, 224, 204, 0.15));
}

.footer-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  .logo-img { height: 44px; }
  .site-header.scrolled .logo-img { height: 38px; }
  .founder-signature { width: 200px; }
}

/* ═══════ MOTION PREFERENCES ═══════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════ EDITION COUNTER — exclusivity at a glance (100 per edition)
   Editorial typography + hairline gold progress bar. Reads as a museum
   acquisition register, not a sales tracker. ═══════ */
.edition-counter {
  margin: 1.5rem 0 2rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(201, 152, 10, 0.18);
  background: rgba(245, 241, 232, 0.02);
  position: relative;
}
.edition-counter::before {
  content: "";
  position: absolute; inset: 4px;
  border: 0.5px solid rgba(201, 152, 10, 0.10);
  pointer-events: none;
}
.edition-counter-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.65rem;
}
.edition-counter-label {
  font-family: var(--font-sub, 'Cormorant Garamond', Georgia, serif);
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(201, 152, 10, 0.95);
}
.edition-counter-value {
  font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--ivory, #f5f1e8);
  font-weight: 400;
}
.edition-counter-num {
  font-style: italic;
  font-weight: 500;
  color: rgba(201, 152, 10, 1);
  font-size: 1.1rem;
  margin-right: 0.18em;
}
.edition-counter-bar {
  height: 1px;
  background: rgba(201, 152, 10, 0.16);
  position: relative;
  overflow: hidden;
}
.edition-counter-fill {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(201, 152, 10, 0.6), rgba(232, 200, 74, 1));
  box-shadow: 0 0 8px rgba(201, 152, 10, 0.4);
  transition: width 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.edition-counter-status {
  margin-top: 0.65rem;
  font-family: var(--font-sub, 'Cormorant Garamond', Georgia, serif);
  font-size: 0.55rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.55);
}
.edition-counter--collector .edition-counter-status {
  color: rgba(201, 152, 10, 0.78);
}
