/* ==========================================================================
   NaKaayyy Industries — styles
   Palette: pure black, charcoal, gold, off-white
   ========================================================================== */

:root {
  --black: #050505;
  --charcoal: #101012;
  --charcoal-2: #17171a;
  --gold: #d4af37;
  --gold-soft: #c9a227;
  --gold-dim: rgba(212, 175, 55, 0.35);
  --ivory: #f5f2ea;
  --ivory-dim: rgba(245, 242, 234, 0.62);
  --ivory-faint: rgba(245, 242, 234, 0.38);
  --hairline: rgba(245, 242, 234, 0.10);
  --glass: rgba(255, 255, 255, 0.03);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ease-lux: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold-dim); color: var(--ivory); }

img, svg, canvas { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ==========================================================================
   Preloader
   ========================================================================== */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--black);
  display: grid;
  place-items: center;
  transition: opacity 1.4s var(--ease-lux), visibility 1.4s;
}

.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader__mark { text-align: center; }

.preloader__n {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 300;
  color: var(--gold);
  display: block;
  opacity: 0;
  animation: pre-fade 1.6s var(--ease-lux) 0.2s forwards;
}

.preloader__line {
  display: block;
  width: 0;
  height: 1px;
  margin: 1.2rem auto;
  background: var(--gold-dim);
  animation: pre-line 1.4s var(--ease-lux) 0.8s forwards;
}

.preloader__word {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  opacity: 0;
  animation: pre-fade 1.2s var(--ease-lux) 1.2s forwards;
}

@keyframes pre-fade { to { opacity: 1; } }
@keyframes pre-line { to { width: 120px; } }

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem clamp(1.5rem, 5vw, 4rem);
  background: rgba(5, 5, 5, 0.55);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.8s, background 0.8s, transform 0.6s var(--ease-lux);
}

.nav.is-scrolled { border-bottom-color: var(--hairline); background: rgba(5, 5, 5, 0.78); }
.nav.is-hidden { transform: translateY(-100%); }

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
}

/* Easter egg #1 — the N breathes gold on hover */
.nav__n {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1;
  display: inline-block;
  transition: color 1.1s var(--ease-lux), transform 1.1s var(--ease-lux),
              text-shadow 1.1s var(--ease-lux);
}

.nav__logo:hover .nav__n {
  color: var(--gold);
  transform: rotate(-6deg) scale(1.08);
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.45);
}

.nav__wordmark {
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.nav__links {
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.6rem);
}

.nav__links a,
.nav__cta {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.6s;
}

.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.7s var(--ease-lux);
}

.nav__links a:hover { color: var(--ivory); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  border: 1px solid var(--hairline);
  padding: 0.65rem 1.3rem;
  transition: border-color 0.7s, color 0.7s, background 0.7s;
}

.nav__cta:hover { border-color: var(--gold-dim); color: var(--gold); background: rgba(212,175,55,0.04); }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__wordmark { display: none; }
}

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

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: 1px solid var(--gold-dim);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
  transition: color 0.8s var(--ease-lux), border-color 0.8s, box-shadow 0.8s;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(212,175,55,0.18) 50%, transparent 65%);
  transform: translateX(-110%);
  transition: transform 1.1s var(--ease-lux);
}

.btn:hover::before { transform: translateX(110%); }
.btn:hover { border-color: var(--gold); box-shadow: 0 0 32px rgba(212,175,55,0.10); }

.btn--solid {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 500;
}

.btn--solid:hover { box-shadow: 0 0 42px rgba(212,175,55,0.28); }

.btn--ghost { background: transparent; }

/* ==========================================================================
   Sections — shared editorial scaffolding
   ========================================================================== */

.section {
  padding: clamp(6rem, 12vw, 11rem) clamp(1.5rem, 7vw, 9rem);
  max-width: 1500px;
  margin: 0 auto;
}

.section__head {
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 1.6rem;
  flex-wrap: wrap;
}

.section__index {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}

.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: 0.01em;
}

.section__note {
  flex-basis: 100%;
  color: var(--ivory-faint);
  font-size: 0.9rem;
  max-width: 46ch;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 50% 115%, rgba(212,175,55,0.07), transparent 60%),
    radial-gradient(ellipse 60% 45% at 50% -10%, rgba(245,242,234,0.035), transparent 65%),
    var(--black);
}

.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  left: 50%;
  bottom: -30vh;
  width: 90vw;
  height: 60vh;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.10), transparent 65%);
  filter: blur(40px);
  animation: glow-breathe 12s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.65; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;    transform: translateX(-50%) scale(1.08); }
}

.hero__inner {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  max-width: 1100px;
}

.hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.4rem;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 7.2vw, 6.2rem);
  line-height: 1.12;
  letter-spacing: 0.005em;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

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

.hero__sub {
  margin: 2.6rem auto 0;
  max-width: 58ch;
  color: var(--ivory-dim);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 2;
}

.hero__actions {
  margin-top: 3.4rem;
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scrollcue {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 64px;
  background: var(--hairline);
  overflow: hidden;
}

.hero__scrollcue span {
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--gold);
  animation: cue-drop 2.8s var(--ease-lux) infinite;
}

@keyframes cue-drop {
  0%   { top: -40%; }
  60%, 100% { top: 110%; }
}

/* ==========================================================================
   Statement / Quotes
   ========================================================================== */

.statement,
.quote {
  padding: clamp(7rem, 14vw, 13rem) clamp(1.5rem, 8vw, 10rem);
  text-align: center;
  background: var(--black);
}

.statement__text,
.quote__text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 4.4vw, 3.6rem);
  line-height: 1.35;
  max-width: 24ch;
  margin: 0 auto;
  color: var(--ivory);
}

.statement__text em { font-style: italic; color: var(--gold); }

.quote__text { quotes: none; color: var(--ivory-dim); }
.quote__text--small { font-size: clamp(1.2rem, 2.6vw, 2rem); margin-top: 3rem; color: var(--ivory-faint); }
.quote--stack { padding-top: clamp(5rem, 9vw, 8rem); }

/* ==========================================================================
   About
   ========================================================================== */

.about { background: var(--black); }

.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.about__large {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.45;
  color: var(--ivory);
}

.about__body p { color: var(--ivory-dim); margin-bottom: 1.6rem; }

.about__pillars {
  list-style: none;
  margin-top: 2.4rem;
  border-top: 1px solid var(--hairline);
}

.about__pillars li {
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--ivory-faint);
  font-size: 0.92rem;
}

.about__pillars span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-right: 0.6rem;
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Timeline
   ========================================================================== */

.timeline { position: relative; }

.timeline__track {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 3rem;
}

.timeline__spine {
  position: absolute;
  pointer-events: none;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim) 8%, var(--gold-dim) 92%, transparent);
  transform-origin: top;
}

.timeline__item {
  position: relative;
  padding: 2.6rem 0;
}

.timeline__marker {
  position: absolute;
  left: -3rem;
  top: 3.35rem;
  width: 9px;
  height: 9px;
  margin-left: 0.5px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--black);
  border: 1px solid var(--gold);
  transition: background 0.8s, box-shadow 0.8s;
}

.timeline__item:hover .timeline__marker {
  background: var(--gold);
  box-shadow: 0 0 18px rgba(212,175,55,0.5);
}

.timeline__item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: 0.7rem;
}

.timeline__item p {
  color: var(--ivory-dim);
  max-width: 52ch;
  font-size: 0.95rem;
}

.timeline__item--future h3 { color: var(--gold); font-style: italic; }

/* ==========================================================================
   Portfolio
   ========================================================================== */

.portfolio { background: var(--black); }

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
}

.card {
  position: relative;
  padding: 2.8rem 2.4rem 2.4rem;
  background: linear-gradient(160deg, var(--charcoal-2), var(--charcoal) 60%);
  border: 1px solid var(--hairline);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: border-color 0.9s var(--ease-lux), transform 0.9s var(--ease-lux),
              box-shadow 0.9s var(--ease-lux);
  will-change: transform;
}

.card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.9), 0 0 0 1px rgba(212,175,55,0.08) inset;
}

/* glass sheen sweep */
.card__sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(245,242,234,0.05) 48%, rgba(212,175,55,0.07) 52%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 1.4s var(--ease-lux);
  pointer-events: none;
}

.card:hover .card__sheen { transform: translateX(120%); }

.card__index {
  font-family: var(--serif);
  color: var(--gold-dim);
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  margin-bottom: 1.6rem;
}

.card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.card__desc {
  color: var(--ivory-dim);
  font-size: 0.92rem;
  flex-grow: 1;
}

.card__link {
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: gap 0.6s var(--ease-lux), letter-spacing 0.6s var(--ease-lux);
}

.card:hover .card__link { gap: 1.1rem; }

.card__link--muted { color: var(--ivory-faint); }

/* ==========================================================================
   Global Vision
   ========================================================================== */

.vision__lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  line-height: 1.5;
  max-width: 40ch;
  color: var(--ivory);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.vision__map {
  border: 1px solid var(--hairline);
  background:
    radial-gradient(ellipse 70% 90% at 50% 50%, rgba(212,175,55,0.035), transparent 70%),
    var(--charcoal);
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.map { width: 100%; height: auto; }

.map__node text {
  fill: var(--ivory-dim);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.map__node circle:first-child { animation: node-pulse 5s ease-in-out infinite; transform-origin: center; }

@keyframes node-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.map__arc {
  stroke-dasharray: 6 8;
  animation: arc-flow 9s linear infinite;
}

@keyframes arc-flow { to { stroke-dashoffset: -140; } }

.vision__note {
  margin-top: 1.8rem;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--ivory-faint);
}

/* ==========================================================================
   Founder
   ========================================================================== */

.founder { background: var(--black); }

.founder__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.4fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.founder__portrait { position: sticky; top: 8rem; }

.founder__frame {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--gold-dim);
  background:
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(212,175,55,0.08), transparent 65%),
    linear-gradient(160deg, var(--charcoal-2), var(--charcoal));
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.founder__frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--hairline);
  pointer-events: none;
}

.founder__monogram {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.85;
}

.founder__caption {
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.5;
}

.founder__caption span {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.founder__opening {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.5;
  margin-bottom: 2.4rem;
  color: var(--ivory);
}

.founder__story > p:not(.founder__opening) {
  color: var(--ivory-dim);
  margin-bottom: 1.8rem;
  max-width: 62ch;
}

.founder__story strong { color: var(--ivory); font-weight: 500; }

.founder__quote {
  margin-top: 3.5rem;
  padding: 2.8rem 0 0;
  border-top: 1px solid var(--gold-dim);
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.5;
  color: var(--gold);
}

.founder__quote cite {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

@media (max-width: 900px) {
  .founder__grid { grid-template-columns: 1fr; }
  .founder__portrait { position: static; max-width: 340px; }
}

/* ==========================================================================
   Philosophy
   ========================================================================== */

.philosophy__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.tenet {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: background 1s var(--ease-lux);
}

.tenet:hover { background: rgba(212, 175, 55, 0.025); }

.tenet__num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 1.4rem;
}

.tenet h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
}

.tenet p { color: var(--ivory-dim); font-size: 0.92rem; max-width: 40ch; }

/* ==========================================================================
   Closing
   ========================================================================== */

.closing {
  text-align: center;
  padding: clamp(8rem, 16vw, 15rem) 1.5rem;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(212,175,55,0.06), transparent 65%),
    var(--black);
}

.closing__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.closing__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 5rem);
  margin-bottom: 3.4rem;
}

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

.footer {
  position: relative;
  border-top: 1px solid var(--hairline);
  background: var(--charcoal);
  overflow: hidden;
}

.footer__constellation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 3s var(--ease-lux);
  z-index: 1;
  pointer-events: none;
}

.footer__constellation.is-visible { opacity: 1; }

.footer__inner {
  position: relative;
  z-index: 10;
  max-width: 1500px;
  margin: 0 auto;
  padding: 4.5rem clamp(1.5rem, 7vw, 9rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.footer__brand { display: flex; align-items: center; gap: 1.2rem; }

.footer__n {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.footer__brand p { font-size: 0.85rem; line-height: 1.6; }
.footer__brand span { color: var(--ivory-faint); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; }

.footer__nav { display: flex; gap: 1.8rem; flex-wrap: wrap; }

.footer__nav a {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  transition: color 0.6s;
}

.footer__nav a:hover { color: var(--gold); }

.footer__legal {
  flex-basis: 100%;
  padding-top: 2.4rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--ivory-faint);
}

/* ==========================================================================
   Easter egg — timeline sketch overlay
   ========================================================================== */

.sketch {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5,5,5,0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.9s var(--ease-lux);
}

.sketch[hidden] { display: none; }

.sketch.is-open { opacity: 1; }

.sketch__paper {
  max-width: 560px;
  width: 100%;
  border: 1px solid var(--gold-dim);
  background: linear-gradient(165deg, var(--charcoal-2), var(--charcoal));
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
}

.sketch__title {
  font-size: 0.68rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.4rem;
}

.sketch__path {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 2.3;
  color: var(--ivory-dim);
}

.sketch__path span { display: block; color: var(--gold-dim); line-height: 1.4; }
.sketch__path em { color: var(--gold); }

.sketch__sig {
  margin-top: 2.4rem;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory-faint);
}

.sketch__close {
  position: absolute;
  top: 1.6rem;
  right: 2.2rem;
  background: none;
  border: none;
  color: var(--ivory-dim);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.5s, transform 0.5s;
}

.sketch__close:hover { color: var(--gold); transform: rotate(90deg); }

/* ==========================================================================
   Reveal defaults (JS enhances; content visible without JS)
   ========================================================================== */

.js .reveal-lines,
.js .split-reveal,
.js .section__title,
.js .about__large,
.js .about__body,
.js .timeline__item,
.js .card,
.js .tenet,
.js .vision__lead,
.js .vision__map,
.js .founder__portrait,
.js .founder__story > * {
  opacity: 0;
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal-lines, .js .split-reveal, .js .section__title, .js .about__large,
  .js .about__body, .js .timeline__item, .js .card, .js .tenet, .js .vision__lead,
  .js .vision__map, .js .founder__portrait, .js .founder__story > * { opacity: 1; }
}
