/* ═══════════════════════════════════════════════════════
   Melnovina CSS — v1.0
   Palette: Rose #C4607E · Sage #7B9E87 · Cream #FBF7F4
   Type: Playfair Display (headlines) · DM Sans (body)
═══════════════════════════════════════════════════════ */

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

:root {
  --cream:        #FBF7F4;
  --cream-alt:    #F2EAE3;
  --rose:         #C4607E;
  --rose-light:   #EDD5DF;
  --rose-dark:    #9A3D5A;
  --rose-xlight:  #FDF4F7;
  --sage:         #7B9E87;
  --sage-light:   #D6E8DC;
  --text:         #1E1613;
  --text-mid:     #6B5148;
  --text-soft:    #A8897F;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 12px rgba(30,22,19,.07);
  --shadow-md:    0 8px 32px rgba(30,22,19,.10);
  --shadow-lg:    0 20px 60px rgba(30,22,19,.13);
  --r:            18px;
  --r-sm:         10px;
  --r-pill:       100px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

.container        { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 760px;  margin: 0 auto; padding: 0 1.5rem; }

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -.025em;
}
.h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 700; }
.h2 { font-size: clamp(1.7rem, 3vw,   2.4rem); font-weight: 700; }
.h3 { font-size: clamp(1.25rem,2vw,   1.6rem); font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--rose); margin-bottom: .9rem;
}
.lead { font-size: 1.0625rem; color: var(--text-mid); line-height: 1.72; }

/* ── Navigation ────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,247,244,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cream-alt);
}
.nav-bar { padding: 0 1.5rem; }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 66px; gap: 1rem;
}
.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--rose-dark); text-decoration: none;
  letter-spacing: -.03em; white-space: nowrap;
}
.site-logo em { font-style: normal; color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links .nav-link {
  text-decoration: none; color: var(--text-mid);
  font-size: .875rem; font-weight: 500; transition: color .18s;
}
.nav-links .nav-link:hover,
.nav-links .nav-item.active .nav-link { color: var(--rose); }
.nav-cta {
  background: var(--rose); color: var(--white) !important;
  padding: .45rem 1.2rem; border-radius: var(--r-pill);
  font-size: .875rem; font-weight: 600; text-decoration: none;
  transition: background .18s, transform .15s; white-space: nowrap;
}
.nav-cta:hover { background: var(--rose-dark); transform: translateY(-1px); }
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; color: var(--text); padding: .4rem;
}
.mobile-nav {
  display: none; background: var(--white);
  border-bottom: 1px solid var(--cream-alt);
  padding: 1rem 1.5rem 1.25rem;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.mobile-nav a {
  display: block; padding: .55rem 0; text-decoration: none;
  color: var(--text-mid); font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--cream-alt);
}
.mobile-nav li:last-child a { border-bottom: none; }
.mobile-nav .mob-cta {
  display: inline-block; margin-top: .75rem;
  background: var(--rose); color: var(--white);
  padding: .65rem 1.5rem; border-radius: var(--r-pill);
  font-weight: 600; border-bottom: none;
}

/* ── Sections ──────────────────────────────────────── */
.section    { padding: 5.5rem 1.5rem; }
.section-sm { padding: 3.5rem 1.5rem; }
.section-alt  { background: var(--white); }
.section-rose { background: var(--rose-xlight); }
.section-dark {
  background: linear-gradient(135deg, var(--rose-dark) 0%, #B05070 50%, var(--rose) 100%);
}

/* ── Buttons & Forms ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--rose); color: var(--white);
  border: none; padding: .875rem 1.75rem;
  border-radius: var(--r-pill); font-family: inherit;
  font-size: .9375rem; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: background .18s, transform .15s;
  white-space: nowrap; line-height: 1;
}
.btn:hover { background: var(--rose-dark); transform: translateY(-1px); color: var(--white); }
.btn:active { transform: translateY(0); }
.btn-outline { background: transparent; color: var(--rose); border: 2px solid var(--rose); }
.btn-outline:hover { background: var(--rose); color: var(--white); }
.btn-white { background: var(--white); color: var(--rose); }
.btn-white:hover { background: var(--rose-light); }

.input-email {
  flex: 1; padding: .875rem 1.25rem;
  border: 1.5px solid var(--cream-alt);
  border-radius: var(--r-pill); font-family: inherit;
  font-size: .9375rem; background: var(--white);
  color: var(--text); outline: none; min-width: 0;
  transition: border-color .18s, box-shadow .18s;
}
.input-email:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(196,96,126,.12);
}
.input-email::placeholder { color: var(--text-soft); }
.input-row { display: flex; gap: .65rem; max-width: 460px; }
.success-msg {
  display: none; background: var(--sage-light); color: #2D6B4A;
  padding: .9rem 1.2rem; border-radius: var(--r-sm);
  font-weight: 500; font-size: .9375rem;
}
.form-meta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  font-size: .8rem; color: var(--text-soft); margin-top: .85rem;
}
.form-meta span { display: flex; align-items: center; gap: .3rem; }
.tick { color: var(--sage); font-weight: 700; }

/* ── Badge ─────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--rose-light); color: var(--rose-dark);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .38rem .9rem; border-radius: var(--r-pill);
  margin-bottom: 1.4rem;
}
.badge-dot { width: 6px; height: 6px; background: var(--rose); border-radius: 50%; }
.badge-sage { background: var(--sage-light); color: #2D6B4A; }
.badge-sage .badge-dot { background: var(--sage); }

/* ── Hero (Homepage) ───────────────────────────────── */
.hero {
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 1.5rem 4.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-h1 { margin-bottom: 1.2rem; }
.hero-h1 em { font-style: italic; color: var(--rose); }
.hero-sub { max-width: 480px; margin-bottom: 2rem; }

.card-stack { position: relative; width: 340px; height: 400px; }
.mag-card {
  position: absolute; border-radius: 22px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.mag-card-inner { padding: 1.4rem; }
.mag-card .ctag {
  font-size: .68rem; text-transform: uppercase;
  letter-spacing: .1em; font-weight: 700; margin-bottom: .4rem;
}
.mag-card .ctitle { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.3; }
.c1 {
  width: 210px; height: 270px;
  background: linear-gradient(145deg, #C4607E, #9A3D5A);
  top: 0; left: 50%; transform: translateX(-50%) rotate(-4deg);
  box-shadow: 0 20px 60px rgba(196,96,126,.35);
}
.c1 .ctag  { color: rgba(255,255,255,.7); }
.c1 .ctitle { color: #fff; font-size: 1.05rem; }
.c2 {
  width: 172px; height: 210px;
  background: linear-gradient(145deg, #7B9E87, #5A7D67);
  bottom: 16px; left: 0; transform: rotate(3deg);
  box-shadow: 0 12px 40px rgba(123,158,135,.35);
}
.c2 .ctag  { color: rgba(255,255,255,.7); }
.c2 .ctitle { color: #fff; font-size: .92rem; }
.c3 {
  width: 145px; height: 176px;
  background: var(--cream-alt);
  bottom: 24px; right: 0; transform: rotate(-2.5deg);
  box-shadow: var(--shadow-md);
}
.c3 .ctag  { color: var(--text-soft); }
.c3 .ctitle { color: var(--text); font-size: .82rem; }
.stat-chip {
  position: absolute; top: 14px; right: -10px;
  background: var(--white); border-radius: 16px;
  padding: .8rem 1rem; box-shadow: var(--shadow-lg);
  text-align: center; min-width: 110px;
}
.stat-chip .num {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 700;
  color: var(--rose); line-height: 1.1;
}
.stat-chip .lbl { font-size: .68rem; color: var(--text-mid); line-height: 1.4; margin-top: .2rem; }

/* ── Proof Strip ───────────────────────────────────── */
.proof-strip { background: var(--cream-alt); padding: 2.75rem 1.5rem; }
.proof-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 2.5rem;
  flex-wrap: wrap; justify-content: center;
}
.proof-item { text-align: center; min-width: 130px; }
.proof-num {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--rose); line-height: 1;
}
.proof-lbl { font-size: .8rem; color: var(--text-mid); margin-top: .3rem; line-height: 1.4; }
.proof-div { width: 1px; height: 48px; background: rgba(30,22,19,.12); flex-shrink: 0; }

/* ── Pillar Cards ──────────────────────────────────── */
.pillars-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap;
  gap: 1.5rem; margin-bottom: 3rem;
}
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar-card {
  background: var(--cream); border-radius: var(--r);
  padding: 2rem 1.75rem;
  border: 1px solid transparent;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-decoration: none; color: inherit; display: block;
}
.section-alt .pillar-card { background: var(--cream); }
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--rose-light); }
.p-icon {
  width: 50px; height: 50px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
}
.p-icon-rose { background: var(--rose-light); }
.p-icon-sage  { background: var(--sage-light); }
.p-icon-sand  { background: var(--cream-alt); }
.p-tag { font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--rose); margin-bottom: .45rem; }
.pillar-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; line-height: 1.25; color: var(--text); margin-bottom: .8rem; }
.pillar-card p  { font-size: .9375rem; color: var(--text-mid); line-height: 1.68; }
.p-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1.2rem; color: var(--rose); font-size: .875rem; font-weight: 600; text-decoration: none; transition: gap .2s; }
.pillar-card:hover .p-link { gap: .6rem; }

/* ── Article Cards ─────────────────────────────────── */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.articles-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.articles-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.article-card {
  background: var(--white); border-radius: var(--r); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-card-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; background: var(--cream-alt); }
.article-card-img-placeholder {
  width: 100%; aspect-ratio: 3/2;
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--cream-alt) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--rose);
}
.article-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.article-card-cat  { font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--rose); margin-bottom: .5rem; }
.article-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; line-height: 1.3;
  color: var(--text); margin-bottom: .65rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.article-card-excerpt { font-size: .875rem; color: var(--text-mid); line-height: 1.65; flex: 1; }
.article-card-meta { display: flex; gap: .75rem; align-items: center; margin-top: 1rem; font-size: .78rem; color: var(--text-soft); }

.article-card-featured { grid-column: span 2; flex-direction: row; }
.article-card-featured .article-card-img { width: 50%; flex-shrink: 0; aspect-ratio: auto; }
.article-card-featured .article-card-img-placeholder { width: 50%; flex-shrink: 0; aspect-ratio: auto; }
.article-card-featured .article-card-body { padding: 2rem; }
.article-card-featured .article-card-title { font-size: 1.4rem; -webkit-line-clamp: 4; }

/* ── Section Header ────────────────────────────────── */
.section-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap;
  gap: 1rem; margin-bottom: 2.5rem;
}
.section-header .h2 { margin-bottom: .4rem; }

/* ── Manifest ──────────────────────────────────────── */
.manifest-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  font-style: italic; color: var(--white); line-height: 1.45;
  max-width: 700px; margin: .5rem auto 1.1rem;
}
.manifest-attr { font-size: .85rem; color: rgba(255,255,255,.6); font-weight: 500; letter-spacing: .05em; }
.big-quote { font-family: 'Playfair Display', serif; font-size: 5.5rem; color: rgba(255,255,255,.15); line-height: .8; display: block; margin-bottom: .5rem; }

/* ── Why Features ──────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3rem; }
.why-item { display: flex; flex-direction: column; gap: .8rem; }
.w-icon { width: 46px; height: 46px; background: var(--rose-xlight); border-radius: 13px; display: flex; align-items: center; justify-content: center; }
.why-item h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text); }
.why-item p  { font-size: .9375rem; color: var(--text-mid); line-height: 1.68; }

/* ── Newsletter Section ────────────────────────────── */
.nl-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.nl-inner .input-row { margin: 2.25rem auto .75rem; }
.nl-meta { font-size: .78rem; color: var(--text-soft); margin-top: .85rem; }

/* ── Thema Hero (Pillar pages) ─────────────────────── */
.thema-hero { padding: 5rem 1.5rem; text-align: center; }
.thema-hero-rose { background: linear-gradient(135deg, var(--rose-dark) 0%, #B05070 50%, var(--rose) 100%); }
.thema-hero-sage { background: linear-gradient(135deg, #5A7D67 0%, var(--sage) 100%); }
.thema-hero-sand { background: linear-gradient(135deg, #8A7260 0%, #C0A090 100%); }
.thema-hero h1 { color: var(--white); margin-bottom: .75rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.thema-hero p  { color: rgba(255,255,255,.82); font-size: 1.075rem; line-height: 1.7; max-width: 580px; margin: 0 auto 2rem; }

/* ── Single Article ────────────────────────────────── */
.article-header { padding: 4rem 1.5rem 2rem; text-align: center; }
.article-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  line-height: 1.12; letter-spacing: -.03em;
  max-width: 800px; margin: 0 auto 1.25rem;
}
.article-header-meta {
  display: flex; gap: 1.25rem; align-items: center;
  justify-content: center; font-size: .85rem;
  color: var(--text-soft); flex-wrap: wrap;
}
.article-featured-img { width: 100%; max-height: 500px; object-fit: cover; }
.article-content {
  max-width: 760px; margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
  font-size: 1.0625rem; line-height: 1.8; color: var(--text-mid);
}
.article-content h2 { font-family: 'Playfair Display', serif; color: var(--text); margin: 2rem 0 .75rem; font-size: 1.65rem; }
.article-content h3 { font-family: 'Playfair Display', serif; color: var(--text); margin: 1.75rem 0 .65rem; font-size: 1.3rem; }
.article-content p  { margin-bottom: 1.25rem; }
.article-content a  { color: var(--rose); text-decoration: underline; text-underline-offset: 3px; }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-content li { margin-bottom: .5rem; }
.article-content strong { color: var(--text); font-weight: 600; }
.article-content blockquote {
  border-left: 3px solid var(--rose); padding: 1rem 1.5rem;
  margin: 2rem 0; background: var(--rose-xlight);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.15rem; color: var(--text);
}
.article-disclaimer {
  max-width: 760px; margin: 0 auto;
  padding: 1.25rem 1.5rem 3rem;
  font-size: .8125rem; color: var(--text-soft);
  border-top: 1px solid var(--cream-alt); line-height: 1.6;
}
.related-articles { padding: 4rem 1.5rem; background: var(--white); }

/* ── Magazin / Archive ─────────────────────────────── */
.archive-hero { padding: 4rem 1.5rem; background: var(--rose-xlight); }
.filter-bar { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  padding: .5rem 1.1rem; border-radius: var(--r-pill);
  font-size: .85rem; font-weight: 600; text-decoration: none;
  color: var(--text-mid); background: var(--white);
  border: 1.5px solid var(--cream-alt); transition: all .18s;
}
.filter-btn:hover, .filter-btn.active { background: var(--rose); color: var(--white); border-color: var(--rose); }

/* ── Legal ─────────────────────────────────────────── */
.legal-content {
  max-width: 760px; margin: 0 auto; padding: 4rem 1.5rem 6rem;
  font-size: 1rem; line-height: 1.75; color: var(--text-mid);
}
.legal-content h1 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--text); margin-bottom: 1.5rem; }
.legal-content h2 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--text); margin: 2rem 0 .75rem; }
.legal-content p, .legal-content ul { margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; list-style: disc; }

/* ── Über uns ──────────────────────────────────────── */
.ueber-hero { padding: 5rem 1.5rem; background: linear-gradient(135deg, var(--rose-dark), var(--rose)); text-align: center; }
.ueber-hero h1 { color: var(--white); margin-bottom: .75rem; }
.ueber-hero p  { color: rgba(255,255,255,.82); font-size: 1.075rem; max-width: 580px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.value-card { background: var(--white); border-radius: var(--r); padding: 1.75rem; text-align: center; }
.value-card .v-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.value-card p  { font-size: .9rem; color: var(--text-mid); line-height: 1.65; }

/* ── Footer ────────────────────────────────────────── */
.site-footer { background: var(--text); }
.footer-top  { padding: 3.5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: -.02em; display: block; margin-bottom: .75rem; }
.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.45); line-height: 1.6; }
.footer-nav h4 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .9rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a  { color: rgba(255,255,255,.5); text-decoration: none; font-size: .875rem; transition: color .18s; }
.footer-nav a:hover { color: rgba(255,255,255,.9); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0 2rem; }
.footer-bottom .container { display: flex; flex-direction: column; gap: .75rem; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-disclaimer { font-size: .72rem; color: rgba(255,255,255,.28); line-height: 1.65; }
.footer-disclaimer strong { color: rgba(255,255,255,.42); }

/* ── Pagination ────────────────────────────────────── */
.pagination { display: flex; gap: .5rem; justify-content: center; margin-top: 3rem; }
.pagination a, .pagination span {
  width: 40px; height: 40px; display: flex; align-items: center;
  justify-content: center; border-radius: 50%;
  font-size: .875rem; font-weight: 500; text-decoration: none;
  background: var(--white); color: var(--text-mid);
  border: 1.5px solid var(--cream-alt); transition: all .18s;
}
.pagination a:hover { background: var(--rose-light); border-color: var(--rose); color: var(--rose-dark); }
.pagination .current { background: var(--rose); color: var(--white); border-color: var(--rose); }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .articles-grid, .articles-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .article-card-featured { grid-column: span 1; flex-direction: column; }
  .article-card-featured .article-card-img,
  .article-card-featured .article-card-img-placeholder { width: 100%; aspect-ratio: 3/2; }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .hero { grid-template-columns: 1fr; padding: 2.75rem 1.25rem 3rem; gap: 2.5rem; }
  .hero > .hero-visual { order: -1; }
  .card-stack { width: 280px; height: 320px; transform: scale(.82); transform-origin: center top; }

  .input-row { flex-direction: column; max-width: 100%; }
  .input-row .input-email, .input-row .btn { border-radius: 14px; }

  .articles-grid { grid-template-columns: 1fr; }
  .section { padding: 3.75rem 1.25rem; }
  .section-sm { padding: 2.5rem 1.25rem; }
  .proof-div { display: none; }
  .proof-inner { gap: 1.75rem; justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .pillars-head, .section-header { flex-direction: column; align-items: flex-start; }
}
