/* ============================================================
   COSECHA — Immersive editorial stylesheet
   Cream paper. Ink black. Terracotta accent. Grain. Kinetic.
   ============================================================ */

:root {
  --bg: #F3ECDE;
  --bg-2: #ECE4D2;
  --ink: #15130F;
  --ink-2: #2A2620;
  --mute: #7D7268;
  --line: rgba(21,19,15,0.14);
  --soil: #B24B21;
  --leaf: #3B4A2E;
  --cream: #F7F1E3;

  --sans: 'Instrument Sans', ui-sans-serif, system-ui, -apple-system, 'Inter', sans-serif;
  --serif: 'Instrument Serif', 'Times New Roman', Times, serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --display: 'Sora', 'Instrument Sans', ui-sans-serif, system-ui, sans-serif;

  /* Hipster retro additions */
  --poster: 'Abril Fatface', 'Rozha One', Georgia, serif;
  --badge: 'Bungee', 'Impact', sans-serif;
  --hand: 'Caveat', 'Segoe Script', cursive;

  --max: 1360px;
  --gut: clamp(1.25rem, 3vw, 2.5rem);

  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  src: url('https://fonts.gstatic.com/s/sora/v12/xMQOuFFYT72X5wkB_18qmnndmSdSn7-8.woff2') format('woff2');
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  cursor: none;
}

main { overflow-x: clip; }
section, footer { max-width: 100%; box-sizing: border-box; }

@media (max-width: 820px) { body { cursor: auto; } }
@media (prefers-reduced-motion: reduce) { body { cursor: auto; } }

img, svg { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .3s var(--ease-out), color .3s var(--ease-out);
}
a:hover { opacity: .65; }

/* ============================================================ A11Y */
.skip {
  position: fixed;
  top: -44px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--bg);
  z-index: 9999;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 12px;
  transition: top .25s var(--ease-out);
}
.skip:focus { top: 12px; outline: 2px solid var(--soil); }

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

/* ============================================================ CANVAS PARTICLES */
#bg-particles {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: .55;
  mix-blend-mode: multiply;
}

/* ============================================================ SONIDERO EQ */
.eq {
  margin: 2.5rem auto 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 72px;
  max-width: 440px;
}
.eq span {
  flex: 1;
  background: var(--soil);
  border-radius: 3px;
  height: 20%;
  transform-origin: bottom;
  animation: eq-pulse 1.2s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
.eq span:nth-child(3n+2) { background: var(--ink); }
.eq span:nth-child(5n+1) { background: var(--leaf); }
@keyframes eq-pulse {
  0%, 100% { transform: scaleY(0.25); }
  20%      { transform: scaleY(1); }
  40%      { transform: scaleY(0.5); }
  60%      { transform: scaleY(0.85); }
  80%      { transform: scaleY(0.35); }
}
@media (prefers-reduced-motion: reduce) {
  .eq span { animation: none; height: 45%; }
}
@media (max-width: 640px) {
  .eq { height: 54px; max-width: 320px; gap: 3px; }
}

/* ============================================================ GRAIN */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.10;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' seed='7'/%3E%3CfeColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.45 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 8s steps(8) infinite;
}
@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2%, 1%); }
  50%  { transform: translate(1%, -1%); }
  75%  { transform: translate(-1%, -2%); }
  100% { transform: translate(0, 0); }
}

/* ============================================================ CUSTOM CURSOR */
.cursor,
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
  mix-blend-mode: difference;
}
.cursor {
  width: 36px; height: 36px;
  border: 1.5px solid #F3ECDE;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .28s var(--ease-out), height .28s var(--ease-out), border-color .28s, background .28s, opacity .2s;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: #F3ECDE;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .2s var(--ease-out), height .2s var(--ease-out);
}
.cursor.hover { width: 68px; height: 68px; background: rgba(243,236,222,0.08); }
.cursor.hover ~ .cursor-dot { width: 3px; height: 3px; }

/* ============================================================ INTRO LOADER */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .8s var(--ease-out), visibility 0s linear .8s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-seed {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  animation: pulse 1.1s var(--ease-in-out) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.8); opacity: .4; }
}

/* ============================================================ LAYOUT PRIMITIVES */
/* Cassette j-card sticker — the section anchor */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  padding: .38rem .8rem .38rem .8rem;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  background: var(--bg);
  position: relative;
  box-shadow: 3px 3px 0 0 var(--soil);
}
.sec-label::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--soil);
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px var(--ink);
  flex-shrink: 0;
}

.mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; }
.serif-italic { font-family: var(--serif); font-style: italic; }
.serif-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.8vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0 0 2rem;
  font-style: italic;
}

section {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 10vw, 10rem) var(--gut);
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
section:first-of-type { border-top: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: -0.005em;
  transition: transform .35s var(--ease-out), background .35s var(--ease-out), color .35s var(--ease-out), box-shadow .35s var(--ease-out);
  text-align: center;
}
.btn-ink { background: var(--ink); color: var(--bg); }
.btn-ink:hover { background: var(--soil); color: var(--bg); transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(178,75,33,.6); opacity: 1; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); opacity: 1; }

/* ============================================================ NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 1.1rem clamp(1.25rem, 3vw, 2.5rem);
  z-index: 200;
  background: rgba(243,236,222,0.88);
  backdrop-filter: blur(8px) saturate(1.1);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
  border-bottom: 1px solid var(--line);
  transform: translateY(-110%);
  transition: transform .7s var(--ease-out);
}
.nav.ready { transform: translateY(0); }
.nav-mark { width: 120px; }
.nav-mark svg { width: 100%; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.9rem, 2vw, 1.8rem);
}
.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  padding: .3rem 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links .nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: .55rem 1rem;
  border-radius: 999px;
}
.nav-links .nav-cta:hover { background: var(--soil); opacity: 1; }
.nav-links .nav-cta::after { display: none; }

.lang-toggle {
  background: none;
  border: 1px solid var(--line);
  padding: .45rem .7rem;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  gap: .25rem;
  align-items: center;
}
.lang-toggle .is-active { color: var(--ink); font-weight: 600; }
.lang-toggle span:not(.is-active):not(.lang-sep) { color: var(--mute); }
.lang-toggle:hover { border-color: var(--ink); }
.lang-sep { color: var(--mute); }

@media (max-width: 820px) {
  .nav {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    grid-template-areas:
      "mark toggle"
      "links links";
    align-items: center;
    gap: .55rem .5rem;
    padding: .75rem 1rem .55rem;
  }
  .nav-mark { grid-area: mark; width: 96px; }
  .lang-toggle { grid-area: toggle; justify-self: end; }
  .nav-links {
    grid-area: links;
    display: flex;
    flex-wrap: nowrap;
    gap: .8rem;
    padding: .4rem .2rem 0;
    margin: 0 -.4rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    padding: .35rem .2rem;
    white-space: nowrap;
    flex: 0 0 auto;
  }
  .nav-links .nav-cta { padding: .4rem .8rem; }
  .lang-toggle {
    font-size: 12px;
    letter-spacing: 0.22em;
    padding: .5rem .8rem;
    min-height: 38px;
    border-radius: 999px;
    border-width: 1.5px;
  }
  .lang-toggle span { display: inline-block; }
}

/* ============================================================ HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  padding-top: clamp(6rem, 12vh, 10rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
  border-top: none;
}

.hero-meta {
  color: var(--mute);
  margin-bottom: clamp(1rem, 2vw, 2rem);
  opacity: 0;
  animation: rise .9s var(--ease-out) .6s forwards;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

/* Geo row — LA · TX · NY · MIA · CDMX+ · USA/MX */
.geo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .55rem;
  font-family: var(--badge);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.geo-chip {
  padding: .3rem .55rem;
  border: 1.2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  display: inline-block;
  transform: translateY(8px);
  opacity: 0;
  animation: chip-in .55s var(--ease-out) both;
  box-shadow: 2px 2px 0 var(--soil);
}
.geo-chip:nth-of-type(1) { animation-delay: .80s; }
.geo-chip:nth-of-type(2) { animation-delay: .92s; }
.geo-chip:nth-of-type(3) { animation-delay: 1.04s; }
.geo-chip:nth-of-type(4) { animation-delay: 1.16s; }
.geo-chip:nth-of-type(5) { animation-delay: 1.28s; }
.geo-chip:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translate(-1px, -2px);
  box-shadow: 4px 4px 0 var(--soil);
  transition: all .25s var(--ease-out);
}
.geo-sep {
  color: var(--soil);
  font-family: var(--poster);
  opacity: .6;
}
.geo-flag {
  margin-left: auto;
  padding: .35rem .75rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-family: var(--badge);
  font-size: 10px;
  letter-spacing: 0.24em;
  opacity: 0;
  animation: chip-in .55s var(--ease-out) 1.5s both;
  white-space: nowrap;
}
.geo-flag em { color: var(--soil); font-style: normal; margin: 0 .2em; font-weight: 700; }
@keyframes chip-in {
  to { transform: translateY(0); opacity: 1; }
}
@media (max-width: 640px) {
  .geo-flag { margin-left: 0; margin-top: .3rem; }
  .geo-row { gap: .35rem; font-size: 10px; }
  .geo-chip { padding: .25rem .45rem; }
}

.hero-word {
  margin: 0;
  padding: 0;
  line-height: 0.82;
  max-width: 100%;
  position: relative;
}

/* Background SVG wordmark is now a ghost layer — we render letters via HTML */
.wordmark-big {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  pointer-events: none;
}

/* Kinetic HTML letters — Manrope geometric sans (Circular-style) */
.word-letters {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0;
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(4rem, 19vw, 17rem);
  color: var(--ink);
  letter-spacing: -0.065em;
  line-height: .88;
  overflow: visible;
  max-width: 100%;
  padding: 0 .5rem;
  box-sizing: border-box;
  font-feature-settings: "ss01", "ss02", "cv11";
}
.word-letters .wl {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%) rotate(8deg);
  animation: letter-rise 1s var(--ease-out) both;
  transform-origin: 50% 85%;
  will-change: transform, opacity;
}
.word-letters .wl:nth-child(1) { animation-delay: .70s; }
.word-letters .wl:nth-child(2) { animation-delay: .78s; }
.word-letters .wl:nth-child(3) { animation-delay: .86s; }
.word-letters .wl:nth-child(4) { animation-delay: .94s; }
.word-letters .wl:nth-child(5) { animation-delay: 1.02s; }
.word-letters .wl:nth-child(6) { animation-delay: 1.10s; }
.word-letters .wl:nth-child(7) { animation-delay: 1.18s; }

/* Seed dot inside the "o" */
.word-letters .wl-o {
  position: relative;
}
.word-letters .wl-o::after {
  content: '';
  position: absolute;
  top: 44%;
  right: 18%;
  width: 0.13em;
  height: 0.13em;
  background: var(--ink);
  border-radius: 50%;
  transform: scale(0);
  animation: seed-pop .6s var(--ease-out) 1.5s forwards;
}
@keyframes letter-rise {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}
@keyframes seed-pop {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* After entry, breathing pulse */
.word-letters.done .wl {
  animation: wl-breath 6s ease-in-out infinite;
  opacity: 1;
}
.word-letters.done .wl:nth-child(1) { animation-delay: 0s; }
.word-letters.done .wl:nth-child(2) { animation-delay: .1s; }
.word-letters.done .wl:nth-child(3) { animation-delay: .2s; }
.word-letters.done .wl:nth-child(4) { animation-delay: .3s; }
.word-letters.done .wl:nth-child(5) { animation-delay: .4s; }
.word-letters.done .wl:nth-child(6) { animation-delay: .5s; }
.word-letters.done .wl:nth-child(7) { animation-delay: .6s; }
@keyframes wl-breath {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Logo breathing pulse (SVG in nav + footer) */
.nav-mark .wordmark-svg,
.footer-mark .wordmark-svg {
  animation: mark-breath 5s ease-in-out infinite;
  transform-origin: center;
}
@keyframes mark-breath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.02); }
}

.hero-tag {
  font-family: var(--mono);
  font-size: clamp(.7rem, 1.1vw, .85rem);
  letter-spacing: 0.32em;
  color: var(--ink);
  margin: 2rem 0 0;
  text-align: center;
  opacity: 0;
  animation: rise .9s var(--ease-out) 1.1s forwards;
}

.hero-lede {
  max-width: 560px;
  margin: clamp(2rem, 5vw, 4rem) 0 2rem;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.4;
  color: var(--ink-2);
  opacity: 0;
  animation: rise 1s var(--ease-out) 1.4s forwards;
}

.hero-cta {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 1s var(--ease-out) 1.7s forwards;
}

/* Hero decorative assets removed — hero wordmark carries the visual weight.
   Keeping only the spin keyframe which is used by the .stamp ring. */
@keyframes spin { to { transform: rotate(360deg); } }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================ MARQUEE */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 1.2rem 0;
  max-width: none;
  margin: 0;
  z-index: 2;
  position: relative;
  contain: content;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  width: max-content;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  color: var(--ink);
  letter-spacing: -0.015em;
  animation: scroll-x 26s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
.marquee-track > span {
  flex: 0 0 auto;
  line-height: 1;
  transform: translate3d(0, 0, 0);
}
.marquee-track span:nth-child(odd) { color: var(--ink); }
.marquee-track span:nth-child(even) { color: var(--soil); font-size: .55em; align-self: center; }
@keyframes scroll-x {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 820px) {
  .marquee-track { animation-duration: 22s; font-size: 1.5rem; gap: 1.4rem; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================================ MANIFESTO */
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 3rem;
  align-items: start;
}
.manifesto-col .lead {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  line-height: 1.45;
  font-style: italic;
  color: var(--ink);
  margin-top: 0;
}
.manifesto-col p {
  max-width: 42em;
  margin-bottom: 1.25rem;
}
.pull {
  grid-column: 1 / -1;
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 2rem 0;
}
.pull span.serif-italic {
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  line-height: 1.15;
  display: inline-block;
  max-width: 22ch;
  color: var(--ink);
}
@media (max-width: 820px) { .manifesto-grid { grid-template-columns: 1fr; } }

/* ============================================================ SERVICES */
.service-list {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  counter-reset: svc;
  display: grid;
  gap: 0;
}
.svc {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: background .4s var(--ease-out);
}
.svc:hover { background: var(--bg-2); }
.svc::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ease-out);
}
.svc:hover::before { transform: scaleX(1); }

.svc-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.15em;
  padding-top: .5rem;
}
.svc-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 1rem;
  color: var(--ink);
  transition: color .4s var(--ease-out), transform .4s var(--ease-out);
}
.svc:hover .svc-title { color: var(--soil); transform: translateX(6px); }

.svc-desc {
  max-width: 48em;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 1.25rem;
}
.svc-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: .5rem 2rem;
}
.svc-bullets li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  padding-left: 14px;
  position: relative;
}
.svc-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--soil);
}

@media (max-width: 640px) {
  .svc { grid-template-columns: 1fr; }
  .svc-num { padding-top: 0; }
}

/* ============================================================ ROSTER */
.roster-list {
  list-style: none;
  padding: 0;
  margin: 3rem 0 2rem;
  display: grid;
  gap: 0;
}
.roster-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  cursor: default;
  transition: padding .4s var(--ease-out);
  position: relative;
}
.roster-list li:last-child { border-bottom: 1px solid var(--line); }
.roster-list li:hover { padding-left: 1.2rem; }
.roster-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0; height: 6px;
  background: var(--soil);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: width .4s var(--ease-out);
}
.roster-list li:hover::before { width: 6px; }

.roster-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4.4vw, 3.4rem);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  transition: color .3s var(--ease-out);
}
.roster-list li:hover .roster-name { color: var(--soil); }
.roster-tag { color: var(--mute); }
.roster-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--mute);
  max-width: 44em;
  margin-top: 2rem;
}

/* ============================================================ FOUNDERS */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 3rem;
}
.founder {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.founder-mark {
  width: 44px; height: 44px;
  margin-bottom: 1.25rem;
}
.founder-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  margin: 0 0 .4rem;
  color: var(--ink);
}
.founder-role {
  color: var(--mute);
  margin-bottom: 1.2rem;
}
.founder-bio {
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 1.3rem;
  color: var(--ink-2);
  max-width: 38em;
}
.founder-link {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

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

/* ============================================================ FUND */
.fund { background: var(--ink); color: var(--bg); border-radius: 0; margin: 0; max-width: none; padding-left: clamp(1.25rem,8vw,8rem); padding-right: clamp(1.25rem,8vw,8rem); border-top: 1px solid var(--line); }
.fund .serif-display { color: var(--bg); }
.fund .fund-body p { color: rgba(243,236,222,.85); max-width: 48em; font-size: clamp(1.05rem,1.4vw,1.2rem); line-height: 1.55; }

.fund-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem 2.5rem;
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(243,236,222,.15);
  border-bottom: 1px solid rgba(243,236,222,.15);
}
.fund-stats div { display: flex; flex-direction: column; gap: .4rem; }
.fund-stats dt { color: rgba(243,236,222,.5); }
.fund-stats dd {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  color: var(--bg);
  letter-spacing: -0.02em;
}
.fund .btn-ink { background: var(--bg); color: var(--ink); }
.fund .btn-ink:hover { background: var(--soil); color: var(--bg); }

/* ============================================================ FAQ */
.faq-list {
  margin: 3rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.faq-list > div {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}
.faq-list > div:last-child { border-bottom: 1px solid var(--line); }
.faq-list dt {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  letter-spacing: -0.015em;
  color: var(--ink);
}
.faq-list dd {
  margin: 0;
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 44em;
}
@media (max-width: 820px) { .faq-list > div { grid-template-columns: 1fr; gap: .6rem; } }

/* ============================================================ CONTACT */
.contact-grid {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.contact-grid li {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.contact-grid li span.mono { color: var(--mute); }
.contact-grid a {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  letter-spacing: -0.015em;
  color: var(--ink);
  word-break: break-all;
}
.contact-grid a:hover { color: var(--soil); opacity: 1; }

/* ============================================================ FOOTER */
.footer {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 6vw, 6rem) var(--gut) 2rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: center;
}
.footer-mark { width: clamp(180px, 40vw, 400px); }
.footer-tag { color: var(--mute); letter-spacing: 0.26em; font-size: 10px; }
.footer-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mute);
}
.footer-links a:hover { color: var(--ink); opacity: 1; }
.footer-copy { color: var(--mute); font-size: 10px; letter-spacing: 0.2em; margin-top: 1rem; }

.footer-geo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .4rem .6rem;
  font-family: var(--badge);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin-top: .5rem;
}
.footer-geo span:nth-child(odd) {
  padding: .25rem .55rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
}
.footer-geo span:nth-child(even) { color: var(--soil); opacity: .6; }

/* ============================================================ COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 560px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 500;
  font-size: 13px;
  transform: translateY(140%);
  transition: transform .6s var(--ease-out);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.4);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { margin: 0; line-height: 1.4; flex: 1; }
.cookie-banner button {
  background: var(--bg);
  color: var(--ink);
  border: none;
  padding: .55rem 1rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s var(--ease-out);
}
.cookie-banner button:hover { background: var(--soil); color: var(--bg); }

/* ============================================================ REVEAL ANIMATIONS */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* ============================================================ SCROLL PROGRESS */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--soil);
  z-index: 300;
  width: 0%;
  transition: width .1s linear;
}

/* ============================================================ LEGAL PAGE */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 6rem var(--gut) 4rem;
}
.legal h1 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
}
.legal h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 2rem 0 .5rem;
  letter-spacing: -0.01em;
}
.legal p, .legal li {
  line-height: 1.65;
  color: var(--ink-2);
}
.legal a { border-bottom: 1px solid currentColor; }
.legal .mono { color: var(--mute); }

/* ============================================================ MOTION PREFS */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .grain { display: none; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   SECTION PALETTE ALTERNATION — LIGHT / DARK RHYTHM
   Cream ↔ ink across sections with SVG wave transitions.
   ============================================================ */

section.sec-dark {
  background: var(--ink);
  color: var(--bg);
  max-width: none;
  margin: 0;
  padding-left: clamp(1.25rem, 6vw, 6rem);
  padding-right: clamp(1.25rem, 6vw, 6rem);
  border-top: none;
  position: relative;
  z-index: 2;
}
section.sec-dark > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
section.sec-dark .sec-label { color: var(--bg); border-color: var(--bg); background: var(--ink); box-shadow: 3px 3px 0 0 var(--soil); }
section.sec-dark .sec-label::before { box-shadow: 0 0 0 2px var(--ink), 0 0 0 3px var(--bg); }
.fund .sec-label { color: var(--bg); border-color: var(--bg); background: var(--ink); box-shadow: 3px 3px 0 0 var(--soil); }
.fund .sec-label::before { box-shadow: 0 0 0 2px var(--ink), 0 0 0 3px var(--bg); }
section.sec-dark .serif-display,
section.sec-dark h2,
section.sec-dark h3 { color: var(--bg); }
section.sec-dark p,
section.sec-dark .svc-desc,
section.sec-dark .founder-bio,
section.sec-dark dd { color: rgba(243,236,222,.85); }
section.sec-dark .svc-bullets li { color: rgba(243,236,222,.6); }
section.sec-dark .svc-bullets li::before { background: var(--soil); }
section.sec-dark .svc { border-top-color: rgba(243,236,222,.12); }
section.sec-dark .svc:hover { background: rgba(243,236,222,.04); }
section.sec-dark .svc:hover .svc-title { color: var(--soil); }
section.sec-dark .svc-num { background: var(--ink); border-color: var(--bg); box-shadow: 3px 3px 0 0 var(--leaf); }
section.sec-dark .svc-num .svc-track { color: var(--bg); }
section.sec-dark .svc-num .svc-side { color: var(--soil); }
section.sec-dark .svc:hover .svc-num { box-shadow: 5px 5px 0 0 var(--leaf); }

/* A-SIDE / B-SIDE flip divider */
.svc-flip {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 1.2rem 0;
  border: none !important;
  background: none;
  list-style: none;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soil);
}
.svc-flip .flip-arrow {
  font-family: var(--poster);
  font-size: 22px;
  color: var(--soil);
  animation: reel-spin 6s linear infinite;
  display: inline-block;
  transform-origin: center;
  line-height: .8;
}
.svc-flip .flip-line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--soil) 0 6px, transparent 6px 12px);
  opacity: .7;
}
section.sec-dark .svc-flip { color: var(--soil); }
section.sec-dark .svc-flip .flip-line { background: repeating-linear-gradient(to right, var(--soil) 0 6px, transparent 6px 12px); }
section.sec-dark .roster-name { color: var(--bg); }
section.sec-dark .roster-list li { border-top-color: rgba(243,236,222,.12); }
section.sec-dark .roster-list li:last-child { border-bottom-color: rgba(243,236,222,.12); }
section.sec-dark .roster-list li:hover .roster-name { color: var(--soil); }
section.sec-dark .roster-list li:hover::before { background: var(--soil); }
section.sec-dark .roster-tag { color: rgba(243,236,222,.55); }
section.sec-dark .roster-note { color: rgba(243,236,222,.6); }
section.sec-dark .founder { border-top-color: rgba(243,236,222,.2); }
section.sec-dark .founder-name::after { color: var(--soil); }
section.sec-dark .founder-mark svg circle { stroke: var(--bg) !important; fill: var(--bg); }
section.sec-dark .founder-mark::after { border-color: rgba(243,236,222,.3); }
section.sec-dark .founder-mark svg circle[fill="#15130F"] { fill: var(--bg); }
section.sec-dark .founder-link { color: var(--bg); border-bottom-color: var(--bg); }
section.sec-dark .contact-grid li { border-top-color: rgba(243,236,222,.2); }
section.sec-dark .contact-grid a { color: var(--bg); }
section.sec-dark .contact-grid a:hover { color: var(--soil); }
section.sec-dark .contact-grid li span.mono { color: rgba(243,236,222,.6); }
section.sec-dark .faq-list > div { border-top-color: rgba(243,236,222,.2); }
section.sec-dark .faq-list > div:last-child { border-bottom-color: rgba(243,236,222,.2); }
section.sec-dark .faq-list dt { color: var(--bg); }
section.sec-dark .faq-list dd { color: rgba(243,236,222,.8); }
section.sec-dark .faq-list dd::before { color: var(--soil); }

/* Light sections keep default but set explicit class for consistency */
section.sec-light { background: var(--bg); color: var(--ink); }

/* Interstitial now LIGHT */
.interstitial.sec-light { background: var(--bg); }
.interstitial.sec-light .interstitial-word { color: var(--ink); }
.interstitial.sec-light::before {
  background: radial-gradient(ellipse at 50% 40%, rgba(178,75,33,.15), transparent 70%);
}
.interstitial.sec-light::after { color: rgba(21,19,15,.5); }

/* SVG wave dividers between sections — taller + slight overlap to hide sub-pixel seams */
.wave-divider {
  display: block;
  width: 100%;
  height: clamp(60px, 8vw, 110px);
  line-height: 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin-top: -1px;
  margin-bottom: -1px;
  pointer-events: none;
}
.wave-divider svg { width: 100%; height: 100%; display: block; }
.wave-to-dark { background: var(--bg); }
.wave-to-light { background: var(--ink); }

/* ============================================================
   FUTURISTIC 3D + CLIP REVEAL ANIMATIONS
   ============================================================ */

body { perspective: none; }

/* Base state — sections lift in from below with Z-depth tilt */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 60px, -80px) rotateX(12deg);
  transform-origin: 50% 100%;
  transition:
    opacity .9s var(--ease-out),
    transform 1.1s var(--ease-out),
    filter 1s var(--ease-out),
    clip-path 1.2s var(--ease-in-out);
  filter: blur(8px);
  will-change: opacity, transform, filter;
}
[data-reveal].in {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0);
  filter: blur(0);
}

/* Clip-path wipe reveal variant */
[data-reveal="wipe"] {
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transform: none;
  filter: none;
  transition: clip-path 1.1s var(--ease-in-out), opacity .4s .2s;
}
[data-reveal="wipe"].in {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: none;
}

/* Serif-display reveal — slide + blur. No clip-path hide
   (clip-path reported 0 intersectionRatio in IO, headings never fired). */
.serif-display {
  display: inline-block;
  overflow: visible;
}
[data-reveal].serif-display {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  filter: blur(6px);
  transition: opacity .9s var(--ease-out), transform 1s var(--ease-out), filter .9s var(--ease-out);
}
[data-reveal].serif-display.in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* Service list gets a 3D tilt on scroll-in */
.svc[data-reveal] {
  transform: translate3d(0, 80px, -120px) rotateX(22deg);
}
.svc[data-reveal].in {
  transform: translate3d(0, 0, 0) rotateX(0);
}

/* Roster rows stagger in from the left with skew */
.roster-list li[data-reveal] {
  transform: translate3d(-60px, 30px, -60px) skewX(-8deg);
  filter: blur(6px);
}
.roster-list li[data-reveal].in {
  transform: translate3d(0, 0, 0) skewX(0);
  filter: blur(0);
}

/* Founder columns enter with opposite tilts */
.founder[data-reveal]:nth-child(1) {
  transform: translate3d(-40px, 60px, -100px) rotateY(-8deg);
}
.founder[data-reveal]:nth-child(2) {
  transform: translate3d(40px, 60px, -100px) rotateY(8deg);
}
.founder[data-reveal].in { transform: translate3d(0, 0, 0) rotateY(0); }

/* Contact chips float in from below with slight 3D rotation */
.contact-grid li[data-reveal] {
  transform: translate3d(0, 40px, -60px) rotateX(18deg);
}
.contact-grid li[data-reveal].in {
  transform: translate3d(0, 0, 0) rotateX(0);
}

/* FAQ Q&As swing in from alternating sides */
.faq-list > div[data-reveal]:nth-child(odd) {
  transform: translate3d(-30px, 30px, -40px) rotateY(-6deg);
}
.faq-list > div[data-reveal]:nth-child(even) {
  transform: translate3d(30px, 30px, -40px) rotateY(6deg);
}
.faq-list > div[data-reveal].in { transform: translate3d(0, 0, 0) rotateY(0); }

/* transform-style kept flat to keep text crisp — 3D reveal uses isolated .cassette/.vinyl SVGs instead */
section {
  transform-style: flat;
}

/* Spotlight follow — faint radial that tracks scroll depth */
.hero::after,
.manifesto::after,
.fund::after,
.faq::after {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(178,75,33,.10), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: spotlight-drift 14s ease-in-out infinite alternate;
}
@keyframes spotlight-drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(40px, 30px); }
}

/* Mobile: softer 3D (heavy transforms eat battery) */
@media (max-width: 820px) {
  [data-reveal] {
    transform: translate3d(0, 40px, 0);
    filter: blur(4px);
  }
  .svc[data-reveal] { transform: translate3d(0, 50px, 0) rotateX(10deg); }
  .roster-list li[data-reveal] { transform: translate3d(-30px, 20px, 0); filter: blur(3px); }
  .founder[data-reveal]:nth-child(1),
  .founder[data-reveal]:nth-child(2) { transform: translate3d(0, 40px, 0); }
  .contact-grid li[data-reveal] { transform: translate3d(0, 30px, 0); }
  .faq-list > div[data-reveal]:nth-child(odd),
  .faq-list > div[data-reveal]:nth-child(even) { transform: translate3d(0, 30px, 0); }
}

/* Prefers-reduced-motion flattens the 3D */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transform: none !important; filter: none !important; }
  .wave-divider { display: none; }
  body { perspective: none; }
}

/* ============================================================
   HIPSTER RETRO LAYER
   Poster serifs, stamps, ornaments, vinyls, signatures, slabs.
   Cream + ink + terracotta + olive. No new colors.
   ============================================================ */

/* Serif display accent (swap in at hero) */
.serif-display { font-family: var(--poster); font-style: normal; font-weight: 400; letter-spacing: -0.02em; }

/* Stamp badge (top of hero) */
.stamp {
  position: absolute;
  top: clamp(4.5rem, 9vh, 7rem);
  right: clamp(1rem, 4vw, 3rem);
  width: clamp(90px, 11vw, 130px);
  height: clamp(90px, 11vw, 130px);
  color: var(--soil);
  z-index: 3;
  pointer-events: none;
}
.stamp-ring { width: 100%; height: 100%; animation: spin 22s linear infinite; }
.stamp-core {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
@media (max-width: 640px) {
  .stamp { top: 4.5rem; right: 1rem; width: 70px; height: 70px; }
}

/* Ornament divider */
.ornament {
  display: flex;
  justify-content: center;
  padding: 1.75rem var(--gut);
  background: var(--bg);
  color: var(--ink);
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
}
.ornament svg { width: min(560px, 80%); height: 24px; opacity: .7; }

/* Service numbers → cassette tracklist badge (A1 / A2 / B1 / B2) */
.svc-num {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0.02em;
  padding: 0;
  transform: none;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  padding: .5rem .7rem;
  border: 1.5px solid var(--ink);
  background: var(--bg);
  border-radius: 3px;
  box-shadow: 3px 3px 0 0 var(--leaf);
  position: relative;
}
.svc-num .svc-side {
  font-family: var(--poster);
  font-size: 22px;
  line-height: .85;
  color: var(--soil);
  font-weight: 400;
  margin-right: 1px;
}
.svc-num .svc-track {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
}
.svc:hover .svc-num { box-shadow: 5px 5px 0 0 var(--leaf); transform: translate(-1px, -1px); transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out); }

/* Founder mark → vinyl disc */
.founder-mark {
  width: 52px;
  height: 52px;
  position: relative;
}
.founder-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transform: scale(1.25);
  opacity: .25;
}
.founder-name {
  font-family: var(--poster);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.founder-name::after {
  content: ' —';
  font-family: var(--hand);
  color: var(--soil);
  font-size: .8em;
  margin-left: .25em;
}

/* Roster — slab poster names */
.roster-name { font-family: var(--poster); letter-spacing: -0.01em; font-weight: 400; }
.roster-list li::marker { content: none; }
.roster-list li::after {
  content: '♫';
  position: absolute;
  right: 2px;
  font-family: var(--poster);
  color: var(--soil);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .4s, transform .4s var(--ease-out);
}
.roster-list li:hover::after { opacity: .6; transform: translateX(0); }

/* Interstitial — retro treatment */
.interstitial { background: var(--ink); }
.interstitial-word {
  font-family: var(--poster);
  letter-spacing: -0.02em;
}
.interstitial::after {
  content: 'EST · MMXXVI';
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  font-family: var(--badge);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: rgba(243,236,222,.4);
}

/* CTA buttons — slight tilt, thick retro shadow */
.btn-ink {
  box-shadow: 4px 4px 0 var(--soil);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s, color .3s;
}
.btn-ink:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--soil); }
.btn-ghost {
  border-width: 1.5px;
  box-shadow: 3px 3px 0 var(--ink);
}
.btn-ghost:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }

/* Hero tag — stamp-style chip */
.hero-tag {
  display: inline-block;
  padding: .7rem 1.4rem;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  margin: 2rem auto 0;
  align-self: center;
  text-align: center;
  box-shadow: 3px 3px 0 var(--soil);
  transform: rotate(-1.5deg);
}

/* FAQ — zine-like answer block */
.faq-list dt { font-family: var(--poster); font-weight: 400; }
.faq-list dd::before {
  content: '→ ';
  color: var(--soil);
  font-family: var(--badge);
}

/* Section numerals ("I.", "II.") in Bungee badge */
.sec-label { font-family: var(--badge); font-size: 10px; letter-spacing: 0.28em; color: var(--soil); }

/* Contact emails styled as labels */
.contact-grid a { font-family: var(--poster); font-weight: 400; }

/* Footer — pressed-logo feel */
.footer::before {
  content: '♪   ·   ★   ·   ♪   ·   ★   ·   ♪   ·   ★   ·   ♪';
  display: block;
  font-family: var(--badge);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--soil);
  margin-bottom: 1.5rem;
}

/* Handwritten notes layered over long paragraphs */
.manifesto-col .lead::first-letter {
  font-family: var(--poster);
  font-size: 3.4em;
  float: left;
  line-height: .9;
  padding: 0.08em 0.12em 0 0;
  color: var(--soil);
}

/* Pull quote — retro framed */
.pull {
  position: relative;
  padding: 3rem 2rem;
  border: 1.5px solid var(--ink);
  background: var(--cream);
  margin: 3rem auto;
  max-width: 780px;
  box-shadow: 6px 6px 0 var(--soil);
}
.pull::before {
  content: 'N° 01';
  position: absolute;
  top: -14px;
  left: 2rem;
  background: var(--bg);
  padding: 0 10px;
  font-family: var(--badge);
  font-size: 10px;
  letter-spacing: .28em;
  color: var(--soil);
}
.pull::after {
  content: '· COSECHA ·';
  position: absolute;
  bottom: -10px;
  right: 2rem;
  background: var(--bg);
  padding: 0 10px;
  font-family: var(--badge);
  font-size: 10px;
  letter-spacing: .28em;
  color: var(--ink);
}
.pull span.serif-italic {
  font-family: var(--poster);
  font-style: normal;
  font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  display: inline-block;
  max-width: 22ch;
  color: var(--ink);
}

/* Fund — retro ticket card */
.fund {
  border-top: 4px double var(--ink);
  border-bottom: 4px double var(--ink);
}
.fund-stats dd { font-family: var(--poster); font-weight: 400; }

/* ============================================================
   APRIL 2026 MOTION UPGRADE
   View transitions, scroll-driven timelines, gyroscope, haptics,
   @starting-style, interstitials, mobile-first reveals.
   ============================================================ */

/* View Transitions (page nav) */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: .5s;
  animation-timing-function: var(--ease-out);
}
::view-transition-old(root) { animation-name: vt-fade-out; }
::view-transition-new(root) { animation-name: vt-fade-in; }
@keyframes vt-fade-out { to { opacity: 0; transform: translateY(-8px); } }
@keyframes vt-fade-in  { from { opacity: 0; transform: translateY(12px); } }

/* (motion toggle removed — respects prefers-reduced-motion only) */

/* Enhanced reveal — works on all browsers via JS .in */
[data-reveal] {
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), filter 1s var(--ease-out);
  filter: blur(6px);
}
[data-reveal].in { filter: blur(0); }
@keyframes reveal {
  from { opacity: 0; transform: translateY(40px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

/* Scroll-driven: hero ghost scales — marquee stays on its own timeline */
@supports (animation-timeline: scroll()) {
  .wordmark-big {
    animation: hero-scale linear both;
    animation-timeline: scroll(root);
    animation-range: 0 60vh;
  }
}
@keyframes hero-scale {
  to { transform: translateY(-20px) scale(.92); opacity: .9; }
}

/* Interstitial — big type moment */
.interstitial {
  max-width: none;
  margin: 0;
  padding: clamp(5rem, 16vw, 14rem) var(--gut);
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  overflow: hidden;
  border-top: none;
  position: relative;
  isolation: isolate;
}
.interstitial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(178,75,33,.22), transparent 70%);
  opacity: .8;
  pointer-events: none;
}
.interstitial-word {
  display: flex;
  justify-content: center;
  gap: .02em;
  font-family: var(--display), 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(4rem, 22vw, 18rem);
  line-height: .85;
  letter-spacing: -0.05em;
  color: var(--bg);
}
.interstitial-word .ilet {
  display: inline-block;
  transform: translateY(30px);
  opacity: 0;
  animation: iletter .9s var(--ease-out) both;
}
.interstitial-word .ilet:nth-child(1) { animation-delay: .0s; }
.interstitial-word .ilet:nth-child(2) { animation-delay: .08s; }
.interstitial-word .ilet:nth-child(3) { animation-delay: .16s; }
.interstitial-word .ilet:nth-child(4) { animation-delay: .24s; }
.interstitial-word .ilet:nth-child(5) { animation-delay: .32s; }
.interstitial-word .ilet:nth-child(6) { animation-delay: .40s; }
@supports (animation-timeline: view()) {
  .interstitial-word .ilet {
    animation-timeline: view();
    animation-range: entry 10% cover 40%;
    animation-duration: 1s;
  }
}
.interstitial-sub {
  margin-top: 2rem;
  color: rgba(243,236,222,.6);
  letter-spacing: 0.3em;
  font-size: clamp(.7rem, 1vw, .8rem);
}
.interstitial.sec-light .interstitial-sub { color: rgba(21,19,15,.55); }
@keyframes iletter {
  to { transform: translateY(0); opacity: 1; }
}

/* Magnetic button (cursor-pull effect on desktop) */
.btn { will-change: transform; }

/* Mobile-fluid container queries */
@container (max-width: 640px) {
  .svc-title { font-size: clamp(1.8rem, 9vw, 3rem); }
}

/* Mobile tuning */
@media (max-width: 820px) {
  .hero {
    padding-top: 8.5rem;
    min-height: 90svh;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .wordmark-big { filter: none; }
  .word-letters {
    font-size: clamp(2.25rem, 14vw, 6rem);
    letter-spacing: -0.05em;
    justify-content: flex-start;
    padding: 0;
    max-width: 100%;
  }
  .marquee { padding: .8rem 0; }
  .marquee-track { font-size: 1.35rem; gap: 1.2rem; }
  section { padding: 4.5rem 1.25rem; }
  section.sec-dark { padding-left: 1.25rem; padding-right: 1.25rem; }
  .svc { padding: 2.5rem 0; }
  .svc-num { font-size: 2.5rem; }
  .svc-title { font-size: clamp(2rem, 10vw, 3.2rem); }
  .svc-bullets { grid-template-columns: 1fr; gap: .4rem; }
  .roster-list li { flex-direction: column; align-items: flex-start; gap: .35rem; padding: 1.1rem 0; }
  .roster-name { font-size: clamp(1.5rem, 7vw, 2.4rem); }
  .roster-tag { font-size: 10.5px; letter-spacing: 0.12em; }
  .fund-stats { gap: 1rem; grid-template-columns: 1fr 1fr; }
  .fund { padding-left: 1.25rem; padding-right: 1.25rem; }
  .interstitial-word { font-size: 22vw; }
  .cookie-banner { font-size: 12px; padding: .85rem 1rem; }
  .btn { padding: .9rem 1.3rem; font-size: .9rem; }
  .founder { padding-top: 1.5rem; }
  .hero-meta { align-items: flex-start; margin-top: .25rem; }
  .geo-row { max-width: 100%; }
  .stamp { top: 8.5rem; right: .85rem; width: 58px; height: 58px; }
  .footer { padding: 2.5rem 1.25rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 1rem; }
  .contact-grid li a { word-break: break-word; }
  .manifesto-col p { font-size: 1rem; }
  .pull .serif-italic { font-size: clamp(1.5rem, 6vw, 2.4rem); }
  .serif-display { font-size: clamp(1.9rem, 9vw, 3.4rem); }
}

@media (max-width: 640px) {
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-cta .btn { justify-content: center; width: 100%; }
  .hero-lede { font-size: 1rem; }
}

/* Small phones (iPhone SE, compact Android) */
@media (max-width: 380px) {
  :root { --gut: 1rem; }
  .hero { padding-left: 1rem; padding-right: 1rem; padding-top: 8rem; }
  .word-letters { font-size: clamp(2rem, 14.5vw, 3.2rem); letter-spacing: -0.055em; }
  .hero-tag { font-size: .62rem; padding: .55rem 1rem; letter-spacing: 0.24em; }
  .hero-lede { font-size: .95rem; }
  section { padding: 3.5rem 1rem; }
  section.sec-dark { padding-left: 1rem; padding-right: 1rem; }
  .fund { padding-left: 1rem; padding-right: 1rem; }
  .stamp { width: 50px; height: 50px; top: 8rem; right: .75rem; }
  .nav-mark { width: 84px; }
  .lang-toggle { padding: .45rem .7rem; font-size: 11px; letter-spacing: 0.18em; min-height: 34px; }
  .nav-links a { font-size: 10px; letter-spacing: 0.12em; }
  .marquee-track { font-size: 1.2rem; gap: 1rem; }
  .fund-stats { grid-template-columns: 1fr; }
  .btn { padding: .85rem 1.1rem; font-size: .88rem; }
  .svc-bullets { grid-template-columns: 1fr; }
  .footer-mark { width: 150px; }
  .geo-flag { font-size: 9.5px; letter-spacing: 0.18em; padding: .3rem .6rem; }
}

/* Prevent any accidental horizontal overflow at any viewport */
html, body { overflow-x: hidden; max-width: 100%; }
img, svg, video { max-width: 100%; height: auto; }

/* Keep anchor-target sections clear of the fixed nav */
section[id] { scroll-margin-top: 6rem; }
@media (max-width: 820px) {
  section[id] { scroll-margin-top: 8.5rem; }
  /* Slightly more opaque nav so content underneath doesn't bleed visibly */
  .nav { background: rgba(243,236,222,0.96); }
  /* Force interstitial to always render fully on mobile — clip-path reveal is desktop-only */
  .interstitial { clip-path: none !important; overflow: hidden; }
  .interstitial-word { font-size: clamp(3rem, 18vw, 8rem); padding: 0 .5rem; }
}

/* Mobile haptic affordance — tappable targets get a press state */
@media (pointer: coarse) {
  a, button, .svc, .roster-list li {
    -webkit-tap-highlight-color: transparent;
  }
  .btn:active { transform: scale(.97); }
  .svc:active { background: var(--bg-2); }
  .roster-list li:active { padding-left: 1.2rem; }
  .nav-links a:active { opacity: .5; }
}

/* Safe area insets for iOS devices — apply to inner scrollable chrome only */
@supports (padding: max(0px)) {
  .cookie-banner { bottom: max(1rem, env(safe-area-inset-bottom)); }
  .nav { padding-top: max(.8rem, env(safe-area-inset-top)); }
  .footer { padding-bottom: max(2rem, env(safe-area-inset-bottom)); }
}

/* High-end displays */
@media (prefers-color-scheme: dark) {
  /* Cosecha stays cream — but nudge grain opacity */
  .grain { opacity: 0.07; }
}

/* Dynamic viewport units (iOS/Android nav-bar aware) */
@supports (height: 100svh) {
  .hero { min-height: 100svh; }
}

/* Gyroscope-driven hero parallax (JS sets CSS vars) */
.wordmark-big {
  transform: translate3d(var(--gx, 0px), var(--gy, 0px), 0);
  transition: transform .2s var(--ease-out);
}
