/* ============================================================
   YET TO LIVE — BASE
   Reset + typography + layout. Mobile-first.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background var(--t-slow), color var(--t-slow);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; padding: 0; }
a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; text-decoration-thickness: 1.5px; transition: color var(--t-fast); }
a:hover { color: var(--accent); }
::selection { background: var(--accent-mute); color: var(--ink); }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.t-display { font-family: var(--font-head); font-size: var(--fs-display); line-height: var(--lh-display); font-weight: 500; letter-spacing: -0.025em; margin: 0; }
.t-h1      { font-family: var(--font-head); font-size: var(--fs-h1); line-height: var(--lh-head); font-weight: 500; letter-spacing: -0.02em; margin: 0; }
.t-h2      { font-family: var(--font-head); font-size: var(--fs-h2); line-height: var(--lh-head); font-weight: 500; letter-spacing: -0.015em; margin: 0; }
.t-h3      { font-family: var(--font-head); font-size: var(--fs-h3); line-height: 1.25; font-weight: 600; margin: 0; }
.t-h4      { font-family: var(--font-head); font-size: var(--fs-h4); line-height: 1.35; font-weight: 600; margin: 0; }
.t-lead    { font-size: var(--fs-lead); line-height: 1.5; color: var(--ink-soft); margin: 0; }
.t-body    { font-size: var(--fs-body); line-height: var(--lh-body); margin: 0; }
.t-small   { font-size: var(--fs-small); line-height: 1.5; color: var(--ink-soft); margin: 0; }
.t-tiny    { font-size: var(--fs-tiny); line-height: 1.4; color: var(--ink-mute); margin: 0; }
.t-eyebrow { font-size: var(--fs-tiny); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin: 0; }
.t-italic-accent { font-style: italic; color: var(--accent); font-weight: 400; }
.t-ink-soft { color: var(--ink-soft); }
.t-center { text-align: center; }

/* ============================================================
   LAYOUT
   ============================================================ */
.row {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-5);
}
.row-prose {
  width: 100%;
  max-width: var(--container-prose);
  margin-inline: auto;
  padding-inline: var(--s-5);
}
@media (min-width: 720px) {
  .row, .row-prose { padding-inline: var(--s-8); }
}

.stack > * + * { margin-top: var(--s-4); }
.stack-sm > * + * { margin-top: var(--s-2); }
.stack-lg > * + * { margin-top: var(--s-6); }
.stack-xl > * + * { margin-top: var(--s-10); }

.hide-mobile { display: none; }
@media (min-width: 720px) {
  .hide-mobile { display: initial; }
  .hide-desktop { display: none; }
}

/* ============================================================
   PROSE (long-form Direction reader)
   ============================================================ */
.prose {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: var(--lh-prose);
  color: var(--ink);
}
@media (min-width: 720px) {
  .prose { font-size: 19px; }
}
.prose h2 {
  font-family: var(--font-head);
  font-size: var(--fs-h2);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: var(--s-12) 0 var(--s-4);
  line-height: 1.15;
}
.prose h3 {
  font-family: var(--font-head);
  font-size: var(--fs-h3);
  font-weight: 600;
  margin: var(--s-8) 0 var(--s-3);
}
.prose p { margin: 0 0 var(--s-5); }
.prose p.drop-cap::first-letter {
  font-family: var(--font-head);
  font-size: 68px;
  line-height: 0.85;
  float: left;
  padding: 8px 12px 0 0;
  font-weight: 600;
  color: var(--accent);
}
@media (min-width: 720px) {
  .prose p.drop-cap::first-letter { font-size: 80px; padding: 8px 14px 0 0; }
}
.prose blockquote {
  margin: var(--s-8) 0;
  padding-left: var(--s-5);
  border-left: 3px solid var(--accent);
  font-family: var(--font-head);
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
}
@media (min-width: 720px) {
  .prose blockquote { font-size: 22px; padding-left: var(--s-6); }
}
.prose em { font-style: italic; }
.prose strong { font-weight: 600; }
