/* =================================================================
   Tom de Bruin — refined, photo-led, lived-in
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT@9..144,300..500,30..100&family=Inter:wght@300;400;500&family=Caveat:wght@400;600&family=JetBrains+Mono:wght@400&display=swap');

:root {
  --bone:        #FAF6EB;
  --cream:       #F4EEDF;
  --sand:        #EADFC4;

  --ink:         #1F1B17;
  --ink-soft:    #5A554C;
  --ink-mute:    #8E887D;

  --ocean:       #1F3D52;
  --ocean-mid:   #4A7896;
  --rust:        #B0552B;     /* a warm sunset accent for hand-marks */
  --line:        rgba(31, 27, 23, 0.10);
  --line-soft:   rgba(31, 27, 23, 0.06);
  --line-strong: rgba(31, 27, 23, 0.22);

  --serif:  'Fraunces', 'Iowan Old Style', Georgia, serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --hand:   'Caveat', 'Bradley Hand', cursive;
  --mono:   'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bone);
  line-height: 1.55;
  overflow-x: hidden;
  font-feature-settings: "ss01";
}

::selection { background: var(--ocean); color: var(--bone); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

body::after {
  content: '';
  position: fixed; inset: 0; z-index: 100;
  pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 26px 44px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; letter-spacing: 0.06em;
  transition: background 0.5s var(--ease), color 0.5s var(--ease), padding 0.4s var(--ease);
  color: var(--ink);
}
.nav.is-dark { color: var(--bone); }
.nav.scrolled {
  padding: 14px 44px;
  background: rgba(250, 246, 235, 0.86);
  backdrop-filter: saturate(120%) blur(14px);
  -webkit-backdrop-filter: saturate(120%) blur(14px);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.005em;
  font-style: italic;
}
.nav__brand small {
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-left: 10px;
  opacity: 0.55;
}
.nav__links {
  display: flex; gap: 28px; list-style: none;
  font-weight: 400; text-transform: lowercase;
}
.nav__links a { position: relative; padding-bottom: 3px; opacity: 0.78; transition: opacity 0.25s; }
.nav__links a:hover { opacity: 1; }
.nav__links a.active { opacity: 1; }
.nav__links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor; opacity: 0.6;
}
@media (max-width: 720px) {
  .nav { padding: 18px 22px; }
  .nav.scrolled { padding: 12px 22px; }
  .nav__links { gap: 16px; font-size: 11px; }
  .nav__brand small { display: none; }
}

/* =================================================================
   LAYOUT
   ================================================================= */
.wrap   { max-width: 1280px; margin: 0 auto; padding: 0 44px; }
.narrow { max-width: 880px; }
.prose  { max-width: 660px; }
@media (max-width: 720px) { .wrap { padding: 0 22px; } }

section { position: relative; }

/* =================================================================
   TYPE
   ================================================================= */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.04;
}

.h-mega {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.h-mega em { font-style: italic; font-weight: 300; font-variation-settings: "SOFT" 100; }

.h-display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.022em;
}
.h-display em { font-style: italic; font-variation-settings: "SOFT" 100; }

.h-section {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.018em;
}
.h-section em { font-style: italic; }

.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.38;
  letter-spacing: -0.008em;
  color: var(--ink);
}
.lede em { font-style: italic; }

p.body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 62ch;
}
p.body + p.body { margin-top: 1.05em; }
p.body em { font-style: italic; font-family: var(--serif); font-weight: 300; }

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* =================================================================
   HANDWRITTEN — Caveat marginalia
   ================================================================= */
.hand {
  font-family: var(--hand);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  color: var(--rust);
  letter-spacing: 0.01em;
}
.hand--lg { font-size: 36px; }
.hand--xl { font-size: 56px; line-height: 0.95; }
.hand--ocean { color: var(--ocean); }

/* hand-drawn arrow svg */
.arrow-svg {
  display: inline-block;
  vertical-align: middle;
  color: var(--rust);
}

/* dashed circle highlight */
.circle-mark {
  position: relative;
  display: inline-block;
}
.circle-mark::before {
  content: '';
  position: absolute;
  inset: -8px -14px;
  border: 1.5px solid var(--rust);
  border-radius: 50%;
  transform: rotate(-3deg);
  opacity: 0.85;
}

/* sticky-note */
.sticky {
  background: #FBEFC9;
  padding: 22px 22px 26px;
  font-family: var(--hand);
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  box-shadow: 0 10px 26px -16px rgba(0,0,0,0.25), 0 1px 2px rgba(0,0,0,0.06);
  position: relative;
  transform: rotate(-1.5deg);
  max-width: 280px;
}
.sticky::before {
  content: '';
  position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 70px; height: 14px;
  background: rgba(176, 85, 43, 0.28);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.sticky small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 10px;
  color: var(--ink-mute);
}

/* polaroid */
.polaroid {
  display: inline-block;
  background: var(--bone);
  padding: 12px 12px 44px;
  box-shadow: 0 18px 40px -22px rgba(0,0,0,0.35), 0 2px 4px rgba(0,0,0,0.08);
  position: relative;
  max-width: 320px;
}
.polaroid img { display: block; width: 100%; height: 100%; object-fit: cover; }
.polaroid__cap {
  position: absolute;
  bottom: 10px; left: 16px; right: 16px;
  font-family: var(--hand);
  font-size: 19px;
  color: var(--ink);
}
.polaroid--tilt-l { transform: rotate(-3deg); }
.polaroid--tilt-r { transform: rotate(2.5deg); }
.polaroid--tape::after {
  content: '';
  position: absolute; top: -10px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 80px; height: 18px;
  background: rgba(176, 85, 43, 0.22);
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

/* numbered field-note callout */
.fieldnote {
  display: inline-flex; align-items: baseline; gap: 12px;
  padding: 12px 16px;
  background: rgba(176, 85, 43, 0.08);
  border-left: 2px solid var(--rust);
  font-family: var(--hand);
  font-size: 20px;
  color: var(--ink);
}
.fieldnote .nr {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 400;
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--bone);
  display: flex; flex-direction: column;
}
.hero__photo { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}
.hero__photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  padding: 130px 44px 60px;
  flex: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero__top {
  position: absolute; top: 130px; left: 44px; right: 44px;
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250, 246, 235, 0.78);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(64px, 11vw, 188px);
  line-height: 0.92;
  letter-spacing: -0.038em;
  max-width: 14ch;
}
.hero__title em { font-style: italic; font-variation-settings: "SOFT" 100; }
.hero__title .ln { display: block; overflow: hidden; }
.hero__title .ln span { display: inline-block; }
.hero__sub {
  margin-top: 36px;
  display: flex; justify-content: space-between; gap: 32px;
  align-items: flex-end; flex-wrap: wrap;
}
.hero__sub .lede { max-width: 540px; color: rgba(250, 246, 235, 0.92); }
.hero__sub .lede em { color: #f6d8a4; }
.hero__scroll {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(250, 246, 235, 0.7);
}
.hero__scroll .bar { display: inline-block; width: 1px; height: 32px; background: currentColor; }
@media (max-width: 720px) {
  .hero__inner { padding: 110px 22px 40px; }
  .hero__top { left: 22px; right: 22px; top: 110px; font-size: 10px; }
  .hero__sub { gap: 20px; }
}

/* =================================================================
   FRAMES & FULL BLEED
   ================================================================= */
.frame { position: relative; overflow: hidden; background: var(--sand); }
.frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92); }
.frame--tall   { aspect-ratio: 3 / 4; }
.frame--wide   { aspect-ratio: 16 / 10; }
.frame--cinema { aspect-ratio: 21 / 9; }
.frame--square { aspect-ratio: 1 / 1; }
.frame--portrait { aspect-ratio: 4 / 5; }
.cap {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; justify-content: space-between; gap: 16px;
}
.full-bleed { width: 100vw; margin-left: calc(50% - 50vw); }

/* =================================================================
   SPLIT
   ================================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
}
.split--text-first  { grid-template-columns: 5fr 7fr; }
.split--photo-first { grid-template-columns: 7fr 5fr; }
.split__copy { max-width: 460px; }
.split__copy .eyebrow { display: block; margin-bottom: 22px; }
.split__copy h2 { margin-bottom: 22px; }
@media (max-width: 900px) {
  .split, .split--text-first, .split--photo-first { grid-template-columns: 1fr; gap: 36px; padding: 70px 0; }
}

/* =================================================================
   THREE WORLDS PORTAL — featured links to inner pages
   ================================================================= */
.portal {
  padding: 80px 0 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.portal__card {
  position: relative;
  display: block;
  cursor: pointer;
  transition: transform 0.5s var(--ease);
}
.portal__card:hover { transform: translateY(-4px); }
.portal__photo {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 4 / 5;
}
.portal__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
  filter: saturate(0.9);
}
.portal__card:hover .portal__photo img { transform: scale(1.04); }
.portal__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
}
.portal__num {
  position: absolute; top: 18px; left: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,246,235,0.85);
  z-index: 2;
}
.portal__label {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  z-index: 2;
  color: var(--bone);
}
.portal__label .small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.82;
  margin-bottom: 6px;
}
.portal__label .big {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1;
  letter-spacing: -0.022em;
}
.portal__copy {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36ch;
}
@media (max-width: 900px) {
  .portal { grid-template-columns: 1fr; gap: 28px; }
}

/* =================================================================
   STORY / CHAPTERS
   ================================================================= */
.story { padding: 90px 0; }
.story__chapter {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.story__chapter:last-child { border-bottom: 1px solid var(--line); }
.story__num {
  position: sticky; top: 100px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute);
}
.story__num strong {
  display: block;
  font-family: var(--serif);
  font-weight: 300; font-style: italic;
  font-size: 44px; letter-spacing: -0.02em;
  color: var(--ocean);
  margin-top: 12px;
  line-height: 1;
}
.story__body h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 22px;
}
.story__body h3 em { font-style: italic; }
.story__body p {
  font-size: 16px;
  line-height: 1.72;
  color: var(--ink);
  max-width: 56ch;
}
.story__body p + p { margin-top: 1.05em; }
.story__body p em { font-style: italic; font-family: var(--serif); font-weight: 300; }
.story__body .figure { margin-top: 32px; }
.story__body .hand-aside {
  margin-top: 14px;
  font-family: var(--hand);
  font-size: 22px;
  color: var(--rust);
  line-height: 1.2;
}
@media (max-width: 900px) {
  .story__chapter { grid-template-columns: 1fr; gap: 24px; }
  .story__num { position: static; }
}

/* =================================================================
   PROFESSIONAL: timeline / CV
   ================================================================= */
.cv {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}
.cv:last-child { border-bottom: 1px solid var(--line); }
.cv__when {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.cv__when strong {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ocean);
  text-transform: none;
  margin-top: 4px;
}
.cv__role {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin-bottom: 8px;
}
.cv__role em { font-style: italic; }
.cv__org {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
}
.cv__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 60ch;
}
.cv__tags {
  margin-top: 14px;
  display: flex; flex-wrap: wrap; gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.cv__tags span { padding: 4px 9px; border: 1px solid var(--line-strong); border-radius: 99px; }
@media (max-width: 900px) {
  .cv { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
}

/* =================================================================
   GALLERY
   ================================================================= */
.gallery { padding: 60px 0 120px; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
.tile { position: relative; }
.tile__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 14px;
  color: var(--ink);
}
.tile__title em { font-style: italic; }
.tile__caption {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}
.tile--a { grid-column: 1 / 7; }
.tile--b { grid-column: 7 / 13; margin-top: 96px; }
.tile--c { grid-column: 2 / 7; }
.tile--d { grid-column: 7 / 12; margin-top: 72px; }
.tile--e { grid-column: 1 / 8; }
.tile--f { grid-column: 8 / 13; }
.tile--g { grid-column: 3 / 8; margin-top: 40px; }
.tile--h { grid-column: 8 / 12; margin-top: 100px; }
@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: 1fr; gap: 32px; }
  .tile { grid-column: 1 / -1 !important; margin-top: 0 !important; }
}

/* =================================================================
   CONTRADICTIONS — split rows
   ================================================================= */
.contradict {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.contradict:last-child { border-bottom: 1px solid var(--line); }
.contradict__side {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.015em;
}
.contradict__side em { font-style: italic; }
.contradict__side--r { text-align: right; }
.contradict__amp {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--rust);
}
@media (max-width: 720px) {
  .contradict { grid-template-columns: 1fr; gap: 8px; text-align: left; }
  .contradict__side--r { text-align: left; }
  .contradict__amp { display: none; }
}

/* =================================================================
   OVERLAP — asymmetric photo cluster
   ================================================================= */
.overlap {
  position: relative;
  padding: 80px 0;
  min-height: 720px;
}
.overlap__a, .overlap__b, .overlap__c { position: absolute; }
.overlap__a { width: 44%; top: 0; left: 6%; }
.overlap__b { width: 32%; top: 18%; right: 8%; z-index: 2; }
.overlap__c { width: 26%; bottom: 8%; left: 32%; z-index: 3; }
.overlap__note {
  position: absolute;
  font-family: var(--hand);
  color: var(--rust);
  font-size: 22px;
  max-width: 180px;
  line-height: 1.15;
  transform: rotate(-4deg);
}
.overlap__note--1 { top: 8%; right: 4%; }
.overlap__note--2 { bottom: 4%; left: 4%; }
@media (max-width: 900px) {
  .overlap { min-height: auto; padding: 32px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .overlap__a, .overlap__b, .overlap__c { position: static; width: 100%; }
  .overlap__a { grid-column: 1 / -1; }
  .overlap__note { display: none; }
}

/* =================================================================
   QUOTE
   ================================================================= */
.quote { padding: 120px 0; }
.quote__text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.22;
  letter-spacing: -0.018em;
  max-width: 22ch;
}
.quote__text em { font-style: italic; }
.quote__attr {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute);
}

/* =================================================================
   CONTACT
   ================================================================= */
.contact {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 160px 44px 80px;
}
.contact .eyebrow { margin-bottom: 24px; }
.contact__lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.014em;
  max-width: 26ch;
  color: var(--ink);
  margin-bottom: 32px;
}
.contact__mail {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 9vw, 130px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: inline-block;
  position: relative;
  transition: color 0.4s var(--ease);
}
.contact__mail em { font-style: italic; }
.contact__mail:hover { color: var(--ocean); }
.contact__mail::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.04em;
  height: 1px; background: var(--line-strong);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.contact__mail:hover::after { transform: scaleX(0); }
.contact__meta {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.contact__meta div strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  margin-top: 6px;
}
.contact__meta a:hover { color: var(--ocean); }
@media (max-width: 720px) {
  .contact__meta { grid-template-columns: 1fr 1fr; gap: 22px; }
}

/* =================================================================
   END LINK
   ================================================================= */
.endlink { padding: 24px 0 120px; }
.endlink__inner {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 24px;
}
.endlink h2 { margin-top: 12px; }
.endlink a {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: -0.012em;
  color: var(--ocean);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 3px;
  transition: border-color 0.3s;
}
.endlink a:hover { border-color: var(--ocean); }

/* =================================================================
   FOOTER
   ================================================================= */
.foot {
  padding: 36px 44px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.foot a:hover { color: var(--ocean); }
@media (max-width: 720px) {
  .foot { padding: 24px 22px; flex-direction: column; gap: 10px; align-items: flex-start; }
}

/* =================================================================
   REVEAL
   ================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.split-line { display: block; overflow: hidden; }
.split-line > span {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 1.1s var(--ease);
}
.is-in .split-line > span,
.split-line.is-in > span { transform: translateY(0); }

/* util */
.spacer-l { height: 120px; }
.spacer-m { height: 80px; }
.spacer-s { height: 40px; }
.center { text-align: center; }
.inline-link {
  color: var(--ocean);
  border-bottom: 1px solid rgba(31,61,82,0.28);
  padding-bottom: 1px;
  transition: border-color 0.3s;
}
.inline-link:hover { border-color: var(--ocean); }
