:root {
  --yellow: #FFE01B;
  --yellow-line: #d4b800;
  --ink: #1a1a1a;
  --ink-soft: #5c5200;
  --ink-muted: #6b5d00;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--yellow);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.site-header { padding: 22px 0; }
.nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 15px; font-weight: 600; color: var(--ink); text-decoration: none; }
.nav-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 14px;
  margin-left: 28px;
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }

/* Hero */
.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 72px;
}
.hero-text { flex: 1; }
.hero-text h1 { font-size: 44px; font-weight: 500; line-height: 1.15; margin-bottom: 16px; }
.hero-text p { color: var(--ink-soft); font-size: 17px; max-width: 440px; }
.hero-photo img { width: 280px; height: auto; display: block; border-radius: 24px; }

/* Sections */
.section { padding-bottom: 64px; }
.section-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 18px;
}

.row-list { list-style: none; border-top: 2px solid var(--ink); }
.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--yellow-line);
}
.row-main { display: flex; align-items: center; gap: 14px; font-size: 16px; }
.row-date { color: var(--ink-muted); font-size: 14px; white-space: nowrap; }
.row-arrow { color: var(--ink-muted); font-size: 15px; }

.row-link { color: var(--ink); text-decoration: none; transition: opacity .15s; }
.row-link:hover { opacity: 0.6; }

.org-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0);
}
.logo-stack { display: inline-flex; gap: 8px; align-items: center; }
.org-logo-wide { width: 52px; }

/* Footer */
.site-footer {
  padding-top: 24px;
  padding-bottom: 40px;
  color: var(--ink-muted);
  font-size: 13px;
}

/* Mobile */
@media (max-width: 640px) {
  .hero { flex-direction: column-reverse; text-align: left; gap: 24px; padding-top: 32px; padding-bottom: 48px; }
  .hero-text h1 { font-size: 32px; }
  .hero-photo img { width: 200px; }
  .row { flex-wrap: wrap; gap: 6px; }
  .nav-links a { margin-left: 18px; }
}
