/* ==========================================================================
   Laars — stylesheet
   Fonts load from Google Fonts; the site degrades gracefully without them.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;700&display=swap');

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

:root {
  --moss:        #2d4a2d;
  --moss-mid:    #3d6b3d;
  --leaf:        #5a8f5a;
  --sage:        #8ab88a;
  --mint:        #c8e0c0;
  --foam:        #edf5e8;
  --paper:       #f8fdf5;
  --white:       #ffffff;
  --ink:         #1a2e1a;
  --ink-mid:     #3a5a3a;
  --ink-soft:    #6a8a6a;
  --border:      #cce0c0;
  --clay:        #a8563f;   /* errors only — never decorative */
  --clay-soft:   #f6e8e4;

  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --sans:  'DM Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  --wrap: 1100px;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Accessibility floor -------------------------------------------------- */

:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--moss);
  color: #fff;
  padding: 12px 20px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ── NAV ─────────────────────────────────────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,253,245,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(45,74,45,0.1); }

.nav-logo {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--moss);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-logo-dot {
  width: 8px; height: 8px;
  background: var(--leaf);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.nav-right { display: flex; align-items: center; gap: 28px; }

.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--moss); }

.lang-toggle {
  display: flex;
  background: var(--foam);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  padding: 5px 14px;
  border: none;
  border-radius: 16px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  background: transparent;
  color: var(--ink-soft);
  transition: background .2s, color .2s;
}
.lang-btn.active { background: var(--moss); color: #fff; }

/* Mobile menu button — hidden on desktop */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  background: var(--foam);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 18px; height: 1.5px;
  background: var(--moss);
  transform: translateX(-50%);
  transition: transform .25s, opacity .2s;
}
.nav-toggle span { top: 50%; margin-top: -0.75px; }
.nav-toggle span::before { top: -6px; left: 0; transform: none; }
.nav-toggle span::after  { top:  6px; left: 0; transform: none; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg) translate(4px, -4px); }

/* ── HERO ────────────────────────────────────────────────────────────── */

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5vw 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 30%, rgba(90,143,90,0.11) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 70%, rgba(138,184,138,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.hero-leaf {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
  border-radius: 50% 5% 50% 5%;
}
.hero-leaf-1 { top: 8%; left: 4%; width: 160px; height: 160px; background: var(--leaf); transform: rotate(-30deg); }
.hero-leaf-2 { bottom: 10%; right: 4%; width: 120px; height: 120px; background: var(--sage); border-radius: 5% 50% 5% 50%; transform: rotate(20deg); }
.hero-leaf-3 { top: 50%; left: -1%; width: 90px; height: 140px; background: var(--moss); transform: rotate(10deg) translateY(-50%); }

.hero-inner { position: relative; z-index: 1; max-width: 820px; width: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--foam);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--moss-mid);
  margin-bottom: 28px;
}
.badge-dot { width: 6px; height: 6px; background: var(--leaf); border-radius: 50%; flex-shrink: 0; }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 74px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--moss);
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--leaf); }

.hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 460px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.75;
}

/* ── SUBSCRIBE BOX ───────────────────────────────────────────────────── */

.subscribe-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 38px;
  max-width: 470px;
  margin: 0 auto;
  box-shadow: 0 12px 48px rgba(45,74,45,0.1);
  text-align: left;
}
.subscribe-box h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--moss);
  margin-bottom: 6px;
}
.subscribe-intro {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-weight: 300;
}

.form-row { display: flex; gap: 10px; flex-wrap: wrap; }

.form-row input[type="email"] {
  flex: 1;
  min-width: 160px;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  background: var(--foam);
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-row input[type="email"]:focus {
  border-color: var(--leaf);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(90,143,90,0.12);
}
.form-row input[type="email"][aria-invalid="true"] {
  border-color: var(--clay);
  background: var(--clay-soft);
}

/* Honeypot — hidden from humans, catches naive bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.btn-sub {
  padding: 13px 22px;
  background: var(--moss);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, transform .15s, opacity .2s;
  white-space: nowrap;
  min-width: 130px;
}
.btn-sub:hover:not(:disabled) { background: var(--moss-mid); transform: translateY(-1px); }
.btn-sub:disabled { opacity: .6; cursor: default; }

.btn-sub .spinner {
  display: none;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 0 auto;
}
.btn-sub.loading .btn-label { display: none; }
.btn-sub.loading .spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-note { margin-top: 12px; font-size: 11px; color: var(--ink-soft); line-height: 1.6; }
.form-note a { color: var(--leaf); text-decoration: underline; text-underline-offset: 2px; }

.form-error {
  display: none;
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--clay-soft);
  border: 1px solid #e3c8c0;
  border-radius: 8px;
  font-size: 13px;
  color: var(--clay);
}
.form-error.visible { display: block; }

#form-success { text-align: center; padding: 8px 4px; }
#form-success .fs-big { font-size: 36px; margin-bottom: 10px; line-height: 1; }
#form-success h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--moss);
  margin-bottom: 8px;
}
#form-success p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; font-weight: 300; }

/* ── TRUST BAND (replaces vanity stats) ──────────────────────────────── */

.trust {
  background: var(--moss);
  padding: 30px 5vw;
}
.trust-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 26px;
}
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-mark {
  color: var(--mint);
  font-size: 15px;
  line-height: 1.5;
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}
.trust-item span {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 300;
}

/* ── SECTION PRIMITIVES ──────────────────────────────────────────────── */

.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--moss);
  max-width: 520px;
  line-height: 1.25;
  margin-bottom: 50px;
}

/* ── FEATURES ────────────────────────────────────────────────────────── */

.features { padding: 90px 5vw; max-width: 1200px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--leaf), var(--sage));
  opacity: 0;
  transition: opacity .25s;
}
.feat-card:hover { border-color: var(--sage); box-shadow: 0 8px 36px rgba(45,74,45,0.1); transform: translateY(-3px); }
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 50px; height: 50px;
  background: var(--foam);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
}
.feat-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--moss);
  margin-bottom: 8px;
}
.feat-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

/* ── TIPS ────────────────────────────────────────────────────────────── */

.tips {
  background: var(--foam);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 90px 5vw;
}
.tips-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}
.tips-lead { font-size: 15px; color: var(--ink-soft); font-weight: 300; line-height: 1.8; }
.tips-list { display: flex; flex-direction: column; gap: 16px; }
.tip-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow .2s;
}
.tip-item:hover { box-shadow: 0 4px 20px rgba(45,74,45,0.08); }
.tip-mark {
  color: var(--sage);
  font-size: 18px;
  line-height: 1.4;
  flex-shrink: 0;
  min-width: 22px;
}
.tip-item h4 { font-size: 15px; font-weight: 500; color: var(--moss); margin-bottom: 4px; }
.tip-item p { font-size: 13px; color: var(--ink-soft); line-height: 1.65; }

/* ── ARCHIVE ─────────────────────────────────────────────────────────── */

.archive-wrap { max-width: 820px; margin: 0 auto; padding: 70px 5vw 90px; }

.issue-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.issue {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 24px;
  align-items: start;
  transition: border-color .2s, box-shadow .2s;
}
.issue:hover { border-color: var(--sage); box-shadow: 0 4px 20px rgba(45,74,45,0.07); }
.issue-meta { border-right: 1px solid var(--border); padding-right: 18px; }
.issue-no {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--moss);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.issue-date { font-size: 11.5px; color: var(--ink-soft); letter-spacing: .3px; }
.issue h3 { font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--moss); margin-bottom: 6px; }
.issue p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; font-weight: 300; }

.archive-empty {
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  margin-top: 8px;
}
.archive-empty .fs-big { font-size: 34px; margin-bottom: 12px; line-height: 1; }
.archive-empty h3 { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--moss); margin-bottom: 8px; }
.archive-empty p { font-size: 14px; color: var(--ink-soft); font-weight: 300; max-width: 380px; margin: 0 auto; }

/* ── AUTHOR ──────────────────────────────────────────────────────────── */

.author {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 5vw 0;
}
.author-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}
.author-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--foam);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--moss);
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--moss);
  line-height: 1.2;
  margin-bottom: 3px;
}
.author-role {
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 12px;
}
.author-bio { font-size: 14.5px; color: var(--ink-soft); line-height: 1.75; font-weight: 300; }
.author-links {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.author-links a {
  font-size: 12.5px;
  color: var(--moss-mid);
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--foam);
  border-radius: 20px;
  padding: 5px 14px;
  transition: border-color .2s, color .2s;
}
.author-links a:hover { border-color: var(--sage); color: var(--moss); }

@media (max-width: 560px) {
  .author-card { grid-template-columns: 1fr; gap: 16px; padding: 24px 22px; }
}

/* ── CTA ─────────────────────────────────────────────────────────────── */

.cta-band { padding: 90px 5vw; text-align: center; }
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  color: var(--moss);
  margin-bottom: 14px;
}
.cta-band p { font-size: 16px; color: var(--ink-soft); margin-bottom: 30px; font-weight: 300; }
.btn-cta {
  display: inline-block;
  padding: 15px 38px;
  background: var(--moss);
  color: #fff;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-cta:hover { background: var(--moss-mid); transform: translateY(-2px); }

/* ── FOOTER ──────────────────────────────────────────────────────────── */

footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 52px 5vw 28px;
}
.footer-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.footer-logo-dot { width: 8px; height: 8px; background: var(--sage); border-radius: 50%; flex-shrink: 0; }
.footer-desc { font-size: 13px; line-height: 1.7; font-weight: 300; max-width: 250px; }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--sage); }

/* Sender identity — required for commercial email (CAN-SPAM / GDPR) */
.sender-identity {
  max-width: var(--wrap);
  margin: 26px auto 0;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 12.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.42);
  font-weight: 300;
}
.sender-identity strong { color: rgba(255,255,255,0.7); font-weight: 500; }

.footer-bottom {
  max-width: var(--wrap);
  margin: 22px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.42); text-decoration: none; }
.footer-bottom a:hover { color: var(--sage); }

/* ── LEGAL PAGES ─────────────────────────────────────────────────────── */

.legal-wrap { max-width: 720px; margin: 0 auto; padding: 70px 5vw; }
.legal-wrap h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--moss);
  margin-bottom: 6px;
}
.legal-date {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.legal-wrap h2 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--moss);
  margin: 34px 0 10px;
}
.legal-wrap p, .legal-wrap li {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 10px;
  font-weight: 300;
}
.legal-wrap ul { padding-left: 20px; }
.legal-wrap a { color: var(--leaf); }
.legal-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 18px;
  font-size: 14px;
}
.legal-wrap th, .legal-wrap td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--border);
  vertical-align: top;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.6;
}
.legal-wrap th { background: var(--foam); font-weight: 500; color: var(--moss); }

/* ── STATUS PAGES (confirm / unsubscribe) ────────────────────────────── */

.status-page {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5vw;
}
.status-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(45,74,45,0.09);
  max-width: 460px;
  width: 100%;
  padding: 42px 38px;
  text-align: center;
}
.status-icon {
  width: 56px; height: 56px;
  background: var(--foam);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}
.status-icon.is-done { background: var(--mint); border-color: var(--sage); }
.status-icon.is-error { background: var(--clay-soft); border-color: #e3c8c0; }
.status-card h1 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--moss);
  margin-bottom: 10px;
  line-height: 1.3;
}
.status-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.75; font-weight: 300; }
.status-card p + p { margin-top: 10px; }
.status-actions { margin-top: 26px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.btn-solid, .btn-ghost {
  padding: 12px 26px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
}
.btn-solid { background: var(--moss); color: #fff; }
.btn-solid:hover:not(:disabled) { background: var(--moss-mid); transform: translateY(-1px); }
.btn-solid:disabled { opacity: .6; cursor: default; }
.btn-ghost { background: transparent; color: var(--ink-mid); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--sage); color: var(--moss); }

.status-state { display: none; }
.status-state.active { display: block; }

.status-fineprint {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.status-fineprint a { color: var(--leaf); }

/* ── ANIMATIONS ──────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */

@media (max-width: 880px) {
  .tips-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }

  .nav-toggle { display: block; }
  .nav-right { gap: 12px; }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(45,74,45,0.08);
    flex-direction: column;
    gap: 0;
    padding: 8px 5vw 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 14px 0; font-size: 14px; }
}

@media (max-width: 560px) {
  .subscribe-box { padding: 26px 22px; }
  .form-row { flex-direction: column; }
  .form-row input[type="email"], .btn-sub { width: 100%; }
  .status-card { padding: 34px 24px; }
  .issue { grid-template-columns: 1fr; gap: 12px; }
  .issue-meta { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 10px; display: flex; gap: 10px; align-items: baseline; }
  .issue-no { margin-bottom: 0; }
}
