/* ONE IDEA: A dispatch board — a vertical rule splits the page; left column
   carries the newsletter name rotated as a masthead, right column holds content
   in a rigid grid. The masthead runs the full height of every section.

   TYPEFACE: Georgia / Times New Roman stack — institutional serif. The logo
   itself is a serif. Using a web-safe serif that shares that DNA: authoritative,
   unhurried, un-optimized-for-trends.

   SCALE: clamp() fluid sizing. Hero headline 4.5rem–7.5rem. Body 1rem–1.125rem.
   Section headings 1.5rem–2rem. The masthead text is set tiny (0.65rem) and
   tracked heavily — legible but subordinate, like a colophon.

   THE DECISION I'D DEFEND HARDEST: The vertical masthead rule runs through
   every section, not just the hero. It is the spine of the page. Most landing
   pages abandon their hero concept after the hero. This one commits. If I had
   to remove one thing, it's the masthead — it's the difference between a page
   and a document. */

:root {
  --color-bg: #f6f2ec;
  --color-bg-dark: #ede7dd;
  --color-text: #1a1614;
  --color-text-muted: #5c534b;
  --color-copper: #a0522d;
  --color-copper-dark: #7a3d1f;
  --color-rule: #c4b8aa;
  --color-rule-light: #ddd5ca;

  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-mono: "Courier New", Courier, monospace;

  --space-xs: 0.375rem;
  --space-sm: 0.75rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  --masthead-width: clamp(3.5rem, 5vw, 5.5rem);
  --content-max: 48rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-serif);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── FOCUS STATES ── */

:focus-visible {
  outline: 2px solid var(--color-copper);
  outline-offset: 2px;
}

/* ── TYPOGRAPHY ── */

h1, h2, h3, h4 {
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── HONEYPOT ── */

.honeypot {
  position: absolute;
  width: 0;
  height: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}

.honeypot label {
  pointer-events: none;
  visibility: hidden;
}

/* ── LAYOUT GRID ── */

.dispatch-board {
  display: grid;
  grid-template-columns: var(--masthead-width) 1fr;
  min-height: auto;
}

.masthead {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-orientation: upright;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-family: var(--font-mono);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-right: 1px solid var(--color-rule-light);
  padding: var(--space-lg) 0;
  position: relative;
}

.masthead::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: var(--color-rule-light);
}

.content {
  padding: 0 var(--space-lg);
  max-width: calc(var(--content-max) + var(--space-lg) * 2);
}

/* ── SECTION SPACING ── */

.section {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-rule-light);
}

.section:last-of-type {
  border-bottom: none;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: var(--space-md);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */

.hero {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-text);
}

.hero__masthead {
  background: var(--color-bg-dark);
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.site-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-rule-light);
}

.site-brand img {
  height: 1.75rem;
  width: auto;
  display: block;
}

.site-brand__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-text);
}

.hero__subhead {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 36rem;
}

/* ── SUBSCRIBE FORM ── */

.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: flex-start;
  max-width: 32rem;
}

.subscribe-form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  flex: 1;
  min-width: 14rem;
}

.subscribe-form__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.subscribe-form__input {
  font-family: var(--font-serif);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid var(--color-rule);
  color: var(--color-text);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.subscribe-form__input::placeholder {
  color: var(--color-rule);
}

.subscribe-form__input:focus {
  border-color: var(--color-copper);
  outline: none;
  outline: 2px solid var(--color-copper);
  outline-offset: 1px;
}

.subscribe-form__button {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  background: var(--color-text);
  color: var(--color-bg);
  border: 1px solid var(--color-text);
  cursor: pointer;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  margin-top: auto;
  height: 2.75rem;
}

.subscribe-form__button:hover {
  background: var(--color-copper-dark);
  border-color: var(--color-copper-dark);
}

.subscribe-form__button:focus-visible {
  outline: 2px solid var(--color-copper);
  outline-offset: 2px;
}

.subscribe-form__privacy {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

/* ═══════════════════════════════════════════
   WHAT YOU'LL GET
   ═══════════════════════════════════════════ */

.get-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.get-list li {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-rule-light);
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: var(--space-sm);
  align-items: baseline;
}

.get-list li:last-child {
  border-bottom: none;
}

.get-list__number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-copper);
  letter-spacing: 0.05em;
}

.get-list__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════
   SAMPLE ISSUE
   ═══════════════════════════════════════════ */

.sample-issue {
  padding-top: var(--space-xl);
}

.sample-issue__header {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.sample-issue__tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-text);
  padding: 0.3em 0.75em;
  display: inline-block;
}

.sample-issue__date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.sample-issue__lead h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.sample-issue__lead p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 36rem;
}

.sample-issue__roundup {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-text);
}

.sample-issue__roundup h3 {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: var(--space-md);
}

.sample-issue__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.roundup-item {
  padding-left: var(--space-md);
  border-left: 2px solid var(--color-rule);
}

.roundup-item__country {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: 0.25rem;
}

.roundup-item__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════
   COUNTRY COVERAGE
   ═══════════════════════════════════════════ */

.countries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.country-entry {
  padding: var(--space-lg);
  border: 1px solid var(--color-rule-light);
  margin: -0.5px;
}

.country-entry__flag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: var(--space-sm);
}

.country-entry__name {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.country-entry__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════
   WHO IT'S FOR
   ═══════════════════════════════════════════ */

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.audience-list li {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-rule-light);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-md);
  align-items: baseline;
}

.audience-list li:last-child {
  border-bottom: none;
}

.audience-list__role {
  font-size: 1.125rem;
  line-height: 1.4;
}

.audience-list__desc {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  text-align: right;
  max-width: 20rem;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-rule-light);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__question {
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.faq-item__answer {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════
   BOTTOM FORM
   ═══════════════════════════════════════════ */

.bottom-form {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-text);
  border-bottom: none;
}

.bottom-form__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.bottom-form__heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.bottom-form__sub {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 30rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  padding: var(--space-lg) 0;
  border-top: 3px solid var(--color-text);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-lg);
  align-items: start;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__brand img {
  height: 1.25rem;
  width: auto;
  display: block;
}

.footer__brand-name {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.footer__meta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  text-align: right;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 640px) {
  :root {
    --masthead-width: 2.5rem;
  }

  .content {
    padding: 0 var(--space-md);
  }

  .masthead {
    font-size: 0.5rem;
    letter-spacing: 0.15em;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form__group {
    min-width: 100%;
  }

  .countries-grid {
    grid-template-columns: 1fr;
  }

  .audience-list li {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }

  .audience-list__desc {
    text-align: left;
    max-width: none;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer__meta {
    text-align: left;
  }
}
