/* ============================================================
   SEARULEA — Brand stylesheet
   Type: Fraunces (Canela Deck fallback) + DM Sans
   ============================================================ */

@font-face {
  font-family: "Canela Deck";
  src: local("Canela Deck"), local("CanelaDeck"), local("Canela Deck Regular");
  font-display: swap;
}

:root {
  /* Brand palette — from Brand Guideline V4 */
  --ink-100: #074154;
  --ink-90:  #09546D;
  --ink-80:  #0A6887;
  --sky:     #D0E7ED;
  --sand:    #EFE8D8;
  --paper:   #FBF9F4;
  --line:    rgba(7, 65, 84, 0.14);
  --muted:   rgba(7, 65, 84, 0.62);

  /* Type */
  --serif: "Fraunces", "Canela Deck", "Canela", ui-serif, Georgia, serif;
  --sans:  "DM Sans", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Editorial scale */
  --fs-hero:    clamp(52px, 10vw, 196px);
  --fs-display: clamp(36px, 5.4vw, 104px);
  --fs-h1:      clamp(30px, 4vw, 72px);
  --fs-h2:      clamp(22px, 2.4vw, 40px);
  --fs-body:    clamp(15px, 1.05vw, 18px);
  --fs-eyebrow: 11px;

  --gutter: clamp(20px, 4vw, 64px);
  --max:    1640px;

  --ease-out:   cubic-bezier(.22, 1, .36, 1);
  --ease-inout: cubic-bezier(.65, 0, .35, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ============================================================
   LOADING INTRO
   ============================================================ */
html.is-loading,
html.is-loading body { overflow: hidden; }
html.no-intro .loader { display: none; }
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.loader__panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: 51%;        /* tiny overlap to avoid hairline gap mid-animation */
  background: #074154;  /* deep teal — per brand guidelines */
  will-change: transform;
}
.loader__panel--top    { top: 0; }
.loader__panel--bottom { bottom: 0; }
.loader__stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}
.loader__fish {
  width: clamp(240px, 30vw, 440px);
  aspect-ratio: 263 / 81;
  height: auto;
  position: absolute;
  color: #EFE8D8;             /* fish dots inherit via fill="currentColor" */
  opacity: 0;
  overflow: visible;          /* don't clip circles when they overshoot the viewBox */
  will-change: transform, opacity;
  transform-origin: center;
}
.loader__fish path,
.loader__fish circle {
  transform-box: fill-box;
  transform-origin: center;
}
.loader__mark {
  height: clamp(96px, 12vw, 144px);
  width: auto;
  aspect-ratio: 98 / 103;
  position: absolute;
  color: #EFE8D8;             /* fish + mark dots inherit via fill="currentColor" */
  fill: currentColor;
  opacity: 0;
  overflow: visible;          /* don't clip circles when they overshoot the viewBox */
  will-change: transform, opacity;
  transform-origin: center;
}
.loader__mark path {
  transform-box: fill-box;
  transform-origin: center;
}
/* Hide nav's A mark during the intro so the loader's traveling mark
   seamlessly hands off to it when it arrives. GSAP animates opacity in
   the timeline; no CSS transition here or it conflicts with GSAP. */
html.is-loading .nav__mark { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .loader { display: none; }
  body.is-loading { overflow: auto; }
}


html, body {
  background: var(--paper);
  color: var(--ink-100);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--ink-100); color: var(--sand); }

/* ----- Editorial type helpers ----- */
.serif    { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; }
.eyebrow  {
  font-family: var(--sans);
  font-weight: 500;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.lede { font-size: clamp(17px, 1.3vw, 22px); line-height: 1.55; max-width: 64ch; }

/* ----- Layout ----- */
.shell {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
section { position: relative; padding-block: clamp(72px, 9vw, 144px); }

/* ============================================================
   NAVIGATION — transparent over hero, off-white on scroll
   Centered icon mark inside split menu
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
  background: transparent;
  color: var(--sand);
  border-bottom: 1px solid transparent;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  transition:
    background 0.4s var(--ease-out),
    color 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out),
    padding 0.4s var(--ease-out);
  animation: navIn 0.7s var(--ease-out) 0.1s both;
}
.nav.is-scrolled {
  background: var(--paper);
  color: var(--ink-100);
  border-bottom-color: rgba(7, 65, 84, 0.08);
  padding-top: 12px;
  padding-bottom: 12px;
  backdrop-filter: saturate(140%);
  -webkit-backdrop-filter: saturate(140%);
}
@keyframes navIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .nav { animation: none; transition: none; }
}

/* Center group — links + mark + links, all on one line */
.nav__center {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  color: inherit;
}
.nav__link {
  position: relative;
  padding: 6px 0;
  color: inherit;
  opacity: 0.8;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.nav__link:hover { opacity: 1; }

/* Icon mark — sits in the middle of the menu */
.nav__brand {
  display: flex; align-items: center; justify-content: center;
  color: inherit;
  padding: 0 clamp(4px, 0.8vw, 14px);
}
.nav__mark {
  width: auto;
  height: 30px;     /* taller than wide → set height, let width stay native */
  display: block;
  transition: transform 0.4s var(--ease-out);
}
.nav__brand:hover .nav__mark { transform: scale(1.06); }

/* Trade-desk CTA — right column */
.nav__cta {
  grid-column: 3;
  justify-self: end;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  white-space: nowrap;
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.nav.is-scrolled .nav__cta:hover { background: var(--ink-100); color: var(--paper); }
.nav:not(.is-scrolled) .nav__cta:hover { background: var(--sand); color: var(--ink-100); }
.nav__cta-short { display: none; }

/* Language toggle — left column */
.nav__lang {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 7px;
  color: inherit;
}
.nav__lang-btn {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: inherit;
  opacity: 0.5;
  padding: 4px 1px;
  transition: opacity 0.3s;
}
.nav__lang-btn:hover { opacity: 0.85; }
.nav__lang-btn.is-active { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.nav__lang-sep { opacity: 0.35; font-size: 12px; }

@media (max-width: 980px) {
  .nav__link { display: none; }
  .nav__cta-full { display: none; }
  .nav__cta-short { display: inline; }
  .nav__mark { height: 28px; width: auto; }
  .nav__cta { padding: 8px 14px; font-size: 12px; }
  .nav { padding: 14px 18px; }
  .nav__lang-btn, .nav__lang-sep { font-size: 11px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  padding-top: clamp(110px, 14vw, 200px);
  padding-bottom: clamp(48px, 6vw, 80px);
  background: var(--ink-100);
  color: var(--sand);
  overflow: hidden;
  display: flex; flex-direction: column;
  isolation: isolate;
}
/* Photographic background — sunrise over the cages */
.hero__photo {
  position: absolute; inset: 0;
  background-image: url("../assets/img/hero-cages.jpg");
  background-size: cover;
  background-position: center 30%;
  z-index: -2;
  will-change: transform;
}
/* Dark gradient overlay so the type stays legible */
.hero__veil {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(7, 65, 84, 0.78) 0%,
      rgba(7, 65, 84, 0.55) 28%,
      rgba(7, 65, 84, 0.50) 55%,
      rgba(7, 65, 84, 0.85) 100%),
    linear-gradient(90deg,
      rgba(7, 65, 84, 0.55) 0%,
      rgba(7, 65, 84, 0.18) 55%,
      rgba(7, 65, 84, 0.20) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  row-gap: clamp(32px, 5vw, 72px);
}
.hero__lockup { align-self: center; }
.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  color: rgba(239, 232, 216, 0.7);
}
.hero__eyebrow::before {
  content: ""; width: 32px; height: 1px; background: currentColor; display: inline-block;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 8.8vw, 156px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  max-width: 16ch;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--sky);
}
.hero__title .reveal-line { display: block; }
.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroLineIn 1.2s var(--ease-out) forwards;
}
.hero__title-line:nth-child(1) { animation-delay: 0.65s; }
.hero__title-line:nth-child(2) { animation-delay: 0.78s; }
.hero__title-line:nth-child(3) { animation-delay: 0.91s; }
@keyframes heroLineIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__title-line { opacity: 1; transform: none; animation: none; }
}
.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding-top: clamp(24px, 4vw, 56px);
  border-top: 1px solid rgba(239, 232, 216, 0.16);
}
.hero__deck {
  max-width: 42ch;
  color: rgba(239, 232, 216, 0.88);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.55;
}
.hero__deck strong { color: var(--sand); font-weight: 500; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out), color 0.4s var(--ease-out);
}
.btn--primary { background: var(--sand); color: var(--ink-100); }
.btn--primary:hover { background: #fff; transform: translateY(-2px); }
.btn--ghost { border: 1px solid currentColor; color: inherit; }
.btn--ghost:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.btn .arrow { width: 14px; height: 14px; transition: transform 0.4s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

@media (max-width: 720px) {
  .hero__bottom { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(48px, 14vw, 88px); line-height: 0.96; letter-spacing: -0.03em; }
  .hero__deck { font-size: 15px; }
  .btn { padding: 14px 22px; font-size: 13px; }
  .nav { padding: 14px 18px; }
  .nav__cta { padding: 9px 14px; font-size: 12px; }
  .nav__brand svg { width: 108px; }
}

/* ============================================================
   MARQUEE — running proof points
   ============================================================ */
.marquee {
  background: var(--ink-100);
  color: var(--sand);
  padding-block: 22px;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.08);
}
.marquee__track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 36px);
  font-weight: 300;
  letter-spacing: -0.01em;
  animation: marquee 38s linear infinite;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee__dot { width: 6px; height: 6px; background: var(--sky); border-radius: 999px; display: inline-block; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION HEADER PATTERN
   ============================================================ */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr);
  gap: clamp(20px, 4vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.section-head__index {
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; gap: 14px; align-items: center;
}
.section-head__index::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.section-head__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-display);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink-100);
  max-width: 18ch;
}
.section-head__title em { font-style: italic; color: var(--ink-80); font-weight: 300; }
.section-head__lead {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 30px);
}
.section-head__tag {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-80);
  font-size: clamp(18px, 1.9vw, 28px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 20ch;
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; }
}

/* ============================================================
   CHAIN — Integration story
   ============================================================ */
.chain { background: var(--paper); color: var(--ink-100); }
.chain__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.chain__step {
  background: var(--paper);
  padding: 40px 32px 56px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 360px;
  position: relative;
  transition: background 0.5s var(--ease-out);
}
.chain__step:hover { background: var(--sky); }
.chain__step__num {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ink-80);
}
.chain__step__title {
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: auto;
}
.chain__step__body {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 30ch;
}
@media (max-width: 980px) { .chain__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .chain__grid { grid-template-columns: 1fr; } }

/* ============================================================
   SOVEREIGNTY — long-form editorial
   ============================================================ */
.sovereignty {
  background: var(--ink-100);
  color: var(--sand);
  position: relative;
  overflow: hidden;
}
.sovereignty .section-head__index { color: rgba(239, 232, 216, 0.6); }
.sovereignty .section-head__index::after { background: rgba(239, 232, 216, 0.2); }
.sovereignty .section-head__title { color: var(--sand); }
.sovereignty .section-head__title em { color: var(--sky); }
.sovereignty__bg {
  position: absolute;
  width: 90vh; height: 90vh;
  top: 50%; left: -25vh;
  transform: translateY(-50%);
  background-image: url("../assets/img/spirale-teal.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: transform;
}
.sovereignty__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  position: relative;
  z-index: 2;
}
.sovereignty__pull {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--sand);
}
.sovereignty__pull::before {
  content: "“";
  display: block;
  font-family: var(--serif);
  font-size: 96px;
  line-height: 0.6;
  color: var(--sky);
  margin-bottom: 18px;
  font-style: normal;
}
.sovereignty__body {
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.7;
  color: rgba(239, 232, 216, 0.78);
  max-width: 56ch;
  display: flex; flex-direction: column; gap: 18px;
}
.sovereignty__body strong { color: var(--sand); font-weight: 500; }
@media (max-width: 880px) { .sovereignty__grid { grid-template-columns: 1fr; } }

/* ============================================================
   ENGINEERED TO LAST — proof grid
   ============================================================ */
.proof { background: var(--sky); color: var(--ink-100); }
.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
.proof__card {
  padding: 32px 28px 36px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(7, 65, 84, 0.08);
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 320px;
  position: relative;
  transition: background 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.proof__card:hover { background: var(--paper); transform: translateY(-4px); }
.proof__card__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink-100);
}
.proof__card__num small {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 14px;
  letter-spacing: 0.16em;
}
.proof__card__body {
  margin-top: auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
@media (max-width: 1080px) { .proof__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .proof__grid { grid-template-columns: 1fr; } }

/* ============================================================
   AUDIENCES — three doors
   ============================================================ */
.doors { background: var(--paper); }
.doors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.door {
  background: var(--paper);
  padding: 44px 32px;
  min-height: 320px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background 0.5s var(--ease-out), color 0.5s var(--ease-out);
}
.door:hover {
  background: var(--ink-100);
  color: var(--sand);
}
.door:hover .door__label,
.door:hover .door__body { color: rgba(239, 232, 216, 0.78); }
.door__label {
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.4s;
}
.door__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 2.4vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.door__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin-top: auto;
  max-width: 32ch;
  transition: color 0.4s;
}
.door__link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}
.door__link .arrow { width: 14px; height: 14px; transition: transform 0.4s var(--ease-out); }
.door:hover .door__link .arrow { transform: translateX(6px); }
@media (max-width: 960px) { .doors__grid { grid-template-columns: 1fr; } }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  background: linear-gradient(180deg, var(--ink-100) 0%, var(--ink-90) 100%);
  color: var(--sand);
  position: relative;
  overflow: hidden;
}
.manifesto__bg {
  position: absolute;
  inset: auto -8% -30% auto;
  width: 90vh; height: 90vh;
  background-image: url("../assets/img/spirale-teal.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: transform;
}
.manifesto__inner {
  position: relative; z-index: 2;
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
  text-align: left;
}
.manifesto__eyebrow {
  color: var(--sky);
  display: flex; gap: 14px; align-items: center; justify-content: center;
  margin-bottom: 40px;
}
.manifesto__eyebrow::before,
.manifesto__eyebrow::after {
  content: ""; flex: 1; height: 1px; background: rgba(239, 232, 216, 0.2); max-width: 64px;
}
.manifesto__text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-align: center;
}
.manifesto__text p { margin-bottom: 1.2em; }
.manifesto__text p:last-child { margin-bottom: 0; }
.manifesto__text strong { color: var(--sky); font-weight: 400; font-style: italic; }
.manifesto__signoff {
  text-align: center;
  margin-top: 48px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(239, 232, 216, 0.6);
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--paper);
  padding-block: 80px 40px;
  color: var(--ink-100);
}
.foot__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 64px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.foot__mark svg { width: 200px; height: auto; color: var(--ink-100); }
.foot__wordmark { width: 220px; height: auto; display: block; }
.foot__tag {
  margin-top: 18px;
  max-width: 32ch;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.foot__col h4 {
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot__col a, .foot__col li {
  display: block;
  list-style: none;
  font-size: 14px;
  line-height: 2;
  color: var(--ink-100);
  transition: color 0.3s;
}
.foot__col a:hover { color: var(--ink-80); }
.foot__bottom {
  display: flex; justify-content: space-between;
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
@media (max-width: 880px) {
  .foot__top { grid-template-columns: 1fr 1fr; }
  .foot__bottom { flex-direction: column; gap: 12px; }
}

/* ============================================================
   REVEAL ANIMATION HOOK
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal-line { overflow: hidden; }
.reveal-line > span { display: inline-block; transform: translateY(110%); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .reveal-line > span { transform: none; }
}
