/* ═══════════════ DRC MOTORS — 2026 ═══════════════ */

@font-face { font-family: 'Unbounded'; src: url('../fonts/unbounded-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Unbounded'; src: url('../fonts/unbounded-latin-600-normal.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Unbounded'; src: url('../fonts/unbounded-latin-800-normal.woff2') format('woff2'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'Space Grotesk'; src: url('../fonts/space-grotesk-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Space Grotesk'; src: url('../fonts/space-grotesk-latin-500-normal.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Space Grotesk'; src: url('../fonts/space-grotesk-latin-700-normal.woff2') format('woff2'); font-weight: 700; font-display: swap; }

:root {
  --navy: #060D1F;
  --navy-2: #0A1428;
  --navy-3: #101E3C;
  --gold: #D4AF37;
  --gold-2: #F0D67B;
  --cream: #F4F1E8;
  --muted: #8B94A8;
  --line: rgba(212, 175, 55, 0.14);
  --font-d: 'Unbounded', sans-serif;
  --font-b: 'Space Grotesk', sans-serif;
  --ease: cubic-bezier(0.65, 0.01, 0.05, 0.99);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: initial; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-b);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1240px, 92vw); margin-inline: auto; }
.container--narrow { width: min(860px, 92vw); }
.section { position: relative; }

/* ─────────── type helpers ─────────── */
.eyebrow {
  font-family: var(--font-d); font-weight: 400;
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.h2 {
  font-family: var(--font-d); font-weight: 600;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.12; letter-spacing: -0.01em;
  margin-bottom: 26px;
}
.gold { color: var(--gold); }
.stroke, .stroke .word > span {
  background: linear-gradient(100deg, #F6E27A 0%, var(--gold) 45%, #C29A2E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

[data-reveal] { opacity: 0; transform: translateY(40px); }

/* ─────────── preloader ─────────── */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.preloader__inner { text-align: center; color: var(--gold); }
.preloader__crown { width: 110px; }
.crown-path { stroke-dasharray: 400; stroke-dashoffset: 400; }
.crown-dot { opacity: 0; }
.preloader__brand {
  font-family: var(--font-d); font-weight: 600; letter-spacing: 0.45em;
  font-size: 14px; margin-top: 18px; color: var(--cream);
}
.preloader__count {
  position: fixed; right: 6vw; bottom: 5vh;
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(60px, 12vw, 150px);
  color: transparent; -webkit-text-stroke: 1px rgba(212,175,55,0.5);
  line-height: 1;
}

/* ─────────── cursor ─────────── */
.cursor {
  position: fixed; z-index: 9999; top: 0; left: 0;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.35s, opacity 0.3s;
  will-change: transform;
  opacity: 0;
}
.cursor.is-visible { opacity: 1; }
.cursor__label {
  font-family: var(--font-d); font-size: 0; font-weight: 600;
  color: var(--navy); transition: font-size 0.25s;
  white-space: nowrap;
}
.cursor.is-label { width: 76px; height: 76px; background: var(--gold); mix-blend-mode: normal; }
.cursor.is-label .cursor__label { font-size: 11px; }
.cursor.is-hover { width: 52px; height: 52px; background: rgba(212,175,55,0.25); backdrop-filter: blur(2px); }
@media (hover: none), (max-width: 900px) { .cursor { display: none; } }

/* ─────────── sidenav ─────────── */
.sidenav {
  position: fixed; right: 26px; top: 50%; transform: translateY(-50%);
  z-index: 900;
  display: flex; flex-direction: column; gap: 18px;
}
.sidenav a { display: flex; align-items: center; gap: 12px; justify-content: flex-end; }
.sidenav__label {
  font-family: var(--font-d); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  opacity: 0; transform: translateX(8px);
  transition: opacity 0.3s, transform 0.3s, color 0.3s;
}
.sidenav a:hover .sidenav__label, .sidenav a.is-active .sidenav__label { opacity: 1; transform: none; }
.sidenav a.is-active .sidenav__label { color: var(--gold); }
.sidenav__bar {
  width: 3px; height: 34px; border-radius: 3px;
  background: rgba(244,241,232,0.13);
  overflow: hidden; display: block;
  transition: height 0.4s var(--ease);
}
.sidenav a.is-active .sidenav__bar { height: 52px; }
.sidenav__fill {
  display: block; width: 100%; height: 100%;
  background: var(--gold);
  transform: scaleY(0); transform-origin: top;
}
@media (max-width: 900px) { .sidenav { right: 10px; gap: 12px; } .sidenav__label { display: none; } .sidenav__bar { width: 2.5px; height: 22px; } .sidenav a.is-active .sidenav__bar { height: 36px; } }

/* ─────────── header ─────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 950;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px min(5vw, 64px);
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, transform 0.5s var(--ease);
}
.header.is-scrolled { background: rgba(6,13,31,0.72); backdrop-filter: blur(14px); padding-block: 12px; border-bottom: 1px solid var(--line); }
.header.is-hidden { transform: translateY(-110%); }
.header__logo { display: flex; align-items: center; gap: 10px; }
.logo-crown { width: 34px; color: var(--gold); }
.header__logo span { font-family: var(--font-d); font-weight: 800; font-size: 17px; letter-spacing: 0.06em; }
.header__logo em { font-style: normal; font-weight: 400; color: var(--gold); margin-left: 5px; letter-spacing: 0.2em; font-size: 13px; }
.header__nav { display: flex; gap: 34px; }
.header__nav a { font-size: 14px; font-weight: 500; letter-spacing: 0.04em; color: var(--muted); transition: color 0.3s; position: relative; }
.header__nav a::after { content: ''; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease); }
.header__nav a:hover { color: var(--cream); }
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header__burger { display: none; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-d); font-weight: 600; font-size: 13px;
  letter-spacing: 0.05em;
  padding: 15px 28px; border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, color 0.35s, background 0.35s, border-color 0.35s;
}
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { box-shadow: 0 12px 40px rgba(212,175,55,0.35); background: var(--gold-2); }
.btn--ghost { border-color: rgba(244,241,232,0.25); color: var(--cream); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--navy { background: var(--navy); color: var(--cream); }
.btn--big { padding: 19px 36px; font-size: 14px; }
.btn--huge { padding: 26px 52px; font-size: 17px; }

/* mobile menu */
.mobilemenu {
  position: fixed; inset: 0; z-index: 940;
  background: rgba(6,13,31,0.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobilemenu.is-open { opacity: 1; pointer-events: all; }
.mobilemenu a:not(.btn) { font-family: var(--font-d); font-size: 22px; font-weight: 600; }

/* ─────────── hero ─────────── */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(110px, 16vh, 170px);
  overflow: hidden;
}
.hero__glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 80vw; height: 70vh; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(212,175,55,0.13), transparent 70%);
  pointer-events: none;
}
.hero__content { text-align: center; position: relative; z-index: 3; padding-inline: 6vw; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 20px; margin-bottom: 30px;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #43D97B; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(67,217,123,0.5);} 50% { box-shadow: 0 0 0 7px rgba(67,217,123,0);} }
.hero__title {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(40px, 7.2vw, 104px);
  line-height: 1.04; letter-spacing: -0.015em;
  text-transform: uppercase;
}
.hero__title .word { display: inline-block; overflow: hidden; vertical-align: top; }
.hero__title .word > span { display: inline-block; transform: translateY(110%); }
.hero__sub { margin-top: 26px; color: var(--muted); font-size: clamp(15px, 1.6vw, 19px); }
.hero__sub strong { color: var(--gold); font-weight: 700; }
.hero__actions { margin-top: 34px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__stage { position: relative; margin-top: auto; z-index: 2; }
.hero__band {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: clamp(120px, 22vh, 210px);
  background: linear-gradient(120deg, var(--gold) 0%, #b8912a 55%, var(--gold) 100%);
}
.hero__band::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  box-shadow: 0 -30px 80px rgba(212,175,55,0.35);
}
.hero__stage { overflow: hidden; }
.hero__car {
  position: relative; z-index: 2;
  width: min(980px, 78vw);
  margin: 0 auto 58px;
  filter: drop-shadow(0 40px 50px rgba(0,0,0,0.55));
}
.hero__chip {
  position: absolute; z-index: 3;
  font-family: var(--font-d); font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  background: rgba(6,13,31,0.72); backdrop-filter: blur(8px);
  border: 1px solid var(--line); color: var(--cream);
  padding: 10px 18px; border-radius: 100px;
}
.hero__chip--1 { left: 4vw; top: 8px; }
.hero__chip--2 { right: 4vw; top: 56px; color: var(--gold); }
@media (max-width: 1450px) { .hero__chip--1, .hero__chip--2 { display: none; } }
.hero__marquee {
  position: absolute; z-index: 4;
  left: 0; right: 0; bottom: 0;
  overflow: hidden;
  padding: 15px 0;
  border-top: 1px solid rgba(6,13,31,0.18);
}
.hero__marquee-track {
  display: flex; gap: 34px; align-items: center;
  width: max-content; will-change: transform;
  font-family: var(--font-d); font-weight: 600; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy);
}
.hero__marquee-track i { font-style: normal; opacity: 0.55; }
.hero__scrollhint {
  position: absolute; z-index: 5; left: 50%; bottom: clamp(130px, 24vh, 220px); transform: translateX(-50%);
  width: 26px; height: 44px; border: 2px solid rgba(6,13,31,0.0);
  display: none;
}

/* ─────────── intro / stats ─────────── */
.intro { padding: clamp(90px, 14vh, 160px) 0; }
.intro__text {
  font-family: var(--font-d); font-weight: 400;
  font-size: clamp(20px, 2.6vw, 34px); line-height: 1.5;
  max-width: 1000px;
}
.intro__text em { font-style: normal; color: var(--gold); }
.intro__text .w { opacity: 0.14; transition: opacity 0.3s; }
.stats {
  margin-top: clamp(50px, 8vh, 90px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.stat { border: 1px solid var(--line); border-radius: 20px; padding: 30px 26px; background: linear-gradient(160deg, rgba(212,175,55,0.05), transparent 55%); }
.stat__num { font-family: var(--font-d); font-weight: 800; font-size: clamp(30px, 3.6vw, 52px); color: var(--gold); line-height: 1; }
.stat__label { margin-top: 10px; color: var(--muted); font-size: 14px; letter-spacing: 0.04em; }
@media (max-width: 800px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ─────────── fleet stacking cards ─────────── */
.fleet { padding-top: clamp(60px, 10vh, 120px); }
.fleet__head { margin-bottom: 8vh; }
.stack { position: relative; }
.card {
  position: sticky; top: 0;
  height: 100svh;
  display: flex; align-items: center; justify-content: center;
}
.card__inner {
  width: min(1240px, 92vw);
  height: min(78svh, 720px);
  background: linear-gradient(145deg, var(--navy-2) 0%, var(--navy-3) 100%);
  border: 1px solid var(--line);
  border-radius: 32px;
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  box-shadow: 0 -20px 80px rgba(0,0,0,0.45);
  will-change: transform;
}
.card--star .card__inner { background: linear-gradient(145deg, #14213D 0%, #1B2A4A 60%, #22304f 100%); border-color: rgba(212,175,55,0.35); }
.card__info { padding: clamp(28px, 4vw, 60px); display: flex; flex-direction: column; justify-content: center; position: relative; }
.card__index {
  position: absolute; top: 24px; left: clamp(28px, 4vw, 60px);
  font-family: var(--font-d); font-weight: 800; font-size: 15px;
  color: transparent; -webkit-text-stroke: 1px rgba(212,175,55,0.6);
}
.card__tag { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; font-weight: 700; }
.card__tag--star { color: var(--gold); }
.card__name { font-family: var(--font-d); font-weight: 600; font-size: clamp(26px, 3vw, 44px); line-height: 1.1; margin-bottom: 18px; }
.card__price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 26px; }
.card__amount { font-family: var(--font-d); font-weight: 800; font-size: clamp(44px, 5.4vw, 84px); color: var(--gold); line-height: 1; }
.card__per { color: var(--muted); font-size: 15px; }
.card__specs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.card__specs li {
  font-size: 13px; font-weight: 500;
  border: 1px solid rgba(244,241,232,0.16); border-radius: 100px;
  padding: 8px 16px; color: var(--cream);
}
.card__info .btn { align-self: flex-start; }
.card__media { position: relative; overflow: hidden; }
.card__slides { position: absolute; inset: 0; transform: scale(1.07); will-change: transform; }
.card__slides img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.9s ease;
}
.card__slides img.is-active { opacity: 1; }
.card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,20,40,0.55), transparent 35%); pointer-events: none; }
.card__dots {
  position: absolute; z-index: 3; right: 22px; bottom: 20px;
  display: flex; gap: 7px;
}
.card__dots span {
  width: 22px; height: 3px; border-radius: 3px;
  background: rgba(244,241,232,0.35);
  overflow: hidden; position: relative;
  transition: background 0.3s;
}
.card__dots span.is-active { background: var(--gold); }
@media (max-width: 900px) {
  .card__inner { grid-template-columns: 1fr; grid-template-rows: 1fr auto; height: min(86svh, 760px); }
  .card__media { order: -1; min-height: 34svh; }
  .card__media::after { background: linear-gradient(0deg, rgba(10,20,40,0.6), transparent 45%); }
  .card__index { top: auto; bottom: 20px; right: 24px; left: auto; }
}

/* ─────────── steps ─────────── */
.steps { padding: clamp(100px, 16vh, 190px) 0; }
.steps__grid { position: relative; margin-top: clamp(40px, 7vh, 80px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 60px); }
.steps__line { position: absolute; top: 30px; left: 4%; width: 92%; height: 40px; color: rgba(212,175,55,0.5); z-index: 0; }
.step { position: relative; z-index: 1; }
.step__num {
  font-family: var(--font-d); font-weight: 800; font-size: 15px;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--navy-2); border: 1px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.step h3 { font-family: var(--font-d); font-weight: 600; font-size: 20px; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 15px; }
@media (max-width: 800px) { .steps__grid { grid-template-columns: 1fr; } .steps__line { display: none; } }

/* ─────────── services bento ─────────── */
.services { padding-bottom: clamp(100px, 15vh, 180px); }
.bento {
  margin-top: clamp(40px, 6vh, 70px);
  display: grid; gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 235px;
}
.bento__cell {
  position: relative; overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--navy-2), var(--navy-3));
  padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  transition: border-color 0.4s, transform 0.5s var(--ease);
  will-change: transform;
}
.bento__cell:hover { border-color: rgba(212,175,55,0.45); }
.bento__cell h3 { font-family: var(--font-d); font-weight: 600; font-size: 18px; }
.bento__cell p { color: var(--muted); font-size: 14px; }
.bento__icon { font-family: var(--font-d); font-size: 30px; font-weight: 800; color: var(--gold); margin-bottom: auto; }
.bento__cell--wide { grid-column: span 2; }
.bento__cell--tall { grid-row: span 2; grid-column: span 2; }
.bento__cell--photo { padding: 0; }
.bento__cell--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.bento__cell--photo:hover img { transform: scale(1.06); }
.bento__overlay {
  position: relative; z-index: 2; padding: 28px;
  background: linear-gradient(0deg, rgba(6,13,31,0.88), transparent 80%);
  margin-top: auto;
}
.bento__overlay p { color: rgba(244,241,232,0.85); }
.bento__cell--cta { background: var(--gold); border: none; }
.bento__cell--cta h3 { color: var(--navy); }
.bento__cell--cta p { color: rgba(6,13,31,0.7); }
.bento__cell--cta .btn { margin-top: 12px; align-self: flex-start; }
@media (max-width: 1000px) { .bento { grid-template-columns: 1fr 1fr; } .bento__cell--tall { grid-column: span 2; grid-row: span 1; } }
@media (max-width: 620px) { .bento { grid-template-columns: 1fr; } .bento__cell--wide, .bento__cell--tall { grid-column: span 1; } }

/* ─────────── reviews ─────────── */
.reviews { padding-bottom: clamp(90px, 14vh, 170px); }
.reviews__marquee { overflow: hidden; margin-top: clamp(40px, 6vh, 70px); padding: 6px 0; }
.reviews__track { display: flex; gap: 22px; width: max-content; will-change: transform; }
.review {
  width: min(420px, 84vw);
  background: linear-gradient(160deg, var(--navy-2), var(--navy-3));
  border: 1px solid var(--line); border-radius: 22px;
  padding: 30px;
  flex-shrink: 0;
}
.review__stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 14px; }
.review blockquote { font-size: 15.5px; line-height: 1.65; color: var(--cream); }
.review figcaption { margin-top: 16px; color: var(--muted); font-size: 13px; letter-spacing: 0.05em; }
.reviews__insta { margin-top: 40px; color: var(--muted); }
.reviews__insta a { color: var(--gold); border-bottom: 1px solid rgba(212,175,55,0.4); }

/* ─────────── faq ─────────── */
.faq { padding-bottom: clamp(90px, 14vh, 170px); }
.faq__list { margin-top: clamp(30px, 5vh, 60px); }
.faq details { border-bottom: 1px solid rgba(244,241,232,0.1); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--font-d); font-weight: 400; font-size: clamp(15px, 1.8vw, 19px);
  padding: 26px 4px;
  transition: color 0.3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq__icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; background: var(--gold); transition: transform 0.35s var(--ease);
}
.faq__icon::before { left: 0; top: 7px; width: 16px; height: 2px; }
.faq__icon::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq details[open] .faq__icon::after { transform: rotate(90deg); }
.faq details[open] summary { color: var(--gold); }
.faq__body { overflow: hidden; }
.faq__body p { color: var(--muted); padding: 0 4px 26px; max-width: 700px; }

/* ─────────── contact ─────────── */
.contact { padding: clamp(120px, 20vh, 240px) 0; text-align: center; overflow: hidden; }
.contact__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(212,175,55,0.12), transparent 70%);
}
.contact__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.contact__title {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(32px, 5.6vw, 76px);
  line-height: 1.1; text-transform: uppercase;
  margin-bottom: 40px;
}
.contact__note { margin-top: 22px; color: var(--muted); font-size: 14px; letter-spacing: 0.08em; }

/* ─────────── footer ─────────── */
.footer { border-top: 1px solid rgba(244,241,232,0.08); position: relative; overflow: hidden; padding-top: 20px; }
.footer__giant {
  overflow: hidden; white-space: nowrap;
  padding: 30px 0 10px;
}
.footer__giant span {
  display: inline-block;
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(70px, 13vw, 210px);
  letter-spacing: 0.02em; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(212,175,55,0.25);
  will-change: transform;
}
.footer__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  padding: 50px 0;
}
.footer__grid h4 { font-family: var(--font-d); font-size: 12px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer__grid p { color: var(--muted); font-size: 15px; }
.footer__grid a { border-bottom: 1px solid rgba(139,148,168,0.35); transition: color 0.3s, border-color 0.3s; }
.footer__grid a:hover { color: var(--gold); border-color: var(--gold); }
.footer__legal { padding: 26px 0 34px; border-top: 1px solid rgba(244,241,232,0.07); color: rgba(139,148,168,0.7); font-size: 12.5px; letter-spacing: 0.03em; }
@media (max-width: 700px) { .footer__grid { grid-template-columns: 1fr; } }

/* ─────────── responsive header ─────────── */
@media (max-width: 900px) {
  .header__nav, .header__cta { display: none; }
  .header__burger {
    display: flex; flex-direction: column; gap: 7px;
    background: none; border: none; cursor: pointer; padding: 8px; z-index: 960;
  }
  .header__burger span { width: 30px; height: 2px; background: var(--cream); transition: transform 0.35s var(--ease), opacity 0.3s; }
  .header__burger.is-open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
  .header__burger.is-open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
  .hero__chip { display: none; }
}

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