:root {
  --paper: #f7f4ec;
  --paper-deep: #efeadd;
  --ink: #1a1916;
  --ink-soft: #4a4740;
  --rule: #1a1916;
  --accent: #8e2a1c;
  --serif: "Fraunces", "Georgia", serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper) url("../images/newsprint.png") repeat;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

a { color: inherit; }

img { max-width: 100%; display: block; }

.kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- top bar ---------- */
.topbar {
  border-bottom: 1px solid var(--rule);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.topbar a { text-decoration: none; }

/* ---------- masthead ---------- */
.masthead { text-align: center; padding: 34px 0 24px; }
.masthead h1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(34px, 5.5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.masthead h1 .nb { white-space: nowrap; }
.masthead .tagline {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.masthead .tagline span { padding: 0 14px; }

/* ---------- nav ---------- */
.mainnav {
  border-top: 3px double var(--rule);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  background: var(--paper) url("../images/newsprint.png") repeat;
  z-index: 50;
}
.mainnav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.mainnav a {
  display: block;
  padding: 13px 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}
.mainnav a:hover, .mainnav a.active { background: var(--ink); color: var(--paper); }
.nav-bar { display: none; }
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}
.nav-brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 640px) {
  .mainnav.collapsed > ul { display: none; }
  .mainnav.collapsed .nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 20px;
  }
  .mainnav.collapsed.open > ul {
    display: block;
    border-top: 1px solid var(--rule);
  }
  .mainnav.collapsed.open > ul a {
    text-align: left;
    border-bottom: 1px solid rgba(26, 25, 22, 0.15);
  }
}

/* ---------- front page ---------- */
.front { padding: 52px 0 60px; }
.front-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
}

.lead .kicker { display: block; margin-bottom: 14px; text-align: center; }
.lead .flag-logo {
  width: min(100%, 360px);
  margin: 2px auto 18px;
}
.lead h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-align: center;
}
.lead .deck {
  text-align: center;
  margin-top: 18px;
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.lead-body {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.lead-body p + p { margin-top: 14px; }
.lead-body .col1 > p:first-child::first-letter {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 64px;
  line-height: 0.82;
  float: left;
  padding: 6px 10px 0 0;
}
.lead-cover { border: 1px solid var(--rule); }
.lead-cover img { width: 100%; }
.caption {
  font-size: 12.5px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
  padding: 8px 2px 10px;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  margin-top: 22px;
  padding: 13px 30px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--paper); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }

/* ---------- index box (sidebar) ---------- */
.sidebar > * + * { margin-top: 34px; }
.indexbox { border-top: 6px double var(--rule); padding-top: 16px; }
.indexbox h3, .noticebox h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.indexbox ol { list-style: none; }
.indexbox li {
  border-bottom: 1px solid rgba(26, 25, 22, 0.25);
}
.indexbox a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 11px 2px;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
}
.indexbox a:hover .ix-title { color: var(--accent); }
.indexbox .ix-no {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}
.noticebox {
  border: 1px solid var(--rule);
  outline: 1px solid var(--rule);
  outline-offset: 3px;
  padding: 24px 22px;
  text-align: center;
}
.noticebox .price {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  margin: 8px 0 2px;
}
.noticebox .per { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.noticebox p.small { font-size: 14px; margin-top: 12px; color: var(--ink-soft); }
.noticebox .btn { margin-top: 18px; }
.tipbox { text-align: left; }
.tipbox .formnote { font-size: 13.5px; color: var(--ink-soft); margin: 6px 0 14px; }
.tipbox .field + .field { margin-top: 12px; }
.tipbox textarea { min-height: 90px; }
.tipbox .btn { width: 100%; text-align: center; }

/* ---------- section headers ---------- */
.secthead {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 10px 0 38px;
}
.secthead::before, .secthead::after { content: ""; flex: 1; border-top: 1px solid var(--rule); }
.secthead h2 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---------- publications ---------- */
.pubs { padding: 26px 0 64px; border-top: 3px double var(--rule); }
.pub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pub {
  padding: 0 26px;
  border-left: 1px solid rgba(26, 25, 22, 0.25);
  display: flex;
  flex-direction: column;
}
.pub:first-child { border-left: none; padding-left: 0; }
.pub:last-child { padding-right: 0; }
.pub .pub-no {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 10px;
}
.pub img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--rule);
  filter: grayscale(35%);
  transition: filter 0.25s ease;
}
.pub:hover img { filter: grayscale(0%); }
.pub .kicker { display: block; margin: 16px 0 8px; }
.pub h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.12;
}
.pub p { font-size: 15px; margin-top: 10px; color: var(--ink-soft); flex: 1; }
.pub .more {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  align-self: flex-start;
  padding-bottom: 3px;
}
.pub .more:hover { color: var(--accent); }

/* ---------- stats band ---------- */
.stats {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-deep);
}
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stat { padding: 38px 20px; border-left: 1px solid rgba(26, 25, 22, 0.25); }
.stat:first-child { border-left: none; }
.stat .num {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1;
}
.stat .lbl {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- advertise / subscribe ---------- */
.actions { padding: 64px 0; }
.actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.action {
  border: 1px solid var(--rule);
  outline: 1px solid var(--rule);
  outline-offset: 4px;
  padding: 44px 40px;
}
.action h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 34px;
  line-height: 1.08;
  margin: 12px 0 14px;
}
.action p { color: var(--ink-soft); }
.action.inverse { background: var(--ink); color: var(--paper); outline-color: var(--ink); }
.action.inverse p { color: rgba(247, 244, 236, 0.78); }
.action.inverse .kicker { color: #e7a08f; }
.action.inverse .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.action.inverse .btn:hover { background: #e7a08f; border-color: #e7a08f; color: var(--ink); }
.action .tel {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 26px;
  margin-top: 18px;
  text-decoration: none;
  display: inline-block;
}

/* ---------- footer ---------- */
footer { background: var(--ink); color: var(--paper); margin-top: 10px; }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 54px 0 40px;
}
footer .brand {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 26px;
  line-height: 1.1;
}
footer p, footer a, footer li { font-size: 14.5px; color: rgba(247, 244, 236, 0.78); }
footer a { text-decoration: none; }
footer a:hover { color: var(--paper); text-decoration: underline; }
footer h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--paper);
}
footer li { list-style: none; margin-bottom: 8px; }
.foot-bottom {
  border-top: 1px solid rgba(247, 244, 236, 0.25);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(247, 244, 236, 0.6);
}

/* ---------- inner pages ---------- */
.pagehead {
  text-align: center;
  padding: 46px 0 36px;
  border-bottom: 3px double var(--rule);
}
.pagehead .kicker { display: block; margin-bottom: 14px; }
.pagehead h1 {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.pagehead .deck {
  max-width: 720px;
  margin: 18px auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.pagehead .pagelogo { width: min(100%, 360px); margin: 6px auto 14px; }

.pagebody { padding: 52px 0 64px; }
.pagebody .wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 28px; }

.prose p + p { margin-top: 16px; }
.prose .cols2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.prose .lede::first-letter {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 64px;
  line-height: 0.82;
  float: left;
  padding: 6px 10px 0 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.split .sidecol > * + * { margin-top: 30px; }

.figure { border: 1px solid var(--rule); }
.figure img { width: 100%; }

.factbox { border-top: 6px double var(--rule); padding-top: 16px; }
.factbox h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.factbox dl { font-size: 15px; }
.factbox dt {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 14px;
}
.factbox dd { margin-top: 2px; }
.factbox dd a { text-decoration: none; border-bottom: 2px solid var(--accent); padding-bottom: 1px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  border: 1px solid var(--rule);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}
.card .kicker { display: block; margin-bottom: 10px; }
.card h3 { font-family: var(--serif); font-weight: 600; font-size: 24px; line-height: 1.15; }
.card p { font-size: 15px; color: var(--ink-soft); margin-top: 10px; flex: 1; }
.card .who { margin-top: 16px; font-family: var(--serif); font-weight: 600; font-size: 18px; }
.card a.mail { font-size: 14px; text-decoration: none; border-bottom: 2px solid var(--accent); align-self: flex-start; padding-bottom: 2px; margin-top: 4px; }
.card a.mail:hover { color: var(--accent); }

/* ---------- forms ---------- */
.formbox {
  border: 1px solid var(--rule);
  outline: 1px solid var(--rule);
  outline-offset: 4px;
  padding: 40px 38px;
  background: var(--paper-deep);
}
.formbox h2 { font-family: var(--serif); font-weight: 600; font-size: 30px; margin-bottom: 6px; }
.formbox .formnote { font-size: 14px; color: var(--ink-soft); margin-bottom: 24px; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.field.full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 0;
  appearance: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231a1916' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 40px;
  cursor: pointer;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: -1px;
}
.formbox .btn { margin-top: 26px; cursor: pointer; font-family: var(--sans); }
.form-alt { margin-top: 18px; font-size: 14.5px; color: var(--ink-soft); }
.form-alt a { font-weight: 600; }
.form-msg {
  border: 1px solid var(--rule);
  padding: 22px 24px;
  margin-top: 8px;
  font-size: 16px;
}
.form-msg.ok { border-left: 6px solid #0f6e56; border-radius: 0; }
.form-msg.err { border-left: 6px solid var(--accent); border-radius: 0; }
.form-msg h3 { font-family: var(--serif); font-weight: 600; font-size: 22px; margin-bottom: 6px; }

.rulesect { border-top: 3px double var(--rule); margin-top: 56px; padding-top: 8px; }

/* ---------- flip book ---------- */
#flipbook { margin: 34px auto 0; max-width: 1100px; }
.fb-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.fb-controls .btn { margin-top: 0; }
.fb-count {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  min-width: 130px;
  text-align: center;
}
.fb-hint { text-align: center; font-size: 13.5px; color: var(--ink-soft); margin-top: 12px; }

/* ---------- staff masthead ---------- */
.staff { max-width: 760px; margin: 0 auto; list-style: none; }
.staff li {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(26, 25, 22, 0.25);
  padding: 18px 2px;
}
.staff li > a { margin-left: auto; }
.staff .mug {
  flex: 0 0 auto;
  width: 64px;
  height: 78px;
  border: 1px solid var(--rule);
  background: var(--paper-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink-soft);
  object-fit: cover;
}
img.mug { background: none; }
.staff .nm { font-family: var(--serif); font-weight: 600; font-size: 23px; }
.staff .ttl {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
}
.staff a {
  font-size: 14.5px;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  white-space: nowrap;
}
.staff a:hover { color: var(--accent); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .front-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .pub-grid { grid-template-columns: 1fr 1fr; row-gap: 44px; }
  .pub:nth-child(3) { border-left: none; padding-left: 0; }
  .pub:nth-child(2n) { padding-right: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .lead-body { grid-template-columns: 1fr; }
  .prose .cols2 { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr; }
  .formbox { padding: 28px 22px; }
  .pub-grid { grid-template-columns: 1fr; }
  .pub { border-left: none; padding: 0; }
  .actions-grid { grid-template-columns: 1fr; }
  .stats .wrap { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid rgba(26, 25, 22, 0.25); }
  .stat:first-child { border-top: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .topbar .hide-sm { display: none; }
}
