/* ============================================================
   Liraz Tito Memorial — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@400;500;700;900&subset=hebrew,latin&display=swap');

/* ======  VARIABLES  ====== */
:root {
  /* Warm ivory / muted olive — hex fallbacks for older browsers */
  --paper:    #f5f0e8;
  --paper-2:  #ece7de;
  --paper-3:  #e0dbd0;
  --ink:      #2a2520;
  --ink-2:    #4c4840;
  --ink-mute: #7c7870;
  --rule:     #cdc9be;
  --accent:   #576843;
  --accent-2: #8a6835;

  --serif: 'Frank Ruhl Libre', 'Times New Roman', serif;
  --sans:  'Frank Ruhl Libre', 'Times New Roman', serif;

  --w-text: 640px;
  --w-wide: 960px;
  --w-full: 1240px;
  --nav-h:  57px;
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
}

/* oklch values for supporting browsers — same hue/chroma, wider gamut */
@supports (color: oklch(0 0 0)) {
  :root {
    --paper:    oklch(0.965 0.012 85);
    --paper-2:  oklch(0.945 0.014 85);
    --paper-3:  oklch(0.92  0.016 85);
    --ink:      oklch(0.22  0.01  80);
    --ink-2:    oklch(0.36  0.01  80);
    --ink-mute: oklch(0.55  0.01  80);
    --rule:     oklch(0.82  0.015 85);
    --accent:   oklch(0.45  0.06  130);
    --accent-2: oklch(0.58  0.08  60);
  }
}

/* ======  RESET  ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { direction: rtl; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern", "liga";
}
::selection { background: var(--accent); color: var(--paper); }
a { color: inherit; text-underline-offset: 3px; }
img { max-width: 100%; display: block; }

/* ======  NAV  ====== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav__inner {
  max-width: var(--w-full);
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.nav__brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__brand .zl {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  font-family: var(--sans);
  font-weight: 400;
}
.nav__spacer { flex: 1; }
.nav__links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav__links a {
  text-decoration: none;
  color: var(--ink-2);
  font-size: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  transition: color 160ms var(--ease), background 160ms var(--ease);
  white-space: nowrap;
}
.nav__links a:hover      { color: var(--ink); background: var(--paper-2); }
.nav__links a.is-active  { color: var(--ink); background: var(--paper-3); font-weight: 500; }

/* Hamburger — hidden on desktop */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  transition: background 160ms;
  flex-shrink: 0;
}
.nav__toggle:hover { background: var(--paper-2); }
.nav__toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 240ms var(--ease), opacity 200ms;
}
.nav__toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ======  FOOTER  ====== */
.foot {
  margin-top: 120px;
  padding: 56px 28px 40px;
  border-top: 1px solid var(--rule);
  color: var(--ink-mute);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.foot__inner {
  max-width: var(--w-full);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: baseline;
  justify-content: space-between;
}
.foot__name {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 4px;
}
.foot__center { flex: 1; text-align: center; }
.foot__fb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-mute);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.foot__fb:hover { color: var(--ink); }
.foot__fb svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ======  LAYOUT  ====== */
main { flex: 1; padding-top: var(--nav-h); }
.wrap       { max-width: var(--w-full); margin: 0 auto; padding: 0 28px; }
.wrap--text { max-width: var(--w-text); margin: 0 auto; padding: 0 28px; }
.wrap--wide { max-width: var(--w-wide); margin: 0 auto; padding: 0 28px; }
.section    { padding: 48px 0; }
.text-center { text-align: center; }

/* ======  TYPOGRAPHY  ====== */
.h-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.h-display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.h-section {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.h-sub {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.mono {
  font-family: ui-monospace, 'Menlo', 'Consolas', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

/* Stand-alone lede paragraph */
.lede {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.55;
  color: var(--ink);
  max-width: var(--w-text);
  margin-top: 16px;
  margin-bottom: 1.4em;
}

/* Prose block */
.prose {
  font-size: 18px;
  line-height: 1.85;
  color: var(--ink-2);
}
.prose p { margin-bottom: 1.1em; text-wrap: pretty; }
.prose h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  color: var(--ink);
  margin: 2em 0 0.6em;
  letter-spacing: -0.005em;
}
.prose em     { font-style: italic; color: var(--ink); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a      { color: var(--accent); text-decoration: underline; }
.prose a:hover{ color: var(--accent-2); }

.rule       { height: 1px; background: var(--rule); margin: 64px auto; max-width: 120px; }
.rule--wide { max-width: 100%; }

/* ======  REVEAL ANIMATION  ====== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ======  SCROLL TO TOP  ====== */
.totop {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease);
  z-index: 50;
  display: grid;
  place-items: center;
}
.totop.is-vis { opacity: 0.9; pointer-events: auto; }
.totop:hover  { opacity: 1; }

/* ======  LIGHTBOX  ====== */
.lb {
  position: fixed;
  inset: 0;
  background: rgba(15, 12, 8, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
}
.lb.is-open { display: flex; }
.lb img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.lb__close, .lb__nav {
  position: absolute;
  background: none;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.85);
  width: 44px; height: 44px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 20px;
  display: grid;
  place-items: center;
  transition: background 160ms;
}
.lb__close:hover, .lb__nav:hover { background: rgba(255,255,255,0.12); }
.lb__close { top: 20px; left: 20px; }
.lb__prev  { top: 50%; right: 20px; transform: translateY(-50%); }
.lb__next  { top: 50%; left: 20px;  transform: translateY(-50%); }

/* ======  FULL-WIDTH IMAGE BLOCK  ====== */
.full-img        { margin: 56px auto; }
.full-img figure { position: relative; overflow: hidden; border-radius: 2px; }
.full-img img    { width: 100%; object-fit: contain; }
.full-img figcaption {
  position: absolute; bottom: 12px; right: 12px;
  background: var(--paper); padding: 4px 10px;
  font-size: 12px; color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* ======  HOME: HERO  ====== */
.hero { padding: 80px 0 56px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.zl-inline {
  font-family: var(--sans);
  font-size: 0.22em;
  font-weight: 400;
  color: var(--ink-mute);
  letter-spacing: 0.2em;
  vertical-align: super;
  margin-right: 12px;
}
.hero__meta  { margin-top: 36px; }
.hero__dates { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.hero__date .mono { margin-bottom: 4px; }
.hero__sep   { width: 40px; height: 1px; background: var(--rule); flex-shrink: 0; }
.hero__line  {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 420px;
}
.hero__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.hero__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* ======  HOME: TIMELINE  ====== */
.timeline__head  { margin-bottom: 28px; }
.timeline__track {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.timeline__item {
  padding: 24px 20px;
  border-left: 1px solid var(--rule);
}
.timeline__item:last-child { border-left: none; }
.timeline__year {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 500;
}
.timeline__item.is-end .timeline__year { color: var(--accent); }
.timeline__body { font-size: 14px; line-height: 1.6; color: var(--ink-2); }

/* ======  HOME: BIO  ====== */
.bio-heading { margin-bottom: 36px; }

/* ======  HOME: POEM  ====== */
.poem-wrap { background: var(--paper-2); padding: 96px 0; }
.poem { text-align: center; }
.poem__heading { margin-bottom: 40px; }
.poem__body {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 2.1;
  color: var(--ink-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: center;
  margin-bottom: 40px;
}
.poem__body p { margin: 0; }
.poem__sig {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink-mute);
}

/* ======  HOME: EXPLORE GRID  ====== */
.explore__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 40px;
}
.xcard {
  background: var(--paper);
  padding: 32px 28px;
  text-decoration: none;
  color: var(--ink);
  transition: background 200ms var(--ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
}
.xcard:hover { background: var(--paper-2); }
.xcard__num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.xcard__t {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}
.xcard__d {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-top: auto;
}

/* ======  BATTLE  ====== */
.memorial-note {
  text-align: center;
  font-size: 1.05rem;
  color: var(--accent);
  margin-top: 2em;
  font-weight: 600;
}

/* ======  PHOTOS: TAB BAR  ====== */
.tabs-bar {
  display: flex;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabs-bar::-webkit-scrollbar { display: none; }
.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 20px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mute);
  white-space: nowrap;
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
  margin-bottom: -1px;
  flex-shrink: 0;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.is-active { color: var(--ink); border-bottom-color: var(--accent); }
.tab-btn .count { font-size: 11px; opacity: 0.5; margin-right: 6px; }
.tab-panel          { display: none; }
.tab-panel.is-active{ display: block; }

/* ======  GALLERY  ====== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 200ms var(--ease);
}
.gallery img:hover { opacity: 0.82; }

/* ======  VIDEOS  ====== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 40px;
}
.video-card { display: flex; flex-direction: column; gap: 12px; }
.video-card__title {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.video-wrap {
  background: var(--ink);
  border-radius: 3px;
  overflow: hidden;
  flex: 1;
}
.video-wrap video { width: 100%; height: auto; display: block; }

/* ======  PRESS  ====== */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.press-item {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.press-item:hover {
  border-color: var(--ink-mute);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.press-item a     { display: block; text-decoration: none; color: inherit; }
.press-item img   { width: 100%; height: 260px; object-fit: cover; object-position: top; display: block; }
.press-label {
  padding: 14px 16px;
  font-size: 12px;
  color: var(--ink-2);
  text-align: center;
  letter-spacing: 0.04em;
  border-top: 1px solid var(--rule);
}

/* ======  MEMORIAL MESSAGES  ====== */
.messages-intro {
  background: var(--paper-2);
  padding: 28px 32px;
  border-radius: 2px;
  margin-bottom: 8px;
}
.messages-intro .prose { font-size: 17px; }
.messages-container {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 40px;
}
.message-card         { background: var(--paper); padding: 28px 32px; }
.message-card.hidden  { display: none; }
.message-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.message-date { margin-bottom: 16px; }
.message-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-2);
  white-space: pre-wrap;
}
.message-body p         { margin-bottom: 0.8em; white-space: normal; }
.message-body h3,
.message-body h4        { font-family: var(--serif); font-size: 16px; font-weight: 500; margin-bottom: 0.5em; }
.message-body img       { max-width: 100% !important; width: auto !important; height: auto !important; margin: 12px auto; }
.message-body a         { color: var(--accent); text-decoration: underline; }
.message-body a:hover   { color: var(--accent-2); }
.message-author {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-mute);
  font-style: italic;
}
.load-more-btn {
  display: block;
  margin: 48px auto;
  padding: 12px 28px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms var(--ease);
  letter-spacing: 0.03em;
}
.load-more-btn:hover { background: var(--ink-2); }

/* ======  ACCORDION  ====== */
.msg-acc-wrap {
  border: 1px solid var(--rule);
  margin-top: 48px;
}
.msg-acc-head {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 18px 24px 12px;
  border-bottom: 1px solid var(--rule);
}
.msg-acc-item {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.msg-acc-item:last-child { border-bottom: none; }
.msg-acc-trigger {
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 24px;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  text-align: right;
  transition: background 160ms var(--ease);
}
.msg-acc-trigger:hover { background: var(--paper-2); }
.msg-acc-trigger-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
  line-height: 1.3;
}
.msg-acc-trigger-date {
  font-size: 11px;
  color: var(--ink-mute);
  white-space: nowrap;
  flex-shrink: 0;
}
.msg-acc-arrow {
  font-size: 11px;
  color: var(--ink-mute);
  flex-shrink: 0;
  transition: transform 220ms var(--ease);
  display: inline-block;
}
.msg-acc-item.is-open .msg-acc-arrow { transform: rotate(180deg); }
.msg-acc-body {
  display: none;
  padding: 0 24px 24px;
}
.msg-acc-item.is-open .msg-acc-body { display: block; }
.msg-acc-body .message-title { display: none; }
.msg-acc-body .message-date  { display: none; }
.msg-acc-body .message-body  { padding-top: 4px; }
.msg-acc-body .message-body img { max-width: 100% !important; width: auto !important; height: auto !important; margin: 12px auto; display: block; }

/* ======  MESSAGE GRID  ====== */
.msg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.msg-preview {
  background: var(--paper);
  padding: 20px 24px;
  border: none;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-align: right;
  transition: background 180ms var(--ease);
  width: 100%;
}
.msg-preview:hover { background: var(--paper-2); }
.msg-preview__title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.msg-preview__date { font-size: 11px; }
.msg-preview__snippet {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
  text-align: right;
}

/* ======  MESSAGE MODAL  ====== */
.msg-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.msg-modal.is-open { display: flex; }
.msg-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,12,8,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.msg-modal__panel {
  position: relative;
  z-index: 1;
  background: var(--paper);
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 3px;
  padding: 40px 40px 48px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.msg-modal__close {
  position: sticky;
  top: 0;
  float: left;
  background: none;
  border: 1px solid var(--rule);
  color: var(--ink-mute);
  width: 36px; height: 36px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  display: grid;
  place-items: center;
  transition: background 160ms;
  margin-bottom: 16px;
}
.msg-modal__close:hover { background: var(--paper-2); }
.msg-modal__content .message-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.msg-modal__content .message-date   { margin-bottom: 16px; }
.msg-modal__content .message-body   { font-size: 16px; line-height: 1.8; color: var(--ink-2); white-space: pre-wrap; }
.msg-modal__content .message-body p { margin-bottom: 0.8em; white-space: normal; }
.msg-modal__content .message-body img { max-width: 100% !important; width: auto !important; height: auto !important; margin: 12px auto; }
.msg-modal__content .message-author { margin-top: 20px; font-family: var(--serif); font-size: 14px; color: var(--ink-mute); font-style: italic; }

/* ======  RESPONSIVE  ====== */
@media (max-width: 820px) {
  .section       { padding: 28px 0; }
  .hero          { padding: 48px 0 32px; }
  .hero__grid    { grid-template-columns: 1fr; gap: 32px; }
  .timeline__track { grid-template-columns: 1fr; }
  .timeline__item  { border-left: none; border-bottom: 1px solid var(--rule); }
  .timeline__item:last-child { border-bottom: none; }
  .poem__body    { grid-template-columns: 1fr; gap: 24px; font-size: 18px; }
  .poem-wrap     { padding: 56px 0; }
  .full-img      { margin: 32px auto; }
  .gallery       { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
  .video-grid    { grid-template-columns: 1fr; gap: 32px; }
  .press-grid    { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .press-item img{ height: 180px; }
  .message-card  { padding: 20px; }
  .message-body  { font-size: 15px; }
}

@media (max-width: 720px) {
  body           { font-size: 16px; }

  /* Show hamburger, hide spacer */
  .nav__toggle   { display: flex; }
  .nav__spacer   { display: none; }

  /* Mobile nav dropdown */
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    padding: 8px 12px 14px;
    gap: 2px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.09);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a  { padding: 10px 14px; border-radius: 6px; font-size: 15px; }
  .nav__inner    { padding: 0 16px; gap: 8px; }

  .wrap,
  .wrap--text,
  .wrap--wide    { padding: 0 18px; }
  .prose         { font-size: 17px; }
  .lede          { font-size: 20px; }
  .foot          { padding: 40px 18px 28px; margin-top: 80px; }
  .xcard         { padding: 24px 20px; min-height: 160px; }
  .msg-grid      { grid-template-columns: 1fr; }
  .msg-modal     { padding: 0; }
  .msg-modal__panel { max-height: 100vh; border-radius: 0; padding: 24px 20px 40px; }
}
