/* ═══════════════════════════════════════════════════════
   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: 'Playfair Display', 'EB Garamond', 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: Playfair italic, Josefin labels) ═══════ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  line-height: 1.04;
  letter-spacing: -0.005em;
}
h1, h2 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); }
h1 em, h2 em, h3 em { font-style: normal; color: var(--gold); }
.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 ═══════ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  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; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.loader-logo { animation: logoPulse 2s var(--ease) infinite; }
@keyframes logoPulse { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.04); } }
.loader-bar { width: 200px; height: 1px; background: rgba(232, 224, 204, 0.1); overflow: hidden; }
.loader-progress { height: 100%; background: var(--gold); width: 0%; transition: width 0.4s var(--ease); }
.loader-text {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* ═══════ 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-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);
}
.lang-opt:hover { background: rgba(201, 152, 10, 0.1); color: var(--gold); }
.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;
}

.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 {
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
  text-shadow: 0 4px 30px rgba(10, 10, 10, 0.8);
}
.hero-title-line { display: block; }
.hero-title-accent {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), #f0d060, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 800;
}

.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;
}

/* 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%); }
}

/* ═══════ 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;
  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.04); }
.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;
}
.badge-ring {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: badgeSpin 32s linear infinite;
}
@keyframes badgeSpin { to { transform: rotate(360deg); } }
.badge-ring svg { width: 100%; height: 100%; }
.badge-center {
  position: absolute;
  inset: 30%;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  animation: badgeSpin 32s linear infinite reverse;
}
.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-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; }

/* ═══════ 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 { min-height: 600px; padding: 0 1rem; }
  .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; }
  .hero-scarcity {
    bottom: 5.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
  }
  .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; }
  .badge-ring { width: 180px; height: 180px; }

  .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);
}

.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 (overrides SVG procedural) ═══════ */
.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
  /* Logo is gold-on-black so it harmonizes with header naturally */
}
.logo-link:hover .logo-img { transform: scale(1.03); filter: brightness(1.1); }
.site-header.scrolled .logo-img { height: 48px; }

.loader-logo {
  width: 240px; max-width: 60vw;
  height: auto;
  object-fit: contain;
  animation: logoPulse 2s var(--ease) infinite;
}

.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; }
}
