:root {
  --background: #f7f4ef;
  --foreground: #1d1b19;
  --body: #302d2a;
  --muted: #78716a;
  --border: rgba(29, 27, 25, 0.12);
  --border-soft: rgba(29, 27, 25, 0.08);
  --link: #1d1b19;
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--sans);
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--foreground);
  color: var(--background);
}

p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 1rem;
}

li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--muted);
}

li + li {
  margin-top: 0.45rem;
}

strong {
  color: var(--foreground);
  font-weight: 600;
}

img {
  max-width: 100%;
}

.container {
  width: min(100% - 2rem, 44rem);
  margin: 0 auto;
}

.site-header {
  padding: 2rem 0 0;
}

.site-header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.site-name,
h1,
h2 {
  font-family: var(--display);
}

.site-name {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.site-kicker,
.section-meta,
.site-footer-inner {
  color: var(--muted);
}

.site-kicker {
  margin-top: 0.3rem;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.social-links a,
.inline-link {
  color: inherit;
  text-decoration: none;
}

.social-links a + a::before {
  content: "·";
  margin: 0 0.5rem;
}

main {
  padding-bottom: 1rem;
}

.intro {
  padding: 6rem 0 3.5rem;
}

h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.9rem, 10vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.intro-copy {
  max-width: 34rem;
  margin-top: 1.6rem;
  color: var(--body);
  font-size: 1.08rem;
}

.section {
  display: grid;
  grid-template-columns: minmax(10rem, 12rem) minmax(0, 1fr);
  gap: 0.2rem 1.6rem;
  padding: 1.6rem 0 1.85rem;
  border-top: 1px solid var(--border-soft);
}

.section > h2,
.section > .section-meta,
.section > .section-content {
  min-width: 0;
}

h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.section-meta {
  grid-column: 1;
  margin-top: 0.15rem;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-content {
  grid-column: 2;
  margin-top: 0.05rem;
}

.section-content p,
.section-content li {
  color: var(--body);
}

.section-tail {
  margin-top: 0.9rem;
}

.outbreak-line {
  font-family: var(--display);
  color: var(--foreground);
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}

.inline-link {
  color: var(--link);
  border-bottom: 1px solid var(--border);
}

.section-contact {
  padding-bottom: 2.1rem;
}

.site-footer {
  padding: 1.5rem 0 3rem;
}

.site-footer-inner {
  border-top: 1px solid var(--border-soft);
  padding-top: 0.9rem;
  font-size: 0.9rem;
}

@media (hover: hover) and (pointer: fine) {
  .social-links a:hover,
  .inline-link:hover {
    color: var(--foreground);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1.5rem, 44rem);
  }

  .site-header-inner {
    flex-direction: column;
  }

  .social-links {
    justify-content: flex-start;
  }

  .intro {
    padding: 4rem 0 2.75rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.75rem);
  }

  .section {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 1.4rem 0 1.6rem;
  }

  .section-content {
    grid-column: 1;
    margin-top: 0.45rem;
  }
}
