/* TransOasis — gedeelde stijlen (homepage + over) */

:root {
  --grad-start: #f4b6c0;
  --grad-end: #b6dceb;
  --accent: #7c5fb8;
  --accent-deep: #5b3f96;
  --bg: #f6f2ff;
  --surface: #ffffff;
  --soft: #efe9fb;
  --ink: #2f5e58;
  --ink-soft: #6a8a85;
  --heading-font: "Quicksand", sans-serif;
  --body-font: "Plus Jakarta Sans", sans-serif;
  --serif: "Fraunces", serif;
  --grad: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-end) 100%);
  --grad-soft: linear-gradient(135deg, color-mix(in oklab, var(--grad-start) 40%, white) 0%, color-mix(in oklab, var(--grad-end) 40%, white) 100%);
  --grad-text: linear-gradient(135deg, #c4498a 0%, #5b8db0 100%);
  --radius: 28px;
  --radius-sm: 18px;
  --shadow-soft: 0 12px 40px -12px rgba(124, 95, 184, 0.18);
  --shadow-card: 0 24px 60px -20px rgba(124, 95, 184, 0.25);
}
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}
html, body { overflow-x: clip; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

em.fancy, em.soft {
  font-style: normal;
  font-family: inherit;
  font-weight: inherit;
  color: var(--accent);
}

.page { position: relative; min-height: 100vh; }

/* ── ATMOSPHERE ─────────────────────────────────── */
.atmosphere { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.atmosphere__gradient {
  position: absolute; inset: -10%;
  background:
    radial-gradient(ellipse 70% 55% at 22% 14%, color-mix(in oklab, var(--grad-start) 55%, transparent) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 82% 60%, color-mix(in oklab, var(--grad-end) 55%, transparent) 0%, transparent 60%);
  filter: blur(50px);
  opacity: 0.6;
}
.orb { position: absolute; border-radius: 50%; filter: blur(50px); opacity: 0.45; animation: drift 22s ease-in-out infinite; }
.orb--1 { width: 320px; height: 320px; background: var(--grad-start); top: 4%; left: -8%; }
.orb--2 { width: 380px; height: 380px; background: var(--grad-end); top: 28%; right: -10%; animation-delay: -6s; }
.orb--3 { width: 240px; height: 240px; background: var(--accent); top: 65%; left: 25%; opacity: 0.22; animation-delay: -12s; }
.orb--4 { width: 220px; height: 220px; background: var(--grad-start); top: 90%; right: 18%; opacity: 0.35; animation-delay: -16s; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 40px) scale(0.94); }
}

/* ── CONTAINER ─────────────────────────────────── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 22px; position: relative; z-index: 2; }
@media (min-width: 760px) { .container { padding: 0 40px; } }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.nav--scrolled {
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 16px rgba(124, 95, 184, 0.10);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav__logo {
  width: 44px; height: auto;
  filter: drop-shadow(0 4px 12px rgba(124, 95, 184, 0.22));
}
.nav__name {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 17px;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.nav__menu {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav__menu a {
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
}
.nav__menu a:hover { background: color-mix(in oklab, var(--accent) 8%, transparent); }
.nav__menu a.is-active {
  background: color-mix(in oklab, var(--accent) 12%, transparent);
  color: var(--accent);
  font-weight: 600;
}
.nav__cta {
  margin-left: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--grad);
  color: white !important;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 20px -8px color-mix(in oklab, var(--grad-start) 60%, transparent);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -8px color-mix(in oklab, var(--grad-start) 70%, transparent); background: var(--grad) !important; }

.nav__toggle {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  background: transparent;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}
.nav__burger { position: relative; width: 22px; height: 16px; display: block; }
.nav__burger span {
  position: absolute; left: 0;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s ease;
}
.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { top: 7px; }
.nav__burger span:nth-child(3) { top: 14px; }
.nav__burger.open span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

.nav__sheet {
  position: fixed;
  inset: 70px 14px auto 14px;
  background: var(--surface);
  border-radius: 22px;
  padding: 12px;
  box-shadow: var(--shadow-card);
  display: none;
  flex-direction: column;
  gap: 2px;
  border: 1px solid color-mix(in oklab, var(--accent) 10%, transparent);
}
.nav__sheet.open { display: flex; }
.nav__sheet a {
  padding: 14px 18px;
  border-radius: 14px;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
}
.nav__sheet a:hover { background: var(--soft); }
.nav__sheet a.is-active { color: var(--accent); background: color-mix(in oklab, var(--accent) 10%, transparent); font-weight: 600; }
.nav__sheet .nav__cta {
  margin-top: 6px;
  text-align: center;
  margin-left: 0;
}

@media (min-width: 760px) {
  .nav { padding: 18px 40px; }
  .nav__logo { width: 54px; }
  .nav__name { font-size: 18px; }
  .nav__menu { display: inline-flex; }
  .nav__toggle { display: none; }
  .nav__sheet { display: none !important; }
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
}
.hero__inner { max-width: 720px; }
.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.hero__logo {
  width: 88px; height: auto;
  filter: drop-shadow(0 6px 18px rgba(124, 95, 184, 0.22));
}
.hero__slogan {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.tag-rust { color: #7c5fb8; }
.tag-richting { color: #6ba8d6; }
.tag-kracht { color: #e89aae; }
.tag-dot { color: var(--ink-soft); opacity: 0.55; font-weight: 400; }
@media (min-width: 760px) {
  .hero__logo { width: 110px; }
  .hero__slogan { font-size: 17px; gap: 6px 14px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: color-mix(in oklab, var(--surface) 70%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  border: 1px solid color-mix(in oklab, var(--accent) 18%, transparent);
  margin-bottom: 28px;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--grad);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--grad-start) 25%, transparent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in oklab, var(--grad-start) 25%, transparent); }
  50% { box-shadow: 0 0 0 8px color-mix(in oklab, var(--grad-start) 10%, transparent); }
}

h1 {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(64px, 14vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  text-wrap: balance;
}
h1 .punct {
  background: var(--grad-text);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.hero__sub {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: clamp(19px, 2.6vw, 24px);
  line-height: 1.4;
  color: var(--accent);
  margin: 0 0 18px;
  max-width: 560px;
  text-wrap: balance;
}
.hero__body {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 0 36px;
  text-wrap: pretty;
}

/* page hero variant for sub pages */
.page-hero {
  position: relative;
  padding: 160px 0 70px;
}
.page-hero__inner { max-width: 720px; }
.page-hero__title {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(48px, 9vw, 88px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  text-wrap: balance;
}
.page-hero__lead {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0;
  text-wrap: pretty;
  line-height: 1.65;
}

/* ── BUTTONS / FORMS ─────────────────────────────── */
.signup { width: 100%; max-width: 480px; }
.signup__row { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 560px) { .signup__row { flex-direction: row; } }
.input {
  flex: 1;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1.5px solid color-mix(in oklab, var(--accent) 16%, transparent);
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--body-font);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.input::placeholder { color: color-mix(in oklab, var(--ink-soft) 80%, transparent); }
.input:focus {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 14%, transparent);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
  background: var(--grad);
  color: white;
  box-shadow: 0 12px 28px -10px color-mix(in oklab, var(--grad-start) 70%, transparent);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px color-mix(in oklab, var(--grad-start) 80%, transparent); }
.btn svg { transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }
.btn--ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid color-mix(in oklab, var(--accent) 14%, transparent);
  box-shadow: var(--shadow-soft);
}
.btn--ghost:hover { color: var(--accent); }

.signup__foot { margin-top: 12px; font-size: 13px; color: var(--ink-soft); }
.thanks {
  display: none;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: color-mix(in oklab, var(--surface) 80%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid color-mix(in oklab, var(--accent) 18%, transparent);
  border-radius: 24px;
}
.thanks.is-on { display: flex; }
.thanks__icon {
  width: 48px; height: 48px;
  background: var(--grad);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.thanks__title {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 2px;
}
.thanks__sub { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* ── SECTIONS ────────────────────────────────────── */
.section { padding: 90px 0; }
@media (min-width: 760px) { .section { padding: 120px 0; } }
.section__inner { max-width: 720px; }
.section__inner--center { text-align: center; margin: 0 auto; }
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.section__line { width: 28px; height: 2px; background: var(--grad); border-radius: 2px; }
.section__title {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 26px;
  text-wrap: balance;
}
.section__body {
  font-size: clamp(17px, 2.1vw, 20px);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 0 18px;
  text-wrap: pretty;
  line-height: 1.65;
}
.section__body:last-child { margin-bottom: 0; }
.section__inner--center .section__body { margin-inline: auto; }
.section__inner--center .section__label { justify-content: center; }
.section--alt { position: relative; }
.section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--grad-end) 14%, transparent), transparent);
  pointer-events: none;
  z-index: -1;
}

/* ── ARTICLES ────────────────────────────────────── */
.articles__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 16px; flex-wrap: wrap; margin-bottom: 40px;
}
.articles__head .section__label,
.articles__head .section__title { margin-bottom: 0; }
.articles__head .section__title { margin-top: 8px; }
.articles__lead { max-width: 560px; color: var(--ink-soft); font-size: 17px; margin: 12px 0 0; }
.articles__list { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 760px) { .articles__list { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.article {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid color-mix(in oklab, var(--accent) 8%, transparent);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  display: flex; flex-direction: column;
}
.article:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.article__visual { height: 170px; position: relative; overflow: hidden; }
.article__visual.hue-0 { background: linear-gradient(135deg, #f4b6c0, #f9d6db); }
.article__visual.hue-1 { background: linear-gradient(135deg, #b6dceb, #d4eaf2); }
.article__visual.hue-2 { background: linear-gradient(135deg, #d9c2ec, #ecdef5); }
.article__visual::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(255,255,255,0.45), transparent 42%),
    radial-gradient(circle at 78% 72%, rgba(255,255,255,0.32), transparent 42%);
}
.article__visual::after {
  content: ""; position: absolute;
  bottom: 18px; right: 18px;
  width: 56px; height: 56px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  border-radius: 50%;
}
.article__placeholder {
  position: absolute; bottom: 18px; left: 18px;
  font-family: "Courier New", monospace;
  font-size: 11px; color: rgba(42, 31, 71, 0.55);
  background: rgba(255, 255, 255, 0.5);
  padding: 4px 10px; border-radius: 999px;
}
.article__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.article__tag {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.article__title {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 19px; line-height: 1.3;
  margin: 0 0 12px; text-wrap: balance; flex: 1;
}
.article__meta { font-size: 13px; color: var(--ink-soft); }
.articles__cta { margin-top: 36px; text-align: center; }

/* ── SIGNUP CARD ─────────────────────────────────── */
.signup-card {
  background: var(--grad);
  border-radius: var(--radius);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  color: white;
}
@media (min-width: 760px) { .signup-card { padding: 64px; } }
.signup-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(255,255,255,0.4), transparent 50%),
    radial-gradient(circle at 18% 82%, rgba(255,255,255,0.3), transparent 50%);
  pointer-events: none;
}
.signup-card__inner { position: relative; }
.signup-card .section__label { color: rgba(255,255,255,0.9); }
.signup-card .section__line { background: rgba(255,255,255,0.7); }
.signup-card__title {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(32px, 5.4vw, 48px);
  line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 18px; color: white; text-wrap: balance;
}
.signup-card__body {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,0.95);
  margin: 0 0 22px; max-width: 540px;
}
.signup-card__list {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 14px; max-width: 540px;
}
.signup-card__list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 16px; line-height: 1.55;
  color: rgba(255,255,255,0.96);
}
.signup-card__list li svg {
  flex-shrink: 0; margin-top: 4px;
  width: 22px; height: 22px; padding: 4px;
  background: rgba(255,255,255,0.22); border-radius: 999px;
}
.signup-card .input { background: rgba(255,255,255,0.95); border-color: rgba(255,255,255,0.6); }
.signup-card .input:focus { background: white; box-shadow: 0 0 0 4px rgba(255,255,255,0.3); border-color: white; }
.signup-card .btn { background: white; color: var(--accent); box-shadow: 0 12px 28px -8px rgba(0,0,0,0.2); }
.signup-card .btn:hover { background: white; color: var(--accent-deep); box-shadow: 0 18px 38px -10px rgba(0,0,0,0.28); }
.checkbox {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 18px; font-size: 13.5px;
  color: rgba(255,255,255,0.92); max-width: 540px;
  cursor: pointer; user-select: none;
}
.checkbox input { display: none; }
.checkbox__box {
  width: 20px; height: 20px;
  border-radius: 6px;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.7);
  flex-shrink: 0; display: grid; place-items: center;
  margin-top: 2px; transition: background 0.2s;
}
.checkbox__box svg { opacity: 0; transition: opacity 0.15s; }
.checkbox input:checked + .checkbox__box { background: white; }
.checkbox input:checked + .checkbox__box svg { opacity: 1; color: var(--accent); }
.signup-card .thanks { background: rgba(255,255,255,0.95); color: var(--ink); border-color: rgba(255,255,255,0.6); }
.signup-card .thanks .thanks__sub { color: var(--ink-soft); }

/* ── ABOUT-PAGINA ─────────────────────────────────── */
.about-section { padding: 70px 0; }
@media (min-width: 760px) { .about-section { padding: 90px 0; } }
.about-section__inner { max-width: 680px; margin: 0 auto; }
.about-section__title {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.about-section__body {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--ink);
  line-height: 1.7;
  margin: 0 0 22px;
  text-wrap: pretty;
}
.about-section__body:last-child { margin-bottom: 0; }
.about-section--alt { position: relative; }
.about-section--alt::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--grad-end) 12%, transparent), transparent);
  pointer-events: none; z-index: -1;
}
.about-portrait {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 4px solid var(--surface);
  box-shadow: var(--shadow-card);
  display: grid; place-items: center;
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: var(--accent);
  text-align: center;
  margin-bottom: 28px;
}
.about-divider {
  width: 60px; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  margin: 0 0 28px;
}

/* ── FOOTER ─────────────────────────────────────── */
footer.foot {
  position: relative; z-index: 2;
  padding: 80px 0 36px;
  margin-top: 40px;
  background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--accent) 7%, transparent));
}
.foot__top { text-align: center; margin-bottom: 48px; }
.foot__logo {
  width: 100px; height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 8px 22px rgba(124, 95, 184, 0.22));
}
.foot__line1 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px; color: var(--ink); margin: 0 0 6px;
}
.foot__line2 {
  font-family: var(--heading-font);
  font-weight: 600; font-size: 18px;
  color: var(--accent); margin: 0; letter-spacing: -0.01em;
}
.foot__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid color-mix(in oklab, var(--accent) 12%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--accent) 12%, transparent);
}
@media (min-width: 720px) { .foot__cols { grid-template-columns: 1fr 1fr 1fr; gap: 36px; } }
.foot__h {
  font-family: var(--heading-font);
  font-weight: 600; font-size: 13px;
  color: var(--ink); margin: 0 0 12px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.foot__col a, .foot__col p {
  display: block;
  color: var(--ink-soft);
  font-size: 14.5px;
  padding: 4px 0;
  margin: 0;
  transition: color 0.2s;
}
.foot__col a:hover { color: var(--accent); }
.foot__bottom {
  margin-top: 28px; font-size: 12.5px;
  color: var(--ink-soft); line-height: 1.7;
  display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
}
@media (min-width: 720px) {
  .foot__bottom { flex-direction: row; justify-content: space-between; align-items: center; gap: 16px; }
}
.foot__legal { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.foot__legal a { color: var(--ink-soft); }
.foot__legal a:hover { color: var(--accent); }
.foot__sep { opacity: 0.4; }

@media (prefers-reduced-motion: reduce) {
  .orb, .eyebrow .dot { animation: none !important; }
  html { scroll-behavior: auto; }
}
