/* ───────────────────────────────────────────────────────────
   DWAPAR — design tokens
   ─────────────────────────────────────────────────────────── */
:root {
  /* Cosmic palette */
  --bg-deep: #07091A;
  --bg-mid: #0C1030;
  --bg-elevated: #141A3D;

  --violet: #6E3CFF;
  --magenta: #D946EF;
  --cyan: #4FD9F8;
  --gold: #D4AF6F;
  --gold-soft: #E6C998;

  /* Text */
  --text-primary: #F4F1EA;
  --text-secondary: #A8AECB;
  --text-tertiary: #6B7299;
  --text-faint: #3F4470;

  /* Surfaces / borders */
  --line: rgba(212, 175, 111, 0.18);
  --line-strong: rgba(212, 175, 111, 0.32);

  /* Type */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sizing */
  --container: 1280px;
  --gutter: 32px;

  /* Easing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html { scroll-behavior: auto; } /* Lenis takes over */
body { overflow-x: hidden; min-height: 100vh; }

a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

/* Hide the sprite container — symbols are referenced via <use>. */
.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* Skip-to-content link — visible only when keyboard-focused. */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--gold);
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: 0.06em;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus {
  top: 12px;
  outline: none;
}

/* Keyboard focus indicator — gold ring everywhere by default. */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus-visible,
button:focus-visible {
  outline-offset: 4px;
}
.btn:focus-visible {
  outline-offset: 6px;
}

/* ───────────────────────────────────────────────────────────
   COSMIC BACKGROUND LAYERS
   ─────────────────────────────────────────────────────────── */
.cosmos {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, #1A1F4D 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 20% 100%, #0E1235 0%, transparent 70%),
    linear-gradient(180deg, #07091A 0%, #050714 100%);
}

.nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  mix-blend-mode: screen;
  opacity: 0.55;
  will-change: transform;
}

.nebula--violet {
  width: 70vw; height: 70vw;
  top: -20vw; left: -10vw;
  background: radial-gradient(circle at 50% 50%, rgba(110, 60, 255, 0.55) 0%, rgba(110, 60, 255, 0.18) 35%, transparent 65%);
}

.nebula--magenta {
  width: 60vw; height: 60vw;
  top: 10vh; right: -15vw;
  background: radial-gradient(circle at 50% 50%, rgba(217, 70, 239, 0.45) 0%, rgba(217, 70, 239, 0.14) 35%, transparent 65%);
  opacity: 0.5;
}

.nebula--cyan {
  width: 50vw; height: 50vw;
  bottom: -20vw; left: 15vw;
  background: radial-gradient(circle at 50% 50%, rgba(79, 217, 248, 0.32) 0%, rgba(79, 217, 248, 0.10) 35%, transparent 65%);
  opacity: 0.4;
}

#stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.astrolabe {
  position: absolute;
  width: 92vh;
  height: 92vh;
  top: 50%;
  right: -22vh;
  transform: translateY(-50%);
  opacity: 0.55;
  pointer-events: none;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes rotate-rev {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.astrolabe__rotate-slow {
  transform-origin: 400px 400px;
  animation: rotate-slow 240s linear infinite;
}
.astrolabe__rotate-rev {
  transform-origin: 400px 400px;
  animation: rotate-rev 320s linear infinite;
}

/* Light flares — slow drift across the screen */
.flare {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.flare--one {
  background: radial-gradient(circle, rgba(212, 175, 111, 0.18) 0%, transparent 60%);
  top: 20%; left: 10%;
  animation: drift-one 28s ease-in-out infinite;
}
.flare--two {
  background: radial-gradient(circle, rgba(217, 70, 239, 0.14) 0%, transparent 60%);
  bottom: 10%; right: 15%;
  animation: drift-two 36s ease-in-out infinite;
}

@keyframes drift-one {
  0%,100% { transform: translate(0, 0); opacity: 0.6; }
  50% { transform: translate(20vw, 10vh); opacity: 0.9; }
}
@keyframes drift-two {
  0%,100% { transform: translate(0, 0); opacity: 0.5; }
  50% { transform: translate(-15vw, -8vh); opacity: 0.8; }
}

.vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 50%, transparent 40%, rgba(5, 7, 20, 0.7) 100%),
    linear-gradient(180deg, rgba(5, 7, 20, 0.4) 0%, transparent 20%, transparent 80%, rgba(5, 7, 20, 0.6) 100%);
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ───────────────────────────────────────────────────────────
   NAV
   ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.brand__mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-soft), var(--gold) 60%, #8B7245 100%);
  box-shadow:
    0 0 12px rgba(212, 175, 111, 0.6),
    0 0 32px rgba(212, 175, 111, 0.25);
  position: relative;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav__links {
  display: flex;
  gap: 36px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease-out);
}
.nav__links a:hover { color: var(--text-primary); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text-primary);
  transition: all 0.3s var(--ease-out);
  background: rgba(212, 175, 111, 0.04);
}
.nav__cta:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 111, 0.12);
  box-shadow: 0 0 24px rgba(212, 175, 111, 0.25);
}

/* ───────────────────────────────────────────────────────────
   HERO
   ─────────────────────────────────────────────────────────── */
main { position: relative; z-index: 1; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.hero__inner {
  width: 100%;
  max-width: 880px;
  padding-top: 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 36px;
}
.eyebrow__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.headline {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--text-primary);
  margin-bottom: 36px;
}

.headline__line {
  display: block;
  overflow: hidden;
}

.headline__line--accent {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(110deg,
    var(--gold-soft) 0%,
    var(--gold) 35%,
    #FFE9B8 60%,
    var(--gold) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.subhead {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 48px;
}

.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 16px 28px;
  border-radius: 999px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, #1F244D 0%, #2A2F60 100%);
  color: var(--text-primary);
  border: 1px solid var(--line-strong);
  box-shadow:
    0 0 0 1px rgba(212, 175, 111, 0.04),
    0 8px 32px rgba(110, 60, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 111, 0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.btn--primary:hover {
  border-color: var(--gold);
  box-shadow:
    0 0 0 1px rgba(212, 175, 111, 0.2),
    0 12px 40px rgba(110, 60, 255, 0.25),
    0 0 32px rgba(212, 175, 111, 0.2);
  transform: translateY(-1px);
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary > * { position: relative; z-index: 1; }

.btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn--ghost {
  color: var(--text-secondary);
  padding: 16px 8px;
}
.btn--ghost:hover { color: var(--gold-soft); }

.hero__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 720px;
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__meta-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.hero__meta-value {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-primary);
}
.hero__meta-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--text-tertiary);
}
.scroll-indicator__label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.scroll-indicator__line {
  width: 1px;
  height: 64px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.scroll-indicator__dot {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 1px;
  height: 8px;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
  transform: translateX(-50%);
  animation: scroll-dot 2.6s ease-in-out infinite;
}
@keyframes scroll-dot {
  0% { top: -8px; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ───────────────────────────────────────────────────────────
   SECTION HEADERS (shared)
   ─────────────────────────────────────────────────────────── */
.section-header {
  max-width: 880px;
  margin-bottom: 80px;
}
.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header--center .eyebrow {
  justify-content: center;
}
.section-header .eyebrow { margin-bottom: 24px; }
.section-title {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.section-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 620px;
}

/* ───────────────────────────────────────────────────────────
   SERVICES — "What we build"
   ─────────────────────────────────────────────────────────── */
.services {
  position: relative;
  padding: 200px var(--gutter) 160px;
  max-width: var(--container);
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.service {
  position: relative;
  padding: 40px 36px 36px;
  background: linear-gradient(180deg, rgba(20, 26, 61, 0.7) 0%, rgba(12, 16, 48, 0.7) 100%);
  backdrop-filter: blur(8px);
  transition: background 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(212, 175, 111, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}
.service:hover {
  background: linear-gradient(180deg, rgba(28, 36, 76, 0.85) 0%, rgba(18, 24, 60, 0.85) 100%);
}
.service:hover::before { opacity: 1; }
.service:hover .service__icon { color: var(--gold); transform: rotate(8deg); }

.service__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}
.service__icon {
  width: 36px;
  height: 36px;
  color: var(--gold-soft);
  transition: color 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}
.service__index {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  font-feature-settings: "tnum";
}
.service__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 14px;
  font-variation-settings: "opsz" 60, "SOFT" 30;
}
.service__desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: auto;
  padding-bottom: 28px;
}
.service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service__tags span {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 9, 26, 0.4);
}

.services-strip {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  background: rgba(7, 9, 26, 0.4);
  backdrop-filter: blur(8px);
  text-align: center;
}
.services-strip__icon {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ───────────────────────────────────────────────────────────
   PROCESS — "How we work"
   ─────────────────────────────────────────────────────────── */
.process {
  position: relative;
  padding: 160px var(--gutter) 200px;
  max-width: var(--container);
  margin: 0 auto;
}

.process-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.process-step:last-child { border-bottom: 1px solid var(--line); }

.process-step__num {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step__num span {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 44px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 70%, #8B7245 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-feature-settings: "tnum";
  font-variation-settings: "opsz" 144, "SOFT" 100;
  position: relative;
  z-index: 1;
}
.process-step__num-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 0.5s var(--ease-out), transform 8s linear;
}
.process-step__num-ring::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px dashed var(--line);
  transform: scale(1.18);
  opacity: 0.6;
}
.process-step:hover .process-step__num-ring {
  border-color: var(--gold);
}

.process-step__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 14px;
  font-variation-settings: "opsz" 80, "SOFT" 40;
}
.process-step__desc {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 16px;
  max-width: 620px;
}
.process-step__deliverable {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(212, 175, 111, 0.04);
}

/* ───────────────────────────────────────────────────────────
   FOUNDER NOTE
   ─────────────────────────────────────────────────────────── */
.founder {
  position: relative;
  padding: 120px var(--gutter) 160px;
  max-width: 880px;
  margin: 0 auto;
}
.founder__content {
  text-align: center;
  position: relative;
}
.founder__content::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 100%);
}
.founder__quote {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  font-variation-settings: "opsz" 80, "SOFT" 50;
  margin-bottom: 48px;
}
.founder__quote strong {
  font-weight: 500;
  color: var(--gold-soft);
}
.founder__signature {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.founder__signature-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  background: linear-gradient(110deg, var(--gold-soft) 0%, var(--gold) 60%, #FFE9B8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.founder__signature-role {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ───────────────────────────────────────────────────────────
   CONTACT
   ─────────────────────────────────────────────────────────── */
.contact {
  position: relative;
  padding: 160px var(--gutter) 200px;
  max-width: var(--container);
  margin: 0 auto;
}
.contact__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.contact__inner .eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}
.contact__headline {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  color: var(--text-primary);
  margin-bottom: 32px;
}
.contact__headline-accent {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(110deg,
    var(--gold-soft) 0%,
    var(--gold) 35%,
    #FFE9B8 60%,
    var(--gold) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.contact__sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 48px;
}
.contact__actions {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* ───────────────────────────────────────────────────────────
   FOOTER
   ─────────────────────────────────────────────────────────── */
.footer {
  position: relative;
  padding: 32px var(--gutter) 40px;
  border-top: 1px solid var(--line);
  background: rgba(5, 7, 20, 0.6);
  backdrop-filter: blur(8px);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--text-secondary);
}
.footer__meta {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

/* ───────────────────────────────────────────────────────────
   REVEAL ANIMATION HOOK
   Default state is VISIBLE so the page is usable even if JS / GSAP
   never load (file:// open, blocked CDN, JS error, reduced-motion).
   motion.js sets the hidden state via gsap.set() right before
   wiring up the scroll-triggered tween — that's the only path
   that should produce an invisible-then-revealed element.
   ─────────────────────────────────────────────────────────── */
[data-reveal] {
  will-change: transform, opacity;
}

/* ───────────────────────────────────────────────────────────
   ANIMATION HOOKS — initial state set by GSAP, this is fallback
   ─────────────────────────────────────────────────────────── */
[data-anim] { will-change: transform, opacity; }

/* ───────────────────────────────────────────────────────────
   RESPONSIVE
   ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --gutter: 20px; }
  .nav__links { display: none; }
  .nav { padding: 18px var(--gutter); }
  .hero__inner { padding-top: 100px; }
  .eyebrow { margin-bottom: 24px; }
  .headline { margin-bottom: 24px; }
  .subhead { margin-bottom: 36px; font-size: 16px; }
  .cta-row { margin-bottom: 56px; }
  .hero__meta { gap: 16px; }
  .hero__meta-divider { display: none; }
  .scroll-indicator { display: none; }
  .astrolabe { width: 120vh; right: -50vh; opacity: 0.4; }

  .services { padding: 120px var(--gutter) 100px; }
  .services-grid { grid-template-columns: 1fr; }
  .service { min-height: auto; padding: 32px 24px 28px; }
  .section-header { margin-bottom: 48px; }
  .services-strip { font-size: 12px; padding: 18px 22px; flex-direction: column; gap: 10px; text-align: center; }

  .process { padding: 100px var(--gutter) 120px; }
  .process-step { grid-template-columns: 1fr; gap: 20px; padding: 36px 0; }
  .process-step__num { width: 64px; height: 64px; }
  .process-step__num span { font-size: 28px; }
  .process-step__title { font-size: 22px; }

  .founder { padding: 80px var(--gutter) 100px; }
  .founder__quote { font-size: 18px; }

  .contact { padding: 100px var(--gutter) 140px; }
}

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