/* ============================================================
   Frank van Delden — personal brand hub
   frankvandelden.com

   Design language borrowed from the Harness 3.0 redesign:
     · serif display type at weight 400 against a geometric sans
     · near-black anchor sections alternating with warm paper
     · one word of the headline carries a gradient
     · uppercase eyebrows, pill CTAs, gradient-edged cards
   Accent is amber, taken from Frank's own photographs — the Power BI
   dashboards on screen, the ochre chair, the highlights in his slides.

   No dependencies beyond two webfonts. Principle 7: maintenance is a
   moat, and a page with nothing to update is a page that cannot rot.
   ============================================================ */

/* ── Tokens ───────────────────────────────────────────────── */

:root {
  /* Ink — the dark anchor sections */
  --ink:          #0e1014;
  --ink-raised:   #171b22;
  --ink-line:     #262c37;
  --on-ink:       #f5f2ec;
  --on-ink-soft:  #a7aebd;
  --on-ink-faint: #757e90;

  /* Paper — the light sections */
  --paper:        #fbf9f5;
  --paper-raised: #ffffff;
  --paper-sunk:   #f4f1ea;
  --line:         #e6e0d5;
  --line-strong:  #d5cdbe;
  --on-paper:     #14161b;
  --on-paper-soft:#525a68;
  --on-paper-faint:#7d8593;

  /* Accent */
  --gold:      #c8862a;   /* passes contrast on paper */
  --gold-lit:  #f0be62;   /* for use on ink */
  --gold-glow: rgba(224, 164, 58, 0.55);
  --navy:      #1b2a4a;

  /* Type */
  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans:  "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --gutter:  clamp(20px, 5vw, 40px);
  --shell:   1180px;
  --measure: 60ch;
  --bay:     clamp(72px, 11vw, 132px);   /* vertical section padding */
  --radius:  10px;
  --radius-lg: 18px;

  color-scheme: light;
}

/* ── Reset ────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--on-paper);
  font-family: var(--sans);
  font-size: clamp(16px, 0.5vw + 15px, 17.5px);
  line-height: 1.6;
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; text-wrap: pretty; }

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

@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;
  }
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--on-paper); color: var(--paper);
  padding: 10px 16px; border-radius: 8px; font-size: 0.9rem;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }

/* ── Layout primitives ────────────────────────────────────── */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.bay { padding-block: var(--bay); }
.bay--sunk { background: var(--paper-sunk); }

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(40px, 5vw, 64px);
}
/* a second heading inside the same bay needs room to breathe */
.section-head--far { margin-top: clamp(64px, 8vw, 104px); }

/* ── Type ─────────────────────────────────────────────────── */

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-paper-faint);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--gold);
  flex: none;
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.15rem, 4.1vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.018em;
}

.h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.012em;
}

.lede {
  font-size: clamp(1.05rem, 1.1vw + 0.8rem, 1.25rem);
  line-height: 1.6;
  color: var(--on-paper-soft);
  max-width: var(--measure);
  margin-top: 22px;
}

.gilt {
  background: linear-gradient(96deg, #e8b153 0%, #f6d585 42%, #d99a2f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Fallback for anything that cannot paint clipped text */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .gilt { color: var(--gold-lit); background: none; }
}

/* ── Buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease,
              border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}
.btn svg { flex: none; transition: transform 0.18s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn--gold {
  background: linear-gradient(180deg, #f0c068 0%, #d99a2f 100%);
  color: #23180a;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset,
              0 10px 26px -14px rgba(200, 134, 42, 0.9);
}
.btn--gold:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.55) inset, 0 16px 32px -14px rgba(200,134,42,1); }

.btn--ghost-ink {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--on-ink);
}
.btn--ghost-ink:hover { border-color: rgba(255, 255, 255, 0.45); background: rgba(255, 255, 255, 0.05); }

.btn--ink {
  background: var(--on-paper);
  color: var(--paper);
}
.btn--ink:hover { transform: translateY(-1px); background: #23262e; }

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--on-paper);
}
.btn--ghost:hover { border-color: var(--on-paper); background: var(--paper-raised); }

.btn__sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease;
}
.textlink svg { transition: transform 0.18s ease; }
.textlink:hover svg { transform: translateX(3px); }

/* ── Nav ──────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 16, 20, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 72px;
}

.nav__brand {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: -0.015em;
  color: var(--on-ink);
  white-space: nowrap;
}
.nav__brand span { color: var(--gold-lit); }

.nav__links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 0.925rem;
  color: var(--on-ink-soft);
}
.nav__links a {
  padding-block: 6px;
  border-bottom: 1px solid transparent;
  transition: color 0.16s ease, border-color 0.16s ease;
}
.nav__links a:hover { color: var(--on-ink); border-color: var(--gold-lit); }

.nav__cta {
  padding: 10px 18px;
  font-size: 0.9rem;
}

/* Below the desktop breakpoint the links drop to a second row and scroll
   sideways, rather than disappearing behind a hamburger nobody opens. */
@media (max-width: 940px) {
  .nav__inner { flex-wrap: wrap; min-height: 0; padding-block: 14px 0; gap: 12px 18px; }
  .nav__cta { margin-left: auto; }
  .nav__links {
    order: 3;
    width: 100%;
    margin-left: 0;
    gap: 20px;
    font-size: 0.875rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .nav__links::-webkit-scrollbar { display: none; }
  .nav__links a { white-space: nowrap; }
  html { scroll-padding-top: 124px; }   /* the nav is two rows tall here */
}

@media (max-width: 420px) {
  .nav__brand { font-size: 1.02rem; }
  .nav__cta { padding: 9px 15px; font-size: 0.84rem; }
}

/* ── Ink / paper section skins ────────────────────────────── */

.ink {
  background: var(--ink);
  color: var(--on-ink);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.ink .eyebrow { color: var(--on-ink-faint); }
.ink .eyebrow::before { background: var(--gold-lit); }
.ink .lede { color: var(--on-ink-soft); }
.ink .textlink { color: var(--gold-lit); }

/* the amber bloom Harness paints with an SVG ellipse */
.glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(58% 46% at 18% 8%, rgba(224, 164, 58, 0.20) 0%, transparent 70%),
    radial-gradient(48% 52% at 88% 84%, rgba(27, 42, 74, 0.55) 0%, transparent 72%);
}

.hairline {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent);
}

/* ── Hero ─────────────────────────────────────────────────── */

.hero { padding-block: clamp(64px, 9vw, 112px) 0; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.hero__title { color: var(--on-ink); }

.hero__lede { max-width: 34rem; }

.hero__figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, 0.9);
}
.hero__figure img { width: 100%; }
.hero__figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(14, 16, 20, 0.72) 100%);
  pointer-events: none;
}
.hero__caption {
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  z-index: 1;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
}
.hero__caption strong { color: #fff; font-weight: 500; }

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

/* ── Stat bar ─────────────────────────────────────────────── */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: clamp(56px, 7vw, 88px);
}
.stat {
  background: var(--ink);
  padding: 26px 24px;
}
.stat__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-lit);
}
.stat__label {
  display: block;
  margin-top: 10px;
  font-size: 0.83rem;
  line-height: 1.45;
  color: var(--on-ink-soft);
}

@media (max-width: 820px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .stats { grid-template-columns: 1fr; } }

/* ── Flagship ─────────────────────────────────────────────── */

.flagship__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.flagship__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -46px rgba(20, 22, 27, 0.7);
}

.modes {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}
.mode {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-raised);
}
.mode__key {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 4px;
  white-space: nowrap;
  min-width: 6.6rem;   /* keeps the three titles on one left edge */
}
.mode__what { font-weight: 500; }
.mode__how {
  font-size: 0.9rem;
  color: var(--on-paper-soft);
  margin-top: 3px;
}

@media (max-width: 880px) {
  .flagship__grid { grid-template-columns: 1fr; }
  .mode { grid-template-columns: 1fr; gap: 6px; }
  .mode__key { padding-top: 0; }
}

/* ── Speaking gallery ─────────────────────────────────────── */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.4vw, 30px);
}

.shot {
  background: var(--ink-raised);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.shot:hover { transform: translateY(-3px); border-color: rgba(240, 190, 98, 0.4); }
.shot img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
/* the conference item is a screen capture, not a photograph — letterbox it
   rather than crop it, so the captions across a row still start level */
.shot--wide img { object-fit: contain; background: #05070a; }

.shot figcaption { padding: 20px 22px 24px; }
.shot__when {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lit);
  margin-bottom: 8px;
}
.shot__what {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--on-ink);
}
.shot__note {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--on-ink-soft);
  margin-top: 8px;
}

/* ── Timeline ─────────────────────────────────────────────── */

.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.timeline__item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: clamp(16px, 3vw, 40px);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.timeline__when {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--on-paper-faint);
  padding-top: 4px;
}
.timeline__what { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; letter-spacing: -0.012em; }
.timeline__note { color: var(--on-paper-soft); margin-top: 6px; max-width: var(--measure); }

@media (max-width: 720px) {
  .timeline__item { grid-template-columns: 1fr; gap: 6px; }
  .timeline__when { padding-top: 0; }
}

/* ── YouTube ──────────────────────────────────────────────── */

.tube__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.tube__facade {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ink-line);
  transition: transform 0.2s ease;
}
.tube__facade:hover { transform: scale(1.006); }
.tube__facade img { width: 100%; }
.tube__facade::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(14, 16, 20, 0.22);
  transition: background 0.2s ease;
}
.tube__facade:hover::after { background: rgba(14, 16, 20, 0.08); }
.tube__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}

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

/* ── Signup ───────────────────────────────────────────────── */

.signup {
  background:
    linear-gradient(180deg, rgba(224, 164, 58, 0.10), rgba(224, 164, 58, 0.03)),
    var(--paper-raised);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4.5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

/* the sign-up heading sits in a narrow half-column — hold it back a size */
.signup .h2 { font-size: clamp(1.6rem, 2.5vw, 2.1rem); }
.signup .lede { font-size: 1rem; }

.signup__form { display: flex; flex-direction: column; gap: 12px; }
.signup__row { display: flex; gap: 10px; flex-wrap: wrap; }

.signup input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 15px 18px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--on-paper);
  background: var(--paper-raised);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.signup input[type="email"]::placeholder { color: var(--on-paper-faint); }
.signup input[type="email"]:focus-visible { border-color: var(--gold); outline-offset: 1px; }

.signup__small {
  font-size: 0.82rem;
  color: var(--on-paper-faint);
}

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

/* ── Brand cards ──────────────────────────────────────────── */

.brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 2.4vw, 30px);
}

.brand {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-raised);
  /* the gradient edge Harness uses on its cards */
  border: 1px solid transparent;
  background:
    linear-gradient(var(--paper-raised), var(--paper-raised)) padding-box,
    linear-gradient(160deg, rgba(200, 134, 42, 0.45), rgba(214, 206, 190, 0.5) 45%, rgba(214, 206, 190, 0.2)) border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -34px rgba(20, 22, 27, 0.5);
}
.brand img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

/* Grip op mijn Geld has no photograph, so it gets a drawn one — the card
   needs the same visual weight as the one that does. */
.brand__panel {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 130% at 22% 10%, rgba(240, 190, 98, 0.42) 0%, transparent 62%),
    linear-gradient(150deg, #f6efe1 0%, #efe6d4 55%, #e8dcc4 100%);
  border-bottom: 1px solid rgba(200, 134, 42, 0.22);
}
.brand__panel span {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 1;
  color: rgba(146, 96, 22, 0.42);
  transform: translateY(-0.04em);
}
.brand__body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.brand__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.brand__note { color: var(--on-paper-soft); font-size: 0.95rem; margin-top: 10px; }
.brand__cta { margin-top: auto; padding-top: 22px; }

/* ── Personal ─────────────────────────────────────────────── */

.person__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: stretch;
}
.person__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 100%;
}
/* let the photograph fill its column rather than float in white space */
.person__figure, .person__figure picture { display: block; height: 100%; }
.person__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 52% 45%;
  min-height: 380px;
}
.person__prose { margin-top: 24px; }
.person__prose > p + p { margin-top: 18px; }
.person__prose p {
  color: var(--on-paper-soft);
  max-width: var(--measure);
}
.person__prose strong { color: var(--on-paper); font-weight: 500; }

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

/* ── Contact ──────────────────────────────────────────────── */

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact__portrait {
  width: 96px; height: 96px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 6px rgba(224, 164, 58, 0.10);
}
.contact__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 18%;   /* keep his face in the circle */
}

.contact__mail {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.015em;
  margin-top: 28px;
}
.contact__mail a {
  border-bottom: 1px solid rgba(240, 190, 98, 0.45);
  transition: border-color 0.18s ease, color 0.18s ease;
}
.contact__mail a:hover { color: var(--gold-lit); border-color: var(--gold-lit); }
.contact__meta { color: var(--on-ink-faint); font-size: 0.9rem; margin-top: 14px; }

.elsewhere { display: grid; gap: 1px; background: var(--ink-line); border: 1px solid var(--ink-line); border-radius: var(--radius); overflow: hidden; }
.elsewhere a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--ink);
  transition: background 0.16s ease;
}
.elsewhere a:hover { background: var(--ink-raised); }
.elsewhere__what { font-weight: 500; }
.elsewhere__where { display: block; font-size: 0.85rem; color: var(--on-ink-faint); margin-top: 2px; }
.elsewhere svg { color: var(--on-ink-faint); }

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

/* ── Footer ───────────────────────────────────────────────── */

.foot {
  background: var(--ink);
  color: var(--on-ink-soft);
  border-top: 1px solid var(--ink-line);
  padding-block: 44px;
  font-size: 0.9rem;
}
.foot__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}
.foot__name { font-family: var(--serif); font-size: 1.05rem; color: var(--on-ink); }
.foot__links { display: flex; flex-wrap: wrap; gap: 20px; margin-left: auto; }
.foot__links a { transition: color 0.16s ease; }
.foot__links a:hover { color: var(--gold-lit); }
.foot__legal { width: 100%; color: var(--on-ink-faint); font-size: 0.82rem; }

/* ── Print ────────────────────────────────────────────────── */

@media print {
  .nav, .glow, .signup, .tube__play { display: none !important; }
  .ink, .foot { background: #fff !important; color: #000 !important; }
  .ink .lede, .stat__label, .shot__note { color: #333 !important; }
}
