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

:root {
  --cream:    #f8f4ee;
  --paper:    #fffdf9;
  --ink:      #1e1a16;
  --ink-soft: #4a3f35;
  --terra:    #c95f38;
  --terra-lt: #e8855e;
  --sage:     #5a7a5f;
  --sage-lt:  #e8f0e9;
  --sand:     #e4d8c8;
  --border:   #e0d6c8;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAVIGATION ────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(248, 244, 238, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--ink); text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--terra); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--ink-soft); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terra); }
.nav-cta {
  background: var(--ink); color: var(--cream) !important;
  padding: 0.5rem 1.2rem; border-radius: 100px;
  font-weight: 600 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--terra) !important; }

/* ── BUTTONS ───────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--terra); color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  padding: 0.85rem 1.8rem; border-radius: 100px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201, 95, 56, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201, 95, 56, 0.4); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--ink);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  padding: 0.85rem 1.8rem; border-radius: 100px;
  text-decoration: none; border: 1.5px solid var(--border);
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--ink); background: white; }

/* ── SECTION COMMONS ───────────────────────────── */
section { padding: 7rem 5%; }

.section-tag {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-tag::before {
  content: ''; display: block;
  width: 24px; height: 2px; background: var(--terra);
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--terra); }
.section-body {
  font-size: 1.05rem; color: var(--ink-soft);
  max-width: 560px; margin-top: 1rem;
}

/* ── FOOTER ────────────────────────────────────── */
footer {
  background: #141210; color: rgba(248, 244, 238, 0.4);
  padding: 2.5rem 5%;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem;
}
footer a { color: inherit; text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--terra-lt); }
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem; font-weight: 600;
  color: rgba(248, 244, 238, 0.7);
}
.footer-logo span { color: var(--terra-lt); }
.footer-links { display: flex; gap: 1.5rem; }

/* ── ANIMATIONS ────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════
   HOME PAGE
══════════════════════════════ */

/* HERO */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 5% 5rem; position: relative; overflow: hidden;
}
.hero-bg-blob {
  position: absolute; right: -5%; top: 10%;
  width: 55vw; height: 55vw; max-width: 700px; max-height: 700px;
  border-radius: 60% 40% 55% 45% / 45% 60% 40% 55%;
  background: radial-gradient(ellipse at 40% 40%, #f5e0d0 0%, #ead5bb 60%, transparent 100%);
  opacity: 0.6; animation: blobFloat 12s ease-in-out infinite; pointer-events: none;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%       { transform: translate(-20px, 30px) rotate(4deg); }
  66%       { transform: translate(20px, -20px) rotate(-3deg); }
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--sage-lt); color: var(--sage);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 100px;
  margin-bottom: 2rem; width: fit-content;
  animation: fadeUp 0.8s ease both;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 7vw, 6rem); font-weight: 400;
  line-height: 1.08; letter-spacing: -0.03em; color: var(--ink);
  max-width: 760px; animation: fadeUp 0.8s 0.1s ease both;
}
.hero-headline em { font-style: italic; color: var(--terra); }
.hero-sub {
  margin-top: 1.8rem; font-size: 1.15rem; color: var(--ink-soft);
  max-width: 520px; animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  margin-top: 2.8rem; display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-stats {
  margin-top: 5rem; display: flex; gap: 3rem; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem; font-weight: 600; color: var(--ink); line-height: 1;
}
.stat-label { font-size: 0.82rem; color: var(--ink-soft); font-weight: 500; margin-top: 0.3rem; }
.stat-divider { width: 1px; background: var(--border); align-self: stretch; }

/* MISSION */
#mission { background: var(--paper); }
.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; margin-top: 4rem;
}
.mission-values { display: flex; flex-direction: column; gap: 2rem; }
.value-card {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.6rem; background: var(--cream); border-radius: 16px;
  border: 1px solid var(--border); transition: transform 0.25s, box-shadow 0.25s;
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(30, 26, 22, 0.08); }
.value-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  background: var(--terra); color: white;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.value-card h3 { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.3rem; }
.value-card p { font-size: 0.9rem; color: var(--ink-soft); }
.mission-manifesto { background: var(--ink); color: var(--cream); border-radius: 24px; padding: 3rem; }
.mission-manifesto blockquote {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem; font-weight: 300; font-style: italic; line-height: 1.5; letter-spacing: -0.01em;
}
.mission-manifesto blockquote span { color: var(--terra-lt); font-style: normal; font-weight: 600; }
.mission-manifesto cite {
  display: block; margin-top: 1.8rem; font-size: 0.82rem; font-style: normal;
  color: rgba(248, 244, 238, 0.5); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
}

/* PRODUCTS */
#products { background: var(--cream); }
.products-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3.5rem;
}
.product-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem; }
.product-card-main {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: 24px; padding: 2.8rem; transition: box-shadow 0.3s;
}
.product-card-main:hover { box-shadow: 0 16px 50px rgba(30, 26, 22, 0.1); }
.product-badge {
  display: inline-block; background: var(--terra); color: white;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.product-logo-mark {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(135deg, #c95f38, #e8855e);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 600;
  color: white; margin-bottom: 1.5rem; box-shadow: 0 6px 24px rgba(201, 95, 56, 0.35);
}
.product-card-main h3 {
  font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 600;
  color: var(--ink); letter-spacing: -0.02em; margin-bottom: 0.8rem;
}
.product-card-main > p { font-size: 1rem; color: var(--ink-soft); max-width: 380px; margin-bottom: 1.8rem; }
.product-chips { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2rem; }
.chip {
  background: var(--cream); border: 1px solid var(--border); color: var(--ink-soft);
  font-size: 0.78rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 100px;
}
.product-stat-row {
  display: flex; gap: 2rem; flex-wrap: wrap;
  padding-top: 1.8rem; border-top: 1px solid var(--border);
}
.pstat { display: flex; flex-direction: column; }
.pstat-num { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 600; color: var(--terra); }
.pstat-label { font-size: 0.78rem; color: var(--ink-soft); font-weight: 500; }
.product-card-upcoming {
  background: var(--ink); border-radius: 24px; padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between; min-height: 300px;
}
.upcoming-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(248, 244, 238, 0.4);
  display: flex; align-items: center; gap: 0.5rem;
}
.upcoming-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--terra-lt); }
.product-card-upcoming h3 {
  font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 400;
  font-style: italic; color: var(--cream); line-height: 1.3; margin: auto 0;
}
.product-card-upcoming p { font-size: 0.88rem; color: rgba(248, 244, 238, 0.55); margin-bottom: 1.5rem; }
.waitlist-form { display: flex; gap: 0.6rem; }
.waitlist-form input {
  flex: 1; padding: 0.7rem 1rem;
  background: rgba(248, 244, 238, 0.08); border: 1px solid rgba(248, 244, 238, 0.15);
  border-radius: 100px; color: var(--cream);
  font-family: 'Nunito', sans-serif; font-size: 0.85rem; outline: none;
}
.waitlist-form input::placeholder { color: rgba(248, 244, 238, 0.3); }
.waitlist-form button {
  background: var(--terra); color: white; border: none; border-radius: 100px;
  padding: 0.7rem 1.2rem; font-family: 'Nunito', sans-serif;
  font-size: 0.85rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background 0.2s;
}
.waitlist-form button:hover { background: var(--terra-lt); }

/* ABOUT */
#about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 4rem; }
.about-story p { font-size: 1.02rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.about-story p strong { color: var(--ink); font-weight: 600; }
.team-cards { display: flex; flex-direction: column; gap: 1.2rem; }
.team-card {
  display: flex; gap: 1.2rem; align-items: center;
  background: var(--cream); border: 1px solid var(--border); border-radius: 16px;
  padding: 1.4rem 1.6rem; transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover { transform: translateX(4px); box-shadow: 0 6px 24px rgba(30, 26, 22, 0.07); }
.team-avatar {
  width: 52px; height: 52px; border-radius: 14px; background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 600;
  color: var(--ink-soft); flex-shrink: 0;
}
.team-info h4 { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.team-info span { font-size: 0.82rem; color: var(--terra); font-weight: 600; }
.team-info p { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.2rem; }

/* BLOG GRID */
#blog { background: var(--cream); }
.blog-header-row {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s; text-decoration: none; display: block; color: inherit;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(30, 26, 22, 0.09); }
.blog-thumb { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-thumb-1 { background: linear-gradient(135deg, #f5e4d5, #ead5bb); }
.blog-thumb-2 { background: linear-gradient(135deg, #dde9de, #c8deca); }
.blog-thumb-3 { background: linear-gradient(135deg, #e8e0d4, #d4c8b8); }
.blog-thumb-4 { background: linear-gradient(135deg, #d5e4f5, #bbd0ea); }
.blog-thumb-5 { background: linear-gradient(135deg, #f0e4d5, #e8d0b8); }
.blog-thumb-6 { background: linear-gradient(135deg, #e4d5e8, #d0b8d4); }
.blog-content { padding: 1.6rem; }
.blog-meta {
  font-size: 0.75rem; font-weight: 600; color: var(--terra);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.7rem;
}
.blog-card h3 {
  font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600;
  color: var(--ink); line-height: 1.35; margin-bottom: 0.6rem;
}
.blog-card p { font-size: 0.87rem; color: var(--ink-soft); }
.blog-read {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.1rem; font-size: 0.83rem; font-weight: 700;
  color: var(--terra); transition: gap 0.2s;
}
.blog-card:hover .blog-read { gap: 0.7rem; }

/* CONTACT */
#contact { background: var(--ink); color: var(--cream); text-align: center; }
#contact .section-tag { color: var(--terra-lt); justify-content: center; }
#contact .section-tag::before { background: var(--terra-lt); }
#contact .section-title { color: var(--cream); }
#contact .section-body { color: rgba(248, 244, 238, 0.6); margin: 0 auto; margin-top: 1rem; }
.contact-form {
  margin: 3.5rem auto 0; max-width: 540px;
  display: flex; flex-direction: column; gap: 1rem;
}
.form-row { display: flex; gap: 1rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 1rem 1.2rem;
  background: rgba(248, 244, 238, 0.06); border: 1px solid rgba(248, 244, 238, 0.12);
  border-radius: 12px; color: var(--cream);
  font-family: 'Nunito', sans-serif; font-size: 0.95rem; outline: none; transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--terra); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(248, 244, 238, 0.25); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary { width: 100%; justify-content: center; }

/* ══════════════════════════════
   BLOG POST PAGES
══════════════════════════════ */
.post-page { padding-top: 7rem; min-height: 100vh; background: var(--paper); }
.post-hero { background: var(--ink); color: var(--cream); padding: 5rem 5% 4rem; }
.post-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 600; color: rgba(248, 244, 238, 0.5);
  text-decoration: none; margin-bottom: 2rem; transition: color 0.2s;
}
.post-back:hover { color: var(--terra-lt); }
.post-category {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--terra-lt); margin-bottom: 1.2rem;
}
.post-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 400;
  line-height: 1.1; letter-spacing: -0.025em; max-width: 780px; margin-bottom: 1.5rem;
}
.post-title em { font-style: italic; color: var(--terra-lt); }
.post-meta {
  display: flex; gap: 2rem; font-size: 0.82rem;
  color: rgba(248, 244, 238, 0.4); font-weight: 500;
}
.post-body { max-width: 720px; margin: 0 auto; padding: 4rem 5%; }
.post-body p { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.85; margin-bottom: 1.6rem; }
.post-body h2 {
  font-family: 'Fraunces', serif; font-size: 1.8rem; font-weight: 600;
  color: var(--ink); line-height: 1.2; letter-spacing: -0.02em; margin: 3rem 0 1.2rem;
}
.post-body h3 { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600; color: var(--ink); margin: 2rem 0 0.8rem; }
.post-body blockquote {
  margin: 2.5rem 0; padding: 1.5rem 2rem;
  background: var(--cream); border-left: 3px solid var(--terra);
  border-radius: 0 12px 12px 0;
  font-family: 'Fraunces', serif; font-size: 1.2rem; font-style: italic;
  font-weight: 300; color: var(--ink); line-height: 1.6;
}
.post-body ul, .post-body ol { margin: 1rem 0 1.6rem 1.5rem; }
.post-body li { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 0.5rem; }
.post-body strong { color: var(--ink); font-weight: 600; }
.post-body .callout { background: var(--sage-lt); border-radius: 12px; padding: 1.5rem; margin: 2rem 0; }
.post-body .callout p { margin: 0; color: var(--sage); font-size: 0.95rem; }
.post-footer {
  border-top: 1px solid var(--border); padding-top: 2.5rem; margin-top: 1rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.more-posts { margin-top: 4rem; }
.more-posts h3 { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 400; color: var(--ink); margin-bottom: 1.5rem; }
.more-posts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

/* ══════════════════════════════
   BLOG INDEX PAGE
══════════════════════════════ */
.blog-index-hero { padding: 8rem 5% 4rem; background: var(--paper); border-bottom: 1px solid var(--border); }
.blog-index-hero h1 { font-family: 'Fraunces', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; letter-spacing: -0.025em; }
.blog-index-hero h1 em { font-style: italic; color: var(--terra); }
.blog-index-hero p { font-size: 1.05rem; color: var(--ink-soft); max-width: 500px; margin-top: 1rem; }
.blog-index-grid { padding: 5rem 5%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ══════════════════════════════
   LEGAL PAGES
══════════════════════════════ */
.legal-page { padding-top: 7rem; min-height: 100vh; background: var(--paper); }
.legal-hero { background: var(--cream); padding: 4rem 5% 3rem; border-bottom: 1px solid var(--border); }
.legal-body { max-width: 820px; margin: 0 auto; padding: 4rem 5%; }
.legal-body h2 {
  font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 600;
  color: var(--ink); margin: 3rem 0 1rem; letter-spacing: -0.01em;
}
.legal-body h3 { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 600; color: var(--ink); margin: 2rem 0 0.6rem; }
.legal-body p { font-size: 0.97rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 1.2rem; }
.legal-body ul { margin: 0.8rem 0 1.4rem 1.5rem; }
.legal-body li { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 0.4rem; }
.legal-body strong { color: var(--ink); font-weight: 600; }
.legal-body a { color: var(--terra); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-updated {
  display: inline-block; background: var(--sage-lt); color: var(--sage);
  font-size: 0.78rem; font-weight: 600; padding: 0.3rem 0.9rem;
  border-radius: 100px; margin-bottom: 1.5rem;
}
.legal-toc { background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem 2rem; margin: 2rem 0; }
.legal-toc h4 { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.legal-toc ol { margin-left: 1.2rem; }
.legal-toc li { font-size: 0.88rem; color: var(--terra); line-height: 1.9; }
.legal-divider { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 900px) {
  .mission-grid, .about-grid, .product-grid { grid-template-columns: 1fr; }
  .blog-grid, .blog-index-grid, .more-posts-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .blog-grid, .blog-index-grid, .more-posts-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .hero-stats { gap: 1.5rem; }
  .stat-divider { display: none; }
  .post-meta { flex-direction: column; gap: 0.3rem; }
}
