/* =========================================================================
   DAV Auto Sales & Leasing — Luxury auto broker, Los Angeles
   Dark, cinematic, editorial. Black + metallic gold.
   ========================================================================= */

:root {
  /* Surfaces */
  --bg: #0a0b0d;
  --bg-2: #0c0e11;
  --bg-3: #101317;
  --surface: #121519;
  --surface-2: #171b20;
  --surface-3: #1c2127;

  /* Lines */
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  /* Text */
  --text: #f3f1ea;
  --text-soft: #cfd2d6;
  --text-dim: #8c949c;
  --text-faint: rgba(255, 255, 255, 0.45);

  /* Metallic gold — pulled from the DAV emblem */
  --gold-hi: #f8e6ad;
  --gold: #e6bd69;
  --gold-mid: #d3a44a;
  --gold-deep: #b9842c;
  --gold-grad: linear-gradient(155deg, #fbeebb 0%, #e6bd69 42%, #c2922f 100%);
  --gold-line: linear-gradient(90deg, transparent, var(--gold), transparent);
  --gold-soft: rgba(230, 189, 105, 0.16);

  --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.35);
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 24px 60px rgba(185, 132, 44, 0.22);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --header-height: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Clash Display", "Satoshi", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Satoshi", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button,
select {
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: #1a1206;
}

/* Custom scrollbar (WebKit) */
::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #2a2f36;
  border-radius: 99px;
  border: 3px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-deep);
}

/* Film-grain texture overlay for a cinematic finish */
.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  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='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  z-index: 1000;
  background: var(--gold);
  color: #1a1206;
  padding: 10px 18px;
  border-radius: 0 0 12px 12px;
  font-weight: 700;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 0;
}

/* =========================================================================
   Typography
   ========================================================================= */

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.9rem, 7.2vw, 6.6rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(2rem, 4.3vw, 3.4rem);
  line-height: 1.04;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 600;
}

p {
  margin: 0;
}

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  font-style: italic;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-grad);
  box-shadow: 0 0 12px rgba(230, 189, 105, 0.8);
}

/* =========================================================================
   Buttons
   ========================================================================= */

.button {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 26px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    color 0.35s var(--ease);
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-primary {
  background: var(--gold-grad);
  color: #1a1206;
  box-shadow: var(--shadow-gold);
}
.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 28px 64px rgba(185, 132, 44, 0.36);
  outline: none;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold);
  background: rgba(230, 189, 105, 0.1);
  color: var(--gold-hi);
  transform: translateY(-2px);
  outline: none;
}

.button-ghost {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--text);
}
.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold-hi);
  transform: translateY(-2px);
  outline: none;
}

/* =========================================================================
   Header
   ========================================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header[data-scrolled="true"] {
  background: rgba(10, 11, 13, 0.82);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px) saturate(140%);
}

.header-shell {
  width: min(1280px, calc(100% - 40px));
  height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 13px;
  overflow: hidden;
  border: 1px solid rgba(230, 189, 105, 0.4);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-lockup:hover .brand-mark {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(230, 189, 105, 0.5), 0 12px 30px rgba(185, 132, 44, 0.35);
}

.brand-text {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand-text small {
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.25s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 1.5px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-hi);
  outline: none;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0 18px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}
.header-call svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
}
.header-call:hover,
.header-call:focus-visible {
  border-color: var(--gold);
  color: var(--gold-hi);
  background: rgba(230, 189, 105, 0.08);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}
.menu-toggle svg {
  width: 22px;
  height: 22px;
}

/* =========================================================================
   Hero
   ========================================================================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 40px) 0 120px;
  margin-top: calc(var(--header-height) * -1);
}

.hero-media {
  position: absolute;
  inset: -8% 0 0;
  z-index: -3;
}
.hero-media img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.05) contrast(1.02);
  will-change: transform;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(10, 11, 13, 0.7) 0%, rgba(10, 11, 13, 0.32) 30%, rgba(10, 11, 13, 0.85) 78%, var(--bg) 100%),
    linear-gradient(95deg, rgba(10, 11, 13, 0.88) 0%, rgba(10, 11, 13, 0.45) 48%, rgba(10, 11, 13, 0.1) 100%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 78% 18%, rgba(230, 189, 105, 0.22), transparent 60%),
    radial-gradient(50% 40% at 8% 90%, rgba(185, 132, 44, 0.12), transparent 60%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-emblem {
  width: clamp(96px, 14vw, 140px);
  height: clamp(96px, 14vw, 140px);
  margin-bottom: 30px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(230, 189, 105, 0.45);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.6),
    0 30px 70px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(230, 189, 105, 0.2);
}
.hero-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  max-width: 16ch;
}

.hero-lede {
  max-width: 60ch;
  margin: 26px 0 0;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 99px;
  background: var(--gold);
  animation: scroll-cue 1.8s var(--ease) infinite;
}
@keyframes scroll-cue {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  100% { opacity: 0; }
}

/* =========================================================================
   Proof / Stats + Marquee
   ========================================================================= */

.proof {
  position: relative;
  padding: 8px 0 0;
  background: var(--bg);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  margin-top: -70px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}

.proof-item {
  padding: 30px 28px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
}
.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 600;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.proof-item span {
  display: block;
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.marquee {
  margin-top: 56px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-faint);
}
.marquee-track .dot {
  color: var(--gold);
  font-size: 1rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================================
   Section heading
   ========================================================================= */

.section-heading {
  max-width: 760px;
}
.section-heading h2 {
  margin-top: 4px;
}
.section-heading > p {
  margin: 22px 0 0;
  color: var(--text-dim);
  font-size: 1.05rem;
}
.section-heading.inverted > p {
  color: var(--text-soft);
}

/* =========================================================================
   Services
   ========================================================================= */

.services-section {
  padding: clamp(80px, 11vw, 140px) 0;
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(230, 189, 105, 0.05), transparent 60%),
    var(--bg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.service-card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(230, 189, 105, 0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow);
}
.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(230, 189, 105, 0.1);
  border: 1px solid rgba(230, 189, 105, 0.25);
  color: var(--gold);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.service-icon svg {
  width: 24px;
  height: 24px;
}
.service-card:hover .service-icon {
  background: var(--gold-grad);
  color: #1a1206;
  transform: scale(1.05);
}

.service-card h3 {
  margin-top: 4px;
}
.service-card p {
  color: var(--text-dim);
  font-size: 0.98rem;
}

/* =========================================================================
   Deliveries
   ========================================================================= */

.deliveries-section {
  position: relative;
  padding: clamp(80px, 11vw, 140px) 0;
  background: linear-gradient(180deg, var(--bg), var(--bg-3) 50%, var(--bg));
  overflow: hidden;
}
.deliveries-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(230, 189, 105, 0.08), transparent 70%);
  pointer-events: none;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
  margin-top: 50px;
}

.delivery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  aspect-ratio: 1 / 1;
}
.delivery-card.feature {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1 / 1;
}
.delivery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
  filter: saturate(1.02);
}
.delivery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 9, 11, 0.85) 100%);
  transition: opacity 0.4s var(--ease);
}
.delivery-card:hover img {
  transform: scale(1.09);
}

.delivery-meta {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0.92;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.delivery-card:hover .delivery-meta {
  transform: translateY(0);
  opacity: 1;
}
.delivery-meta span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.delivery-meta h3 {
  color: var(--text);
  font-size: 1.1rem;
}
.delivery-card.feature .delivery-meta h3 {
  font-size: 1.6rem;
}

.deliveries-cta {
  margin-top: 44px;
  display: flex;
  justify-content: center;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), gap 0.3s var(--ease);
}
.link-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}
.link-arrow:hover,
.link-arrow:focus-visible {
  border-color: var(--gold);
  color: var(--gold-hi);
  gap: 16px;
  outline: none;
}

/* =========================================================================
   Process
   ========================================================================= */

.process-section {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 60px;
  align-items: start;
}
.process-intro > p {
  margin: 22px 0 30px;
  color: var(--text-dim);
  font-size: 1.05rem;
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), background 0.4s var(--ease);
}
.process-list li:hover {
  border-color: rgba(230, 189, 105, 0.4);
  transform: translateX(6px);
}
.step-num {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  background-image: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.process-list h3 {
  margin-bottom: 6px;
}
.process-list li p {
  color: var(--text-dim);
  font-size: 0.98rem;
}

/* =========================================================================
   Request form
   ========================================================================= */

.request-band {
  padding: clamp(80px, 11vw, 140px) 0;
  background:
    radial-gradient(70% 60% at 0% 0%, rgba(230, 189, 105, 0.05), transparent 55%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}

.request-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 50px;
  align-items: start;
}

.request-intro h2 {
  margin-top: 4px;
}
.request-intro > p {
  max-width: 42ch;
  margin: 22px 0 0;
  color: var(--text-dim);
  font-size: 1.05rem;
}

.contact-stack {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}
.contact-stack a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}
.contact-stack a:hover,
.contact-stack a:focus-visible {
  border-color: rgba(230, 189, 105, 0.4);
  transform: translateY(-2px);
  outline: none;
}
.contact-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(230, 189, 105, 0.1);
  border: 1px solid rgba(230, 189, 105, 0.22);
  color: var(--gold);
}
.contact-icon svg {
  width: 20px;
  height: 20px;
}
.contact-label {
  display: grid;
  font-weight: 700;
  font-size: 1.02rem;
}
.contact-label small {
  color: var(--text-dim);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.request-form {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

label,
.full-label {
  display: grid;
  gap: 8px;
}
label span {
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(8, 9, 11, 0.6);
  color: var(--text);
  padding: 0 15px;
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
input::placeholder,
textarea::placeholder {
  color: var(--text-faint);
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23e6bd69' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
select option {
  background: var(--surface-3);
  color: var(--text);
}
textarea {
  min-height: 120px;
  padding: 14px 15px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  background: rgba(8, 9, 11, 0.85);
  box-shadow: 0 0 0 3px rgba(230, 189, 105, 0.16);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.form-status {
  min-height: 22px;
  margin: 16px 0 0;
  color: var(--gold-hi);
  font-weight: 600;
  font-size: 0.95rem;
}
.request-summary {
  margin: 14px 0 0;
  max-height: 240px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(8, 9, 11, 0.7);
  padding: 16px;
  white-space: pre-wrap;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}

/* =========================================================================
   Final CTA
   ========================================================================= */

.final-cta {
  position: relative;
  padding: clamp(90px, 12vw, 150px) 0;
  overflow: hidden;
}
.final-media {
  position: absolute;
  inset: -10% 0 0;
  z-index: -2;
}
.final-media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 35%;
  will-change: transform;
}
.final-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(95deg, rgba(10, 11, 13, 0.94) 0%, rgba(10, 11, 13, 0.7) 55%, rgba(10, 11, 13, 0.4) 100%),
    radial-gradient(50% 60% at 90% 30%, rgba(230, 189, 105, 0.16), transparent 60%);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}
.final-cta-grid > div p {
  max-width: 52ch;
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: 1.06rem;
}
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

/* =========================================================================
   Footer
   ========================================================================= */

.site-footer {
  padding: 72px 0 36px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  color: var(--text-dim);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.7fr));
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.footer-brand-col p {
  max-width: 42ch;
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--text-dim);
}
.footer-brand .brand-text small {
  color: var(--text-dim);
}

.footer-nav {
  display: grid;
  gap: 12px;
  align-content: start;
}
.footer-nav strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-nav a {
  color: var(--text-dim);
  font-size: 0.95rem;
  width: fit-content;
  transition: color 0.25s var(--ease);
}
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--gold-hi);
  outline: none;
}
.footer-area {
  color: var(--text-faint);
  font-size: 0.88rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  font-size: 0.85rem;
}
.footer-bottom p {
  margin: 0;
  color: var(--text-faint);
}

/* =========================================================================
   Reveal-on-scroll
   ========================================================================= */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { --reveal-delay: 1; }
.reveal[data-delay="2"] { --reveal-delay: 2; }
.reveal[data-delay="3"] { --reveal-delay: 3; }
.reveal[data-delay="4"] { --reveal-delay: 4; }

/* =========================================================================
   Responsive
   ========================================================================= */

@media (max-width: 1024px) {
  .delivery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .delivery-card.feature {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: var(--header-height) 16px auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(12, 14, 17, 0.96);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .site-nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .site-nav a {
    min-height: 50px;
    padding: 0 14px;
  }
  .site-nav a::after {
    display: none;
  }
  .menu-toggle {
    display: grid;
  }
  .header-call {
    display: none;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .request-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }
  .shell {
    width: min(1200px, calc(100% - 36px));
  }
  .brand-text small {
    display: none;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .delivery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
  }
  .delivery-card.feature {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16 / 11;
  }
  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .final-actions {
    justify-content: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .shell {
    width: min(1200px, calc(100% - 28px));
  }
  .proof-grid {
    grid-template-columns: 1fr;
    margin-top: -50px;
  }
  .hero-actions,
  .form-actions,
  .final-actions {
    display: grid;
  }
  .button {
    width: 100%;
  }
  .two-col,
  .three-col {
    grid-template-columns: 1fr;
  }
  .delivery-grid {
    grid-template-columns: 1fr;
  }
  .delivery-card.feature {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

/* =========================================================================
   Motion preferences
   ========================================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .marquee-track {
    animation: none;
  }
}
