:root {
  --bg: #fbfaf4;
  --ink: #11110f;
  --muted: #68645d;
  --line: #d8d0c2;
  --green: #173f2a;
  --paper: #fffdf6;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .18;
  z-index: 100;
  background-image: radial-gradient(#000 0.6px, transparent 0.6px);
  background-size: 18px 18px;
  mix-blend-mode: multiply;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 42px;
  background: rgba(251,250,244,.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216,208,194,.45);
}
.logo { font-weight: 800; letter-spacing: -.04em; }
nav { display: flex; gap: 24px; font-size: 14px; color: var(--muted); }
nav a:hover { color: var(--ink); }
.section { padding: 110px 7vw; }
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
  padding-top: 150px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(58px, 9vw, 128px);
  line-height: .86;
  letter-spacing: -.09em;
  margin-bottom: 30px;
}
h2 {
  font-size: clamp(38px, 5vw, 76px);
  line-height: .92;
  letter-spacing: -.07em;
  margin-bottom: 28px;
}
h3 { font-size: 26px; letter-spacing: -.04em; }
.hero-text { font-size: 22px; line-height: 1.45; max-width: 660px; color: var(--muted); }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn {
  display: inline-flex;
  padding: 15px 20px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--ink); color: var(--bg); }
.btn.secondary { background: transparent; }
.hero-art svg { width: 100%; max-width: 520px; overflow: visible; }
.hero-art path, .hero-art circle {
  fill: none;
  stroke: var(--ink);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-art text {
  font-family: "Nanum Pen Script", cursive;
  font-size: 29px;
  fill: var(--ink);
}
.vine, .branch {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: draw 2.8s ease forwards;
}
.branch { animation-delay: .7s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.big-lines {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.big-lines p {
  font-size: clamp(44px, 7vw, 102px);
  line-height: .95;
  letter-spacing: -.07em;
  margin: 28px 0;
  color: var(--muted);
}
.big-lines .strong { color: var(--ink); font-weight: 800; }
.split {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 50px;
}
.sticky-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
}
.content-card, .contact-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 64px);
  box-shadow: 12px 12px 0 rgba(17,17,15,.06);
}
.content-card p, .contact-box p { font-size: 20px; line-height: 1.55; color: var(--muted); }
.process h2, .questions h2 { max-width: 780px; }
.process-grid, .cards, .journal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.process-grid article, .card, .post {
  min-height: 250px;
  border: 1px solid var(--line);
  background: rgba(255,253,246,.68);
  border-radius: 26px;
  padding: 28px;
}
.process-grid span, .post p { color: var(--green); font-weight: 800; font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
.process-grid p, .card p, .post a { color: var(--muted); line-height: 1.55; }
.cards, .journal-grid { grid-template-columns: repeat(3, 1fr); }
.section-heading { max-width: 900px; }
.questions { background: var(--ink); color: var(--bg); }
.questions h2 { color: var(--bg); }
.question-list { display: grid; gap: 18px; margin-top: 36px; }
.question-list p {
  font-size: clamp(27px, 4vw, 55px);
  line-height: 1.05;
  letter-spacing: -.06em;
  border-bottom: 1px solid rgba(251,250,244,.2);
  padding-bottom: 20px;
}
.about { max-width: 1100px; margin: auto; }
.contact { padding-bottom: 130px; }
.contact-box { text-align: center; max-width: 1080px; margin: auto; }
.contact-box .cta-row { justify-content: center; }
footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 7vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay { transition-delay: .2s; }
@media (max-width: 900px) {
  .site-header { padding: 18px 22px; }
  nav { display: none; }
  .section { padding: 84px 22px; }
  .hero { grid-template-columns: 1fr; padding-top: 120px; }
  .hero-art { order: -1; }
  .split { grid-template-columns: 1fr; }
  .process-grid, .cards, .journal-grid { grid-template-columns: 1fr; }
  .process-grid article, .card, .post { min-height: auto; }
  footer { flex-direction: column; }
}
