:root {
  --bg: #fbf9f4;
  --bg-alt: #f1ede3;
  --bg-soft: #eeeae2;
  --ink: #16151b;
  --ink-dim: #5c5a56;
  --ink-faint: #8a8681;
  --accent: #4275d2;
  --accent-dim: #2e56a8;
  --line: rgba(22, 21, 27, 0.12);
  --display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- Intro reveal ---------- */
html.intro-locked, html.intro-locked body { overflow: hidden; }

#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #4275D2;
  transform: translateX(0);
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
#intro-overlay.intro-hide { transform: translateX(-100%); }

@media (prefers-reduced-motion: reduce) {
  #intro-overlay { transition: none; }
}

.logo-star { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-solid { background: var(--accent); color: #fffaf5; }
.btn-solid:hover { background: #5c86dc; }

.btn-outline { border-color: var(--accent-dim); color: var(--accent); margin-top: 28px; }
.btn-outline:hover { background: var(--accent); color: #fffaf5; }

.btn-large { padding: 16px 34px; font-size: 0.95rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 26px 5vw;
  background: transparent;
  color: var(--ink);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.site-header.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.apply-link {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 500;
  color: inherit;
  background: transparent;
  transition: border-color 0.2s ease;
}
.apply-link:hover { border-color: currentColor; }

/* ---------- Layout helpers ---------- */
main > section {
  position: relative;
  z-index: 1;
  padding: 140px 5vw;
  max-width: var(--max);
  margin: 0 auto;
}

.section-heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 130px 0 0 !important;
  max-width: none;
  background: var(--bg);
}

.hero-gallery { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.sky-card {
  position: absolute;
  box-shadow: 0 18px 32px rgba(15, 15, 20, 0.22);
  transform: rotate(var(--rot));
}
.sky-card-frame {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 2px;
  background: #fdfcf8;
  padding: 5% 5% 16% 5%;
}
.sky-card-photo { width: 100%; height: 100%; overflow: hidden; background: #e5e1d6; }
.sky-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.sky-card.photo-reveal {
  opacity: 0;
  transform: rotate(var(--rot)) scale(0.82) translateY(16px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.sky-card.photo-reveal.is-visible {
  opacity: 1;
  transform: rotate(var(--rot)) scale(1) translateY(0);
}

.gallery-topleft { --rot: -3deg; left: 16%; top: 20%; width: 12.5%; aspect-ratio: 1 / 0.92; }
.gallery-bottomleft { --rot: 2.5deg; left: 4%; top: 50%; width: 17%; aspect-ratio: 1 / 0.8; }
.gallery-topright { --rot: 3deg; left: 70%; top: 14%; width: 12%; aspect-ratio: 0.82 / 1; }
.gallery-farright { --rot: -3deg; left: 85%; top: 28%; width: 8%; aspect-ratio: 0.82 / 1; }

/* Mobile: polaroids stay in the first viewport but clear the wordmark —
   top pair in the upper corners, bottom pair anchored to the hero floor. */
@media (max-width: 900px) {
  .gallery-topleft { left: -10%; top: 12%; width: 28%; }
  .gallery-topright { left: auto; right: -10%; top: 10%; width: 26%; }
  .gallery-bottomleft { left: -12%; top: auto; bottom: 3%; width: 34%; }
  .gallery-farright { left: auto; right: -14%; top: auto; bottom: 5%; width: 32%; }
}

.hero-center {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5vw;
}

.wordmark-logo {
  width: clamp(300px, 40vw, 760px);
  height: auto;
  display: block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1s ease, transform 1s ease;
}
.wordmark-logo.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .wordmark-logo { transition: opacity 0.3s ease; transform: none; }
}

/* ---------- Statement + Community scroll story ---------- */
.story {
  position: relative;
  z-index: 1;
  /* Runway for the statement fade + polaroid rearrange, then a pinned hold */
  height: 300vh;
  padding: 0 !important;
  max-width: none !important;
  margin: 0;
  background: var(--bg);
}
.story-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  background: var(--bg);
}
.story-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5vw 32vh;
  pointer-events: none;
  will-change: opacity, filter;
  box-sizing: border-box;
}
.story-copy .statement-heading,
.story-copy .statement-body {
  pointer-events: auto;
}

.statement-heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  line-height: 1.15;
  max-width: 20ch;
  margin: 0 auto 44px;
}
.statement-body {
  max-width: 62ch;
  margin: 0 auto;
  font-size: clamp(1.4rem, 2.55vw, 1.9rem);
  line-height: 1.7;
  font-weight: 400;
}
.statement-body p { margin-bottom: 1.4em; }
.statement-body p:last-child { margin-bottom: 0; }

/* Words can't break mid-word even though each letter is its own span. */
.sw-word { display: inline-block; white-space: nowrap; }

/* Each letter starts faint, then darkens (no weight change) as the reading
   line sweeps down through the paragraph on scroll. */
.sw {
  display: inline-block;
  color: #ebe6db;
  font-weight: 400;
  transition: color 0.85s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sw.is-revealed {
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .sw { color: var(--ink); transition: none; }
}

/* Community polaroid breaker — start clustered under the statement, end as a
   linear scattered row across the top (Single Fin–style scroll rearrange). */
.community-polaroids {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.comm-polaroid {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  will-change: transform;
  transform-origin: center center;
}
.comm-polaroid-frame {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 2px;
  background: #fdfcf8;
  padding: 5% 5% 16% 5%;
  box-shadow: 0 18px 36px rgba(15, 15, 20, 0.2);
}
.comm-polaroid-photo {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #e5e1d6;
}
.comm-polaroid-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pinned headline that lands below the settled polaroid band. Anchored near the
   bottom of the sticky frame so the carousel below follows without a dead gap. */
.community-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5vh;
  z-index: 3;
  text-align: center;
  padding: 0 5vw;
  opacity: 0;
  will-change: opacity, transform;
  pointer-events: none;
}
.community-heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--ink);
  max-width: 18ch;
  margin: 0 auto 22px;
}
.community-body {
  max-width: 48ch;
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  color: var(--ink-dim);
}

@media (max-width: 900px) {
  .story { height: 280vh; }
  /* Keep the full statement inside the sticky frame — previous padding + type
     sizes overflowed 100vh and clipped against overflow:hidden. */
  .story-copy {
    justify-content: flex-start;
    padding: max(72px, 12vh) 6vw 30vh;
  }
  .statement-heading {
    font-size: clamp(1.55rem, 6.4vw, 2.35rem);
    line-height: 1.18;
    margin: 0 auto 18px;
    max-width: 18ch;
  }
  .statement-body {
    font-size: clamp(0.95rem, 3.6vw, 1.15rem);
    line-height: 1.55;
    max-width: 36ch;
  }
  .statement-body p { margin-bottom: 0.9em; }
  .community-heading { font-size: clamp(1.65rem, 6.5vw, 2.4rem); margin-bottom: 14px; }
  .community-body { font-size: clamp(0.95rem, 3.5vw, 1.1rem); line-height: 1.5; }
  .community-copy { bottom: max(16px, 3vh); padding: 0 6vw; }
}

@media (max-width: 900px) and (max-height: 700px) {
  .story-copy { padding: max(64px, 10vh) 6vw 26vh; }
  .statement-heading { font-size: clamp(1.4rem, 5.8vw, 1.9rem); margin-bottom: 12px; }
  .statement-body { font-size: 0.92rem; line-height: 1.45; }
}

/* ---------- Creator carousel (horizontal, endless autoplay) ---------- */
.creators {
  max-width: none !important;
  margin: 0;
  padding: 0 0 120px !important;
  /* Match the reach band below so the seam under the carousel disappears.
     isolation keeps mix-blend multiply compositing against this tone only,
     instead of picking up a colder/whiter stack from layers behind. */
  background: var(--bg-soft);
  isolation: isolate;
  overflow: hidden;
}
.creators-viewport {
  --card-w: min(320px, 72vw);
  --card-gap: clamp(16px, 2.4vw, 32px);
}
.creators-track {
  display: flex;
  gap: var(--card-gap);
  margin: 0;
  padding: 14px max(5vw, calc((100% - var(--card-w)) / 2)) 34px;
  list-style: none;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.creators-track::-webkit-scrollbar { display: none; }
/* Snap fights per-frame scroll writes, so it steps aside while gliding/dragging. */
.creators-track.is-gliding,
.creators-track.is-dragging {
  scroll-snap-type: none;
}
.creators-track.is-dragging { cursor: grabbing; }
.creator-card {
  flex: 0 0 var(--card-w);
  scroll-snap-align: center;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  /* Match the section tone so multiply blend doesn't leave a white island. */
  background: var(--bg-soft);
  border: 1px solid var(--line);
  box-shadow: 0 20px 44px rgba(15, 15, 20, 0.13);
}
.creator-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 583 / 1024;
  object-fit: cover;
  /* The source art sits on white; multiplying drops that onto the page tone
     instead of stamping a white block over the background. */
  mix-blend-mode: multiply;
  /* Dragging the track shouldn't start a native image drag */
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 900px) {
  .creators { padding: 0 0 90px !important; }
  .creators-viewport { --card-w: min(280px, 76vw); }
  .creator-card { border-radius: 22px; }
}

/* ---------- Collective reach (bifold) ---------- */
.reach {
  max-width: none !important;
  margin: 0;
  padding: 140px 5vw !important;
  background: var(--bg-soft);
}
.reach-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}
.reach-heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-align: left;
  color: var(--ink);
  margin: 0;
}
.reach-metrics {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 8px;
}
.reach-metric {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.reach-num {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 10px;
}
.reach-label {
  display: block;
  max-width: 38ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-dim);
}

@media (max-width: 900px) {
  .reach { padding: 100px 6vw !important; }
  .reach-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ---------- This is Polaris (vertical carousel) ---------- */
.access {
  max-width: none !important;
  margin: 0;
  padding: 120px 5vw 140px !important;
  background: #fff;
  text-align: center;
}
.access-heading {
  text-align: center;
  margin: 0 auto 56px;
}
.access-stage {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.access-photo {
  width: 100%;
  transform: rotate(var(--rot, 0deg));
}
.access-polaroid {
  width: 100%;
  box-sizing: border-box;
  border-radius: 2px;
  background: #fdfcf8;
  padding: 5% 5% 16% 5%;
  box-shadow: 0 18px 36px rgba(15, 15, 20, 0.18);
}
.access-polaroid-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e5e1d6;
}
.access-polaroid-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.access-photos {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: clamp(120px, 14vw, 170px);
}
.access-photos--left {
  left: 0;
  top: 4%;
  align-items: flex-start;
}
.access-photos--left .access-photo:nth-child(2) {
  margin-left: 18%;
  width: 88%;
}
.access-photos--left .access-photo:nth-child(3) {
  margin-left: 6%;
  width: 92%;
}
.access-photos--right {
  right: 0;
  bottom: 2%;
  align-items: flex-end;
}
.access-photos--right .access-photo:nth-child(1) {
  width: 92%;
  margin-right: 8%;
}
.access-photos--right .access-photo:nth-child(2) {
  width: 100%;
}
.access-photos--right .access-photo:nth-child(3) {
  width: 84%;
  margin-right: 14%;
}
.access-carousel {
  position: relative;
  z-index: 2;
  width: min(560px, 72vw);
  /* Tall enough for 5 full lines with breathing room above/below */
  height: 400px;
  overflow: hidden;
}
.access-list {
  list-style: none;
  margin: 0;
  padding: 0;
  will-change: transform;
}
.access-item {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: rgba(22, 21, 27, 0.28);
  white-space: nowrap;
  will-change: color;
}

@media (max-width: 900px) {
  .access { padding: 90px 6vw 110px !important; }
  .access-heading { margin-bottom: 32px; }
  /* Stack photos and copy so polaroids never sit on top of the word list. */
  .access-stage {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .access-photos {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(100%, 360px);
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
  }
  .access-photos--left .access-photo,
  .access-photos--right .access-photo {
    margin: 0 !important;
    width: 32% !important;
  }
  /* Three photos per row is enough on a phone; drop the extras. */
  .access-photos--left .access-photo:nth-child(n + 3),
  .access-photos--right .access-photo:nth-child(n + 3) {
    display: none;
  }
  .access-photos--left { order: 1; }
  .access-carousel { order: 2; height: 300px; width: min(100%, 420px); }
  .access-photos--right { order: 3; }
  .access-item { height: 60px; font-size: clamp(1.1rem, 4.6vw, 1.45rem); }
}

/* ---------- Belong CTA (full-bleed blue, scroll-filled words) ---------- */
.belong {
  max-width: none !important;
  margin: 0;
  height: 280vh;
  padding: 0 !important;
  background: var(--accent);
  color: #fffaf5;
  z-index: 3;
}
.belong-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vh 5vw 10vh;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}
.belong-inner {
  width: min(1100px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
}
.belong-lead,
.belong-end,
.belong-word {
  font-family: var(--display);
  font-weight: 400;
  /* Prefer large width-based type; vh cap only kicks in on short screens */
  font-size: clamp(2.4rem, min(8.2vw, 8.8vh), 7.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
}
.belong-lead {
  color: rgba(255, 250, 245, 0.92);
}
.belong-words {
  list-style: none;
  margin: 0.12em 0;
  padding: 0;
  width: 100%;
}
.belong-word {
  color: rgba(255, 250, 245, 0.2);
}
.belong-end {
  color: #fffaf5;
}
.belong-apply {
  margin-top: 2em;
  font-family: var(--body);
  font-size: clamp(1.35rem, min(3vw, 3.2vh), 2.2rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #16151b;
  transition: color 0.25s ease;
}
.belong-apply:hover {
  color: #fffaf5;
}

@media (max-width: 900px) {
  .belong { height: 240vh; }
  .belong-pin { padding: 5vh 6vw 8vh; }
  .belong-lead,
  .belong-end,
  .belong-word {
    font-size: clamp(2rem, min(10vw, 8vh), 3.6rem);
  }
}

/* ---------- Finale footer ---------- */
.finale {
  position: relative;
  z-index: 1;
  background: #0a0a0a;
  color: #fffaf5;
  padding: 48px 4vw 0;
  overflow: hidden;
}
.finale-frame {
  position: relative;
  min-height: min(78vh, 720px);
  padding: 40px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.finale-nav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
}
.finale-nav a {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: rgba(255, 250, 245, 0.72);
  transition: color 0.2s ease;
}
.finale-nav a:hover {
  color: #fffaf5;
}
.finale-wordmark {
  position: absolute;
  left: 50%;
  bottom: -28%;
  transform: translateX(-50%);
  z-index: 1;
  /* Oversized on purpose — wider than the viewport so it reads as cropped.
     Keep the cap near the asset’s native width so it doesn’t soft-scale. */
  width: min(118vw, 1280px);
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
  /* Logo art is black; invert then dim to a subtle dark gray on #0a0a0a. */
  filter: invert(1) brightness(0.22);
  opacity: 1;
}
.finale-bottom {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 28px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: rgba(255, 250, 245, 0.45);
}
.finale-top-btn {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 245, 0.85);
  border-radius: 50%;
  color: #fffaf5;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.finale-top-btn:hover {
  background: #fffaf5;
  color: #0a0a0a;
  border-color: #fffaf5;
}

@media (max-width: 900px) {
  .finale { padding: 28px 4vw 0; }
  .finale-frame {
    min-height: 60vh;
    padding: 28px 0 0;
  }
  .finale-nav { align-items: flex-start; text-align: left; }
  .finale-wordmark {
    width: min(140vw, 1100px);
    bottom: -22%;
  }
}

/* ---------- Paths ---------- */
.path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.path-card {
  background: var(--bg);
  padding: 56px 44px;
}
.path-index {
  font-family: var(--display);
  font-weight: 400;
  color: var(--accent-dim);
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.path-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 18px 0 20px;
  letter-spacing: 0.01em;
}
.path-card p { color: var(--ink-dim); max-width: 46ch; }

/* ---------- Work ---------- */
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.section-header-row .section-heading { margin-bottom: 0; }
.section-note {
  max-width: 340px;
  color: var(--ink-faint);
  font-size: 0.9rem;
  padding-bottom: 8px;
}

.work-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.work-card {
  background: var(--bg-alt);
  padding: 40px 32px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s ease;
}
.work-card:hover { background: #eef1fa; }
.work-tag {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.work-card h3 {
  font-family: var(--body);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.work-card h3 em { color: var(--accent); font-style: normal; }

.link-more {
  display: inline-block;
  margin-top: 40px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--accent-dim);
  padding-bottom: 4px;
}
.link-more:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-bottom: 48px;
}
.service-col h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.service-col ul li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 1.1rem;
}
.service-col ul li:last-child { border-bottom: 1px solid var(--line); }

.services-note {
  max-width: 60ch;
  color: var(--ink-dim);
}

/* ---------- Company ---------- */
.company-copy {
  max-width: 74ch;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ink-dim);
  margin-bottom: 64px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { border-top: 1px solid var(--line); padding-top: 20px; }
.stat-num {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  color: var(--accent);
}
.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- CTA ---------- */
.cta {
  text-align: center;
  padding-top: 100px !important;
  padding-bottom: 140px !important;
}
.cta-headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 28px;
}
.cta-sub {
  max-width: 56ch;
  margin: 0 auto 40px;
  color: var(--ink-dim);
  font-size: 1.05rem;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 60px 5vw 34px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
}
.footer-nav { display: flex; gap: 28px; font-size: 0.85rem; flex-wrap: wrap; }
.footer-nav a { color: var(--ink-dim); }
.footer-nav a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 20px; font-size: 0.85rem; }
.footer-social a { color: var(--ink-dim); }
.footer-social a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}
.footer-bottom a { color: var(--ink-faint); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease, color 0.9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Headings start in ink and land on the accent blue as they scroll into view,
   echoing ranomi.nl's dim-to-full-color reveal but as a color shift too. */
.section-heading, .cta-headline, .reach-heading { color: var(--ink); }
.section-heading.is-visible, .cta-headline.is-visible { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  main > section { padding: 100px 6vw; }
  .path-grid, .work-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; gap: 40px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }

  .hero { padding-top: 96px !important; }
  .wordmark-logo { width: clamp(200px, 56vw, 340px); }
}

@media (max-width: 560px) {
  .site-header { padding: 18px 5vw; }
}
