/* =====================================================================
   VLX MARKETING — styles.css
   Dark editorial / minimal-luxury system. Vanilla CSS3.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Surfaces */
  --bg:          #0a0a0b;
  --bg-elev:     #101012;
  --bg-card:     #0d0d0f;
  --bg-card-h:   #131316;

  /* Lines */
  --line:        rgba(255, 255, 255, 0.085);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* Type colors */
  --text:        #f4f3ef;
  --muted:       #9c9ca2;
  --muted-2:     #6c6c72;

  /* Accent */
  --gold:        #d4af37;
  --gold-soft:   #e7d08a;
  --gold-dim:    rgba(212, 175, 55, 0.14);
  --gold-line:   rgba(212, 175, 55, 0.45);

  /* Fonts */
  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-sans:    "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --f-mono:    ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(80px, 11vw, 180px);

  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
section[id], #top { scroll-margin-top: clamp(72px, 9vw, 96px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--f-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: clamp(15px, 1.05vw, 17px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01" on, "cv01" on;
}

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

/* Hide native cursor only when custom cursor is active (pointer devices) */
.has-cursor, .has-cursor a, .has-cursor button,
.has-cursor [data-cursor] { cursor: none; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); position: relative; }

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 999;
  background: var(--gold); color: #0a0a0b; padding: 10px 16px; border-radius: 8px;
  font-family: var(--f-mono); font-size: 13px; transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ---------- Typography primitives ---------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow__idx { color: var(--gold); }
.eyebrow__pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 var(--gold-line);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(212,175,55,0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(212,175,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

em { font-style: italic; }

/* ---------- Section heads ---------- */
.section__head { max-width: 760px; margin-bottom: clamp(48px, 7vw, 96px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-top: 22px;
}
.section__intro {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  margin-top: 24px;
  max-width: 56ch;
}
.section__head--center .section__intro { margin-inline: auto; }

/* =====================================================================
   CUSTOM CURSOR
   ===================================================================== */
.cursor { position: fixed; top: 0; left: 0; z-index: 9000; pointer-events: none; mix-blend-mode: difference; display: none; }
.has-cursor .cursor { display: block; }
.cursor__dot, .cursor__ring {
  position: absolute; top: 0; left: 0; border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor__dot {
  width: 6px; height: 6px; background: #fff;
}
.cursor__ring {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.6);
  transition: width .28s var(--ease), height .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease);
}
.cursor.is-hover .cursor__ring {
  width: 64px; height: 64px; background: rgba(255,255,255,0.12); border-color: transparent;
}
.cursor.is-down .cursor__ring { width: 28px; height: 28px; }

/* =====================================================================
   SCROLL PROGRESS
   ===================================================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 8000;
  background: transparent;
}
.scroll-progress__bar {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 12px rgba(212,175,55,0.5);
}

/* =====================================================================
   AMBIENT BACKGROUND + GRAIN
   ===================================================================== */
.ambient { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.ambient__orb {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5;
}
.ambient__orb--1 {
  width: 50vw; height: 50vw; max-width: 720px; max-height: 720px;
  top: -10%; right: -8%;
  background: radial-gradient(circle, rgba(212,175,55,0.10), transparent 68%);
  animation: drift1 26s ease-in-out infinite alternate;
}
.ambient__orb--2 {
  width: 44vw; height: 44vw; max-width: 600px; max-height: 600px;
  bottom: -12%; left: -10%;
  background: radial-gradient(circle, rgba(120,140,255,0.06), transparent 70%);
  animation: drift2 32s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(-60px, 50px) scale(1.12); } }
@keyframes drift2 { to { transform: translate(70px, -40px) scale(1.08); } }

.ambient__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000, transparent 78%);
          mask-image: radial-gradient(circle at 50% 30%, #000, transparent 78%);
  opacity: 0.35;
}

.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.04;
  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.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* =====================================================================
   HEADER + NAV
   ===================================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(10,10,11,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: clamp(64px, 8vw, 84px);
}

.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark { color: var(--gold); display: grid; place-items: center; transition: transform .5s var(--ease); }
.logo:hover .logo__mark { transform: rotate(-8deg) scale(1.05); }
.logo__type {
  font-family: var(--f-display); font-weight: 600; font-size: 1.32rem;
  letter-spacing: 0.02em;
}
.logo__dot { color: var(--gold); }

.nav { display: flex; gap: clamp(20px, 2.4vw, 40px); }
.nav a {
  font-size: 14.5px; color: var(--muted); position: relative; padding: 4px 0;
  transition: color .3s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.header__cta { display: inline-flex; }

/* Menu toggle (mobile) */
.menu-toggle {
  display: none; width: 44px; height: 44px; position: relative;
  border: 1px solid var(--line); border-radius: 10px;
}
.menu-toggle span {
  position: absolute; left: 50%; top: 50%; width: 18px; height: 1.5px;
  background: var(--text); transform: translate(-50%, -50%); transition: .35s var(--ease);
}
.menu-toggle span:nth-child(1) { transform: translate(-50%, -5px); }
.menu-toggle span:nth-child(2) { transform: translate(-50%, 5px); }
.menu-toggle.is-open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  clip-path: inset(0 0 100% 0); transition: clip-path .6s var(--ease);
  pointer-events: none;
}
.mobile-nav.is-open { clip-path: inset(0 0 0 0); pointer-events: auto; }
.mobile-nav__links { display: flex; flex-direction: column; gap: 6px; }
.mobile-nav__links a {
  font-family: var(--f-display); font-size: clamp(2rem, 11vw, 3.4rem); font-weight: 500;
  display: flex; align-items: baseline; gap: 18px; padding: 8px 0;
  border-bottom: 1px solid var(--line); transition: color .3s, padding-left .3s var(--ease);
}
.mobile-nav__links a:hover { color: var(--gold); padding-left: 12px; }
.mobile-nav__idx { font-family: var(--f-mono); font-size: 0.85rem; color: var(--gold); }
.mobile-nav__social { margin-top: 40px; font-family: var(--f-mono); color: var(--muted); letter-spacing: .05em; }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; letter-spacing: 0.01em;
  padding: 14px 26px; border-radius: 100px; position: relative;
  transition: transform .35s var(--ease), background .35s, color .35s, border-color .35s;
  will-change: transform;
}
.btn__arrow { transition: transform .35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(5px); }

.btn--solid { background: var(--text); color: #0a0a0b; }
.btn--solid:hover { background: var(--gold); }

.btn--ghost { border: 1px solid var(--line-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--text { padding: 14px 4px; color: var(--muted); }
.btn--text::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: 8px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.btn--text:hover { color: var(--text); }
.btn--text:hover::after { transform: scaleX(1); }

.btn--block { width: 100%; justify-content: center; padding-block: 18px; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 80px; overflow: hidden;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; opacity: 0.9; }
.hero__inner { max-width: 1000px; }

.hero__eyebrow { margin-bottom: 34px; }

.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 8.5vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.hero__title em { color: var(--gold); font-weight: 500; }
.hero__title .line { display: block; overflow: hidden; padding-block: 0.04em; }
.hero__title .line__inner { display: block; transition: transform 1s var(--ease-out); }
.js .hero__title .line__inner { transform: translateY(110%); }
.js .hero__title .line:nth-child(2) .line__inner { transition-delay: .12s; }
.hero-ready .hero__title .line__inner { transform: translateY(0); }

.hero__lede {
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  color: var(--muted); max-width: 56ch; margin-top: 36px; line-height: 1.55;
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; margin-top: 44px; }

.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 38px;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2);
}
.hero__scroll-line { width: 46px; height: 1px; background: var(--line-strong); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0; background: var(--gold);
  transform: translateX(-100%); animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine { 0% { transform: translateX(-100%); } 60%,100% { transform: translateX(100%); } }

/* =====================================================================
   MARQUEE
   ===================================================================== */
.marquee {
  border-block: 1px solid var(--line); padding-block: 26px;
  overflow: hidden; white-space: nowrap; -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: inline-flex; animation: marquee 36s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: inline-flex; align-items: center; flex-shrink: 0; }
.marquee__group span {
  font-family: var(--f-display); font-size: clamp(1.3rem, 2.4vw, 2rem); font-weight: 400;
  color: var(--muted); padding-inline: 26px; font-style: italic;
}
.marquee__sep { color: var(--gold) !important; font-style: normal !important; font-size: 1rem !important; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about__grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 80px);
}
.about__title {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem); line-height: 1.08; letter-spacing: -0.02em;
  margin-top: 22px;
}
.about__title em { color: var(--gold); }
.about__lead { font-size: clamp(1.1rem, 1.7vw, 1.35rem); color: var(--text); margin-bottom: 24px; }
.about__text { color: var(--muted); max-width: 54ch; }
.about__focus {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px;
}
.about__focus li {
  font-family: var(--f-mono); font-size: 12.5px; letter-spacing: 0.04em;
  padding: 9px 16px; border: 1px solid var(--line); border-radius: 100px; color: var(--muted);
  transition: border-color .3s, color .3s, transform .3s var(--ease);
}
.about__focus li:hover { border-color: var(--gold-line); color: var(--text); transform: translateY(-2px); }

/* =====================================================================
   SERVICES
   ===================================================================== */
.services__grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.service-card {
  position: relative; background: var(--bg-card); padding: clamp(28px, 3.4vw, 44px);
  min-height: clamp(200px, 24vw, 260px); display: flex; flex-direction: column;
  transition: background .4s var(--ease); overflow: hidden; outline: none;
}
.service-card::before {
  /* cursor spotlight */
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 50%), rgba(212,175,55,0.10), transparent 60%);
}
.service-card::after {
  /* top sweep line */
  content: ""; position: absolute; top: 0; left: 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.service-card:hover, .service-card:focus-visible { background: var(--bg-card-h); }
.service-card:hover::before, .service-card:focus-visible::before { opacity: 1; }
.service-card:hover::after, .service-card:focus-visible::after { transform: scaleX(1); }

.service-card__idx {
  font-family: var(--f-mono); font-size: 12px; color: var(--gold); letter-spacing: 0.1em;
}
.service-card__title {
  font-family: var(--f-display); font-weight: 500; font-size: clamp(1.3rem, 2vw, 1.65rem);
  letter-spacing: -0.01em; margin-top: 16px; line-height: 1.1;
}
.service-card__desc { color: var(--muted); font-size: 0.95rem; margin-top: 14px; max-width: 34ch; }
.service-card__arrow {
  margin-top: auto; align-self: flex-end; font-size: 1.3rem; color: var(--muted-2);
  transform: translate(-6px, 6px); opacity: 0; transition: .45s var(--ease);
}
.service-card:hover .service-card__arrow, .service-card:focus-visible .service-card__arrow {
  transform: translate(0, 0); opacity: 1; color: var(--gold);
}

/* =====================================================================
   PROCESS / TIMELINE
   ===================================================================== */
.timeline { position: relative; padding-left: clamp(0px, 4vw, 60px); }
.timeline::before {
  content: ""; position: absolute; left: clamp(46px, 9vw, 118px); top: 10px; bottom: 10px;
  width: 1px; background: var(--line);
}
.timeline__progress {
  position: absolute; left: clamp(46px, 9vw, 118px); top: 10px; width: 1px; height: 0;
  background: linear-gradient(180deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 14px rgba(212,175,55,0.5);
}
.timeline__step {
  position: relative; display: grid;
  grid-template-columns: clamp(64px, 12vw, 150px) 1fr; gap: clamp(20px, 4vw, 64px);
  padding-block: clamp(28px, 4vw, 50px);
}
.timeline__step::before {
  content: ""; position: absolute; left: clamp(42px, 9vw, 114px); top: 50%;
  width: 9px; height: 9px; border-radius: 50%; background: var(--bg);
  border: 1px solid var(--line-strong); transform: translate(-50%, -50%);
  transition: background .4s, border-color .4s, box-shadow .4s; z-index: 1;
}
.timeline__step.is-visible::before { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 5px var(--gold-dim); }
.timeline__num {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1; color: var(--muted-2);
  transition: color .4s var(--ease); font-feature-settings: "tnum";
}
.timeline__step.is-visible .timeline__num { color: var(--text); }
.timeline__content h3 {
  font-family: var(--f-display); font-weight: 500; font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: -0.01em; margin-bottom: 12px;
}
.timeline__content p { color: var(--muted); max-width: 50ch; }

/* =====================================================================
   RESULTS / STATS
   ===================================================================== */
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.stat {
  background: var(--bg-card); padding: clamp(34px, 5vw, 64px) clamp(24px, 3vw, 40px);
  text-align: center; transition: background .4s;
}
.stat:hover { background: var(--bg-card-h); }
.stat__value {
  display: block; font-family: var(--f-display); font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1; letter-spacing: -0.03em;
  color: var(--text); font-feature-settings: "tnum";
}
.stat__value .unit { color: var(--gold); }
.stat__label {
  display: block; margin-top: 18px; font-family: var(--f-mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}

/* =====================================================================
   WHY VLX
   ===================================================================== */
.why__grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(48px, 6vw, 90px);
}
.why__title {
  font-family: var(--f-display); font-weight: 500; margin-top: 22px;
  font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.05; letter-spacing: -0.02em;
}
.why__mark { color: var(--gold); font-style: italic; }
.why__note { color: var(--muted); margin-top: 22px; max-width: 38ch; }

.why__list { display: flex; flex-direction: column; }
.why-item {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(18px, 3vw, 40px);
  padding-block: clamp(26px, 3.4vw, 40px); border-top: 1px solid var(--line);
  position: relative; transition: padding-left .4s var(--ease);
}
.why-item:last-child { border-bottom: 1px solid var(--line); }
.why-item::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: linear-gradient(90deg, var(--gold-dim), transparent); transition: width .5s var(--ease);
  pointer-events: none;
}
.why-item:hover { padding-left: 16px; }
.why-item:hover::before { width: 100%; }
.why-item__idx {
  font-family: var(--f-display); font-style: italic; font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  color: var(--gold); line-height: 1;
}
.why-item h3 { font-family: var(--f-display); font-weight: 500; font-size: clamp(1.25rem, 2.2vw, 1.7rem); margin-bottom: 10px; }
.why-item p { color: var(--muted); max-width: 50ch; }

/* =====================================================================
   SOCIAL CARD
   ===================================================================== */
.social-card {
  display: block; position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: clamp(18px, 2.4vw, 28px);
  padding: clamp(34px, 5vw, 72px);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(212,175,55,0.08), transparent 55%),
    var(--bg-card);
  transition: border-color .5s var(--ease), transform .5s var(--ease);
}
.social-card::after {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .5s;
  background: radial-gradient(500px circle at var(--mx,80%) var(--my,10%), rgba(212,175,55,0.10), transparent 55%);
}
.social-card:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.social-card:hover::after { opacity: 1; }

.social-card__top { display: flex; align-items: center; justify-content: space-between; }
.social-card__x {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: var(--text);
  transition: background .4s, color .4s;
}
.social-card:hover .social-card__x { background: var(--gold); color: #0a0a0b; }
.social-card__follow { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.social-card__title {
  font-family: var(--f-display); font-weight: 500; letter-spacing: -0.02em;
  font-size: clamp(1.8rem, 4.6vw, 3.4rem); line-height: 1.06; margin-block: clamp(40px, 7vw, 90px) clamp(34px, 5vw, 56px);
  max-width: 18ch;
}
.social-card__title span { color: var(--muted); }
.social-card__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.social-card__handle { font-family: var(--f-mono); font-size: clamp(1rem, 2vw, 1.3rem); color: var(--gold); letter-spacing: 0.02em; }
.social-card__cta { display: inline-flex; align-items: center; gap: 10px; font-weight: 500; }
.social-card__cta span { transition: transform .35s var(--ease); display: inline-block; }
.social-card:hover .social-card__cta span { transform: translateX(6px); }

/* =====================================================================
   CONTACT + FORM
   ===================================================================== */
.contact__grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(48px, 6vw, 84px);
}
.contact__title {
  font-family: var(--f-display); font-weight: 500; margin-top: 22px;
  font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.05; letter-spacing: -0.02em;
}
.contact__text { color: var(--muted); margin-top: 24px; max-width: 44ch; }
.contact__details { margin-top: clamp(36px, 5vw, 56px); display: flex; flex-direction: column; }
.contact__details li {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding-block: 18px; border-top: 1px solid var(--line);
}
.contact__details li:last-child { border-bottom: 1px solid var(--line); }
.contact__label { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); }
.contact__value { font-size: 1.02rem; transition: color .3s; }
a.contact__value:hover { color: var(--gold); }

/* Form */
.contact__form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 20px; }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input, .field textarea, .field select {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line-strong);
  padding: 14px 2px; font-size: 1rem; transition: border-color .3s;
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { appearance: none; -webkit-appearance: none; color: var(--text); }
.field select option { background: var(--bg-elev); color: var(--text); }
.field label {
  position: absolute; left: 2px; top: 14px; color: var(--muted-2); pointer-events: none;
  transition: transform .3s var(--ease), color .3s, font-size .3s;
  transform-origin: left;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--gold); }
.field input:focus + label, .field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label,
.field select:valid + label {
  transform: translateY(-26px) scale(0.8); color: var(--gold);
}
.field--select { display: flex; flex-direction: column; }
.field__chevron { position: absolute; right: 4px; top: 16px; color: var(--muted); pointer-events: none; }
.field input:-webkit-autofill { -webkit-text-fill-color: var(--text); transition: background-color 9999s; }

.contact__success {
  grid-column: 1 / -1; font-family: var(--f-mono); font-size: 13.5px; color: var(--gold);
  border: 1px solid var(--gold-line); border-radius: 10px; padding: 16px; background: var(--gold-dim);
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { border-top: 1px solid var(--line); padding-block: clamp(54px, 7vw, 90px); }
.footer__top {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 20px;
  padding-bottom: clamp(40px, 6vw, 70px); border-bottom: 1px solid var(--line);
}
.footer__wordmark {
  font-family: var(--f-display); font-weight: 600; font-size: clamp(3.4rem, 13vw, 9rem);
  line-height: 0.8; letter-spacing: -0.03em; transition: color .4s;
}
.footer__wordmark span { color: var(--gold); }
.footer__wordmark:hover { color: var(--gold); }
.footer__tag { font-family: var(--f-display); font-style: italic; color: var(--muted); font-size: clamp(1rem, 2vw, 1.3rem); }

.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 20px 40px; padding-top: 34px;
}
.footer__nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__nav a { color: var(--muted); font-size: 14px; transition: color .3s; }
.footer__nav a:hover { color: var(--text); }
.footer__social { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-family: var(--f-mono); font-size: 13px; transition: color .3s; }
.footer__social:hover { color: var(--gold); }
.footer__copy { color: var(--muted-2); font-size: 13px; }

/* =====================================================================
   REVEAL ANIMATION (JS-driven)
   ===================================================================== */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); will-change: opacity, transform; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (min-width: 700px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .contact__grid { grid-template-columns: 0.95fr 1.05fr; }
}
@media (min-width: 920px) {
  .about__grid { grid-template-columns: 0.85fr 1fr; align-items: start; }
  .why__grid { grid-template-columns: 0.8fr 1fr; align-items: start; }
  .why__sticky { position: sticky; top: 120px; }
}
@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); }
}

/* Mobile: swap nav for menu */
@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .menu-toggle { display: block; }
}

@media (max-width: 560px) {
  .hero { min-height: 92svh; }
  .hero__scroll { display: none; }
  .contact__form { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* Touch / no custom cursor */
@media (hover: none) {
  .cursor { display: none !important; }
  .has-cursor, .has-cursor * { cursor: auto; }
}
