/* ============================================================
   MERROW — Design System
   ============================================================
   To update colors: edit the :root variables below.
   To update fonts: change --font-display or --font-body.
   To update spacing: adjust the --space-* scale.
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --cream:        #F7F2E8;
  --parchment:    #EDE5D4;
  --linen:        #E6DEC9;
  --forest:       #2C4A3E;
  --forest-mid:   #3A6054;
  --forest-light: #4E7A6A;
  --taupe:        #9B8B78;
  --warm-brown:   #7A5C45;
  --muted-gold:   #C4A068;
  --dark:         #241E1A;
  --medium:       #5A4F45;
  --light:        #9B8F86;
  --pale:         #C8BDB5;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type Scale */
  --text-xs:   0.68rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.375rem;
  --text-xl:   1.75rem;
  --text-2xl:  2.25rem;
  --text-3xl:  3rem;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-xxl: 10rem;

  /* Layout */
  --max-width:    1280px;
  --narrow-width: 780px;

  /* Elevation */
  --shadow-sm: 0 1px 4px rgba(36, 30, 26, 0.06);
  --shadow-md: 0 4px 20px rgba(36, 30, 26, 0.10);
  --shadow-lg: 0 12px 48px rgba(36, 30, 26, 0.14);

  /* Motion */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.4s;
}

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

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

body {
  background-color: var(--cream);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.018;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

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

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

ul { list-style: none; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p {
  font-family: var(--font-body);
  font-weight: 300;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: var(--space-sm);
}

.section-label--light {
  color: rgba(237, 229, 212, 0.45);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header--left {
  text-align: left;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: var(--text-sm);
  color: var(--taupe);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.85;
}

.section-subtitle--left {
  margin: 0;
  max-width: 560px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--narrow-width);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: var(--duration) var(--ease);
  cursor: pointer;
  border: none;
  background: none;
}

/* Forest green on cream */
.btn-primary {
  background-color: var(--forest);
  color: var(--cream);
  padding: 1rem 2.25rem;
  border: 1px solid var(--forest);
}

.btn-primary:hover {
  background-color: var(--forest-mid);
  border-color: var(--forest-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Underline text link — dark text, for use on cream backgrounds */
.btn-text-dark {
  color: var(--dark);
  padding: 0;
  position: relative;
}

.btn-text-dark::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--dark);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}

.btn-text-dark:hover::after {
  transform: scaleX(0);
}

/* Ghost — transparent with cream border, for dark backgrounds */
.btn-ghost {
  background-color: transparent;
  color: var(--cream);
  padding: 0.85rem 2rem;
  border: 1px solid rgba(247, 242, 232, 0.35);
}

.btn-ghost:hover {
  background-color: rgba(247, 242, 232, 0.08);
  border-color: rgba(247, 242, 232, 0.65);
  transform: translateY(-1px);
}

/* Outline — forest border, for cream backgrounds */
.btn-outline {
  background-color: transparent;
  color: var(--forest);
  padding: 0.85rem 2rem;
  border: 1px solid var(--forest);
}

.btn-outline:hover {
  background-color: var(--forest);
  color: var(--cream);
  transform: translateY(-1px);
}

/* Join — gold, for newsletter on dark bg */
.btn-join {
  background-color: var(--muted-gold);
  color: var(--dark);
  padding: 0.9rem 1.75rem;
  border: 1px solid var(--muted-gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-join:hover {
  background-color: #B8904A;
  border-color: #B8904A;
  transform: translateY(-1px);
}

/* ============================================================
   NAVIGATION
   — Hero is cream, so nav starts with dark text.
   — .scrolled adds cream bg + backdrop blur (same dark text).
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.site-header.scrolled {
  background-color: rgba(247, 242, 232, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--forest);
  transition: color var(--duration) var(--ease);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--medium);
  transition: color var(--duration) var(--ease);
}

.nav-links a:hover {
  color: var(--forest);
}

.nav-links a.nav-cta {
  color: var(--forest);
  border: 1px solid var(--forest);
  padding: 0.6rem 1.25rem;
}

.nav-links a.nav-cta:hover {
  background-color: var(--forest);
  color: var(--cream);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background-color: var(--forest);
  transition: var(--duration) var(--ease);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ============================================================
   HERO — Editorial split: question left, image right
   ============================================================ */
.hero {
  background-color: var(--cream);
  padding: 9rem 0 var(--space-xl);
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
}

.hero-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-gold);
  margin-bottom: var(--space-sm);
}

.hero-question {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.hero-sub {
  font-size: var(--text-sm);
  color: var(--medium);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
  max-width: 420px;
}

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

.hero-image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(155, 139, 120, 0.2);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease);
}

.hero-img.loaded {
  transform: scale(1);
}

/* ============================================================
   LATEST FIELD NOTES
   ============================================================ */
.latest-notes {
  padding: var(--space-xl) 0 var(--space-xxl);
  background-color: var(--cream);
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: rgba(155, 139, 120, 0.18);
  border: 1px solid rgba(155, 139, 120, 0.18);
  margin-top: var(--space-lg);
}

/* ── Note Card ── */
.note-card {
  background-color: var(--cream);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.note-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.note-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.note-card-image {
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.note-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.note-card:hover .note-card-image img {
  transform: scale(1.04);
}

.note-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: var(--space-md);
  flex: 1;
}

.note-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.note-number {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}

.note-sep {
  color: var(--pale);
  font-size: var(--text-xs);
}

.note-category {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-gold);
}

.note-readtime {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--taupe);
  letter-spacing: 0.08em;
}

.note-card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.25;
}

.note-card-excerpt {
  font-size: var(--text-sm);
  color: var(--medium);
  line-height: 1.85;
  flex: 1;
}

.note-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(155, 139, 120, 0.18);
}

.note-arrow {
  font-size: 1rem;
  color: var(--taupe);
  transition: transform var(--duration) var(--ease), color var(--duration) var(--ease);
}

.note-card:hover .note-arrow {
  transform: translateX(4px);
  color: var(--forest);
}

/* ============================================================
   FEATURED EDITORIAL — cover story, 55/45 split
   ============================================================ */
.featured-editorial {
  background-color: var(--linen);
  overflow: hidden;
}

.featured-editorial-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 640px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.featured-editorial-image {
  overflow: hidden;
}

.featured-editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.featured-editorial:hover .featured-editorial-image img {
  transform: scale(1.03);
}

.featured-editorial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-xl);
}

.featured-rule {
  width: 36px;
  height: 1px;
  background-color: var(--muted-gold);
  flex-shrink: 0;
}

.featured-editorial-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.25;
}

.featured-editorial-excerpt {
  font-size: var(--text-base);
  color: var(--medium);
  line-height: 1.9;
}

/* ============================================================
   THIS WEEK'S QUESTION
   ============================================================ */
.weekly-question {
  background-color: var(--forest);
  padding: var(--space-xl) 0;
}

.weekly-question-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: 0 var(--space-md);
  margin: 0 auto;
  max-width: var(--narrow-width);
}

.weekly-question-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.45;
  quotes: none;
}

.weekly-question-sub {
  font-size: var(--text-sm);
  color: rgba(237, 229, 212, 0.58);
  max-width: 440px;
  line-height: 1.85;
}

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections {
  padding: var(--space-xxl) 0;
  background-color: var(--cream);
}

/* Field Notes featured card — full width, forest green */
.collections-featured-wrap {
  margin-top: var(--space-xl);
}

.collection-card--featured {
  display: block;
  background-color: var(--forest);
  padding: var(--space-xl) var(--space-md);
  text-decoration: none;
  transition: background-color var(--duration) var(--ease);
}

.collection-card--featured:hover {
  background-color: var(--forest-mid);
}

.collection-featured-inner {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.collection-number-lg {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(196, 160, 104, 0.5);
  line-height: 1;
  flex-shrink: 0;
}

.collection-featured-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.collection-name-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
}

.collection-desc-lg {
  font-size: var(--text-base);
  color: rgba(237, 229, 212, 0.62);
  line-height: 1.85;
  max-width: 520px;
}

.collection-link-lg {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-gold);
  margin-top: var(--space-sm);
  display: inline-block;
}

/* Secondary collections — 5-col grid */
.collections-secondary {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background-color: rgba(155, 139, 120, 0.18);
  border: 1px solid rgba(155, 139, 120, 0.18);
  margin-top: 1px;
}

/* Base collection card (secondary) */
.collection-card {
  background-color: var(--cream);
  padding: var(--space-lg) var(--space-md);
  text-decoration: none;
  display: block;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease),
              transform 0.55s var(--ease),
              background-color 0.35s var(--ease);
}

.collection-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.collection-card:hover {
  background-color: var(--parchment);
}

.collection-card:hover .collection-link {
  color: var(--forest);
}

.collection-card:hover .collection-number {
  color: var(--forest);
}

.collection-card-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  height: 100%;
}

.collection-number {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  color: var(--muted-gold);
  letter-spacing: 0.05em;
  transition: color var(--duration) var(--ease);
}

.collection-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.2;
}

.collection-desc {
  font-size: var(--text-sm);
  color: var(--medium);
  line-height: 1.8;
  flex: 1;
}

.collection-link {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color var(--duration) var(--ease);
  margin-top: var(--space-sm);
}

/* ============================================================
   MANIFESTO — Minimal version
   ============================================================ */
.manifesto-minimal {
  background-color: var(--parchment);
  padding: var(--space-xxl) 0;
  text-align: center;
  position: relative;
}

.manifesto-minimal::before,
.manifesto-minimal::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(155, 139, 120, 0.4), transparent);
}

.manifesto-minimal::before { top: 0; }
.manifesto-minimal::after  { bottom: 0; }

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  quotes: none;
}

.manifesto-tenets {
  display: flex;
  flex-direction: column;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.manifesto-tenets li {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--medium);
  line-height: 1.6;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(155, 139, 120, 0.2);
}

.manifesto-tenets li:last-child {
  border-bottom: 1px solid rgba(155, 139, 120, 0.2);
}

/* ============================================================
   ARCHIVE PREVIEW
   ============================================================ */
.archive-preview {
  padding: var(--space-xxl) 0;
  background-color: var(--cream);
}

.archive-list {
  margin: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(155, 139, 120, 0.22);
}

.archive-item {
  display: grid;
  grid-template-columns: 4rem 14rem 1fr 12rem 2rem;
  gap: var(--space-sm);
  align-items: center;
  padding: 1.25rem 0.5rem;
  border-bottom: 1px solid rgba(155, 139, 120, 0.22);
  color: inherit;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease),
              transform 0.5s var(--ease),
              background-color 0.25s var(--ease),
              padding var(--duration) var(--ease);
}

.archive-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.archive-item:hover {
  background-color: var(--parchment);
  padding-left: 1rem;
}

.archive-year {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--pale);
  letter-spacing: 0.12em;
}

.archive-number {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
}

.archive-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark);
}

.archive-category {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-gold);
  text-align: right;
}

.archive-arrow {
  font-size: 0.9rem;
  color: var(--taupe);
  text-align: right;
  transition: transform var(--duration) var(--ease), color var(--duration) var(--ease);
}

.archive-item:hover .archive-arrow {
  transform: translateX(4px);
  color: var(--forest);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--space-xxl) var(--space-md);
  background-color: var(--cream);
  text-align: center;
}

.about .section-label {
  display: block;
  margin-bottom: var(--space-sm);
}

.about-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: var(--dark);
  margin-bottom: var(--space-lg);
}

.about-body {
  max-width: var(--narrow-width);
  margin: 0 auto var(--space-xl);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-body p {
  font-size: var(--text-base);
  color: var(--medium);
  line-height: 1.95;
}

.about-body p:first-child {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--dark);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
}

.about-image-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.about-image-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center 40%;
}

.about-image-caption {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: var(--space-sm);
  text-align: center;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background-color: var(--forest);
  overflow: hidden;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  max-width: 100%;
}

.newsletter-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl);
  gap: var(--space-md);
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.2;
}

.newsletter-body {
  font-size: var(--text-base);
  color: rgba(237, 229, 212, 0.68);
  line-height: 1.85;
  max-width: 380px;
}

/* Promise list */
.newsletter-promise {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-promise li {
  font-size: var(--text-sm);
  color: rgba(237, 229, 212, 0.62);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.newsletter-promise li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted-gold);
}

/* Email input + button row */
.newsletter-input-group {
  display: flex;
  width: 100%;
  max-width: 460px;
}

.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  background-color: rgba(247, 242, 232, 0.07);
  border: 1px solid rgba(247, 242, 232, 0.18);
  border-right: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  outline: none;
  transition: border-color var(--duration) var(--ease),
              background-color var(--duration) var(--ease);
  min-width: 0;
}

.newsletter-input::placeholder {
  color: rgba(237, 229, 212, 0.32);
}

.newsletter-input:focus {
  background-color: rgba(247, 242, 232, 0.12);
  border-color: rgba(247, 242, 232, 0.42);
}

.newsletter-disclaimer {
  font-size: var(--text-xs);
  color: rgba(237, 229, 212, 0.32);
  letter-spacing: 0.06em;
  margin-top: -0.5rem;
}

.newsletter-image {
  overflow: hidden;
  position: relative;
}

.newsletter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
  mix-blend-mode: luminosity;
  filter: sepia(20%);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--dark);
  padding: var(--space-xl) var(--space-md);
}

.site-footer .container {
  max-width: var(--max-width);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(155, 139, 120, 0.14);
  margin-bottom: var(--space-lg);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.06em;
}

.footer-nav {
  display: flex;
  gap: var(--space-lg);
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color var(--duration) var(--ease);
}

.footer-nav a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(155, 139, 120, 0.55);
}

.footer-copy {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.10em;
  color: rgba(155, 139, 120, 0.35);
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  /* Hero: stack vertically */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-image-frame {
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
  }

  /* Featured editorial: stack */
  .featured-editorial-inner {
    grid-template-columns: 1fr;
  }

  .featured-editorial-image {
    height: 420px;
  }

  .featured-editorial-content {
    padding: var(--space-lg);
  }

  /* Notes grid: 1 col */
  .notes-grid {
    grid-template-columns: 1fr;
  }

  /* Collections secondary: 3 col */
  .collections-secondary {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Newsletter: stack */
  .newsletter-inner {
    grid-template-columns: 1fr;
  }

  .newsletter-image {
    height: 320px;
    order: -1;
  }

  /* Archive: hide year and category columns */
  .archive-item {
    grid-template-columns: 14rem 1fr 2rem;
  }

  .archive-year,
  .archive-category {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --space-xl:  4rem;
    --space-xxl: 6rem;
  }

  /* Mobile nav overlay */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background-color: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    z-index: 90;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: var(--medium);
    font-size: 0.75rem;
  }

  .nav-links a:hover {
    color: var(--forest);
  }

  .nav-links a.nav-cta {
    color: var(--forest);
    border-color: var(--forest);
  }

  .nav-links a.nav-cta:hover {
    background-color: var(--forest);
    color: var(--cream);
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero: tighten on mobile */
  .hero {
    padding-top: 7rem;
    min-height: auto;
  }

  /* Collections featured */
  .collection-featured-inner {
    flex-direction: column;
    gap: var(--space-md);
  }

  .collection-number-lg {
    font-size: 3rem;
  }

  /* Collections secondary: 2 col on mobile */
  .collections-secondary {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-card {
    padding: var(--space-md);
  }

  /* Archive: simpler layout */
  .archive-item {
    grid-template-columns: 1fr 2rem;
    gap: var(--space-xs);
  }

  .archive-year,
  .archive-category,
  .archive-number {
    display: none;
  }

  /* Newsletter */
  .newsletter-content {
    padding: var(--space-md);
  }

  .newsletter-input-group {
    flex-direction: column;
    max-width: 100%;
  }

  .newsletter-input {
    border-right: 1px solid rgba(247, 242, 232, 0.18);
    border-bottom: none;
  }

  .btn-join {
    width: 100%;
    justify-content: center;
  }

  /* About */
  .about-body {
    text-align: left;
  }

  .about-image-wrap img {
    height: 280px;
  }

  /* Manifesto tenets: smaller text */
  .manifesto-tenets li {
    font-size: 1rem;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

/* ============================================================
   RESPONSIVE — Small Mobile (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  /* Collections secondary: 1 col on small phones */
  .collections-secondary {
    grid-template-columns: 1fr;
  }

  /* Archive: minimal */
  .archive-item {
    padding-right: 0;
  }
}
