/* ═══════════════════════════════════════════════════════════
   LUMARA THEME — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────── */
:root {
  --sage:      #4a7c6f;
  --sage-dk:   #3d6b5e;
  --sage-md:   #7aaa9d;
  --sage-lt:   #eef4f2;
  --ink:       #1c2b27;
  --mid:       #5a6b66;
  --faint:     #8a9e98;
  --mist:      #f7faf9;
  --warm:      #fdf8f4;
  --amber:     #c27c3a;
  --amber-lt:  #fdf0e4;
  --blue-lt:   #e8f0fb;
  --border:    #dce8e4;
  --white:     #ffffff;
  --shadow-sm: 0 2px 12px rgba(74,124,111,0.08);
  --shadow-md: 0 4px 24px rgba(74,124,111,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-w:     1100px;
  --content-w: 780px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--sage); text-decoration: none; }
a:hover { color: var(--sage-dk); }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p  { margin-bottom: 1.25rem; color: var(--ink); }
ul, ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
li { margin-bottom: 0.4rem; }
blockquote {
  border-left: 3px solid var(--sage);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--sage-lt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--mid);
}

/* ── Layout utilities ───────────────────────────────────── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: var(--content-w); margin: 0 auto; padding: 0 2rem; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--sage); color: var(--white); }
.btn-primary:hover { background: var(--sage-dk); box-shadow: 0 4px 20px rgba(74,124,111,0.3); transform: translateY(-1px); color: var(--white); }
.btn-ghost   { background: transparent; color: var(--sage); border: 1.5px solid var(--sage-md); }
.btn-ghost:hover { background: var(--sage-lt); color: var(--sage); }
.btn-white   { background: var(--white); color: var(--ink); }
.btn-white:hover { background: var(--mist); color: var(--ink); box-shadow: 0 4px 20px rgba(255,255,255,0.2); transform: translateY(-1px); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}

.nav-logo {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--sage); }
.nav-logo:hover { color: var(--ink); }

.nav-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  font-size: 0.9rem;
  color: var(--mid);
  font-weight: 400;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--ink); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.nav-tool-btn {
  background: var(--sage);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-tool-btn:hover { background: var(--sage-dk); color: var(--white); transform: translateY(-1px); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  background: var(--mist);
  padding: 80px 0 72px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sage-lt);
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-title em { font-style: italic; color: var(--sage); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.72;
  font-weight: 300;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.hero-card-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-md);
  margin-bottom: 18px;
}

.score-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.score-label { font-size: 0.82rem; color: var(--mid); width: 88px; flex-shrink: 0; }
.score-bar-wrap { flex: 1; background: var(--border); border-radius: 4px; height: 8px; overflow: hidden; }
.score-bar { height: 100%; border-radius: 4px; transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }
.bar-asd { background: var(--sage); width: 0; }
.bar-ocd { background: var(--amber); width: 0; }
.bar-asd.animated { width: 72%; }
.bar-ocd.animated { width: 31%; }
.score-val { font-size: 0.8rem; font-weight: 500; width: 32px; text-align: right; }
.score-val.high  { color: var(--sage); }
.score-val.low   { color: var(--amber); }

.hero-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ── Trust bar ──────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--mid);
  white-space: nowrap;
}

.trust-icon {
  width: 18px;
  height: 18px;
  background: var(--sage-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--sage);
  flex-shrink: 0;
}

/* ── Why section ────────────────────────────────────────── */
.why-section {
  padding: 72px 0;
  background: var(--warm);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.why-section h2 { margin-bottom: 1rem; }
.why-section p  { color: var(--mid); font-weight: 300; }

.feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.6;
  margin: 0;
}

.check-circle {
  width: 20px;
  height: 20px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-circle svg { width: 10px; height: 10px; }

/* ═══════════════════════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════════════════════ */
.blog-section {
  padding: 72px 0;
  background: var(--white);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.section-header h2 { margin: 0; }
.see-all { font-size: 0.875rem; color: var(--sage); font-weight: 500; }
.see-all:hover { color: var(--sage-dk); }

/* Blog grid — 3 columns on homepage */
.blog-grid-3 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

/* Blog grid — standard 3 col */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Blog grid — 2 col with sidebar */
.blog-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.blog-posts-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Card */
.blog-card {
  background: var(--mist);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--sage-lt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-img-placeholder { font-size: 2.5rem; }

.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.blog-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.blog-tag-green { background: var(--sage-lt); color: var(--sage); }
.blog-tag-amber { background: var(--amber-lt); color: var(--amber); }
.blog-tag-blue  { background: var(--blue-lt);  color: #3572b0; }

.blog-card h3 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 600;
}
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--sage); }

.blog-card p {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.65;
  flex: 1;
  margin: 0;
  font-weight: 300;
}

.blog-card-meta {
  font-size: 0.72rem;
  color: var(--sage-md);
  margin-top: 12px;
  font-weight: 400;
}

/* Horizontal blog card for archive listing */
.blog-card-horizontal {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card-horizontal:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.blog-card-horizontal .blog-card-img { aspect-ratio: auto; height: 100%; min-height: 180px; }
.blog-card-horizontal .blog-card-body { padding: 24px; }
.blog-card-horizontal h2 { font-size: 1.2rem; margin-bottom: 10px; }
.blog-card-horizontal h2 a { color: var(--ink); }
.blog-card-horizontal h2 a:hover { color: var(--sage); }

/* ═══════════════════════════════════════════════════════════
   TOOL PROMO BLOCK
   ═══════════════════════════════════════════════════════════ */
.tool-promo {
  background: var(--ink);
  padding: 64px 0;
}

.tool-promo-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.tool-promo h2 { color: var(--white); margin-bottom: 12px; }
.tool-promo p  { color: rgba(255,255,255,0.6); max-width: 480px; font-weight: 300; margin: 0; }

.tool-promo-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}

.promo-price { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ── Inline email capture (coming soon) ─────────────────── */
.email-capture {
  background: var(--sage-lt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.email-capture h3 { margin-bottom: 8px; font-size: 1.1rem; }
.email-capture p  { font-size: 0.9rem; color: var(--mid); margin-bottom: 20px; font-weight: 300; }
.email-form { display: flex; gap: 10px; max-width: 380px; margin: 0 auto; }
.email-input {
  flex: 1;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--ink);
}
.email-input:focus { outline: none; border-color: var(--sage-md); }
.email-note { font-size: 0.72rem; color: var(--faint); margin-top: 8px; }

/* ═══════════════════════════════════════════════════════════
   SINGLE POST
   ═══════════════════════════════════════════════════════════ */
.post-hero {
  background: var(--mist);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}

.post-breadcrumb {
  font-size: 0.8rem;
  color: var(--faint);
  margin-bottom: 16px;
}
.post-breadcrumb a { color: var(--sage); }

.post-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 720px;
}

.post-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.post-date    { font-size: 0.8rem; color: var(--faint); }
.post-read    { font-size: 0.8rem; color: var(--faint); }

.post-content-area {
  padding: 56px 0 80px;
}

/* Article typography */
.entry-content { max-width: var(--content-w); }
.entry-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; color: var(--sage); font-size: 1.4rem; }
.entry-content h3 { margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.15rem; }
.entry-content p  { font-size: 1rem; line-height: 1.8; color: var(--ink); margin-bottom: 1.4rem; }
.entry-content ul, .entry-content ol { margin-bottom: 1.4rem; }
.entry-content li { line-height: 1.75; color: var(--ink); margin-bottom: 6px; }
.entry-content strong { font-weight: 500; }
.entry-content a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }
.entry-content a:hover { color: var(--sage-dk); }

/* Post signpost block */
.post-signpost {
  background: var(--sage-lt);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 2.5rem 0;
}
.post-signpost p { font-size: 0.9rem; color: var(--ink); margin: 0 0 12px; }
.post-signpost p:last-child { margin: 0; }

/* Related posts */
.related-posts { padding: 48px 0 64px; background: var(--mist); border-top: 1px solid var(--border); }
.related-posts h2 { font-size: 1.25rem; margin-bottom: 24px; }

/* ═══════════════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════════════ */
.sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.widget {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.widget-title { font-family: 'Lora', serif; font-size: 1rem; color: var(--ink); margin-bottom: 14px; }

.sidebar-tool-promo {
  background: var(--ink);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}
.sidebar-tool-promo h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.sidebar-tool-promo p  { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-bottom: 16px; font-weight: 300; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--mist);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p  { color: var(--mid); max-width: 560px; margin: 0 auto; font-weight: 300; }

.page-content {
  padding: 64px 0 80px;
}
.page-content h2 { color: var(--sage); margin: 2.5rem 0 1rem; }
.page-content p  { max-width: var(--content-w); }

/* Disclaimer box */
.disclaimer-box {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 2rem 0;
  max-width: var(--content-w);
}
.disclaimer-box p { font-size: 0.875rem; color: var(--mid); margin: 0; }

/* ═══════════════════════════════════════════════════════════
   COMING SOON / TOOL PAGE
   ═══════════════════════════════════════════════════════════ */
.tool-coming-soon {
  background: var(--mist);
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.tool-coming-soon-inner { max-width: 600px; margin: 0 auto; text-align: center; padding: 0 2rem; }
.tool-coming-soon h1  { margin-bottom: 1rem; }
.tool-coming-soon p   { color: var(--mid); margin-bottom: 2rem; font-weight: 300; }
.coming-soon-badge {
  display: inline-block;
  background: var(--amber-lt);
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--mist);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.footer-logo {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}
.footer-logo span { color: var(--sage); }
.footer-logo:hover { color: var(--ink); }
.footer-tagline { font-size: 0.8rem; color: var(--mid); line-height: 1.6; font-weight: 300; }

.footer-nav h4, .footer-links-col h4 { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); margin-bottom: 12px; }
.footer-nav ul, .footer-links-col ul { list-style: none; padding: 0; margin: 0; }
.footer-nav li, .footer-links-col li { margin-bottom: 8px; }
.footer-nav a, .footer-links-col a { font-size: 0.875rem; color: var(--mid); }
.footer-nav a:hover, .footer-links-col a:hover { color: var(--sage); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.75rem; color: var(--faint); margin: 0; }
.footer-disclaimer { font-size: 0.72rem; color: var(--faint); max-width: 420px; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   PILLAR FILTER
   ═══════════════════════════════════════════════════════════ */
.pillar-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.pillar-btn {
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.82rem;
  color: var(--mid);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  text-decoration: none;
}
.pillar-btn:hover, .pillar-btn.active { background: var(--sage); border-color: var(--sage); color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════════ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a, .pagination span {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--mid);
  transition: all 0.2s;
}
.pagination a:hover { border-color: var(--sage); color: var(--sage); }
.pagination .current { background: var(--sage); border-color: var(--sage); color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 40px; }
  .hero-card        { max-width: 440px; }
  .why-inner        { grid-template-columns: 1fr; gap: 36px; }
  .blog-grid-3      { grid-template-columns: 1fr 1fr; }
  .blog-grid        { grid-template-columns: 1fr 1fr; }
  .blog-with-sidebar { grid-template-columns: 1fr; }
  .sidebar          { position: static; }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
  .tool-promo-inner { grid-template-columns: 1fr; text-align: center; }
  .tool-promo p     { max-width: 100%; }
  .tool-promo-cta   { margin: 0 auto; }
  .blog-card-horizontal { grid-template-columns: 1fr; }
  .blog-card-horizontal .blog-card-img { height: 220px; }
}

@media (max-width: 640px) {
  .container, .container-sm { padding: 0 1.25rem; }
  .nav-menu, .nav-right .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .blog-grid-3 { grid-template-columns: 1fr; }
  .blog-grid   { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
  .trust-bar-inner { gap: 14px; }
  .trust-item { white-space: normal; }
  .email-form { flex-direction: column; }
  .nav-inner { height: 60px; }
}

/* Mobile menu open state */
.mobile-nav-open .nav-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 1.25rem;
  gap: 16px;
  z-index: 99;
}
