/* ZAFRA — Editorial Consultancy */
:root {
  --paper: oklch(0.972 0.008 85);
  --paper-2: oklch(0.945 0.012 82);
  --ink: oklch(0.18 0.012 60);
  --ink-soft: oklch(0.38 0.010 60);
  --ink-faint: oklch(0.62 0.008 60);
  --rule: oklch(0.82 0.010 60);
  --rule-soft: oklch(0.88 0.008 60);
  --accent: oklch(0.56 0.18 32);        /* vermillion */
  --accent-deep: oklch(0.42 0.14 32);
  --gold: oklch(0.72 0.11 82);
  --display: "Fraunces", "Source Serif 4", Georgia, serif;
  --body: "Inter Tight", -apple-system, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --edge: clamp(20px, 3vw, 56px);
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  cursor: none;
  overflow-x: hidden;
}

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

::selection { background: var(--accent); color: var(--paper); }

/* Custom cursor */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: oklch(0.98 0.01 80);
  border-radius: 50%;
  transition: width .2s, height .2s, background .2s;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid oklch(0.98 0.01 80);
  border-radius: 50%;
  transition: width .25s cubic-bezier(.2,.8,.2,1), height .25s cubic-bezier(.2,.8,.2,1), border-color .2s, background .2s;
}
.cursor-ring.magnet {
  width: 64px; height: 64px;
  background: oklch(0.98 0.01 80 / 0.08);
  border-color: oklch(0.98 0.01 80);
}
.cursor-ring.read {
  width: 80px; height: 80px;
  border-style: dashed;
}
.cursor-ring[data-label]::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 9px;
  color: oklch(0.98 0.01 80);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Masthead */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
  padding: 10px var(--edge);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.masthead .left, .masthead .right {
  display: flex; gap: 18px; align-items: center;
}
.masthead .right { justify-content: flex-end; }
.masthead .wordmark {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-variation-settings: "opsz" 144;
}
.masthead a { color: var(--ink); text-decoration: none; transition: color .2s; }
.masthead a:hover { color: var(--accent); }
.masthead .edition { color: var(--ink-soft); }
.masthead .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; display: inline-block; animation: blink 2s infinite; }

@keyframes blink { 0%, 60% { opacity: 1; } 70%, 100% { opacity: 0.3; } }

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 10px;
}
.lang-toggle button {
  background: transparent;
  border: none;
  padding: 5px 10px;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: 0.12em;
  color: var(--ink);
  cursor: none;
}
.lang-toggle button.on {
  background: var(--ink);
  color: var(--paper);
}

/* Section chrome */
section {
  padding: clamp(60px, 9vw, 140px) var(--edge);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.section-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.section-tag::before {
  content: ""; width: 20px; height: 1px; background: var(--accent);
}
.section-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.lede {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.012em;
  max-width: 62ch;
  color: var(--ink);
  font-variation-settings: "opsz" 48;
}

/* Reveal — only when JS marks body.js-ready, otherwise content is visible by default */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
}
.js-ready .reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-line > span {
  display: inline-block;
  vertical-align: bottom;
}
.js-ready .reveal-line > span {
  overflow: hidden;
}
.js-ready .reveal-line > span > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--d, 0s);
}
.js-ready .reveal-line.in > span > span {
  transform: translateY(0);
}

/* Utilities */
.mono { font-family: var(--mono); }
.serif { font-family: var(--display); }
.caps { text-transform: uppercase; letter-spacing: 0.14em; }
.hr { border-top: 1px solid var(--rule); margin: 40px 0; }
.rule-top { border-top: 1px solid var(--ink); }
.rule-bot { border-bottom: 1px solid var(--ink); }
.faint { color: var(--ink-faint); }
.soft { color: var(--ink-soft); }
.accent { color: var(--accent); }
.ink-bg { background: var(--ink); color: var(--paper); }
.ink-bg .section-title, .ink-bg .lede { color: var(--paper); }
.ink-bg .section-tag { color: var(--gold); }
.ink-bg .section-tag::before { background: var(--gold); }
.ink-bg .soft { color: oklch(0.75 0.008 80); }
.ink-bg { border-bottom: none; }

/* Button / CTA */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform .2s, color .3s;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  z-index: -1;
}
.cta:hover::before { transform: translateY(0); }
.cta .arrow {
  width: 18px; height: 1px; background: currentColor; position: relative;
  transition: width .3s;
}
.cta .arrow::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.cta:hover .arrow { width: 28px; }
.cta.ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.cta.ghost:hover { color: var(--paper); }

/* Grids */
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 80px); }
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 48px); }
.cols-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
@media (max-width: 860px) {
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
  .cols-12 { grid-template-columns: repeat(6, 1fr); }
}

/* Big number */
.bignum {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(80px, 12vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144;
  display: flex;
  align-items: baseline;
}
.bignum .unit {
  font-family: var(--mono);
  font-size: 0.18em;
  letter-spacing: 0.1em;
  margin-left: 0.3em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 400;
}

/* Proof ticker */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 22px 0;
  background: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
}
.ticker-track { display: inline-flex; gap: 60px; animation: ticker 60s linear infinite; padding-left: 60px; }
.ticker-track span { display: inline-flex; align-items: center; gap: 60px; }
.ticker-track span::after { content: "✦"; color: var(--accent); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Tweaks panel */
.tweaks-panel {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--ink);
  color: var(--paper);
  padding: 18px 20px;
  z-index: 200;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  min-width: 240px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.3);
  display: none;
}
.tweaks-panel.on { display: block; }
.tweaks-panel h4 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  border-bottom: 1px solid oklch(0.4 0.01 60);
  padding-bottom: 8px;
}
.tweaks-panel .row { display: flex; justify-content: space-between; align-items: center; margin: 12px 0; gap: 14px; }
.tweaks-panel label { text-transform: uppercase; color: oklch(0.75 0.008 80); }
.tweaks-panel .swatches { display: flex; gap: 6px; }
.tweaks-panel .sw {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1px solid transparent; cursor: none;
  transition: transform .2s;
}
.tweaks-panel .sw.on { border-color: var(--paper); transform: scale(1.15); }
.tweaks-panel select, .tweaks-panel button {
  background: transparent; color: var(--paper);
  border: 1px solid oklch(0.5 0.01 60);
  font-family: inherit; font-size: inherit;
  padding: 4px 8px; cursor: none;
}

/* Hero */
.hero {
  min-height: 100vh;
  padding-top: clamp(40px, 7vw, 90px);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 36px;
  padding-top: 40px;
  flex: 1;
}
@media (max-width: 1100px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin: 0;
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
}
.hero h1 .serif-ital { font-style: italic; font-weight: 300; color: var(--accent); }
.hero h1 .xs { font-size: 0.55em; }

.folio-number {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.hero-side p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
.hero-side .cap { border-top: 1px solid var(--ink); padding-top: 12px; margin-top: 18px; }

.hero-stat {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.hero-stat small { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 10px; color: var(--ink-soft); }

/* Problem */
.problem-list { counter-reset: prob; }
.problem-row {
  display: grid;
  grid-template-columns: 60px 1fr 2fr 1fr;
  gap: 32px;
  padding: 34px 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.problem-row:last-child { border-bottom: 1px solid var(--rule); }
.problem-row .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.problem-row h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
}
.problem-row p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.problem-row .cost {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (max-width: 860px) { .problem-row { grid-template-columns: 1fr; } }

/* Method */
.method-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.method-step {
  background: var(--paper);
  padding: 36px 28px;
  position: relative;
  transition: background .4s;
}
.method-step:hover { background: var(--paper-2); }
.method-step .phase {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 80px;
  display: flex; justify-content: space-between;
}
.method-step h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
}
.method-step p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
.method-step .glyph {
  font-family: var(--display);
  font-size: 80px;
  line-height: 1;
  color: var(--rule);
  position: absolute;
  top: 60px; right: 28px;
  font-weight: 300;
  transition: color .3s;
}
.method-step:hover .glyph { color: var(--accent); }
@media (max-width: 860px) { .method-track { grid-template-columns: 1fr; } }

/* Services */
.service-card {
  border: 1px solid var(--rule);
  padding: 36px 32px;
  background: var(--paper);
  display: flex; flex-direction: column;
  height: 100%;
  position: relative;
  transition: background .3s, border-color .3s, transform .3s;
}
.service-card.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.service-card.featured .soft { color: oklch(0.75 0.008 80); }
.service-card .badge {
  position: absolute; top: -11px; left: 32px;
  background: var(--accent); color: var(--paper);
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em;
  padding: 4px 10px; text-transform: uppercase;
}
.service-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 32px;
  margin: 0;
  letter-spacing: -0.015em;
}
.service-card .price {
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
  font-weight: 300;
  margin: 18px 0 6px;
  letter-spacing: -0.03em;
}
.service-card .price-cop { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: var(--ink-soft); text-transform: uppercase; }
.service-card .features {
  list-style: none; padding: 0; margin: 28px 0; flex: 1;
}
.service-card .features li {
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  display: flex; align-items: baseline; gap: 10px;
}
.service-card.featured .features li { border-color: oklch(0.35 0.01 60); }
.service-card .features li::before { content: "→"; color: var(--accent); font-family: var(--mono); }
.service-card .ideal {
  font-style: italic; font-family: var(--display);
  font-size: 14px; color: var(--ink-soft);
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}
.service-card.featured .ideal { color: oklch(0.78 0.01 80); border-color: oklch(0.35 0.01 60); }

/* Results */
.result-card {
  border-top: 1px solid var(--ink);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: start;
}
.result-card:last-child { border-bottom: 1px solid var(--ink); }
.result-card .rc-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.result-card .rc-num small { font-size: 0.3em; color: var(--ink-soft); font-family: var(--mono); letter-spacing: 0.12em; display: block; margin-top: 8px; text-transform: uppercase; }
.result-card .rc-body h4 { font-family: var(--display); font-weight: 400; font-size: 22px; margin: 0 0 8px; letter-spacing: -0.01em; }
.result-card .rc-body p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.result-card .rc-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--accent); text-transform: uppercase; margin-bottom: 10px; }
@media (max-width: 860px) { .result-card { grid-template-columns: 1fr; } }

/* Testimonial */
.testimonial {
  padding: 48px 0;
  border-top: 1px solid var(--rule);
}
.testimonial blockquote {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  font-variation-settings: "opsz" 144;
  text-wrap: pretty;
}
.testimonial .who { display: flex; gap: 16px; align-items: center; }
.testimonial .who .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--rule);
  font-family: var(--mono); font-size: 12px;
  display: grid; place-items: center;
  color: var(--ink-soft);
}
.testimonial .who .name { font-family: var(--display); font-size: 16px; }
.testimonial .who .role { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }

/* Bio */
.bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
}
.bio .portrait {
  position: relative;
}
.bio .portrait img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(1) contrast(1.05);
  transition: filter 1s;
}
.bio .portrait:hover img { filter: grayscale(0) contrast(1); }
.bio .portrait .caption {
  position: absolute;
  bottom: -24px; left: 0;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.16em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.bio .portrait::after {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--accent);
  z-index: -1;
  pointer-events: none;
}
.bio-text h2 { margin-top: 0; }
.bio-text .ledger {
  margin: 30px 0;
  border-top: 1px solid var(--rule);
}
.bio-text .ledger-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  align-items: baseline;
}
.bio-text .ledger-row .y { font-family: var(--mono); font-size: 11px; color: var(--accent); letter-spacing: 0.1em; }
.bio-text .ledger-row .r { font-family: var(--display); font-weight: 400; }
.bio-text .ledger-row .s { font-family: var(--mono); font-size: 10px; color: var(--ink-soft); letter-spacing: 0.14em; text-transform: uppercase; }
@media (max-width: 860px) { .bio { grid-template-columns: 1fr; } }

/* FAQ */
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 22px 0;
  cursor: none;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 30px;
  list-style: none;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -0.01em;
  cursor: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--mono);
  font-weight: 300;
  font-size: 24px;
  color: var(--accent);
  transition: transform .3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .ans {
  padding-top: 16px;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--paper);
  max-width: 520px;
  margin-top: 32px;
}
.newsletter-form input {
  background: transparent;
  border: none;
  color: var(--paper);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 300;
  padding: 14px 0;
  flex: 1;
  outline: none;
  cursor: none;
}
.newsletter-form input::placeholder { color: oklch(0.65 0.01 80); font-style: italic; }
.newsletter-form button {
  background: transparent; border: none; color: var(--paper);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; cursor: none; padding: 14px 18px;
  transition: color .2s;
}
.newsletter-form button:hover { color: var(--gold); }

/* Booking */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 24px;
}
.calendar-grid .cell {
  background: var(--paper);
  aspect-ratio: 1/1;
  padding: 10px;
  display: flex; flex-direction: column; justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  cursor: none;
  transition: background .2s, color .2s;
  color: var(--ink-soft);
  position: relative;
}
.calendar-grid .cell .d {
  font-family: var(--display);
  font-size: 24px;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.calendar-grid .cell.dim { color: var(--ink-faint); opacity: 0.35; }
.calendar-grid .cell.dim .d { color: var(--ink-faint); }
.calendar-grid .cell.avail { color: var(--accent); }
.calendar-grid .cell.avail::after { content: ""; position: absolute; bottom: 10px; right: 10px; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.calendar-grid .cell.avail:hover { background: var(--ink); color: var(--paper); }
.calendar-grid .cell.avail:hover .d { color: var(--paper); }
.calendar-grid .cell.sel { background: var(--accent); color: var(--paper); }
.calendar-grid .cell.sel .d { color: var(--paper); }
.calendar-grid .cell.sel::after { background: var(--paper); }
.calendar-grid .head {
  background: var(--paper-2);
  aspect-ratio: auto;
  padding: 10px 8px;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 9px;
}
.slots {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 20px;
}
.slots button {
  padding: 14px; background: transparent;
  border: 1px solid var(--rule);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  cursor: none; color: var(--ink);
  transition: all .2s;
}
.slots button:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.slots button.on { background: var(--accent); color: var(--paper); border-color: var(--accent); }

/* Resources */
.resource-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  cursor: none;
  transition: padding .3s, background .3s;
}
.resource-row:last-child { border-bottom: 1px solid var(--rule); }
.resource-row:hover { padding-left: 12px; }
.resource-row .type { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--accent); text-transform: uppercase; }
.resource-row h4 { font-family: var(--display); font-weight: 400; font-size: 22px; margin: 0; letter-spacing: -0.01em; }
.resource-row p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.resource-row .go { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--ink); text-align: right; }
.resource-row:hover .go::after { content: " →"; color: var(--accent); }
@media (max-width: 860px) { .resource-row { grid-template-columns: 1fr; } }

/* Footer */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px var(--edge) 40px;
}
footer .wordmark {
  font-family: var(--display);
  font-size: clamp(80px, 18vw, 280px);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 0 0 40px;
}
footer .wordmark em { font-style: italic; color: var(--accent); }
footer .cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; border-top: 1px solid oklch(0.35 0.01 60); padding-top: 40px; }
footer .cols h5 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: oklch(0.72 0.008 80); margin: 0 0 16px; }
footer .cols p, footer .cols a { font-family: var(--display); font-size: 18px; font-weight: 400; color: var(--paper); text-decoration: none; display: block; margin-bottom: 4px; transition: color .2s; }
footer .cols a:hover { color: var(--accent); }
footer .legal { margin-top: 60px; display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: oklch(0.65 0.01 80); text-transform: uppercase; }
@media (max-width: 860px) { footer .cols { grid-template-columns: 1fr 1fr; } footer .legal { flex-direction: column; gap: 10px; } }

/* Spot illustrations (SVG placeholders style) */
.spot { display: block; width: 100%; height: auto; }

/* Cursor hide on mobile */
@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  .cta, button, a, .calendar-grid .cell, .faq-item { cursor: pointer; }
}

/* Dateline under hero */
.dateline {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
  padding: 14px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

/* Tabs inside method */
.arch-diagram {
  margin-top: 40px;
  padding: 40px;
  border: 1px solid var(--rule);
  background: var(--paper-2);
  position: relative;
}
.arch-diagram svg { width: 100%; height: auto; }

.pull-quote {
  padding: 60px 0;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 22ch;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  text-wrap: balance;
}
.pull-quote em { font-style: italic; color: var(--accent); }

/* Two-up mag layout for Manifesto */
.manifesto {
  column-count: 2;
  column-gap: 60px;
  column-rule: 1px solid var(--rule);
}
.manifesto p {
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 18px;
  text-wrap: pretty;
}
.manifesto p:first-child::first-letter {
  font-family: var(--display);
  float: left;
  font-size: 96px;
  line-height: 0.8;
  font-weight: 300;
  padding-right: 10px;
  padding-top: 6px;
  color: var(--accent);
}
@media (max-width: 860px) { .manifesto { column-count: 1; } }
