/* ============================================================
   ELENA VETER · LUXURY ONE-PAGER
   palette: warm obsidian / cream / antique gold leaf
   inspired by Loro Piana / Hermès editorial restraint
   ============================================================ */

:root {
  /* Surfaces — warm coal, never pure digital black */
  --obsidian:   #0d0c0a;
  --obsidian-2: #14120f;
  --graphite:   #1a1814;
  --line:       rgba(239, 233, 220, 0.07);
  --line-2:     rgba(239, 233, 220, 0.14);
  --line-3:     rgba(239, 233, 220, 0.22);

  /* Text — warm pearl / cream */
  --pearl:      #efe9dc;
  --pearl-mute: rgba(239, 233, 220, 0.55);
  --pearl-dim:  rgba(239, 233, 220, 0.32);
  --pearl-faint:rgba(239, 233, 220, 0.16);

  /* Gold — antique leaf with metallic sheen */
  --gold:       #c9a86a;
  --gold-light: #e8d6a8;
  --gold-deep:  #8a7339;
  --gold-soft:  rgba(201, 168, 106, 0.10);
  --gold-line:  rgba(201, 168, 106, 0.32);
  --gold-line-2:rgba(201, 168, 106, 0.50);

  /* Gold leaf gradient — for special accents */
  --gold-leaf:  linear-gradient(135deg, #8a7339 0%, #c9a86a 35%, #e8d6a8 55%, #c9a86a 75%, #8a7339 100%);
  --gold-shine: linear-gradient(120deg, rgba(232, 214, 168, 0) 0%, rgba(232, 214, 168, 0.6) 50%, rgba(232, 214, 168, 0) 100%);

  /* Type */
  --serif:  'Fraunces', 'Cormorant Garamond', 'Georgia', serif;
  --sans:   'Inter', 'Helvetica Neue', system-ui, sans-serif;
  --mono:   'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Layout */
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --max:      1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--obsidian);
  color: var(--pearl);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'liga', 'kern', 'pnum', 'onum';
  overflow-x: hidden;
  position: relative;
}

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

/* ----- background ----- */
#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.grain {
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

section, nav, footer, aside { position: relative; z-index: 2; }


/* ============ SIDE RAIL ============ */
.rail {
  position: fixed;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rail__item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--pearl-dim);
  text-decoration: none;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  padding: 7px 0;
  position: relative;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rail__item span {
  display: inline-block;
  width: 22px;
  letter-spacing: 0;
  font-feature-settings: 'pnum';
}

.rail__item em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 10px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s, transform 0.4s;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.rail__item::after {
  content: '';
  position: absolute;
  left: -16px; top: 50%;
  width: 8px; height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s, width 0.3s;
}

.rail__item.is-active,
.rail__item:hover {
  color: var(--gold);
}

.rail__item.is-active::after,
.rail__item:hover::after {
  opacity: 1;
  width: 12px;
}

.rail__item.is-active em,
.rail__item:hover em {
  opacity: 0.7;
  transform: translateX(0);
}

@media (max-width: 1180px) { .rail { display: none; } }

/* ============ TOP NAV ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: 76px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  background: linear-gradient(180deg, rgba(13, 12, 10, 0.85) 0%, rgba(13, 12, 10, 0.55) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: border-color 0.4s;
}

.nav::after {
  content: '';
  position: absolute;
  left: 48px; right: 48px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}

.nav__brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--pearl);
}

.nav__mark {
  width: 38px; height: 38px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.nav__mark::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gold-leaf);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
}

.nav__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.015em;
}

.nav__links {
  display: flex; gap: 40px; list-style: none;
}
.nav__links a {
  color: var(--pearl-mute);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  transition: color 0.4s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 22px;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  background: transparent;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  text-decoration: none;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.nav__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-leaf);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
  z-index: -1;
}
.nav__cta:hover { color: var(--obsidian); border-color: transparent; }
.nav__cta:hover::before { transform: scaleX(1); transform-origin: left; }

.arrow {
  display: inline-block;
  width: 18px; height: 9px;
  position: relative;
}
.arrow::before {
  content: ''; position: absolute;
  width: 100%; height: 1px; background: currentColor;
  top: 4px; left: 0;
}
.arrow::after {
  content: ''; position: absolute;
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
  right: 0; top: 1px;
}

@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .nav__links { display: none; }
}

/* ============ SHARED ============ */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px 48px;
  position: relative;
}

.section__head {
  margin-bottom: 72px;
  max-width: 840px;
  position: relative;
}

.section__num {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 32px;
  font-weight: 400;
  letter-spacing: 0;
}

.section__num::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--pearl);
  font-feature-settings: 'liga', 'dlig', 'pnum';
}

.section__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.section__sub {
  margin-top: 32px;
  font-size: 17px;
  color: var(--pearl-mute);
  max-width: 620px;
  line-height: 1.6;
  font-weight: 300;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 17px 30px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  color: var(--pearl);
  position: relative;
  overflow: hidden;
}

.btn--gold {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn--gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-leaf);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.7s cubic-bezier(0.7, 0, 0.3, 1);
  z-index: -1;
}
.btn--gold:hover {
  color: var(--obsidian);
  border-color: transparent;
}
.btn--gold:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn--ghost {
  border-color: var(--line-2);
  color: var(--pearl);
}
.btn--ghost:hover {
  border-color: var(--pearl-mute);
  background: rgba(239, 233, 220, 0.03);
}

.btn--full { width: 100%; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.45) saturate(0.6) contrast(1.06);
  opacity: 0.65;
  animation: heroSlow 1s linear infinite;
}

@keyframes heroSlow {
  to { animation-timing-function: linear; }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 75%, rgba(201, 168, 106, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(201, 168, 106, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(13, 12, 10, 0.35) 0%, rgba(13, 12, 10, 0.5) 40%, rgba(13, 12, 10, 0.95) 100%);
  z-index: 1;
}

/* (no decorative corner frames — kept the hero clean) */

.hero__inner {
  width: 100%;
  max-width: var(--max);
  padding: 160px 48px 96px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(13, 12, 10, 0.55);
  backdrop-filter: blur(12px);
  font-family: var(--mono);
  font-size: 10px;
  color: var(--pearl-mute);
  margin-bottom: 56px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
}

.hero__meta .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7.2vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 48px;
  max-width: 1000px;
  font-feature-settings: 'liga', 'dlig', 'kern';
}

.hero__title .line {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  animation: revealUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero__title .line:nth-child(1) { animation-delay: 0.2s; }
.hero__title .line:nth-child(2) { animation-delay: 0.42s; }
.hero__title .line:nth-child(3) { animation-delay: 0.62s; }

.hero__title .line--gold {
  color: transparent;
  background: var(--gold-leaf);
  -webkit-background-clip: text;
          background-clip: text;
  font-style: italic;
  font-weight: 400;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
}

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--pearl-mute);
  max-width: 580px;
  margin-bottom: 56px;
  opacity: 0;
  animation: revealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
  line-height: 1.65;
  font-weight: 300;
}

.hero__sub strong { color: var(--pearl); font-weight: 500; }

.hero__actions {
  display: flex;
  gap: 14px;
  margin-bottom: 112px;
  flex-wrap: wrap;
  opacity: 0;
  animation: revealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.05s forwards;
}

.hero__stats {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 44px;
  border-top: 1px solid var(--gold-line);
  opacity: 0;
  animation: revealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.25s forwards;
  position: relative;
}

.hero__stats::before {
  content: '';
  position: absolute;
  left: 0; top: -1px;
  width: 32px; height: 1px;
  background: var(--gold);
}

.stat__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--pearl);
  font-feature-settings: 'lnum', 'pnum';
  font-variant-numeric: tabular-nums;
}

.stat--major .stat__num {
  font-size: clamp(56px, 7vw, 104px);
  color: transparent;
  background: var(--gold-leaf);
  -webkit-background-clip: text;
          background-clip: text;
  font-style: italic;
  font-weight: 400;
}

.stat__label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--pearl-mute);
  margin-top: 14px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

@media (max-width: 880px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* removed hero scroll hint — too busy */

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(13, 12, 10, 0.55);
  backdrop-filter: blur(10px);
  overflow: hidden;
  padding: 30px 0;
  position: relative;
}

.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--obsidian), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--obsidian), transparent);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--serif);
  font-size: clamp(20px, 2.8vw, 38px);
  font-weight: 300;
  letter-spacing: -0.015em;
}

.marquee__track span {
  font-style: italic;
  color: var(--pearl);
}

.marquee__track i {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ WHO ============ */
.who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (max-width: 880px) { .who__grid { grid-template-columns: 1fr; } }

.persona {
  padding: 56px 48px;
  background: var(--obsidian);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.persona:hover {
  background: var(--obsidian-2);
}

.persona__index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0;
  font-weight: 300;
  font-feature-settings: 'pnum';
}

.persona h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.persona__bio {
  font-size: 15px;
  color: var(--pearl-mute);
  line-height: 1.65;
  font-weight: 300;
}

.persona__bio em { font-style: italic; color: var(--gold-light); }

.persona__voice {
  margin-top: auto;
  padding: 24px 0 0 28px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--pearl);
  position: relative;
  font-weight: 300;
}

.persona__voice::before {
  content: '';
  position: absolute;
  left: 0; top: 32px;
  width: 12px; height: 1px;
  background: var(--gold);
}

/* ============ METHOD ============ */
.steps {
  list-style: none;
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.step__lead {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  font-weight: 300;
}

.step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.step__body p {
  font-size: 17px;
  color: var(--pearl-mute);
  line-height: 1.7;
  max-width: 640px;
  font-weight: 300;
}

.step__body em { font-style: italic; color: var(--gold-light); }

@media (max-width: 880px) {
  .step { grid-template-columns: 1fr; gap: 20px; }
}

.quote-pull {
  margin-top: 120px;
  padding: 72px 80px;
  border: 1px solid var(--gold-line);
  text-align: center;
  max-width: 920px;
  margin-left: auto; margin-right: auto;
  position: relative;
}

.quote-pull::before, .quote-pull::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
}
.quote-pull::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.quote-pull::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.quote-pull p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.3;
  color: var(--pearl);
  letter-spacing: -0.015em;
}

.quote-pull span {
  display: block;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--pearl-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============ COMPANY ============ */
.company__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 880px) { .company__grid { grid-template-columns: 1fr; gap: 48px; } }

.company__logo {
  padding: 56px 40px;
  border: 1px solid var(--line);
  text-align: center;
  position: relative;
}

.company__logo img {
  width: 100%;
  max-width: 200px;
  filter: grayscale(100%) brightness(1.5) contrast(0.95);
  margin-bottom: 28px;
  opacity: 0.9;
}

.company__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--pearl-mute);
  line-height: 1.5;
  font-weight: 300;
}

.company__facts ul { list-style: none; }

.company__facts li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.company__facts li:hover {
  padding-left: 12px;
  border-bottom-color: var(--gold-line);
}

.fact__k {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  font-weight: 300;
}

.fact__v {
  font-size: 16px;
  color: var(--pearl);
  line-height: 1.55;
  font-weight: 300;
}

.fact__v strong { font-weight: 500; }

/* ============ CALCULATOR ============ */
.calc__shell {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--gold-line);
  position: relative;
}

@media (max-width: 880px) { .calc__shell { grid-template-columns: 1fr; } }

.calc__controls {
  padding: 56px 48px;
  background: var(--obsidian);
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.ctrl { display: block; }

.ctrl__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}

.ctrl__label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--pearl-mute);
  text-transform: lowercase;
  letter-spacing: 0.08em;
}

.ctrl__val {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  font-feature-settings: 'lnum', 'tnum';
  font-variant-numeric: tabular-nums;
}

.ctrl input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 1px;
  background: var(--line-3);
  outline: none;
  cursor: pointer;
}

.ctrl input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold-leaf);
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 1px var(--obsidian), 0 0 18px rgba(201, 168, 106, 0.5);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ctrl input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.4); }

.ctrl input[type=range]::-moz-range-thumb {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 1px solid var(--gold-light);
  cursor: pointer;
}

.ctrl__scale {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--pearl-dim);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.calc__output {
  padding: 56px 48px;
  background: linear-gradient(160deg, rgba(201, 168, 106, 0.10), rgba(201, 168, 106, 0.01));
  position: relative;
}

.calc__qual {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gold-line);
}

.calc__qual-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--pearl-mute);
  text-transform: lowercase;
  letter-spacing: 0.08em;
}

.calc__qual-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--gold);
  letter-spacing: -0.02em;
  font-weight: 400;
}

.calc__amount {
  margin: 36px 0 32px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.calc__amount-val {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 6vw, 92px);
  color: transparent;
  background: var(--gold-leaf);
  -webkit-background-clip: text;
          background-clip: text;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
  font-feature-settings: 'lnum', 'tnum';
  font-variant-numeric: tabular-nums;
}

.calc__amount-cur {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--pearl-mute);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.calc__breakdown {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.calc__breakdown div {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--pearl-mute);
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.calc__breakdown div span:last-child {
  color: var(--pearl);
  font-variant-numeric: tabular-nums;
}

.calc__note {
  font-size: 13px;
  color: var(--pearl-dim);
  line-height: 1.6;
  font-style: italic;
  font-family: var(--serif);
  font-weight: 300;
}

/* ============ STORIES ============ */
.stories__list {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.story--reverse { grid-template-columns: 1.15fr 0.85fr; }
.story--reverse .story__photo { order: 2; }
.story--reverse .story__content { order: 1; }

@media (max-width: 880px) {
  .story, .story--reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story--reverse .story__photo { order: 0; }
  .story--reverse .story__content { order: 1; }
}

.story__photo {
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--graphite);
  position: relative;
}


.story__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(45%) contrast(1.08) brightness(0.95);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s;
}

.story:hover .story__photo img {
  transform: scale(1.04);
  filter: grayscale(20%) contrast(1.05) brightness(1);
}

.story__head { margin-bottom: 28px; }

.story__head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 10px;
}

.story__role {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0;
  font-weight: 300;
}

.story__bio {
  font-size: 16px;
  color: var(--pearl-mute);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}

.story__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--line);
}

.story__metrics div { display: flex; flex-direction: column; gap: 8px; }

.story__metrics span {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  color: transparent;
  background: var(--gold-leaf);
  -webkit-background-clip: text;
          background-clip: text;
  letter-spacing: -0.015em;
  line-height: 1.1;
  font-feature-settings: 'lnum';
  font-variant-numeric: tabular-nums;
}

.story__metrics em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  color: var(--pearl-mute);
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.story blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--pearl);
  padding: 8px 0 8px 28px;
  border-left: 1px solid var(--gold);
  font-weight: 300;
}

/* ============ NOT FOR ============ */
.notfor__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-top: 1px solid var(--gold-line);
}

@media (max-width: 1000px) { .notfor__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .notfor__grid { grid-template-columns: 1fr; } }

.anti {
  padding: 40px 32px;
  background: var(--obsidian);
  transition: background 0.5s;
}

.anti:hover { background: var(--obsidian-2); }

.anti__x {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 22px;
  line-height: 1;
  opacity: 0.5;
}

.anti h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.anti p {
  font-size: 14px;
  color: var(--pearl-mute);
  line-height: 1.6;
  font-weight: 300;
}

/* ============ FAQ ============ */
.faq__list {
  max-width: 920px;
  border-top: 1px solid var(--gold-line);
}

.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  transition: color 0.4s;
  line-height: 1.3;
}

.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-light); }

.faq__plus {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.faq__plus::before, .faq__plus::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq__plus::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.faq__plus::after { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.faq__item[open] .faq__plus::after { transform: translateX(-50%) rotate(90deg); }
.faq__item[open] summary { color: var(--gold); }

.faq__body {
  margin-top: 28px;
  font-size: 16px;
  color: var(--pearl-mute);
  line-height: 1.75;
  max-width: 760px;
  animation: revealUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  font-weight: 300;
}

.faq__body strong { color: var(--pearl); font-weight: 500; }
.faq__body em { font-style: italic; color: var(--gold-light); }

/* ============ CTA ============ */
.cta__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.cta__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 82px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 32px 0 36px;
}

.cta__title span { display: block; }

.cta__title em {
  font-style: italic;
  color: transparent;
  background: var(--gold-leaf);
  -webkit-background-clip: text;
          background-clip: text;
  font-weight: 400;
}

.cta__sub {
  font-size: 17px;
  color: var(--pearl-mute);
  max-width: 620px;
  margin-bottom: 64px;
  line-height: 1.65;
  font-weight: 300;
}

.cta__form {
  border: 1px solid var(--gold-line);
  padding: 56px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(201, 168, 106, 0.05), rgba(201, 168, 106, 0));
}

.cta__form::before, .cta__form::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
}
.cta__form::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.cta__form::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.cta__step {
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: revealUp 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta__step[hidden] { display: none; }

.cta__step-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  font-weight: 300;
}

.cta__field { display: flex; flex-direction: column; gap: 12px; }

.cta__field > span {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--pearl-mute);
  text-transform: lowercase;
  letter-spacing: 0.08em;
}

.cta__field input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-2);
  padding: 16px 0;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--pearl);
  font-weight: 300;
  outline: none;
  transition: border-color 0.4s;
  width: 100%;
}

.cta__field input:focus { border-color: var(--gold); }
.cta__field input::placeholder {
  color: var(--pearl-dim);
  font-style: italic;
  font-weight: 300;
}

.cta__check {
  display: flex; align-items: center; gap: 14px;
}
.cta__check input {
  width: 14px; height: 14px;
  accent-color: var(--gold);
  cursor: pointer;
}
.cta__check span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--pearl-mute);
  letter-spacing: 0.04em;
}

.cta__alt {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--pearl-mute);
  font-weight: 300;
}

.cta__socials { display: flex; gap: 36px; }

.cta__socials a {
  color: var(--pearl);
  text-decoration: none;
  position: relative;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  transition: color 0.4s;
}

.cta__socials a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta__socials a:hover { color: var(--gold); }
.cta__socials a:hover::after { transform: scaleX(1); }

/* ============ FOOTER ============ */
.footer {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 48px 44px;
  border-top: 1px solid var(--gold-line);
  background: rgba(13, 12, 10, 0.55);
  backdrop-filter: blur(20px);
}

.footer::before {
  content: '';
  position: absolute;
  left: 48px; top: 0;
  width: 48px; height: 1px;
  background: var(--gold);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
}

.footer__logo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  font-weight: 300;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__col > span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: var(--pearl-dim);
  font-weight: 300;
  margin-bottom: 8px;
}

.footer__col a {
  color: var(--pearl-mute);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: color 0.4s;
}

.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--pearl-dim);
  letter-spacing: 0.06em;
  text-transform: lowercase;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

html.js-ready .reveal:not(.visible) {
  opacity: 1;
  transform: translateY(0);
}

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

/* ============ AUTO PROGRAM ============ */
.auto__videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.auto__video-wrap video {
  width: 100%;
  border-radius: 8px;
  background: #111;
  display: block;
}

@media (max-width: 700px) {
  .auto__videos {
    grid-template-columns: 1fr;
  }
}
