/* ─────────────────────────────────────────────────────────────
   Ghizlan Yoga — design system
   Warm earth · sacred feminine · slow + grounded
   ───────────────────────────────────────────────────────────── */

:root {
  --cream: #f5ede1;
  --cream-deep: #ede2cf;
  --sand: #e3d4ba;
  --sand-soft: #ebdec8;
  --terracotta: #b8593a;
  --terracotta-deep: #8f3f26;
  --terracotta-soft: #d49075;
  --ochre: #c89853;
  --ochre-soft: #dfb87a;
  --sage: #8a9277;
  --sage-soft: #b5b89e;
  --ink: #2b2218;
  --ink-soft: #4a3d2e;
  --ink-mute: #6b5d4a;
  --ink-faint: #8a7a64;
  --line: rgba(43, 34, 24, 0.14);
  --line-soft: rgba(43, 34, 24, 0.07);

  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter Tight', 'Inter', -apple-system, system-ui, sans-serif;

  --max: 1280px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ── Typography ────────────────────────────────────────────── */
.h-display {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-style: italic;
}
.h-display-roman {
  font-family: var(--display);
  font-weight: 350;
  letter-spacing: -0.02em;
  line-height: 0.98;
}
.h-serif {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.h-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.h-eyebrow.muted { color: var(--ink-faint); }

/* ── Buttons & links ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--terracotta); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--ink); padding: 10px 0; }
.btn-ghost:hover { color: var(--terracotta); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: all 0.2s;
}
.link-arrow:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ── Top bar (announcement) ──────────────────────────────── */
.announce {
  background: var(--terracotta);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 16px;
  font-weight: 500;
}

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
  background: var(--cream);
  position: relative;
  z-index: 10;
}
.nav-logo {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo span { color: var(--terracotta); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links .circle-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--terracotta);
  transition: background 0.2s, border-color 0.2s;
}
.nav-links .circle-link:hover {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}
.nav-links .circle-link.active {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--terracotta);
}

/* ── Photo wrapper (real images with warm glow overlay) ──── */
.photo {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255, 240, 220, 0.18), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(184, 89, 58, 0.12), transparent 60%);
  pointer-events: none;
  mix-blend-mode: soft-light;
}

/* ── Tags ────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: transparent;
  font-weight: 500;
}
.tag-filled { background: var(--terracotta); color: var(--cream); border-color: var(--terracotta); }
.tag-sand { background: var(--sand-soft); border-color: transparent; }

/* ── Marquee ─────────────────────────────────────────────── */
.marquee {
  background: var(--terracotta);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  animation: marquee 40s linear infinite;
}
.marquee-track span.dot { opacity: 0.5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 56px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin: 0 0 20px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a {
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer a:hover { opacity: 1; color: var(--ochre-soft); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 237, 225, 0.1);
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 0.05em;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

/* ── Sections ────────────────────────────────────────────── */
section.wrap { max-width: var(--max); margin: 0 auto; }

/* ── Home: hero ──────────────────────────────────────────── */
.hero {
  padding: 40px 56px 100px;
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-size: clamp(56px, 8vw, 108px);
  margin: 0;
  color: var(--ink);
}
.hero h1 .roman { font-style: normal; font-weight: 350; }
.hero h1 .accent { color: var(--terracotta); }
.hero-eyebrow { margin-bottom: 32px; }
.hero-lede {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 480px;
  margin-top: 40px;
  font-style: italic;
}
.hero-cta { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hero-photo {
  position: relative;
}
.hero-photo .photo {
  aspect-ratio: 4/5;
  border-radius: 2px;
}
.hero-quote {
  position: absolute;
  top: -24px;
  right: -24px;
  background: var(--cream-deep);
  padding: 20px 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 220px;
  line-height: 1.5;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.hero-quote-attr {
  margin-top: 8px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.hero-mark {
  position: absolute;
  bottom: -28px;
  left: -28px;
}

/* ── Home: philosophy ────────────────────────────────────── */
.philosophy {
  padding: 120px 56px;
  background: var(--cream-deep);
}
.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}
.philosophy-side { position: sticky; top: 60px; }
.philosophy h2 {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 0.98;
  font-size: 64px;
  margin: 0;
  color: var(--ink);
}
.philosophy h2 .accent { color: var(--terracotta); }
.philosophy p.lede {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.6;
  color: var(--ink);
  margin-top: 0;
}
.philosophy p.body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 32px;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.pillar {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.pillar .num {
  font-family: var(--display);
  font-size: 14px;
  color: var(--terracotta);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  font-style: italic;
}
.pillar .t {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
}
.pillar .d { font-size: 14px; color: var(--ink-mute); line-height: 1.55; }

/* ── Home: featured + journal grid ───────────────────────── */
.section-block {
  padding: 120px 56px;
  max-width: var(--max);
  margin: 0 auto;
}
.section-block.bg-sand { background: var(--sand-soft); max-width: none; }
.section-block.bg-sand > .inner {
  max-width: var(--max); margin: 0 auto;
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-size: clamp(40px, 5vw, 64px);
  margin: 0;
}
.section-head h2 .accent { color: var(--terracotta); font-style: normal; font-weight: 350; }

/* Journal cards */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.j-card {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.j-card:hover { transform: translateY(-2px); }
.j-card .photo {
  aspect-ratio: 4/3;
  border-radius: 2px;
  margin-bottom: 20px;
}
.j-card .meta { font-size: 10px; margin-bottom: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); }
.j-card .meta .dot { color: var(--ink-faint); margin: 0 6px; }
.j-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  font-size: 26px;
  margin: 0 0 12px;
  line-height: 1.2;
  color: var(--ink);
  transition: color 0.2s;
}
.j-card:hover h3 { color: var(--terracotta); }
.j-card p.dek { font-size: 14px; color: var(--ink-mute); line-height: 1.6; margin: 0; }

/* ── Home: subscribe ─────────────────────────────────────── */
.subscribe {
  padding: 120px 56px;
  background: var(--cream);
  text-align: center;
}
.subscribe h2 {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: 56px;
  margin: 24px 0 16px;
  letter-spacing: -0.02em;
}
.subscribe p {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-mute);
  max-width: 520px;
  margin: 0 auto 40px;
  font-style: italic;
}
.sub-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border-bottom: 1px solid var(--ink);
  align-items: center;
}
.sub-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 16px 0;
  font-family: var(--serif);
  font-size: 16px;
  outline: none;
  color: var(--ink);
  font-style: italic;
}
.sub-form button {
  border: none;
  background: transparent;
  padding: 16px 4px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
}
.sub-form button:hover { color: var(--terracotta); }

/* ── Journal page ────────────────────────────────────────── */
.journal-header {
  padding: 60px 56px 64px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  max-width: var(--max);
  margin: 0 auto;
}
.journal-header h1 {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(80px, 12vw, 144px);
  margin: 0;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.journal-header h1 .accent { color: var(--terracotta); font-style: normal; font-weight: 350; }
.journal-header p {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 580px;
  margin: 32px auto 0;
}

.journal-featured {
  padding: 80px 56px;
  max-width: var(--max);
  margin: 0 auto;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.featured-grid .photo { aspect-ratio: 5/4; border-radius: 2px; }
.featured-grid h2 {
  font-family: var(--display);
  font-weight: 350;
  font-style: normal;
  font-size: 56px;
  margin: 20px 0;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.featured-grid p {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink-mute);
  line-height: 1.6;
  font-style: italic;
}
.byline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  color: var(--ink-faint);
  font-size: 13px;
}
.byline strong { color: var(--ink); font-weight: 500; }

.archive {
  padding: 40px 56px 120px;
  max-width: var(--max);
  margin: 0 auto;
}
.archive-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 64px;
}
.archive-head {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 32px;
}
.archive-grid .j-card .photo { aspect-ratio: 5/4; }
.archive-grid .j-card h3 { font-size: 28px; }

aside.sidebar {
  position: sticky;
  top: 40px;
  align-self: start;
}
.cat-list { list-style: none; padding: 0; margin: 16px 0 48px; }
.cat-list li button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
  border: none;
  background: transparent;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  text-align: left;
}
.cat-list li button:hover { color: var(--terracotta); font-style: italic; }
.cat-list li button .n { font-family: var(--sans); font-size: 12px; color: var(--ink-faint); }

.sidebar-card {
  background: var(--terracotta);
  color: var(--cream);
  padding: 28px;
  border-radius: 2px;
}
.sidebar-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 12px 0;
  color: var(--cream);
  line-height: 1.2;
  font-weight: 400;
}
.sidebar-card p { font-size: 13px; line-height: 1.55; opacity: 0.9; margin: 0 0 20px; }
.sidebar-card input {
  width: 100%;
  padding: 10px 12px;
  border: none;
  background: rgba(245, 237, 225, 0.15);
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  margin-bottom: 8px;
  outline: none;
}
.sidebar-card input::placeholder { color: rgba(245, 237, 225, 0.6); }
.sidebar-card button {
  width: 100%;
  padding: 10px;
  border: none;
  background: var(--cream);
  color: var(--terracotta);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ── Single post page ────────────────────────────────────── */
.post-hero {
  max-width: 920px;
  margin: 0 auto;
  padding: 60px 32px 40px;
  text-align: center;
}
.post-hero .h-eyebrow { margin-bottom: 24px; }
.post-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.02em;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.0;
  margin: 0 0 32px;
  color: var(--ink);
}
.post-hero .dek {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-mute);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto 32px;
}
.post-cover {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 32px;
}
.post-cover .photo {
  aspect-ratio: 16/9;
  border-radius: 2px;
}

.post-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 120px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.post-body > p:first-of-type::first-letter {
  font-family: var(--display);
  font-style: italic;
  font-size: 80px;
  line-height: 0.9;
  float: left;
  padding: 6px 12px 0 0;
  color: var(--terracotta);
}
.post-body p { margin: 0 0 28px; }
.post-body h2 {
  font-family: var(--display);
  font-weight: 350;
  font-style: normal;
  font-size: 36px;
  margin: 64px 0 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.15;
}
.post-body blockquote {
  margin: 48px 0;
  padding: 0 32px;
  border-left: 2px solid var(--terracotta);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
  line-height: 1.5;
}
.post-body em { color: var(--ink); }
.post-body .ornament {
  text-align: center;
  margin: 56px 0;
  color: var(--terracotta);
  letter-spacing: 0.6em;
  font-family: var(--display);
}

.post-foot {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.post-foot p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-mute);
  margin: 16px 0 24px;
}

/* ── Sun mark ────────────────────────────────────────────── */
.sun-mark { display: inline-block; }

/* ── Responsive ──────────────────────────────────────────── */
/* ── WhatsApp floating button ─────────────────────── */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 100;
}
.wa-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 4px 10px rgba(0,0,0,0.18);
}
.wa-float:active { transform: scale(0.96); }
@media (max-width: 480px) {
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* ── Mobile ────────────────────────────────────────── */
@media (max-width: 880px) {
  .nav {
    padding: 16px 20px;
    flex-wrap: wrap;
  }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line-soft);
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 14px;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links .circle-link {
    margin-top: 8px;
    border: 1px solid var(--terracotta);
    justify-content: center;
    padding: 12px 16px;
  }
  .nav.is-open .nav-links { display: flex; }

  .hero { padding: 24px 20px 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-quote { position: static; margin-top: 24px; max-width: none; }
  .hero-mark { display: none; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { padding: 12px 20px; font-size: 12px; }

  .philosophy { padding: 64px 20px; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 28px; }
  .philosophy-side { position: static; }
  .philosophy h2 { font-size: clamp(40px, 9vw, 56px); }
  .pillars { grid-template-columns: 1fr; }

  .section-block { padding: 64px 20px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .journal-grid { grid-template-columns: 1fr; gap: 32px; }

  .journal-header { padding: 32px 20px; }
  .journal-featured { padding: 32px 20px; }
  .featured-grid { grid-template-columns: 1fr; gap: 24px; }
  .featured-grid h2 { font-size: clamp(32px, 7vw, 44px); }

  .archive { padding: 24px 20px 64px; }
  .archive-layout { grid-template-columns: 1fr; gap: 40px; }
  .archive-grid { grid-template-columns: 1fr; gap: 40px; }
  aside.sidebar { position: static; }

  .footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .post-hero { padding: 24px 16px; }
  .post-hero .dek { font-size: 18px; }
  .post-cover { padding: 0 16px; margin-bottom: 40px; }
  .post-body { padding: 0 20px 64px; font-size: 17px; }
  .post-body > p:first-of-type::first-letter { font-size: 56px; }
  .post-body blockquote { padding: 0 16px; font-size: 19px; }
  .post-body h2 { font-size: 28px; margin: 48px 0 16px; }

  .subscribe { padding: 56px 20px; }
  .subscribe h2 { font-size: 40px; }
  .subscribe p { font-size: 17px; }
  .sub-form input { font-size: 15px; }

  .marquee-track { font-size: 22px; gap: 32px; }
}

/* Smaller phones */
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(48px, 14vw, 64px); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .featured-grid h2 { font-size: clamp(28px, 8vw, 36px); }
  .post-hero h1 { font-size: clamp(36px, 10vw, 48px); }
  .journal-header h1 { font-size: clamp(64px, 22vw, 96px); }
}
