/* =====================================================================
   ONE OF ONE — Automotive Private Equity
   Design system & global styles
   --------------------------------------------------------------------
   Aesthetic: dark, gallery-grade, editorial luxury.
   Palette : near-black canvas, restrained champagne-gold accent.
   Type    : Fraunces (display serif) + Inter (grotesque sans).
   ===================================================================== */

/* -------------------------------------------------- Tokens */
:root {
  /* Colour */
  --bg:          #0A0A0C;
  /* Brand palette — One Of One corporate identity */
  --bg:          #101A22;   /* deepened Navy Blue Automotive */
  --bg-2:        #15222C;
  --surface:     #20303B;   /* NAVY BLUE AUTOMOTIVE (brand primary) */
  --surface-2:   #29404E;
  --navy-deep:   #004367;   /* secondary deep blue */
  --line:        rgba(183, 198, 217, 0.13);
  --line-strong: rgba(183, 198, 217, 0.26);

  --cream:       #F2F6FA;   /* near-white, cool */
  --text:        #D7DFE6;
  --muted:       #93A4B1;   /* ~ steel #7E91A0 */
  --muted-2:     #677A87;

  --gold:        #C4AC64;   /* GOLDEN AUTOMOTIVE (brand accent) */
  --gold-soft:   #D7C188;
  --gold-bright: #F2DFA0;   /* secondary pale gold */
  --gold-dim:    rgba(196, 172, 100, 0.16);
  --lightblue:   #B7C6D9;   /* LIGHT BLUE AUTOMOTIVE */

  /* Type — brand: Archivo Black (≈ Arial Black) titles, Open Sans body, Michroma wordmark */
  --font-display:  "Archivo Black", "Arial Black", Arial, sans-serif;
  --font-sans:     "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-wordmark: "Michroma", "Archivo Black", sans-serif;

  --fs-eyebrow:  0.76rem;
  --fs-body:     1.0625rem;
  --fs-lead:     clamp(1.12rem, 1.55vw, 1.36rem);
  --fs-h3:       clamp(1.2rem, 2vw, 1.55rem);
  --fs-h2:       clamp(1.7rem, 3.6vw, 2.85rem);
  --fs-h1:       clamp(2.1rem, 5vw, 3.9rem);
  --fs-display:  clamp(2.5rem, 6.8vw, 5.4rem);

  /* Space */
  --container:   1280px;
  --container-narrow: 940px;
  --gutter:      clamp(1.25rem, 5vw, 4rem);
  --section-y:   clamp(5rem, 11vw, 9.5rem);

  /* Misc */
  --radius:      14px;
  --radius-sm:   9px;
  --radius-pill: 999px;
  --shadow:      0 30px 80px -30px rgba(0, 0, 0, 0.8);
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast:      0.25s var(--ease);
  --t:           0.5s var(--ease);
  --t-slow:      0.9s var(--ease);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select, button { font-family: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: #1a1408; }

/* Ambient grain / vignette baked onto the page */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(196,172,100,0.07), transparent 60%),
    radial-gradient(100% 60% at 50% 120%, rgba(6,12,17,0.6), transparent 60%);
}

/* -------------------------------------------------- Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--cream);
}
h1 { font-size: var(--fs-h1); line-height: 1.0; }
h2 { font-size: var(--fs-h2); }
h3 { font-family: var(--font-sans); font-weight: 800; font-size: var(--fs-h3); line-height: 1.18; letter-spacing: -0.01em; }

p { color: var(--text); }
strong { color: var(--cream); font-weight: 700; }

.display {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--cream);
}
/* brand accent word — gold (Archivo Black has no italic, so colour carries the emphasis) */
.display em, h1 em, h2 em, h3 em {
  font-style: normal;
  color: var(--gold-soft);
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--muted);
  font-weight: 400;
}

/* Eyebrow / kicker label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow--center::after {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.text-gold { color: var(--gold-soft); }
.text-muted { color: var(--muted); }

/* -------------------------------------------------- Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { position: relative; padding-block: var(--section-y); z-index: 2; }
.section--tight { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--alt { background: var(--bg-2); }
.section--surface { background: var(--surface); }

.section-head { max-width: 720px; }
.section-head--center { max-width: 760px; margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.4rem; }
.section-head h2 { margin-bottom: 1.1rem; }
.section-head .lead { max-width: 60ch; }
.section-head--center .lead { margin-inline: auto; }
/* heading + hairline rule beneath (gallery-style section header) */
.section-head--rule { max-width: none; border-bottom: 1px solid var(--line); padding-bottom: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.section-head--rule h2 { margin-bottom: 0; }

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

/* Generic responsive grid helpers */
.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* -------------------------------------------------- Buttons */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: #14100A;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.7em;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}
.btn .btn__arrow { transition: transform var(--t-fast); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -14px rgba(194,163,107,0.6); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--gold);
  box-shadow: none;
  color: var(--cream);
}
.btn--gold-ghost {
  background: transparent;
  color: var(--gold-soft);
  border-color: var(--gold);
}
.btn--gold-ghost:hover { background: var(--gold-dim); box-shadow: none; color: var(--gold-bright); }

.btn--lg { padding: 1.1em 2.1em; font-size: 0.86rem; }
.btn--block { width: 100%; justify-content: center; }

/* Quiet text link with animated underline */
.link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  position: relative;
}
.link::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.link:hover::after { transform: scaleX(1); }
.link .btn__arrow { transition: transform var(--t-fast); }
.link:hover .btn__arrow { transform: translateX(4px); }

/* -------------------------------------------------- Media placeholders */
.media {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #16171c, #0c0d10 60%),
    var(--surface);
  isolation: isolate;
}
.media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03) brightness(0.86);
  transition: transform var(--t-slow), filter var(--t-slow);
}
.media__overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(16,24,32,0.15) 0%, rgba(16,24,32,0.05) 40%, rgba(16,24,32,0.75) 100%);
  pointer-events: none;
}
.media__overlay--soft {
  background: linear-gradient(180deg, rgba(16,24,32,0) 40%, rgba(16,24,32,0.55) 100%);
}
/* fine grain on top of imagery */
.media__grain {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.media__tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 4;
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); background: rgba(0,0,0,0.45);
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 0.35em 0.85em; backdrop-filter: blur(6px);
}
.media--kenburns img { animation: kenburns 26s var(--ease) infinite alternate; }
@keyframes kenburns {
  from { transform: scale(1.06) translate(1%, -0.5%); }
  to   { transform: scale(1.14) translate(-1.5%, 1%); }
}

/* aspect ratio helpers */
.ar-16-9 { aspect-ratio: 16 / 9; }
.ar-4-3  { aspect-ratio: 4 / 3; }
.ar-3-2  { aspect-ratio: 3 / 2; }
.ar-1-1  { aspect-ratio: 1 / 1; }
.ar-3-4  { aspect-ratio: 3 / 4; }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--t), border-color var(--t), backdrop-filter var(--t);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(16,24,32,0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  height: 86px;
  transition: height var(--t);
}
.site-header.is-scrolled .header__inner { height: 70px; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand__mark {
  width: 32px; height: 32px; flex: none; color: var(--gold);
  display: grid; place-items: center;
  transition: transform var(--t), color var(--t-fast);
}
.brand__mark svg { width: 100%; height: 100%; }
.brand:hover .brand__mark { transform: rotate(45deg); color: var(--gold-bright); }
.brand__wordmark { height: 23px; width: auto; display: block; }
@media (max-width: 420px) { .brand__mark { width: 28px; height: 28px; } .brand__wordmark { height: 19px; } }

.nav { display: flex; gap: 0.4rem; }
.nav__link {
  position: relative;
  padding: 0.5rem 0.95rem;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--muted);
  transition: color var(--t-fast);
}
.nav__link::after {
  content: ""; position: absolute; left: 0.95rem; right: 0.95rem; bottom: 0.15rem;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.nav__link:hover { color: var(--cream); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--cream); }

.header__cta { padding: 0.7em 1.3em; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  width: 22px; height: 1.5px; background: var(--cream);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform var(--t);
  visibility: hidden;
}
.mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.mobile-nav a:not(.btn) {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5.6vw, 2.1rem);
  color: var(--cream); padding: 0.28rem 0;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav a span { font-family: var(--font-sans); font-size: 0.8rem; color: var(--gold); letter-spacing: 0.2em; }
.mobile-nav .btn { margin-top: 2rem; align-self: center; }

@media (max-width: 980px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(13,21,28,0.55) 0%, rgba(13,21,28,0.15) 30%, rgba(13,21,28,0.6) 75%, rgba(13,21,28,0.95) 100%),
    radial-gradient(80% 60% at 20% 90%, rgba(0,0,0,0.5), transparent);
}
.hero__inner { position: relative; z-index: 3; width: 100%; }
.hero .eyebrow { margin-bottom: 1.8rem; }
.hero__title { margin-bottom: 1.6rem; max-width: 16ch; }
.hero__sub { max-width: 52ch; margin-bottom: 2.6rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* meta row pinned under hero */
.hero__meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(13,21,28,0.6));
}
.hero__meta-inner {
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between;
  padding-block: 1.1rem;
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.hero__meta-inner span { color: var(--gold-soft); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 6.5rem; z-index: 3;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted-2);
}
.scroll-cue__line { width: 1px; height: 46px; background: linear-gradient(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-bright); animation: scrollcue 2.2s var(--ease) infinite; }
@keyframes scrollcue { 0% { top:-50%; } 100% { top:100%; } }
@media (max-width: 700px) {
  .scroll-cue { display: none; }
  .hero { min-height: 90svh; padding-bottom: 3.25rem; }
  .hero__meta { display: none; }            /* avoid overlap with actions on small screens */
  .hero__title { max-width: 100%; }
}
@media (max-width: 600px) {
  .eyebrow { flex-wrap: wrap; letter-spacing: 0.2em; font-size: 0.68rem; }
  /* let long hero/interior-hero kickers wrap instead of clipping off-screen */
  .hero .eyebrow, .page-hero .eyebrow { display: flex; }
  .hero__sub { margin-bottom: 2rem; }
  .hero__actions { gap: 0.75rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* Compact page hero (interior pages) */
.page-hero {
  position: relative;
  padding-top: clamp(9rem, 16vw, 13rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,21,28,0.7), rgba(13,21,28,0.82) 60%, rgba(16,24,32,0.97));
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero .eyebrow { margin-bottom: 1.4rem; }
.page-hero h1 { max-width: 18ch; margin-bottom: 1.3rem; }
.page-hero .lead { max-width: 56ch; }

.breadcrumbs { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.6rem; }
.breadcrumbs a:hover { color: var(--gold-soft); }
.breadcrumbs span { color: var(--gold-soft); }

/* =====================================================================
   PHILOSOPHY / SPLIT FEATURE
   ===================================================================== */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split__body .eyebrow { margin-bottom: 1.4rem; }
.split__body h2 { margin-bottom: 1.3rem; }
.split__body .lead { margin-bottom: 1.5rem; }
.split__body p + p { margin-top: 1.1rem; }
.split__actions { margin-top: 2.2rem; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { aspect-ratio: 16 / 10; }
}

/* floating accent stat over media */
.media-stat {
  position: absolute; z-index: 5; right: -1px; bottom: -1px;
  background: rgba(16,24,32,0.82); backdrop-filter: blur(10px);
  border-top: 1px solid var(--gold); border-left: 1px solid var(--line);
  padding: 1.4rem 1.8rem;
}
.media-stat__num { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold-soft); line-height: 1; }
.media-stat__label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 0.5rem; }

/* =====================================================================
   PILLARS / FEATURE CARDS
   ===================================================================== */
.feature {
  position: relative;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), background var(--t);
}
.feature::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 100% 0%, var(--gold-dim), transparent 55%);
  opacity: 0; transition: opacity var(--t);
}
.feature:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.feature:hover::before { opacity: 1; }
.feature__index {
  font-family: var(--font-display);
  font-size: 0.95rem; color: var(--gold); letter-spacing: 0.1em;
}
.feature__icon {
  width: 46px; height: 46px; margin-bottom: 1.6rem;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong); border-radius: 12px;
  color: var(--gold-soft);
  position: relative; z-index: 1;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { margin-bottom: 0.9rem; position: relative; z-index: 1; }
.feature p { color: var(--muted); position: relative; z-index: 1; font-size: 0.98rem; }
.feature__top { display: flex; justify-content: space-between; align-items: flex-start; }

/* =====================================================================
   TEAM — LinkedIn link + bio modal
   ===================================================================== */
.team-actions { display: flex; align-items: center; gap: 0.7rem; margin-top: 1rem; }
.team-bio__btn {
  background: transparent; border: 1px solid var(--line); border-radius: 999px;
  padding: 0.45rem 1rem; cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  transition: color var(--t), border-color var(--t), background var(--t);
}
.team-bio__btn:hover { color: var(--gold-soft); border-color: var(--line-strong); background: var(--surface); }

.team-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex: none;
  border: 1px solid var(--line); border-radius: 50%;
  color: var(--muted);
  transition: color var(--t), border-color var(--t), transform var(--t);
}
.team-social svg { width: 15px; height: 15px; flex: none; }
.team-social:hover { color: var(--gold-soft); border-color: var(--line-strong); transform: translateY(-2px); }

/* bio modal — opens over the page so the grid never shifts */
.bio-modal { position: fixed; inset: 0; z-index: 140; display: grid; place-items: center; padding: var(--gutter); }
.bio-modal[hidden] { display: none; }
.bio-modal__backdrop {
  position: absolute; inset: 0; background: rgba(0, 0, 0, 0.74);
  opacity: 0; transition: opacity var(--t);
}
.bio-modal.is-open .bio-modal__backdrop { opacity: 1; }
.bio-modal__panel {
  position: relative; z-index: 1;
  width: min(660px, 100%); max-height: min(84vh, 760px); overflow-y: auto;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  opacity: 0; transform: translateY(14px) scale(0.985);
  transition: opacity var(--t), transform var(--t);
}
.bio-modal.is-open .bio-modal__panel { opacity: 1; transform: none; }
.bio-modal__close {
  position: absolute; top: 0.9rem; right: 0.9rem;
  width: 34px; height: 34px; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--line); border-radius: 50%;
  color: var(--muted); cursor: pointer;
  transition: color var(--t), border-color var(--t);
}
.bio-modal__close svg { width: 15px; height: 15px; }
.bio-modal__close:hover { color: var(--cream); border-color: var(--line-strong); }
.bio-modal__head { display: flex; gap: 1.1rem; align-items: center; padding-right: 2.6rem; margin-bottom: 1.4rem; }
.bio-modal__media {
  width: 78px; height: 78px; flex: none;
  border-radius: 50%; overflow: hidden; border: 1px solid var(--line);
}
.bio-modal__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio-modal__role { color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.72rem; margin-top: 0.35rem; }
.bio-modal__head .team-social { margin-top: 0.7rem; }
.bio-modal__body p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; }
.bio-modal__body p + p { margin-top: 1rem; }
@media (max-width: 520px) {
  .bio-modal__head { flex-direction: column; align-items: flex-start; gap: 0.9rem; padding-right: 2.2rem; }
}

/* =====================================================================
   STATS / METRICS BAND
   ===================================================================== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.stat {
  padding: clamp(2.6rem, 5vw, 4.25rem) clamp(1.5rem, 3vw, 2.6rem);
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(4.6rem, 10.5vw, 9rem);
  line-height: 0.88; color: var(--cream); font-weight: 400; letter-spacing: -0.04em;
  display: flex; align-items: baseline; gap: 0.02em;
}
.stat__num .unit { font-size: 0.4em; color: var(--gold-soft); letter-spacing: 0; }
.stat__label {
  position: relative; margin-top: 1.8rem; padding-top: 1.6rem;
  font-size: 1.05rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); font-weight: 700;
}
.stat__label::before { content: ""; position: absolute; top: 0; left: 0; width: 46px; height: 2px; background: var(--gold); }
.stat__note { margin-top: 0.65rem; font-size: 1.05rem; line-height: 1.45; color: var(--text); }
@media (max-width: 820px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 460px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
}
/* borderless variant for full-bleed stat strips */
.stats--bare { border: 0; border-radius: 0; background: transparent; }
/* Genuinely equal columns: minmax(0,1fr) stops a wide number (e.g. "€25M")
   from forcing its column wider than the others. Number size + padding are
   trimmed so the widest figure still fits inside an equal column. */
.stats--bare { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stats--bare .stat { text-align: center; padding-inline: clamp(0.85rem, 1.8vw, 1.6rem); }
.stats--bare .stat__num { justify-content: center; font-size: clamp(3.4rem, 7vw, 7rem); }
.stats--bare .stat__label::before { left: 50%; transform: translateX(-50%); }
.stats--bare .stat__note { max-width: 24ch; margin-inline: auto; }
@media (max-width: 820px) { .stats--bare { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .stats--bare { grid-template-columns: minmax(0, 1fr); } }

/* =====================================================================
   VEHICLE CARDS / GARAGE
   ===================================================================== */
.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 2.5vw, 2.2rem); }
@media (max-width: 900px) { .vehicle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .vehicle-grid { grid-template-columns: 1fr; } }

.vehicle {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 0;            /* sharp, gallery-grade corners */
  overflow: hidden;
  background: var(--surface);
  display: flex; flex-direction: column;
  transition: transform var(--t), border-color var(--t);
}
.vehicle:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.vehicle__media { display: block; position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.vehicle:hover .vehicle__media img { transform: scale(1.07); filter: saturate(1.05) brightness(0.98); }
.vehicle__status {
  position: absolute; top: 14px; left: 14px; z-index: 5;
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  padding: 0.42em 0.85em; border-radius: var(--radius-pill);
  background: rgba(16,24,32,0.7); backdrop-filter: blur(8px); border: 1px solid var(--line-strong);
  color: var(--cream);
}
.vehicle__status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--muted); }
.vehicle__status--available { color: #BfeaC4; }
.vehicle__status--available::before { background: #6FCF7F; box-shadow: 0 0 10px #6FCF7F; }
.vehicle__status--coming::before { background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.vehicle__status--acquired::before { background: #7FB3FF; }
.vehicle__status--sold::before { background: var(--muted-2); }
.vehicle__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.vehicle__marque { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.vehicle__name { font-family: var(--font-sans); font-weight: 800; font-size: 1.32rem; letter-spacing: -0.01em; color: var(--cream); line-height: 1.12; margin-bottom: 0.3rem; }
.vehicle__year { font-size: 0.85rem; color: var(--muted-2); }
.vehicle__specs {
  display: flex; gap: 1.4rem; margin-top: 1.2rem; padding-top: 1.2rem;
  border-top: 1px solid var(--line); flex-wrap: wrap;
}
.vehicle__spec-label { font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); }
.vehicle__spec-val { font-size: 0.92rem; color: var(--text); margin-top: 0.2rem; }
.vehicle__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1.4rem; }
.vehicle__price { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-soft); }
.vehicle__price--placed { font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); }
.vehicle__name a { color: inherit; transition: color var(--t-fast); }
.vehicle__name a:hover { color: var(--gold-soft); }

/* filter chips */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  padding: 0.6em 1.2em; border-radius: var(--radius-pill);
  border: 1px solid var(--line); color: var(--muted);
  font-size: 0.78rem; letter-spacing: 0.06em;
  transition: all var(--t-fast);
}
.chip:hover { color: var(--cream); border-color: var(--line-strong); }
.chip.is-active { background: var(--cream); color: #14100A; border-color: var(--cream); font-weight: 600; }

/* ---- Garage view toggle (Slots / Cards) ---- */
.garage-bar { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.4rem 2rem; flex-wrap: wrap; }
.garage-bar h2 { margin-top: 0.5rem; }
.garage-rule { border: 0; height: 1px; background: var(--line); margin: clamp(1.4rem, 2.6vw, 2rem) 0 clamp(2.4rem, 4vw, 3.4rem); }
.garage-view[hidden] { display: none; }

/* subtle text switch (quiet uppercase labels, gold underline on the active one) */
.view-toggle { display: inline-flex; align-items: center; gap: 0.85rem; flex: none; }
.view-toggle__btn {
  position: relative; padding: 0.2em 0;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted-2); transition: color var(--t-fast);
}
.view-toggle__btn::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.view-toggle__btn:not(.is-active):hover { color: var(--cream); }
.view-toggle__btn.is-active { color: var(--gold-soft); }
.view-toggle__btn.is-active::after { transform: scaleX(1); }
.view-toggle__sep { color: var(--muted-2); opacity: 0.45; font-size: 0.85rem; }

/* slots reuse the full .showcase treatment (same height as the featured strip);
   a hairline separates consecutive slots */
.showcase--slot + .showcase--slot { border-top: 1px solid var(--line-strong); }

/* =====================================================================
   APPROACH / PROCESS STEPS
   ===================================================================== */
.steps { display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.8rem, 3.5vw, 2.8rem) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--gold); }
.step__title { margin-bottom: 0.7rem; }
.step__body { max-width: 60ch; color: var(--muted); }
.step__grid-head { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); }

/* tech / data feature list */
.tick-list { display: grid; gap: 1.1rem; margin-top: 2rem; }
.tick-list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; color: var(--muted); }
.tick-list li strong { display: block; color: var(--cream); font-weight: 600; margin-bottom: 0.2rem; font-size: 1rem; }
.tick {
  width: 26px; height: 26px; border-radius: 50%; margin-top: 0.2rem;
  display: grid; place-items: center; flex: none;
  border: 1px solid var(--gold); color: var(--gold-soft);
}
.tick svg { width: 13px; height: 13px; }

/* =====================================================================
   INVESTOR — terms table, access card
   ===================================================================== */
.terms { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.terms__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.3rem clamp(1.4rem, 3vw, 2.2rem); border-bottom: 1px solid var(--line); }
.terms__row:last-child { border-bottom: 0; }
.terms__key { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; }
.terms__val { color: var(--cream); font-weight: 500; text-align: right; }
.terms__val .accent { color: var(--gold-soft); font-family: var(--font-display); font-size: 1.15rem; }

.access-card {
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--radius); padding: clamp(2rem, 4vw, 3rem);
  position: relative; overflow: hidden;
}
.access-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.access-card h3 { margin-bottom: 0.6rem; }
.access-card .lead { margin-bottom: 2rem; font-size: 1rem; }
.lock-row { display: flex; align-items: center; gap: 0.7rem; color: var(--muted-2); font-size: 0.78rem; margin-top: 1.5rem; justify-content: center; }
.lock-row svg { width: 14px; height: 14px; }

/* =====================================================================
   FORMS
   ===================================================================== */
.field { margin-bottom: 1.4rem; }
.field label { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.95rem 1.1rem;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); color: var(--cream);
  font-size: 0.98rem; transition: border-color var(--t-fast), background var(--t-fast);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); background: var(--surface);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.file-field {
  display: flex; flex-direction: column; align-items: center;
  border: 1px dashed var(--line-strong); border-radius: var(--radius-sm);
  padding: 1.4rem; text-align: center; color: var(--muted);
  cursor: pointer; transition: border-color var(--t-fast), background var(--t-fast);
  font-size: 0.88rem;
}
.file-field:hover { border-color: var(--gold); background: var(--surface); }
.file-field input { display: none; }
.file-field svg { width: 22px; height: 22px; margin: 0 auto 0.7rem; color: var(--gold-soft); }

.form-note { font-size: 0.78rem; color: var(--muted-2); margin-top: 1.2rem; }

.form-success {
  display: none;
  padding: 1.1rem 1.3rem; border: 1px solid var(--gold);
  background: var(--gold-dim); border-radius: var(--radius-sm);
  color: var(--gold-bright); font-size: 0.9rem; margin-bottom: 1.4rem;
}
.form-success.is-visible { display: block; }

/* contact split */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-detail { display: flex; gap: 1rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.contact-detail:first-of-type { border-top: 1px solid var(--line); }
.contact-detail__icon { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 10px; color: var(--gold-soft); }
.contact-detail__icon svg { width: 18px; height: 18px; }
.contact-detail__label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 0.25rem; }
.contact-detail__val { color: var(--cream); font-size: 1.05rem; }
.contact-detail__val a:hover { color: var(--gold-soft); }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band__media { position: absolute; inset: 0; z-index: 0; background: var(--surface); }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(13,21,28,0.86), rgba(13,21,28,0.92)); }
.cta-band__inner { position: relative; z-index: 2; max-width: 760px; margin-inline: auto; }
.cta-band h2 { margin-bottom: 1.3rem; }
.cta-band .lead { margin-bottom: 2.4rem; margin-inline: auto; max-width: 52ch; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { position: relative; z-index: 2; border-top: 1px solid var(--line); background: var(--bg-2); }
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: clamp(2rem, 4vw, 3rem);
  padding-block: clamp(3.5rem, 6vw, 5rem);
}
.footer__brand .brand { margin-bottom: 1.4rem; }
.footer__tagline { font-family: var(--font-display); font-size: 1.25rem; color: var(--cream); margin-bottom: 0.8rem; }
.footer__brand p { color: var(--muted); font-size: 0.92rem; max-width: 34ch; }
.footer__col h4 { font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.3rem; font-weight: 600; }
.footer__col a, .footer__col p { display: block; color: var(--muted); font-size: 0.92rem; padding: 0.35rem 0; transition: color var(--t-fast); }
.footer__col a:hover { color: var(--gold-soft); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-block: 1.6rem; border-top: 1px solid var(--line);
  font-size: 0.8rem; color: var(--muted-2);
}
.footer__bottom a:hover { color: var(--gold-soft); }
.footer__socials { display: flex; gap: 0.8rem; }
.footer__socials a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: all var(--t-fast); }
.footer__socials a:hover { border-color: var(--gold); color: var(--gold-soft); }
.footer__socials svg { width: 15px; height: 15px; }
@media (max-width: 860px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; } }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .media--kenburns img { animation: none; }
  .scroll-cue__line::after { animation: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.05ms !important; }
}

/* utility spacing */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.flex-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* =====================================================================
   EDITORIAL / FULL-BLEED SYSTEM  (hand-crafted, edge-to-edge layouts)
   ===================================================================== */

/* break any element out of its container to the full viewport width */
.bleed { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }

/* Chrome-Temple-style info columns: borderless, centered, big icon, hairline dividers */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); }
.pillar {
  position: relative; text-align: center;
  padding: clamp(0.5rem, 2vw, 1.25rem) clamp(1.5rem, 3.2vw, 3.5rem);
}
.pillar + .pillar::before {
  content: ""; position: absolute; left: 0; top: 4%; bottom: 4%; width: 1px; background: var(--line);
}
.pillar__icon {
  width: clamp(66px, 7vw, 90px); height: clamp(66px, 7vw, 90px);
  margin: 0 auto clamp(1.6rem, 3vw, 2.4rem); color: var(--gold-soft);
}
.pillar__icon svg { width: 100%; height: 100%; }
.pillar__title {
  font-family: var(--font-sans); font-weight: 800; letter-spacing: -0.01em;
  font-size: clamp(1.25rem, 1.9vw, 1.55rem); line-height: 1.2; color: var(--cream);
  margin: 0 auto 1.1rem; max-width: 16ch;
}
.pillar__body { color: var(--muted); max-width: 36ch; margin-inline: auto; font-size: 1rem; }
@media (max-width: 880px) {
  .pillars { grid-template-columns: 1fr; gap: clamp(2.75rem, 7vw, 3.75rem); }
  .pillar { padding-inline: 0; }
  .pillar + .pillar::before {
    left: 50%; transform: translateX(-50%); top: calc(-1 * clamp(1.4rem, 3.5vw, 1.9rem));
    bottom: auto; width: 44px; height: 1px;
  }
}

/* full-bleed cool-gradient band — encases a statement margin-to-margin */
.gradient-band {
  width: 100vw; margin-left: calc(50% - 50vw);
  padding-block: clamp(3.5rem, 7.5vw, 6.75rem);
  border-block: 1px solid var(--line);
  background:
    radial-gradient(80% 130% at 50% 0%, rgba(183, 198, 217, 0.07), transparent 55%),
    radial-gradient(60% 120% at 50% 100%, rgba(196, 172, 100, 0.06), transparent 60%),
    linear-gradient(180deg, #16252F 0%, #1B3142 52%, #16252F 100%);
}

/* small graphic labels that signal craft */
.overline {
  display: inline-flex; align-items: baseline; gap: 0.8rem;
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.overline b { color: var(--gold); font-family: var(--font-display); font-weight: 400; letter-spacing: 0; font-size: 0.95rem; }
.caption { font-size: 0.78rem; letter-spacing: 0.04em; color: var(--muted-2); }
.index-num {
  font-family: var(--font-display); line-height: 0.8;
  font-size: clamp(3.4rem, 9vw, 8rem);
  color: transparent; -webkit-text-stroke: 1px var(--line-strong);
  letter-spacing: -0.03em;
}

/* ---- Editorial split: media bleeds to the nearest viewport edge ---- */
.editorial {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: clamp(2rem, 6vw, 6rem);
}
.editorial__media {
  position: relative; align-self: stretch;
  min-height: clamp(440px, 62vh, 760px);
  overflow: hidden; background: var(--surface);
}
.editorial__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.editorial__media .media__tag { position: absolute; left: 18px; bottom: 18px; z-index: 4; }
.editorial__body { padding-block: clamp(1.5rem, 4vw, 3.5rem); max-width: 38rem; }
.editorial__body .eyebrow { margin-bottom: 1.4rem; }
.editorial__body h2 { margin-bottom: 1.2rem; }
.editorial__body .lead { margin-bottom: 1.4rem; }
.editorial__body p + p { margin-top: 1.1rem; }
.editorial--left  .editorial__media { margin-left:  calc(50% - 50vw); }
.editorial--right .editorial__media { margin-right: calc(50% - 50vw); order: 2; }
.editorial--right .editorial__body  { order: 1; justify-self: end; }
@media (max-width: 860px) {
  .editorial { grid-template-columns: 1fr; gap: 0; }
  .editorial__media {
    width: 100vw; margin-left: calc(50% - 50vw) !important; margin-right: calc(50% - 50vw) !important;
    min-height: 56vh; order: 0 !important;
  }
  .editorial__body { order: 1 !important; justify-self: stretch !important; padding-top: clamp(2rem,7vw,3rem); }
}

/* ---- Full-bleed banner with parallax media + overlaid statement ---- */
.banner {
  position: relative; width: 100vw; margin-left: calc(50% - 50vw);
  min-height: clamp(440px, 80vh, 860px);
  display: grid; align-items: end; overflow: hidden; isolation: isolate;
}
.banner--tall { min-height: clamp(520px, 92vh, 960px); }
.banner__media { position: absolute; inset: -14% 0; z-index: 0; }
.banner__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.banner__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(13,21,28,0.45) 0%, rgba(13,21,28,0.1) 35%, rgba(13,21,28,0.78) 100%),
    radial-gradient(90% 70% at 15% 100%, rgba(13,21,28,0.55), transparent);
}
.banner__inner {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--container); margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: clamp(2.5rem, 7vw, 6rem);
}
.banner--center .banner__inner { text-align: center; max-width: 900px; }
.banner__statement {
  font-family: var(--font-display); color: var(--cream);
  font-size: clamp(2.2rem, 6vw, 5.2rem); line-height: 0.98; letter-spacing: -0.035em;
  max-width: 18ch;
}
.banner--center .banner__statement { margin-inline: auto; }
.banner__statement em { font-style: normal; color: var(--gold-soft); }
.banner__sub { margin-top: 1.4rem; max-width: 46ch; color: var(--lightblue); }
.banner--center .banner__sub { margin-inline: auto; }
.banner__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.banner--center .banner__actions { justify-content: center; }

/* ---- Marque marquee (outlined scrolling type) ---- */
.marquee {
  width: 100vw; margin-left: calc(50% - 50vw);
  overflow: hidden; border-block: 1px solid var(--line);
  padding-block: clamp(1.3rem, 2.6vw, 2.1rem);
  background: var(--bg-2);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; align-items: center; animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  display: inline-flex; align-items: center; gap: clamp(2.5rem, 5vw, 5rem); padding-right: clamp(2.5rem, 5vw, 5rem);
  font-family: var(--font-display); font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  text-transform: uppercase; letter-spacing: 0.01em; white-space: nowrap;
  color: var(--cream); -webkit-text-stroke: 0;
}
.marquee__track span::after { content: "✦"; color: var(--gold); -webkit-text-stroke: 0; font-size: 0.6em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- Full-bleed vehicle showcase ---- */
.showcase {
  position: relative; width: 100vw; margin-left: calc(50% - 50vw);
  min-height: clamp(520px, 90vh, 940px);
  display: grid; align-items: end; overflow: hidden; isolation: isolate;
}
.showcase__media { position: absolute; inset: -12% 0; z-index: 0; }
.showcase__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.showcase__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(13,21,28,0.5) 0%, rgba(13,21,28,0.06) 24%, rgba(13,21,28,0.5) 56%, rgba(13,21,28,0.95) 100%),
    linear-gradient(90deg, rgba(13,21,28,0.74) 0%, rgba(13,21,28,0.28) 40%, rgba(13,21,28,0) 66%);
}
.showcase__inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--gutter); padding-block: clamp(2.5rem, 6vw, 5rem);
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem;
}
.showcase__title { font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 5rem); line-height: 0.95; letter-spacing: -0.035em; color: var(--cream); }
.showcase__marque { color: var(--gold); margin-bottom: 0.8rem; }
.showcase__meta { display: flex; gap: clamp(1.5rem, 3vw, 2.6rem); align-items: flex-end; flex-wrap: wrap; }
.showcase__spec-label { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lightblue); }
.showcase__spec-val { font-size: 1rem; color: var(--cream); margin-top: 0.3rem; }
@media (max-width: 760px) {
  .showcase__inner { grid-template-columns: 1fr; }
  .showcase__meta { margin-top: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .banner__media img, .showcase__media img { transform: none !important; }
}

/* =====================================================================
   HERO — video + timed "One Of One" brand reveal
   ===================================================================== */
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero--intro { align-items: center; text-align: center; }
.hero--intro .hero__veil {
  background:
    radial-gradient(120% 90% at 50% 45%, rgba(13,21,28,0.25), rgba(13,21,28,0.7) 100%),
    linear-gradient(180deg, rgba(13,21,28,0.5) 0%, rgba(13,21,28,0.2) 35%, rgba(13,21,28,0.85) 100%);
}
.hero__intro { position: relative; z-index: 3; width: 100%; max-width: 900px; margin-inline: auto; padding-inline: var(--gutter); }
.hero__logo-wrap { margin: 0; line-height: 0; }
.hero__emblem { display: block; width: clamp(54px, 7vw, 86px); margin: 0 auto clamp(1.4rem, 2.6vw, 2rem); color: var(--gold); }
.hero__emblem svg { width: 100%; height: 100%; }
.hero__logo { display: block; margin: 0 auto; width: clamp(252px, 42vw, 452px); max-width: 88%; height: auto; }
.hero__tagline {
  margin-top: 1.9rem; font-size: clamp(0.78rem, 1.5vw, 0.98rem);
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--lightblue);
}
.hero__tagline span { display: inline-block; }
.hero--intro .hero__actions { justify-content: center; margin-top: 2.4rem; }

@keyframes introIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes introEmblem { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: none; } }
.hero__intro > * { opacity: 0; animation: introIn 1.1s var(--ease) both; }
.hero__logo-wrap { opacity: 1; animation: none; }   /* emblem + wordmark inside reveal individually */
.hero__emblem { opacity: 0; animation: introEmblem 1.3s var(--ease) both; animation-delay: 1.4s; }
.hero__logo { opacity: 0; animation: introIn 1.1s var(--ease) both; animation-delay: 1.95s; }
/* tagline: container shows immediately; the two parts reveal in sequence with a ~0.5s pause */
.hero__tagline { opacity: 1; animation: none; }
.hero__tagline span { opacity: 0; animation: introIn 0.95s var(--ease) both; }
.hero__tagline span:nth-child(1) { animation-delay: 2.6s; }
.hero__tagline span:nth-child(2) { animation-delay: 3.25s; }
.hero--intro .hero__actions { animation-delay: 3.7s; }
.hero--intro .scroll-cue { opacity: 0; animation: introIn 1s var(--ease) both; animation-delay: 4.2s; }

@media (prefers-reduced-motion: reduce) {
  .hero__intro > *, .hero__emblem, .hero__logo, .hero__tagline span, .hero--intro .scroll-cue { opacity: 1 !important; animation: none !important; transform: none !important; }
}

/* =====================================================================
   PILLAR ICON ANIMATIONS — play once when the pillar row reveals in
   ===================================================================== */
/* pre-reveal hidden states (kept invisible until .pillars.is-visible) */
.ico-bars rect          { transform: scaleY(0); transform-box: fill-box; transform-origin: 50% 100%; }
.ico-net  circle        { transform: scale(0);  transform-box: fill-box; transform-origin: center; }
.ico-net  .net-spokes,
.ico-trend .trend-line  { stroke-dasharray: 1; stroke-dashoffset: 1; }
.ico-trend .trend-head  { opacity: 0; }

/* bars grow up, one after another */
.pillars.is-visible .ico-bars rect { animation: barRise 0.6s var(--ease) both; }
.pillars.is-visible .ico-bars rect:nth-of-type(1) { animation-delay: 0.35s; }
.pillars.is-visible .ico-bars rect:nth-of-type(2) { animation-delay: 0.50s; }
.pillars.is-visible .ico-bars rect:nth-of-type(3) { animation-delay: 0.65s; }
.pillars.is-visible .ico-bars rect:nth-of-type(4) { animation-delay: 0.80s; }
@keyframes barRise { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* trend line draws forward, then the arrowhead lands */
.pillars.is-visible .ico-trend .trend-line { animation: drawLine 0.85s var(--ease) 0.35s both; }
.pillars.is-visible .ico-trend .trend-head { animation: headIn 0.45s var(--ease) 1.1s both; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes headIn  { from { opacity: 0; transform: translate(-4px, 4px); } to { opacity: 1; transform: none; } }

/* network: spokes draw out, nodes pop in (centre first, then radiate) */
.pillars.is-visible .ico-net .net-spokes { animation: drawLine 0.7s var(--ease) 0.35s both; }
.pillars.is-visible .ico-net circle { animation: nodePop 0.5s var(--ease) both; }
.pillars.is-visible .ico-net circle:nth-of-type(7) { animation-delay: 0.45s; } /* centre */
.pillars.is-visible .ico-net circle:nth-of-type(1) { animation-delay: 0.60s; }
.pillars.is-visible .ico-net circle:nth-of-type(2) { animation-delay: 0.70s; }
.pillars.is-visible .ico-net circle:nth-of-type(3) { animation-delay: 0.80s; }
.pillars.is-visible .ico-net circle:nth-of-type(4) { animation-delay: 0.90s; }
.pillars.is-visible .ico-net circle:nth-of-type(5) { animation-delay: 1.00s; }
.pillars.is-visible .ico-net circle:nth-of-type(6) { animation-delay: 1.10s; }
@keyframes nodePop { 0% { transform: scale(0); } 70% { transform: scale(1.18); } 100% { transform: scale(1); } }

/* reduced motion: reveal everything at rest, no movement */
@media (prefers-reduced-motion: reduce) {
  .ico-bars rect, .ico-net circle { transform: none !important; animation: none !important; }
  .ico-trend .trend-line, .ico-net .net-spokes { stroke-dashoffset: 0 !important; animation: none !important; }
  .ico-trend .trend-head { opacity: 1 !important; animation: none !important; }
}

/* =====================================================================
   VEHICLE DETAIL PAGE
   ===================================================================== */
.car-page { padding-top: 0; }

/* full-bleed hero image, sits under the fixed header */
.car-hero { position: relative; width: 100vw; margin-left: calc(50% - 50vw); }
.car-hero__media {
  position: relative; overflow: hidden; isolation: isolate;
  height: clamp(380px, 72vh, 820px); background: var(--surface);
}
.car-hero__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.car-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  /* light scrim under the fixed header + a short fade into the page —
     leaves the bulk of the photo (14%–86%) completely clear */
  background:
    linear-gradient(180deg, rgba(13,21,28,0.32) 0%, rgba(13,21,28,0) 14%, rgba(13,21,28,0) 87%, var(--bg) 100%);
}

/* intro block */
.car-intro { padding-top: clamp(2rem, 4vw, 3rem); }
.car-intro .breadcrumbs { margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.car-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 4vw, 3rem);
}
.car-head .eyebrow { margin-bottom: 1rem; }
.car-head h1 { font-size: var(--fs-h1); }

/* spec strip */
.car-specs {
  display: flex; flex-wrap: wrap; gap: clamp(1.6rem, 4vw, 3.5rem);
  padding-block: clamp(1.4rem, 2.6vw, 2rem);
  border-block: 1px solid var(--line);
}
.car-spec__label { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.car-spec__val { font-size: 1.06rem; color: var(--cream); margin-top: 0.35rem; }

/* description */
.car-desc { max-width: 72ch; margin-top: clamp(2rem, 4vw, 3rem); }
.car-desc p { color: var(--text); }
.car-desc p + p { margin-top: 1.15rem; }

/* gallery — masonry columns */
.car-gallery { columns: 3; column-gap: clamp(0.6rem, 1.2vw, 1rem); }
@media (max-width: 900px) { .car-gallery { columns: 2; } }
@media (max-width: 560px) { .car-gallery { columns: 1; } }
.car-shot {
  break-inside: avoid; margin: 0 0 clamp(0.6rem, 1.2vw, 1rem);
  overflow: hidden; background: var(--surface); border: 1px solid var(--line);
}
.car-shot img {
  width: 100%; height: auto; display: block;
  filter: saturate(0.95) contrast(1.02) brightness(0.9);
  transition: transform var(--t-slow), filter var(--t-slow);
}
.car-shot:hover img { transform: scale(1.04); filter: none; }
.car-shot--empty {
  aspect-ratio: 3 / 2; border: 1px dashed var(--line-strong);
  display: grid; place-items: center; text-align: center; padding: 1rem;
}
.car-shot--empty span { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); max-width: 18ch; }

/* branded stand-in for a car with no photography yet (hero / card / slot) */
.media-empty {
  position: absolute; inset: 0; z-index: 0; display: grid; place-items: center;
  text-align: center; padding: 1rem;
  background: radial-gradient(120% 90% at 50% 0%, rgba(255,255,255,0.05), transparent 62%), var(--surface);
}
.media-empty span {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-2); max-width: 22ch;
}

/* =====================================================================
   COOKIE CONSENT BANNER
   ===================================================================== */
.cookie-banner {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: clamp(0.8rem, 2vw, 1.4rem); z-index: 200;
  width: min(720px, calc(100% - 1.8rem));
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem; flex-wrap: wrap;
  padding: 1rem 1.2rem;
  background: rgba(21, 34, 44, 0.97); backdrop-filter: blur(12px) saturate(1.2);
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cookie-banner p { margin: 0; flex: 1 1 260px; font-size: 0.84rem; line-height: 1.5; color: var(--text); }
.cookie-banner a { color: var(--gold-soft); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.6rem; flex: none; }
.cookie-banner .btn { padding: 0.6em 1.2em; font-size: 0.74rem; }
@media (max-width: 480px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner p { flex: none; }
  .cookie-banner__actions { justify-content: center; }
}

/* =====================================================================
   APPROACH — horizontal "journey" map
   Default: a vertical route (also the reduced-motion / mobile fallback).
   .is-pinned (added by JS on desktop): the track pins and scrolls sideways.
   ===================================================================== */
.journey { position: relative; }
.journey__track {
  display: flex; flex-direction: column; gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 3rem) var(--gutter) 0;
}
.journey__path { display: none; }

.waypoint { position: relative; max-width: 62ch; }
.waypoint__node {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  border: 1px solid var(--gold); background: var(--bg-2); color: var(--gold-soft);
  font-family: var(--font-display); font-size: 1.15rem; line-height: 1;
  position: relative; z-index: 1;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.waypoint__title { font-family: var(--font-sans); font-weight: 800; font-size: var(--fs-h3); letter-spacing: -0.01em; color: var(--cream); margin-bottom: 0.6rem; }
.waypoint__body { color: var(--muted); }

/* pinned, horizontal mode */
.journey.is-pinned .journey__pin {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(2.25rem, 6vh, 4.5rem);
  padding-top: clamp(72px, 9vh, 104px);
  background: radial-gradient(72% 55% at 50% 60%, rgba(196,172,100,0.07), transparent 72%);
}
.journey.is-pinned .journey__head { position: relative; z-index: 2; flex: none; }
/* faint framed panel behind the route so the section isn't empty */
.journey__bg { display: none; }
.journey.is-pinned .journey__bg {
  display: block; position: absolute; z-index: 0; pointer-events: none;
  inset: clamp(1.5rem, 6vh, 4rem) 0;            /* full width — side to side */
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.022), transparent 58%);
}
.journey.is-pinned .journey__track {
  position: relative; z-index: 2;
  flex-direction: row; flex-wrap: nowrap; align-items: flex-start;
  width: max-content; gap: clamp(2.5rem, 6vw, 6rem);
  padding: 0 max(var(--gutter), 9vw); will-change: transform;
}
.journey.is-pinned .waypoint { flex: 0 0 auto; width: clamp(300px, 32vw, 440px); }
.journey.is-pinned .journey__path {
  display: block; position: absolute; left: 0; top: 27px; height: 1px; width: 100%; z-index: 0;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 10px, transparent 10px 20px);
  background-size: 20px 100%;
  animation: journeyDash 1.8s linear infinite;
}
@keyframes journeyDash { to { background-position: -20px 0; } }
/* golden progress line that sweeps along the route as you scroll */
.journey__progress { display: none; }
.journey.is-pinned .journey__progress {
  display: block; position: absolute; left: 0; top: 27px; height: 2px; width: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(196,172,100,0) 0%, var(--gold) 55%, var(--gold-bright) 100%);
  box-shadow: 0 0 10px rgba(196,172,100,0.5);
}
.journey.is-pinned .journey__progress::after {
  content: ""; position: absolute; right: -14px; top: 50%; margin-top: -14px;
  width: 28px; height: 28px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M32 8 Q34.2 29.8 56 32 Q34.2 34.2 32 56 Q29.8 34.2 8 32 Q29.8 29.8 32 8 Z' fill='%23F2DFA0'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(0 0 5px rgba(242,223,160,0.95)) drop-shadow(0 0 16px rgba(196,172,100,0.6));
  animation: journeyMarker 9s linear infinite;
}
@keyframes journeyMarker { to { transform: rotate(360deg); } }
/* node lights up once the line reaches it */
.journey.is-pinned .waypoint.is-reached .waypoint__node {
  background: var(--gold); color: #14100A; border-color: var(--gold-bright);
  box-shadow: 0 0 22px -2px rgba(196,172,100,0.75);
}
/* the stop the marker is currently at gets a spotlight */
.waypoint__title { transition: color var(--t); }
.journey.is-pinned .waypoint.is-current .waypoint__node { transform: scale(1.14); box-shadow: 0 0 30px 0 rgba(196,172,100,0.9); }
.journey.is-pinned .waypoint.is-current .waypoint__title { color: var(--gold-soft); }

/* =====================================================================
   INVESTING — pillar stats, performance charts, fund structure
   ===================================================================== */

/* ---- "Why collectible cars" pillar metric lead ---- */
.pillar__stat {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1; letter-spacing: -0.02em; white-space: nowrap;
  color: var(--gold-soft);
}
.pillar__stat-note {
  margin-top: 0.7rem; margin-bottom: 1.5rem;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2);
}

/* ---- Performance bar charts (native, on-brand) ---- */
.perf-charts { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); }
@media (max-width: 820px) { .perf-charts { grid-template-columns: 1fr; gap: clamp(2.5rem, 7vw, 3.5rem); } }

.perf-chart { margin: 0; }
.perf-chart__head { margin-bottom: clamp(1.4rem, 2.5vw, 2rem); padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.perf-chart__title { font-family: var(--font-sans); font-weight: 800; font-size: 1.15rem; color: var(--cream); letter-spacing: -0.01em; }
.perf-chart__sub { font-size: 0.85rem; color: var(--muted); margin-top: 0.3rem; }

.bar-chart { display: grid; gap: clamp(1rem, 1.8vw, 1.45rem); }
.bar-row { display: grid; gap: 0.5rem; }
.bar-row__name { font-size: 0.82rem; letter-spacing: 0.03em; color: var(--text); }
.bar-row--feature .bar-row__name { color: var(--gold-soft); font-weight: 700; }
.bar-row__bars { display: grid; gap: 0.4rem; }

.bar { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 0.8rem; }
.bar__track {
  height: 11px; background: rgba(0,0,0,0.25);
  border: 1px solid var(--line); border-radius: var(--radius-pill); overflow: hidden;
}
.bar--muted .bar__track { height: 7px; }
.bar__fill {
  display: block; height: 100%; width: 0; border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--navy-deep), var(--lightblue));
  transition: width 1.2s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.bar--muted .bar__fill { background: var(--muted-2); }
.bar-row--feature .bar__fill {
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  box-shadow: 0 0 18px -5px var(--gold);
}
.bar-row--feature .bar--muted .bar__fill { background: var(--gold-soft); box-shadow: none; }
.bar__val {
  font-family: var(--font-display); font-size: 0.95rem; color: var(--cream);
  min-width: 2.8ch; text-align: right; font-variant-numeric: tabular-nums;
}
.bar--muted .bar__val { font-family: var(--font-sans); font-weight: 600; font-size: 0.8rem; color: var(--muted); }
.bar-row--feature .bar__val { color: var(--gold-soft); }

/* bars grow in once the chart reveals; respect reduced motion */
.reveal.is-visible .bar__fill { width: var(--w); }
@media (prefers-reduced-motion: reduce) { .bar__fill { transition: none; } }

.perf-legend { display: flex; flex-wrap: wrap; gap: 0.9rem 2rem; margin-top: clamp(1.8rem, 3vw, 2.4rem); }
.perf-legend__item { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; color: var(--muted); letter-spacing: 0.02em; }
.swatch { width: 22px; height: 10px; border-radius: var(--radius-pill); flex: none; }
.swatch--primary { background: linear-gradient(90deg, var(--navy-deep), var(--lightblue)); }
.swatch--muted { background: var(--muted-2); height: 7px; }
.swatch--feature { background: linear-gradient(90deg, var(--gold), var(--gold-bright)); }

/* ---- Fund: headline figures + structure traits ---- */
.fund-figures { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(1rem, 2vw, 1.6rem); margin-top: clamp(2.5rem, 4vw, 3.5rem); }
@media (max-width: 720px) { .fund-figures { grid-template-columns: 1fr; } }
.fund-figure {
  text-align: center; padding: clamp(1.8rem, 3vw, 2.6rem) 1.4rem;
  border: 1px solid var(--line); background: var(--surface);
  position: relative; overflow: hidden;
}
.fund-figure::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--t);
}
.fund-figure:hover::before { opacity: 1; }
.fund-figure__num {
  font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 0.9; color: var(--cream); letter-spacing: -0.03em;
  display: flex; justify-content: center; align-items: baseline; gap: 0.04em;
}
.fund-figure__num .unit { font-size: 0.4em; color: var(--gold-soft); letter-spacing: 0; }
.fund-figure__num--sm { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
.fund-figure__label { margin-top: 1.3rem; font-size: 0.92rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream); font-weight: 700; }
.fund-figure__note { margin-top: 0.45rem; font-size: 0.85rem; color: var(--muted); }

.fund-traits { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); margin-top: clamp(1rem, 2vw, 1.6rem); }
@media (max-width: 720px) { .fund-traits { grid-template-columns: 1fr; } }
.fund-trait { padding: clamp(1.4rem, 2.4vw, 1.9rem); border: 1px solid var(--line); border-left: 2px solid var(--gold); background: var(--surface); }
.fund-trait h4 { font-family: var(--font-sans); font-weight: 800; font-size: 1.05rem; color: var(--cream); margin-bottom: 0.45rem; letter-spacing: 0.01em; }
.fund-trait p { color: var(--muted); font-size: 0.92rem; }

/* =====================================================================
   LANGUAGE SWITCH (EN / ES)
   ===================================================================== */
.lang-switch { display: inline-flex; align-items: center; gap: 0.45rem; margin-left: 0.6rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; flex: none; }
.lang-switch a, .lang-switch span { color: var(--muted-2); transition: color var(--t-fast); }
.lang-switch a:hover { color: var(--cream); }
.lang-switch .is-active { color: var(--gold-soft); }
.lang-switch .sep { opacity: 0.45; }
@media (max-width: 980px) { .lang-switch { margin-left: auto; margin-right: 0.25rem; } }
