/* =====================================================================
   NEONIS — Brand intelligence & strategic consulting
   Design system: deep navy void, warm cream ink, single gold accent.
   Signature motif: converging signal-lines → one directed beam.
   ===================================================================== */

:root {
  /* Colour */
  --bg:          #070A11;   /* ink void — deep navy-black */
  --bg-2:        #0A0E18;   /* raised band */
  --surface:     #0E1422;   /* cards */
  --surface-2:   #121A2B;   /* card hover */
  --ink:         #ECEAE1;   /* warm cream — primary text */
  --ink-soft:    #BFC5D2;   /* body copy */
  --muted:       #828B9E;   /* secondary / labels */
  --line:        rgba(236, 234, 225, 0.10);
  --line-strong: rgba(236, 234, 225, 0.18);
  --accent:      #E9A63E;   /* gold */
  --accent-soft: #F2C57E;
  --accent-deep: #B97E22;
  --on-accent:   #120D04;   /* text on gold */

  /* Type */
  --font-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif:   "Fraunces", Georgia, "Times New Roman", serif;

  /* Rhythm */
  --container: 1200px;
  --pad-x: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(5.5rem, 11vw, 9.5rem);
  --radius: 16px;
  --radius-sm: 12px;

  --ease: cubic-bezier(0.22, 0.7, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
::selection { background: rgba(233, 166, 62, 0.28); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: var(--on-accent);
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section { padding-block: var(--section-y); position: relative; }

.section__head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 1.05rem + 2.9vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-top: 1.4rem;
  max-width: 20ch;
  text-wrap: balance;
}

.section__intro {
  margin-top: 1.4rem;
  font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.2rem);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 56ch;
}

p { color: var(--ink-soft); }

em { font-style: normal; }                 /* reset; accent applied explicitly */
.problem__close em,
.who__pull em,
.hero__title-accent { font-family: inherit; }

/* serif-italic accent (drawn from the brand sheet) */
.problem__close em,
.who__pull em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.55rem;
  border-radius: 100px;
  border: 1px solid transparent;
  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), color 0.3s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }

.btn--primary {
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  color: var(--on-accent);
  box-shadow: 0 8px 26px -12px rgba(233, 166, 62, 0.65);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -12px rgba(233, 166, 62, 0.8);
}

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.32s; }

/* ===================================================================
   NAV
   =================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7, 10, 17, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 76px;
}
.nav__brand { display: inline-flex; align-items: center; margin-right: auto; }
.nav__brand img { height: 30px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  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 { padding: 0.65rem 1.3rem; font-size: 0.9rem; }

/* mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0 10px;
}
.nav__toggle span {
  height: 1.6px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.5rem var(--pad-x) 1.6rem;
  background: rgba(7, 10, 17, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__mobile a {
  padding: 0.9rem 0.2rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.nav__mobile a:last-child {
  border: 0;
  margin-top: 0.8rem;
  align-self: flex-start;
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  overflow: hidden;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 78% 42%, rgba(233, 166, 62, 0.07), transparent 55%),
    linear-gradient(180deg, rgba(7, 10, 17, 0.2) 0%, rgba(7, 10, 17, 0) 30%, rgba(7, 10, 17, 0.55) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(3rem, 8vh, 6rem);
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.6rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 1.1rem + 5.6vw, 5.3rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  max-width: 16ch;
  text-wrap: balance;
}
.hero__title-accent { color: var(--accent); }
.hero__sub {
  margin-top: 1.8rem;
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.3rem);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 52ch;
}
.hero__actions {
  margin-top: 2.6rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.hero__textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--ink);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.hero__textlink svg { transition: transform 0.3s var(--ease); color: var(--accent); }
.hero__textlink:hover { color: var(--accent); }
.hero__textlink:hover svg { transform: translateX(4px); }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  width: 22px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.hero__scroll span {
  width: 2px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(-4px); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 0; }
}

/* ===================================================================
   THE PROBLEM
   =================================================================== */
.problem { background: var(--bg-2); border-block: 1px solid var(--line); }
.problem__inner { max-width: 880px; }
.problem__body {
  margin-top: 2.2rem;
  display: grid;
  gap: 1.5rem;
}
.problem__body p {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  line-height: 1.78;
}
.problem__close {
  margin-top: 2.8rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ===================================================================
   WHAT WE DO — pillars
   =================================================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.pillar {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 2rem 2.6rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.pillar::before {                 /* top accent line that draws in on hover */
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--accent), transparent 70%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.pillar:hover {
  transform: translateY(-6px);
  background: var(--surface-2);
  border-color: var(--line-strong);
}
.pillar:hover::before { transform: scaleX(1); }

.pillar__index {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
.pillar__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.32rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1rem;
  text-wrap: balance;
}
.pillar__body {
  font-size: 0.99rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.pillar__body + .pillar__body { margin-top: 0.85rem; }
.pillar__badge {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(233, 166, 62, 0.4);
  border-radius: 100px;
  padding: 0.35rem 0.7rem;
}
.pillar--feature {
  background: linear-gradient(165deg, rgba(233, 166, 62, 0.08), rgba(14, 20, 34, 0.4) 45%);
  border-color: rgba(233, 166, 62, 0.22);
}

/* ===================================================================
   WHO WE WORK WITH
   =================================================================== */
.who__inner { max-width: 920px; }
.who__title { max-width: 24ch; }
.who__body {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 3rem;
}
.who__body p { font-size: 1.05rem; line-height: 1.78; }
.who__pull {
  margin-top: 2.8rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 1rem + 1.7vw, 2.25rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 22ch;
}

/* ===================================================================
   ABOUT
   =================================================================== */
.about { background: var(--bg-2); border-block: 1px solid var(--line); }
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.about__media { position: sticky; top: 110px; }
.about__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
  aspect-ratio: 896 / 1010;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.03) saturate(0.92);
}
.about__photo::after {           /* navy gradient to seat the name card */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 17, 0) 45%, rgba(7, 10, 17, 0.85) 100%);
}
.about__namecard {
  position: absolute;
  left: 1.5rem;
  bottom: 1.4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.about__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
}
.about__role {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.about__body { margin-top: 1.6rem; display: grid; gap: 1.3rem; }
.about__body p { font-size: 1.04rem; line-height: 1.78; }
.about__heading {
  max-width: 30ch;
  font-size: clamp(1.7rem, 1.05rem + 2.1vw, 2.6rem);
}
.about__q {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
}
.about__kicker {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--ink);
  padding-left: 1.3rem;
  border-left: 2px solid var(--accent);
}
.about__close {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 1rem + 1.1vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.about__close-accent { display: block; color: var(--accent); }
.about__track {
  list-style: none;
  padding: 0;
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.about__track li { display: flex; flex-direction: column; gap: 0.35rem; }
.about__metric {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--accent);
}
@media (min-width: 561px) {
  .about__metric { min-height: 2.5em; }   /* align sub-text across columns */
}
.about__label { font-size: 0.84rem; line-height: 1.45; color: var(--muted); }

/* ===================================================================
   THINKING
   =================================================================== */
.articles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.article {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  min-height: 230px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.article:hover {
  transform: translateY(-6px);
  background: var(--surface-2);
  border-color: var(--line-strong);
}
.article__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.article__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(233, 166, 62, 0.32);
  border-radius: 100px;
  padding: 0.35rem 0.75rem;
}
.article__time { font-size: 0.82rem; color: var(--muted); }
.article__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: auto;
  text-wrap: balance;
}
.article__read {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent);
}
.article__read svg { transition: transform 0.3s var(--ease); }
.article:hover .article__read svg { transform: translateX(4px); }

/* coming-soon (non-interactive) cards */
.article--soon { cursor: default; }
.article--soon:hover {
  transform: none;
  background: var(--surface);
  border-color: var(--line);
}
.article__read--soon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.article__read--soon::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(233, 166, 62, 0.18);
}

/* ===================================================================
   CONTACT
   =================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact__intro p {
  margin-top: 1.4rem;
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 46ch;
}
.contact__email {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.25s var(--ease), gap 0.25s var(--ease);
}
.contact__email svg { color: var(--accent); flex-shrink: 0; }
.contact__email:hover { color: var(--accent); gap: 0.8rem; }

.contact__loc {
  margin-top: 1rem !important;
  font-size: 0.92rem !important;
  color: var(--muted) !important;
  letter-spacing: 0.02em;
}

.contact__form { display: grid; gap: 1.1rem; }
.field-hp { display: none; }   /* Netlify honeypot — hidden from humans */
.field { position: relative; }
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.1rem 0.6rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  resize: vertical;
}
.field textarea { min-height: 130px; padding-top: 1.6rem; }
.field label {
  position: absolute;
  left: 1.1rem;
  top: 1.1rem;
  color: var(--muted);
  pointer-events: none;
  transition: transform 0.25s var(--ease), font-size 0.25s var(--ease), color 0.25s var(--ease);
  transform-origin: left top;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px rgba(233, 166, 62, 0.14);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-0.65rem) scale(0.72);
  color: var(--accent);
  letter-spacing: 0.04em;
}
.contact__submit { margin-top: 0.4rem; justify-self: start; min-width: 160px; }
.contact__status {
  font-size: 0.92rem;
  min-height: 1.2em;
  color: var(--muted);
}
.contact__status.is-error { color: #E98A8A; }
.contact__status.is-ok { color: var(--accent); }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  background: var(--bg);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}
.footer__brand img { height: 30px; width: auto; }
.footer__tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
}
.footer__meta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer__link { transition: color 0.25s var(--ease); }
.footer__link:hover { color: var(--accent); }
.footer__sep { opacity: 0.5; }
@media (max-width: 480px) { .footer__sep { display: none; } }

/* ===================================================================
   LEGAL PAGE (privacy)
   =================================================================== */
.legal-hero {
  padding-top: calc(76px + clamp(3rem, 7vw, 6rem));
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.legal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.4rem + 3vw, 3.4rem);
  letter-spacing: -0.03em;
  margin-top: 1.2rem;
  color: var(--ink);
}
.legal-updated {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.legal { padding-block: clamp(3rem, 7vw, 5.5rem); }
.legal__inner { max-width: 760px; }
.legal__inner h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 2.6rem;
  margin-bottom: 0.9rem;
}
.legal__inner h2:first-of-type { margin-top: 0; }
.legal__inner p,
.legal__inner li {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.legal__inner p { margin-bottom: 1.1rem; }
.legal__inner ul { margin: 0 0 1.1rem; padding-left: 1.3rem; }
.legal__inner li { margin-bottom: 0.5rem; }
.legal__inner a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal__inner a:hover { color: var(--accent-soft); }
.legal__inner strong { color: var(--ink); font-weight: 600; }
.legal-lead {
  font-size: 1.12rem !important;
  color: var(--ink) !important;
  margin-bottom: 1.8rem !important;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__mobile { display: flex; }

  .pillars { grid-template-columns: 1fr; }
  .articles { grid-template-columns: 1fr; }
  .who__body { grid-template-columns: 1fr; gap: 1.4rem; }

  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__media { position: static; max-width: 420px; }
  .about__photo { aspect-ratio: 896 / 820; }

  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 80px; }
  .nav__inner { height: 68px; }
  .nav__brand img, .footer__brand img { height: 26px; }
  .hero { min-height: 92svh; }
  .hero__actions { gap: 1.1rem; }
  .hero__actions .btn { width: 100%; }
  .pillar { padding: 2rem 1.5rem 2.2rem; }
  .about__track { grid-template-columns: 1fr; gap: 1.1rem; }
  .article { min-height: 0; }
}

/* ===================================================================
   REDUCED MOTION
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__scroll span { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
