/* =========================================================
   Copper Onyx — Kinetic & Bold
   ========================================================= */

/* Self-hosted fonts (variable, latin subset) — no external CDN, no FOUT.
   One file per family covers every weight; per-glyph fallback handles the rest. */
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("fonts/space-grotesk-var-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-var-latin.woff2") format("woff2");
}

:root {
  --bg: #08070a;
  --bg-2: #0b0a0e;
  --panel: #110f15;
  --panel-2: #16131b;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(230, 163, 106, 0.28);

  /* True copper, sampled from the co-mark logo */
  --cu: #ba603a;          /* core copper */
  --cu-bright: #ed9e74;   /* highlight / lit copper */
  --cu-deep: #823d22;     /* shadow copper */
  --cu-hi: #f4ba93;       /* specular sheen for metallic gradients */
  --cu-glow: rgba(210, 115, 68, 0.45);
  /* Metallic copper gradient for prominent text accents */
  --cu-metal: linear-gradient(165deg, var(--cu-hi) 0%, var(--cu-bright) 26%, var(--cu) 62%, var(--cu-deep) 100%);

  --ink: #f5f1ea;
  --ink-soft: #b7b1a7;
  --ink-mute: #7c766c;

  --maxw: 1280px;
  --ease: cubic-bezier(0.2, 1, 0.3, 1);
  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; color-scheme: dark; -webkit-tap-highlight-color: transparent; }
/* No grey/blue tap-flash box when tapping links & buttons on mobile */
a, button, input, textarea, label, .vcard, .step, .nav__burger, summary { -webkit-tap-highlight-color: transparent; }

/* Lenis smooth-scroll (required stylesheet — without this the scroll wheel misbehaves).
   Native scroll-behavior:smooth must NOT be set: it fights Lenis's wheel handling. */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }
/* When Lenis is NOT active (reduced-motion / load failure), restore native smooth anchors */
html:not(.lenis) { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(232, 167, 110, 0.3); color: #fff; }
:focus-visible { outline: 2px solid var(--cu-bright); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.04; letter-spacing: -0.02em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }

/* Film grain */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.045;
  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%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Shared ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--display);
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 12px; font-weight: 600;
  color: var(--cu-bright);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cu-bright); box-shadow: 0 0 10px var(--cu-glow); }
/* Metallic copper text — polished-metal sheen like the logo */
.cu {
  background: var(--cu-metal);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  padding: 15px 26px; border-radius: 999px; cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn--lg { padding: 18px 32px; font-size: 17px; }
.btn--primary { background: linear-gradient(135deg, var(--cu-bright), var(--cu-deep)); color: #1c1109; box-shadow: 0 10px 36px var(--cu-glow); }
.btn--primary:hover { box-shadow: 0 18px 50px var(--cu-glow); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); background: rgba(255,255,255,0.02); }
.btn--ghost:hover { border-color: var(--line-2); background: rgba(232,167,110,0.06); }
.btn .arr { transition: transform 0.3s var(--ease); }
.btn:hover .arr { transform: translate(3px, -3px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  /* Bar background spans full width, but content stays capped + centered at --maxw
     (aligned with the page content) so it doesn't spread to the edges on ultrawide. */
  padding-block: 18px;
  padding-inline: calc(clamp(20px, 5vw, 64px) + max(0px, (100% - var(--maxw)) / 2));
  background: rgba(8, 7, 10, 0.55);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(8,7,10,0.85); }
.brand { display: flex; align-items: center; gap: 13px; }
.brand__mark {
  width: 38px; height: 38px; object-fit: contain;
  filter: brightness(1.12) contrast(1.04) drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}
.brand__word {
  height: 30px; width: auto;
  filter: brightness(1.2) contrast(1.1) drop-shadow(0 1px 5px rgba(0,0,0,0.5));
}
.brand__name { font-family: var(--display); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; }
.nav__links { display: flex; gap: clamp(20px, 3vw, 40px); margin-left: auto; margin-right: clamp(18px, 3vw, 40px); }
.nav__links a {
  font-family: var(--display); font-size: 14px; font-weight: 500; color: var(--ink-soft);
  position: relative; transition: color 0.25s var(--ease);
}
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 1.5px; background: var(--cu); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-size: 14px; font-weight: 600; color: var(--cu-bright);
  padding: 10px 18px; border: 1px solid var(--line-2); border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav__cta:hover { background: rgba(232,167,110,0.1); color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(28px, 4vw, 56px) 0 clamp(44px, 6vw, 80px); }
.hero__atmos { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); }
.orb--1 { width: 620px; height: 620px; top: -160px; right: -120px; background: radial-gradient(circle, var(--cu-glow), transparent 68%); opacity: 0.75; animation: drift1 16s ease-in-out infinite; }
.orb--2 { width: 520px; height: 520px; bottom: -240px; left: -140px; background: radial-gradient(circle, rgba(143,86,48,0.3), transparent 70%); opacity: 0.6; animation: drift2 20s ease-in-out infinite; }

.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; padding-inline: clamp(20px, 5vw, 64px);
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: clamp(24px, 4vw, 56px);
  min-height: min(68vh, 620px);
}
.hero__copy { max-width: 620px; }
.hero .eyebrow { margin-bottom: 20px; }
.hero__title {
  font-size: clamp(48px, 8vw, 104px); font-weight: 700; line-height: 0.98; letter-spacing: -0.035em;
  margin-bottom: 22px;
}
.hero__title em {
  font-style: normal;
  background: var(--cu-metal);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ============================================================
   COPPER SHINE STREAK  —  extra metallic gleam on copper words.
   EASY REVERT: delete this whole block (down to "END SHINE")
   and the words keep their static metallic copper gradient.
   ============================================================ */
.cu, .hero__title em {
  background-image:
    linear-gradient(100deg, transparent 40%, rgba(255, 246, 236, 0.92) 50%, transparent 60%),
    var(--cu-metal);
  background-size: 250% 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: -60% 0, 0 0;
  animation: cuShine 6.5s ease-in-out infinite;
}
@keyframes cuShine {
  0%   { background-position: -60% 0, 0 0; }
  32%  { background-position: 165% 0, 0 0; }
  100% { background-position: 165% 0, 0 0; }
}
/* ===================== END SHINE ===================== */

.hero__title .ln { display: block; overflow: hidden; }
.hero__title .ln > span { display: block; transform: translateY(106%); }
.hero__sub { color: var(--ink-soft); font-size: clamp(16px, 1.4vw, 19px); max-width: 480px; margin-bottom: 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__actions { width: fit-content; max-width: 100%; }

/* hero kinetic entrance */
.hero__title .ln:nth-child(1) > span { animation: lineUp 0.9s var(--ease) 0.15s forwards; }
.hero__title .ln:nth-child(2) > span { animation: lineUp 0.9s var(--ease) 0.28s forwards; }
.hero__title .ln:nth-child(3) > span { animation: lineUp 0.9s var(--ease) 0.41s forwards; }
@keyframes lineUp { to { transform: translateY(0); } }

/* Hero visual / gem */
.hero__visual { position: relative; display: flex; align-items: center; justify-content: center; }
.gem-stage { position: relative; width: min(440px, 90%); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.gem-glow { position: absolute; inset: 8%; border-radius: 50%; background: radial-gradient(circle, var(--cu-glow), transparent 66%); filter: blur(36px); animation: pulse 5s ease-in-out infinite; }
.orbit { position: absolute; inset: 0; width: 100%; height: 100%; }
.orbit--a { animation: spin 38s linear infinite; }
.orbit--b { animation: spin 60s linear infinite reverse; }
.gem-float { position: relative; z-index: 2; animation: float 7s ease-in-out infinite; perspective: 1200px; }
.gem-spin { animation: spin360 26s linear infinite; transform-style: preserve-3d; }
.gem-3d {
  position: relative;
  width: clamp(190px, 33vw, 300px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  animation: twist 14s linear infinite;
}
.gem-3d .gem-logo, .gem-3d .gem-layer {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
}
.gem-logo { filter: drop-shadow(0 0 32px var(--cu-glow)) brightness(1.14) contrast(1.05); }
.gem-layer { pointer-events: none; }

/* Deter casual saving of the logo images — blocks right-click "Save image",
   drag-to-save, and the iOS long-press image menu. (Not true protection: the
   files are still publicly served at their URLs to render the page.) */
.gem-logo, .gem-layer,
.brand__mark, .brand__word, .footer__word,
.preloader__mark img, .preloader__word,
.cursor__logo img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

@keyframes float { 0%,100% { transform: translateY(-16px); } 50% { transform: translateY(16px); } }
@keyframes spin360 { to { transform: rotate(360deg); } }
@keyframes twist { to { transform: rotateY(360deg); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { opacity: 0.7; transform: scale(0.96); } 50% { opacity: 1; transform: scale(1.05); } }
@keyframes sheen { 0% { transform: translateX(0); } 55%,100% { transform: translateX(360px); } }
@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-40px, 30px); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px, -30px); } }

.scroll-cue {
  position: relative; z-index: 2; width: 100%;
  display: flex; justify-content: center; align-items: center;
  margin: clamp(20px, 3vw, 34px) 0 0;
}
.scroll-cue__line {
  width: clamp(120px, 16vw, 190px); height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--cu), transparent);
  position: relative; overflow: hidden;
  box-shadow: 0 0 10px var(--cu-glow);
  animation: cuePulse 2.8s ease-in-out infinite;
}
.scroll-cue__line::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 30px;
  background: linear-gradient(90deg, transparent, var(--cu-bright), transparent);
  animation: cue 2.8s ease-in-out infinite;
}
@keyframes cue { 0% { left: -30px; opacity: 0; } 25% { opacity: 1; } 75% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
@keyframes cuePulse { 0%, 100% { opacity: 0.55; box-shadow: 0 0 7px var(--cu-glow); } 50% { opacity: 1; box-shadow: 0 0 18px var(--cu-glow); } }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); overflow: hidden; padding: clamp(13px, 1.5vw, 18px) 0; background: var(--bg-2); }
.marquee__track { display: flex; align-items: center; gap: 0; width: max-content; animation: marquee 60s linear infinite; }
.marquee__track span {
  font-family: var(--display); font-weight: 600; font-size: clamp(11px, 1.05vw, 14px);
  text-transform: uppercase; letter-spacing: 0.22em; color: var(--ink-mute);
  padding: 0 clamp(16px, 2.2vw, 32px); white-space: nowrap;
}
.marquee__track .sep { width: 5px; height: 5px; transform: rotate(45deg); background: var(--cu); border-radius: 1px; flex: none; opacity: 0.85; box-shadow: 0 0 8px var(--cu-glow); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section base ---------- */
.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; border-top: 1px solid var(--line); }
.shead { max-width: 720px; margin: 0 0 clamp(44px, 5vw, 64px); }
.shead .eyebrow { margin-bottom: 22px; }
.shead__title { font-size: clamp(34px, 5.4vw, 64px); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 20px; }
.shead__lede { color: var(--ink-soft); font-size: clamp(16px, 1.4vw, 19px); max-width: 580px; }

/* ---------- Model steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 26px); }
.step {
  position: relative; padding: clamp(30px, 3vw, 42px); border-radius: 18px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.step::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--cu-bright), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); }
.step:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 30px 60px rgba(0,0,0,0.45); }
.step:hover::before { transform: scaleX(1); }
.step__num { font-family: var(--display); font-weight: 700; font-size: clamp(48px, 6vw, 76px); line-height: 1; color: transparent; -webkit-text-stroke: 1.4px var(--cu); display: block; margin-bottom: 18px; transition: color 0.45s var(--ease); }
.step:hover .step__num { color: rgba(200,129,79,0.14); }
.step h3 { font-size: clamp(24px, 2.4vw, 30px); margin-bottom: 14px; }
.step p { color: var(--ink-soft); font-size: 16px; }

/* ---------- Ventures ---------- */
.vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 26px); }
.vcard {
  position: relative; display: flex; flex-direction: column; min-height: 280px;
  padding: clamp(28px, 2.6vw, 36px); border-radius: 18px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line); box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.vcard__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: auto; }
.vcard__go { font-family: var(--display); color: var(--cu-bright); transition: transform 0.35s var(--ease); }
a.vcard:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 30px 60px rgba(0,0,0,0.45); }
a.vcard:hover .vcard__go { transform: translate(4px,-4px); }
.vcard h3 { font-size: clamp(22px, 2.2vw, 28px); margin: 26px 0 12px; }
.vcard p { color: var(--ink-soft); font-size: 15.5px; flex: 1; }
.vcard__url { margin-top: 22px; font-family: var(--display); font-size: 13px; font-weight: 500; color: var(--cu-bright); letter-spacing: 0.01em; }
.vcard--soon { opacity: 0.8; }
.vcard--soon .vcard__url, .vcard--open .vcard__url { color: var(--ink-mute); }
.vcard--open { border-style: dashed; background: transparent; }
a.vcard--open:hover { background: rgba(255,255,255,0.02); }
.badge { font-family: var(--display); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.badge--proving { background: rgba(120,200,140,0.12); color: #8fd6a4; border: 1px solid rgba(120,200,140,0.25); }
.badge--building { background: rgba(232,167,110,0.12); color: var(--cu-bright); border: 1px solid rgba(232,167,110,0.25); }
.badge--open { background: rgba(255,255,255,0.05); color: var(--ink-mute); border: 1px solid var(--line); }

/* ---------- Studio / ethos ---------- */
.studio { border-top: 1px solid var(--line); }
.studio__inner { max-width: 1000px; }
.studio__inner .eyebrow { margin-bottom: 28px; }
.studio__statement { font-size: clamp(28px, 4.4vw, 56px); font-weight: 600; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: clamp(40px, 5vw, 64px); }
.studio__meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
.studio__meta > div { border-top: 1px solid var(--line-2); padding-top: 20px; display: flex; flex-direction: column; gap: 6px; }
.studio__k { font-family: var(--display); font-weight: 600; font-size: 17px; }
.studio__v { color: var(--ink-mute); font-size: 14px; }

/* ---------- Contact CTA ---------- */
.cta { position: relative; overflow: hidden; padding: clamp(96px, 13vw, 180px) clamp(20px, 5vw, 64px); border-top: 1px solid var(--line); text-align: center; }
.cta__glow { position: absolute; width: 700px; height: 700px; top: -260px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, var(--cu-glow), transparent 66%); filter: blur(70px); opacity: 0.7; pointer-events: none; }
.cta__inner { position: relative; max-width: 820px; }
.cta .eyebrow { justify-content: center; margin-bottom: 22px; }
.cta__title { font-size: clamp(40px, 7vw, 84px); font-weight: 700; letter-spacing: -0.035em; margin-bottom: 20px; }
.cta__lede { color: var(--ink-soft); font-size: clamp(16px, 1.5vw, 20px); margin-bottom: 40px; }

/* ---------- Thank-you page ---------- */
.thanks {
  min-height: calc(100vh - 81px);
  min-height: calc(100svh - 81px);
  display: flex; align-items: center; justify-content: center;
  padding-top: clamp(28px, 5vh, 64px);
  padding-bottom: clamp(28px, 5vh, 64px);
}
.thanks__badge {
  width: 88px; height: 88px; margin: 0 auto clamp(24px, 3vw, 32px);
  display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line-2);
  background: radial-gradient(circle at 50% 34%, rgba(232,167,110,0.18), rgba(232,167,110,0.02));
  box-shadow: 0 0 56px rgba(214,132,76,0.30), inset 0 1px 0 rgba(255,255,255,0.06);
}
.thanks__badge svg { width: 40px; height: 40px; display: block; }
.thanks__badge path {
  fill: none; stroke: var(--cu-bright); stroke-width: 2.4;
  stroke-linecap: round; stroke-linejoin: round; stroke-dashoffset: 0;
}
.thanks__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
@media (prefers-reduced-motion: no-preference) {
  .thanks__badge path { stroke-dasharray: 42; stroke-dashoffset: 42; animation: checkdraw 0.7s 0.4s var(--ease) forwards; }
}
@keyframes checkdraw { to { stroke-dashoffset: 0; } }

/* ---------- 404 page ---------- */
.notfound__code {
  font-family: var(--display); font-weight: 700; line-height: 0.85;
  font-size: clamp(64px, 12vw, 132px); letter-spacing: -0.04em;
  background: var(--cu-metal);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-bottom: clamp(8px, 1.6vw, 18px);
  filter: drop-shadow(0 8px 40px var(--cu-glow));
}

/* Slim footer used on utility pages (404 / thanks) */
.footer--min .footer__bar {
  justify-content: center; text-align: center; border-top: none;
  padding-top: clamp(24px, 3vw, 34px); padding-bottom: clamp(24px, 3vw, 34px);
}
.footer--min .footer__copy { margin-right: 0; }

/* ---------- Legal pages (privacy / terms) ---------- */
.legal { padding: clamp(44px, 6vw, 84px) 0 clamp(64px, 8vw, 110px); border-top: 1px solid var(--line); }
.legal__inner { max-width: 800px; }
.legal__head { margin-bottom: clamp(30px, 4vw, 46px); padding-bottom: clamp(22px, 3vw, 32px); border-bottom: 1px solid var(--line); }
.legal__head h1 { font-family: var(--display); font-size: clamp(34px, 5vw, 60px); font-weight: 700; letter-spacing: -0.03em; margin: 14px 0 12px; line-height: 1.04; }
.legal__meta { color: var(--ink-mute); font-size: 14px; }
.legal__lede { color: var(--ink-soft); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.7; margin-bottom: 6px; }
.legal__body h2 { font-family: var(--display); font-size: clamp(19px, 2vw, 24px); font-weight: 600; letter-spacing: -0.01em; color: var(--ink); margin: clamp(34px, 4vw, 46px) 0 12px; }
.legal__body h3 { font-size: 16px; font-weight: 600; color: var(--ink); margin: 22px 0 8px; }
.legal__body p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; margin-bottom: 14px; }
.legal__body ul { margin: 0 0 16px; padding-left: 22px; }
.legal__body li { color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; margin-bottom: 8px; }
.legal__body a { color: var(--cu-bright); text-decoration: underline; text-underline-offset: 2px; }
.legal__body a:hover { color: var(--cu); }
.legal__body strong { color: var(--ink); font-weight: 600; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); overflow: hidden; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding-top: clamp(52px, 6vw, 80px); padding-bottom: clamp(40px, 4vw, 56px); }
.footer__brand { max-width: 360px; }
.footer__brand .brand__name { font-size: 22px; display: block; margin-bottom: 14px; }
.footer__word {
  height: 38px; width: auto; display: block; margin-bottom: 18px;
  filter: brightness(1.2) contrast(1.1) drop-shadow(0 1px 6px rgba(0,0,0,0.5));
}
.footer__brand p { color: var(--ink-soft); font-size: 14px; }
.footer__parent { margin-top: 12px; color: var(--ink-mute); font-size: 13px; }
.footer__parent span { color: var(--cu-bright); }
.footer__col h4 { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; color: var(--ink-mute); margin-bottom: 18px; font-weight: 600; }
.footer__col a { display: block; color: var(--ink-soft); font-size: 14px; padding: 6px 0; transition: color 0.25s var(--ease); }
.footer__col a:hover { color: var(--cu-bright); }
.footer__wordmark {
  font-family: var(--display); font-weight: 700; text-align: center; line-height: 1;
  font-size: clamp(58px, 15vw, 220px); letter-spacing: -0.04em;
  color: transparent; -webkit-text-stroke: 1px rgba(232,167,110,0.24);
  filter: drop-shadow(0 0 24px rgba(214,132,76,0.22));
  padding: clamp(10px, 2vw, 30px) 0 0; user-select: none;
}
.footer__bar { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; padding-top: 22px; padding-bottom: 30px; border-top: 1px solid var(--line); color: var(--ink-mute); font-size: 13px; margin-top: clamp(8px, 1vw, 18px); }
.footer__copy { margin-right: auto; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.step.reveal:nth-child(2), .vcard.reveal:nth-child(2), .duo__card.reveal:nth-child(2), .creed__line.reveal:nth-child(2) { transition-delay: 0.14s; }
.step.reveal:nth-child(3), .vcard.reveal:nth-child(3) { transition-delay: 0.2s; }

/* ---------- The name / duality ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2vw, 28px); margin-bottom: clamp(40px, 5vw, 60px); }
.duo__card {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(30px, 3.4vw, 50px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.duo__card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.duo__card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.duo__card--copper { background: linear-gradient(180deg, rgba(200,123,72,0.12), var(--panel)); }
.duo__card--copper::before { background: linear-gradient(90deg, var(--cu-bright), transparent); }
.duo__card--onyx { background: linear-gradient(180deg, #15120f, #0a0908); }
.duo__card--onyx::before { background: linear-gradient(90deg, rgba(214,132,76,0.45), transparent); }
.duo__label { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3.2vw, 38px); letter-spacing: -0.02em; }
.duo__card--copper .duo__label { color: var(--cu-bright); }
.duo__card--onyx .duo__label { color: #ded8d0; }
.duo__traits { text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; font-weight: 600; color: var(--ink-mute); margin: 12px 0 24px; }
.duo__card h3 { font-size: clamp(20px, 2vw, 27px); margin-bottom: 12px; font-weight: 600; }
.duo__card > p { color: var(--ink-soft); font-size: 16px; }
.duo__rule { margin-top: 24px; font-family: var(--display); font-weight: 600; font-size: clamp(16px, 1.5vw, 19px); }
.duo__card--copper .duo__rule { color: var(--cu-bright); }
.duo__card--onyx .duo__rule { color: #ded8d0; }
.duality__close { max-width: 840px; font-family: var(--display); font-weight: 500; font-size: clamp(22px, 3vw, 34px); line-height: 1.3; letter-spacing: -0.01em; color: var(--ink); }

/* ---------- Model material tags ---------- */
.step__mat {
  display: inline-block; font-family: var(--display); text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 10.5px; font-weight: 600; padding: 5px 12px;
  border-radius: 999px; margin-bottom: 18px;
}
.step__mat--copper { color: var(--cu-bright); background: rgba(232,167,110,0.1); border: 1px solid var(--line-2); }
.step__mat--onyx { color: #ded8d0; background: rgba(220,210,200,0.06); border: 1px solid rgba(220,210,200,0.2); }
.step__mat--both { color: var(--cu-bright); background: linear-gradient(90deg, rgba(232,167,110,0.12), rgba(220,210,200,0.06)); border: 1px solid rgba(232,167,110,0.22); }

/* ---------- Creed (pull-quote) ---------- */
.creed { position: relative; overflow: hidden; padding: clamp(84px, 13vw, 180px) clamp(20px, 5vw, 64px); border-top: 1px solid var(--line); text-align: center; }
.creed__glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(58% 80% at 50% 50%, rgba(214,132,76,0.13), transparent 70%); }
.creed .wrap { position: relative; }
.creed__line { font-family: var(--display); font-weight: 600; font-size: clamp(22px, 5.5vw, 76px); line-height: 1.08; letter-spacing: -0.03em; white-space: nowrap; }
.creed__line + .creed__line { margin-top: 6px; }
/* very narrow phones: let it wrap rather than overflow the clipped band */
@media (max-width: 400px) { .creed__line { white-space: normal; font-size: 7.2vw; } }
/* "Onyx" — polished black-stone gradient (lit top edge for legibility on the dark bg) */
.on {
  background: linear-gradient(170deg, #c2c2ca 0%, #6c6c74 38%, #3a3a42 70%, #1e1e24 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Preloader (intro reveal) ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 300; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.preloader::before {
  content: ""; position: absolute; width: min(620px, 86vw); height: min(620px, 86vw);
  border-radius: 50%; background: radial-gradient(circle, rgba(214,132,76,0.13), transparent 62%);
  filter: blur(24px); pointer-events: none;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__stage { position: relative; display: flex; flex-direction: column; align-items: center; gap: clamp(22px, 3.4vw, 32px); }
.preloader__mark {
  position: relative; width: clamp(150px, 16vw, 188px); height: clamp(150px, 16vw, 188px);
  display: grid; place-items: center;
  opacity: 0; transform: scale(0.84); animation: preIn 0.9s var(--ease) forwards;
}
.preloader__mark::before {
  content: ""; position: absolute; inset: -32%; border-radius: 50%;
  background: radial-gradient(circle, var(--cu-glow), transparent 64%);
  filter: blur(9px); animation: preGlow 2.6s ease-in-out infinite;
}
.preloader__mark img {
  position: relative; width: 100%; display: block;
  filter: drop-shadow(0 0 26px var(--cu-glow)) brightness(1.1) contrast(1.04);
  animation: preSpin 7s linear infinite;
}
.preloader__word {
  width: clamp(158px, 38vw, 212px); opacity: 0;
  filter: brightness(1.2) contrast(1.1) drop-shadow(0 1px 5px rgba(0,0,0,0.5));
  animation: preWord 0.8s var(--ease) 0.5s forwards;
}
@keyframes preIn { to { opacity: 1; transform: scale(1); } }
@keyframes preSpin { to { transform: rotate(360deg); } }
@keyframes preGlow { 0%, 100% { opacity: 0.5; transform: scale(0.95); } 50% { opacity: 0.95; transform: scale(1.07); } }
@keyframes preWord { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Custom cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 200; pointer-events: none; opacity: 0; transition: opacity 0.3s var(--ease); }
.cursor.is-active { opacity: 1; }
.cursor__dot, .cursor__logo { position: absolute; top: 0; left: 0; will-change: transform; }
.cursor__dot { width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px; border-radius: 50%; background: var(--cu-bright); }
.cursor__logo {
  width: 24px; height: 24px; margin: -12px 0 0 -12px;
  transition: transform 0.18s ease-out, width 0.25s var(--ease), height 0.25s var(--ease), margin 0.25s var(--ease), opacity 0.25s;
}
.cursor__logo img {
  width: 100%; height: 100%; display: block;
  filter: brightness(1.12) contrast(1.04) drop-shadow(0 0 7px var(--cu-glow));
  animation: cursorspin 8s linear infinite;
}
.cursor.is-hover .cursor__logo { width: 38px; height: 38px; margin: -19px 0 0 -19px; }
@keyframes cursorspin { to { transform: rotate(360deg); } }
html.has-cursor, html.has-cursor a, html.has-cursor button { cursor: none; }
html.has-cursor input, html.has-cursor textarea { cursor: text; }

/* ---------- Mobile menu ---------- */
.nav__burger {
  display: none; width: 44px; height: 44px; flex: none; position: relative;
  border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,0.02); cursor: pointer;
}
.nav__burger span { position: absolute; left: 12px; right: 12px; height: 1.6px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav__burger span:nth-child(1) { top: 18px; }
.nav__burger span:nth-child(2) { bottom: 18px; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { transform: translateY(-6px) rotate(-45deg); }
.menu {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(8,7,10,0.97); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
body.menu-open .menu { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; } /* lock page scroll behind the open mobile menu */
.menu__links { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.menu__links a { font-family: var(--display); font-size: clamp(30px, 9vw, 46px); font-weight: 600; color: var(--ink); letter-spacing: -0.02em; padding: 10px 0; transition: color 0.25s var(--ease); }
.menu__links a:hover { color: var(--cu-bright); }
.menu__cta { color: var(--cu-bright) !important; font-size: 17px !important; letter-spacing: 0.04em; margin-top: 22px; }

/* ---------- Contact form ---------- */
.cform { max-width: 560px; margin: 0 auto; text-align: left; }
.cform__hp { position: absolute; left: -9999px; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.cform input, .cform textarea {
  width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 12px;
  padding: 15px 18px; color: var(--ink); font-family: var(--body); font-size: 15px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.cform input::placeholder, .cform textarea::placeholder { color: var(--ink-mute); }
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--line-2); background: rgba(232,167,110,0.04); }
.cform textarea { margin-bottom: 18px; resize: vertical; min-height: 120px; }
.cform .btn { width: 100%; justify-content: center; }
.cta__alt { margin-top: 20px; font-size: 14px; color: var(--ink-mute); }
.cta__alt a { color: var(--cu-bright); }
/* Inline signup (email + button side by side) */
.cform--inline { display: flex; gap: 12px; align-items: stretch; max-width: 540px; }
.cform--inline input { margin-bottom: 0; }
.cform--inline .btn { width: auto; flex: none; white-space: nowrap; }
@media (max-width: 560px) {
  .cform--inline { flex-direction: column; }
  .cform--inline .btn { width: 100%; }
}

/* ---------- MailerLite signup, restyled to match (overrides their markup) ---------- */
#mlb2-42317284.ml-form-embedContainer { width: 100% !important; box-sizing: border-box; }
#mlb2-42317284 .ml-form-embedWrapper { max-width: 540px; margin: 0 auto; background: none; border: 0; display: block; }
#mlb2-42317284 .ml-form-embedBody { padding: 0; }
#mlb2-42317284 .ml-form-embedContent { display: none; }
#mlb2-42317284 form.ml-block-form { margin: 0; width: 100%; }
#mlb2-42317284 .ml-form-formContent,
#mlb2-42317284 .ml-input-horizontal,
#mlb2-42317284 .horizontal-fields,
#mlb2-42317284 .ml-field-group { float: none !important; width: auto; margin: 0; }
#mlb2-42317284 .ml-form-horizontalRow { display: flex; gap: 12px; align-items: stretch; }
#mlb2-42317284 .ml-input-horizontal { flex: 1 1 auto; min-width: 0; }
#mlb2-42317284 .horizontal-fields, #mlb2-42317284 .ml-field-group { width: 100%; }
#mlb2-42317284 input[type="email"] {
  width: 100%; box-sizing: border-box;
  background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 12px;
  padding: 15px 18px; color: var(--ink); font-family: var(--body); font-size: 15px;
}
#mlb2-42317284 input[type="email"]::placeholder { color: var(--ink-mute); }
#mlb2-42317284 input[type="email"]:focus { outline: none; border-color: var(--line-2); background: rgba(232,167,110,0.04); }
#mlb2-42317284 .ml-button-horizontal { flex: none; }
#mlb2-42317284 .ml-button-horizontal button { white-space: nowrap; }
#mlb2-42317284 .ml-mobileButton-horizontal { display: none !important; }
#mlb2-42317284 .ml-form-embedSubmitLoad { display: inline-block; width: 18px; height: 18px; }
#mlb2-42317284 .ml-form-embedSubmitLoad::after {
  content: " "; display: block; width: 11px; height: 11px; margin: 1px; border-radius: 50%;
  border: 3px solid; border-color: currentColor currentColor currentColor transparent;
  animation: mlspin 1s linear infinite;
}
@keyframes mlspin { to { transform: rotate(360deg); } }
#mlb2-42317284 .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
#mlb2-42317284 .ml-form-successContent { text-align: center; }
#mlb2-42317284 .ml-form-successContent p { color: var(--cu-bright); font-size: 15px; margin: 0; }
#mlb2-42317284 .ml-error input { border-color: #c0563a !important; }
@media (max-width: 560px) {
  #mlb2-42317284 .ml-form-horizontalRow { flex-direction: column; }
  #mlb2-42317284 .ml-button-horizontal button { width: 100%; }
}

/* Footer legal */
.footer__legal { display: inline-flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.footer__legal a { color: var(--ink-mute); transition: color 0.25s var(--ease); }
.footer__legal a:hover { color: var(--cu-bright); }

/* ---------- Responsive ---------- */
/* Wide-but-SHORT screens (laptops): the width-scaled headline gets too tall for the
   viewport, pushing the CTAs below the fold. Scale the hero down on short heights only,
   so taller monitors keep the big headline. */
@media (min-width: 961px) and (max-height: 860px) {
  .hero { padding-top: clamp(14px, 2.2vh, 36px); }
  .hero__inner { min-height: 0; }
  .hero .eyebrow { margin-bottom: 12px; }
  .hero__title { font-size: clamp(40px, 5.4vw, 74px); margin-bottom: 14px; }
  .hero__sub { margin-bottom: 20px; }
}

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; min-height: 0; }
  .hero__visual { order: -1; margin-bottom: 8px; }
  .gem-stage { width: min(320px, 70%); }
  /* Tablet: use 2-up card layouts instead of a stretched single column.
     (steps stays 1-col — it's a sequential process; duo + studio__meta keep their
     natural side-by-side until mobile.) */
  .steps, .footer__top { grid-template-columns: 1fr; }
  .vgrid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  /* Center the footer from tablet down (brand, the Explore/Connect columns, and the bottom bar) */
  .footer__brand { grid-column: 1 / -1; max-width: none; text-align: center; }
  .footer__word { margin-left: auto; margin-right: auto; }
  .footer__col { text-align: center; }
  .footer__bar { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .footer__copy { margin-right: 0; }
}
@media (max-width: 800px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
}
@media (max-width: 620px) {
  .brand__mark { width: 33px; height: 33px; }
  .brand__word { height: 24px; }
  .cform__row { grid-template-columns: 1fr; }
  /* Mobile: collapse the tablet 2-up/3-up card grids to a single column */
  .vgrid, .duo, .studio__meta { grid-template-columns: 1fr; }
  /* Mobile footer: brand on top (full width), Explore + Connect side by side, all centered */
  .footer__col { text-align: center; }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
    padding-top: clamp(44px, 9vw, 60px);
    padding-bottom: clamp(34px, 7vw, 48px);
  }
  .footer__brand { grid-column: 1 / -1; max-width: none; text-align: center; }
  .footer__word { margin-left: auto; margin-right: auto; }
  .footer__brand p { font-size: 14.5px; }
  .footer__col h4 { margin-bottom: 12px; }
  .footer__col a { font-size: 13px; padding: 7px 0; overflow-wrap: anywhere; }
  .footer__wordmark { font-size: 15vw; padding-top: 4px; }
  /* Stack the bottom bar centered: copyright, then Privacy/Terms, then the tagline */
  .footer__bar { flex-direction: column; align-items: center; text-align: center; gap: 12px; padding-bottom: 36px; }
  .footer__copy { margin-right: 0; }
}
@media (pointer: coarse) {
  .cursor { display: none; }
}

@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; }
  .hero__title .ln > span { transform: none; }
  .reveal { opacity: 1; transform: none; }
}
