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

:root {
  --black:  #0d0d0d;
  --off:    #f8f6f2;
  --paper:  #fdfcf9;
  --green:  #1a3a2a;
  --accent: #2d6a4a;
  --gold:   #9a7c3f;
  --muted:  #888077;
  --faint:  #c8c3bb;
  --line:   #e4e0d8;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--black);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
header {
  background: var(--green);
  padding: 3rem 2rem 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  cursor: pointer;
  text-decoration: none;
}
header a { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: .55rem; }
.logo-mark {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 300;
  letter-spacing: 5px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}
.logo-mark strong { font-weight: 600; color: #c9b97a; }
.logo-rule { width: 36px; height: 1px; background: rgba(255,255,255,.25); margin: .45rem 0; }
.logo-sub {
  font-size: .68rem;
  font-weight: 300;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

/* ── NAV ── */
nav {
  background: var(--off);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 18px rgba(0,0,0,.055);
}
.nav-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
}
.nav-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 1.05rem 1.1rem;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.nav-link:hover { color: var(--accent); }
.nav-link.active { color: var(--accent); border-bottom-color: var(--accent); }
.nav-spacer { flex: 1; }
.notes-dot { color: var(--gold); }
.notes-special { color: var(--muted); }
.notes-special:hover { color: var(--accent); border-bottom-color: var(--accent); }
.notes-special:hover .notes-dot { color: var(--accent); }
.notes-special.active { color: var(--accent); border-bottom-color: var(--accent); }
.notes-special.active .notes-dot { color: var(--accent); }

/* ── MAIN ── */
main { max-width: 860px; margin: 0 auto; padding: 3.5rem 2rem 6rem; }

/* ── SHARED ── */
.kicker {
  font-size: .66rem;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.page-headline {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.8rem;
}
.divider { width: 100%; height: 1px; background: var(--line); margin: 2.8rem 0; }
.prose { font-size: .93rem; color: #444; font-weight: 300; max-width: 580px; }
.prose p + p { margin-top: 1.05rem; }

/* ── HOME ── */
.home-headline {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5.5vw, 3.3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1.5rem;
  max-width: 560px;
}
.home-headline em { font-style: italic; color: var(--accent); }
.manifesto {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  margin: 2rem 0 2.2rem;
  line-height: 1.5;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 2.5rem;
}
@media (max-width: 560px) { .approach-grid { grid-template-columns: 1fr; } }
.approach-item-label {
  font-size: .63rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .4rem;
}
.approach-item-text { font-size: .88rem; color: #555; font-weight: 300; line-height: 1.68; }
.lens-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.lens-tag {
  font-size: .66rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(45,106,74,.28);
  border-radius: 3px;
  padding: .28em .75em;
}

/* ── ABOUT ── */
.about-role {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .6rem;
  margin-bottom: 2rem;
}
.about-opening {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 300;
  font-style: italic;
  color: #333;
  line-height: 1.65;
  max-width: 600px;
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
  margin-bottom: 2.2rem;
}
.notice {
  margin-top: 2.2rem;
  padding: 1.1rem 1.5rem;
  background: rgba(26,58,42,.048);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  font-size: .83rem;
  color: var(--muted);
  font-style: italic;
}

/* ── ANNUAL LAPS ── */
.laps-intro { font-size: .93rem; color: var(--muted); font-weight: 300; font-style: italic; max-width: 520px; margin-bottom: 3rem; line-height: 1.7; }
.lap-item { display: grid; grid-template-columns: 90px 1fr; gap: 0 2rem; padding: 2rem 0; border-top: 1px solid var(--line); align-items: start; }
.lap-item:last-child { border-bottom: 1px solid var(--line); }
.lap-year { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--faint); line-height: 1; padding-top: .2rem; transition: color .2s; }
.lap-item:hover .lap-year { color: var(--gold); }
.lap-label { font-size: .63rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.lap-text { font-size: .92rem; color: #444; font-weight: 300; line-height: 1.7; max-width: 560px; }
@media (max-width: 560px) { .lap-item { grid-template-columns: 1fr; gap: .5rem; } .lap-year { font-size: 1.4rem; } }

/* ── RULES ── */
.rules-intro { font-size: .93rem; color: var(--muted); font-weight: 300; font-style: italic; max-width: 520px; margin-bottom: 3rem; line-height: 1.7; }
.rules-group { margin-bottom: 3rem; }
.rules-group-label { font-size: .63rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--faint); margin-bottom: 1.4rem; padding-bottom: .6rem; border-bottom: 1px solid var(--line); }
.rule-item { display: flex; gap: 1.2rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.rule-item:last-child { border-bottom: none; }
.rule-num { font-family: var(--serif); font-size: .85rem; color: var(--faint); min-width: 22px; flex-shrink: 0; }
.rule-text { font-family: var(--serif); font-size: 1.18rem; font-weight: 400; color: var(--black); line-height: 1.35; }
.rule-text em { font-style: italic; color: var(--accent); }

/* ── NOTES LIST ── */
.notes-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 0; flex-wrap: wrap; gap: .5rem; }
.note-card { border-top: 1px solid var(--line); padding: 1.9rem 0; display: grid; grid-template-columns: 1fr auto; gap: .5rem 2rem; align-items: start; cursor: pointer; transition: opacity .15s; text-decoration: none; }
.note-card:hover { opacity: .62; }
.note-card:hover .nc-arrow { transform: translateX(4px); }
.nc-tag { font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.nc-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; line-height: 1.28; color: var(--black); margin-bottom: .42rem; }
.nc-excerpt { font-size: .87rem; color: var(--muted); font-weight: 300; line-height: 1.62; max-width: 490px; }
.nc-meta { margin-top: .65rem; font-size: .68rem; color: var(--faint); letter-spacing: .5px; text-transform: uppercase; }
.nc-arrow { color: var(--accent); font-size: .95rem; transition: transform .2s; padding-top: .9rem; opacity: .7; }

/* ── ARTICLE PAGE ── */
.article-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  margin-bottom: 2.5rem;
  transition: color .15s;
  text-decoration: none;
}
.article-back:hover { color: var(--accent); }
.article-header { margin-bottom: 2rem; }
.article-tag-line { font-size: .66rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; }
.article-headline {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: .8rem;
}
.article-dateline { font-size: .72rem; color: var(--faint); letter-spacing: .5px; text-transform: uppercase; }
.article-divider { width: 100%; height: 1px; background: var(--line); margin: 1.8rem 0; }
.article-body {
  font-family: var(--serif);
  font-size: 1.08rem;
  color: #333;
  font-weight: 300;
  line-height: 1.85;
  max-width: 620px;
}
.article-body p { margin-bottom: 1.4rem; }
.article-body strong { font-weight: 600; color: var(--black); }
.article-sign {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .88rem;
  color: var(--muted);
  font-style: italic;
}
.article-tags { margin-top: 1.5rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.article-tag-pill {
  font-size: .65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: .2em .7em;
}

/* ── FOOTER ── */
footer { border-top: 1px solid var(--line); padding: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; max-width: 860px; margin: 0 auto; }
.footer-brand { font-family: var(--serif); font-size: 1rem; font-weight: 300; letter-spacing: 2.5px; text-transform: uppercase; }
.footer-brand strong { color: var(--gold); }
.footer-copy { font-size: .68rem; color: var(--faint); }

/* ── MOBILE ── */
@media (max-width: 600px) {
  .nav-inner { padding: 0 .2rem; overflow-x: auto; }
  .nav-link { padding: .9rem .55rem; font-size: .64rem; letter-spacing: 1px; }
  main { padding: 2.5rem 1.2rem 5rem; }
  .note-card { grid-template-columns: 1fr; }
  .nc-arrow { display: none; }
  footer { padding: 1.5rem 1.2rem; flex-direction: column; align-items: flex-start; gap: .8rem; }
  body { font-size: 17px; }
  .prose { font-size: 1rem; }
  .article-body { font-size: 1.05rem; line-height: 1.85; }
  .nc-title { font-size: 1.15rem; }
  .nc-excerpt { font-size: .95rem; }
  .approach-item-text { font-size: .95rem; }
  .lap-text { font-size: .95rem; }
  .rule-text { font-size: 1.1rem; }
  .manifesto { font-size: 1rem; }
  .about-opening { font-size: 1.05rem; }
}
