/*
Theme Name: MakeMyIndia
Theme URI: https://makemyindia.org/
Author: MakeMyIndia Foundation
Author URI: https://makemyindia.org/
Description: Official theme of MakeMyIndia Foundation — reviving India's traditional skills and artisan heritage on the road to Vision 2047. Warm heritage palette drawn from the tricolor-heart identity, serif display type, fully responsive.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: makemyindia
Tags: one-column, custom-menu, custom-logo, featured-images, translation-ready
*/
/* ══════════════════════════════════════════════════════════════
   MakeMyIndia Foundation — Global Stylesheet
   Theme-ready structure for future WordPress conversion.
   Palette drawn from the MakeMyIndia tricolor-heart identity:
   navy wordmark, saffron→green ribbon, blue heart accent.
   ══════════════════════════════════════════════════════════════ */

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

:root {
  /* Brand */
  --navy:        #1A2D8C;
  --navy-dk:     #101F63;
  --navy-lt:     #3D4FA8;
  --saffron:     #F06618;
  --saffron-dk:  #C1440E;
  --saffron-lt:  #F9AC22;
  --green:       #1E8A2E;
  --green-dk:    #0B6418;
  --sky:         #1472C8;
  /* Neutrals */
  --cream:       #FBF6EC;
  --cream-dk:    #F3EAD8;
  --parchment:   #EDE0C4;
  --white:       #FFFFFF;
  --ivory:       #FEFCF7;
  --ink:         #1C2333;
  --ink-md:      #4A5268;
  --ink-lt:      #7C8398;
  /* System */
  --radius:      18px;
  --radius-sm:   12px;
  --shadow:      0 10px 40px rgba(26,45,140,0.10);
  --shadow-sm:   0 4px 18px rgba(28,35,51,0.08);
  --maxw:        1200px;
  --nav-h:       84px;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }
::selection { background: var(--saffron); color: #fff; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--navy-lt); border-radius: 8px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ══ Typography ══ */
h1, h2, h3, .serif { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; color: var(--navy-dk); }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-md); max-width: 46em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--saffron-dk); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: linear-gradient(90deg, var(--saffron), var(--green)); }
.tricolor-rule { width: 72px; height: 4px; border-radius: 4px; margin: 22px 0;
  background: linear-gradient(90deg, var(--saffron) 33%, var(--white) 33% 66%, var(--green) 66%);
  outline: 1px solid var(--cream-dk); }

/* ══ Announcement bar ══ */
.announce {
  background: linear-gradient(90deg, var(--navy-dk), var(--navy), var(--navy-dk));
  color: #EDEBFF; text-align: center; font-size: 0.82rem; letter-spacing: 0.04em;
  padding: 9px 16px;
}
.announce strong { color: var(--saffron-lt); font-weight: 600; }

/* ══ Navigation ══ */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26,45,140,0.10);
  box-shadow: 0 2px 18px rgba(26,45,140,0.06);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 24px;
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 999px;
  font-size: 0.92rem; font-weight: 500; color: var(--ink-md);
  text-decoration: none; transition: all .22s ease; white-space: nowrap;
}
.nav-links a:hover { color: var(--navy); background: var(--cream); }
.nav-links a.active { color: var(--navy); background: var(--cream-dk); font-weight: 600; }
.nav-links a.nav-cta {
  background: linear-gradient(120deg, var(--saffron), var(--saffron-dk));
  color: #fff; font-weight: 600; margin-left: 8px;
  box-shadow: 0 4px 14px rgba(240,102,24,0.35);
}
.nav-links a.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 7px 20px rgba(240,102,24,0.45); }
.nav-links .home-ic svg { width: 19px; height: 19px; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 26px; height: 2.6px; background: var(--navy); margin: 5.5px 0; border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ══ Buttons ══ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: 0; transition: all .25s ease;
}
.btn-primary { background: linear-gradient(120deg, var(--saffron), var(--saffron-dk)); color: #fff; box-shadow: 0 6px 22px rgba(240,102,24,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(240,102,24,0.45); }
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 6px 22px rgba(26,45,140,0.30); }
.btn-navy:hover { transform: translateY(-2px); background: var(--navy-dk); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); }

/* ══ Hero ══ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, var(--ivory) 55%, #fff 100%);
}
.hero-grid {
  max-width: 1320px; margin: 0 auto; padding: clamp(56px,8vw,110px) 24px;
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(36px,5vw,72px); align-items: center;
}
.hero-copy h1 em { font-style: italic; color: var(--saffron-dk); }
.hero-copy .lead { margin: 26px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media { position: relative; }
.hero-media .photo-main {
  width: 100%; aspect-ratio: 4/4.6; object-fit: cover;
  border-radius: 28px; box-shadow: var(--shadow);
}
.hero-media .photo-float {
  position: absolute; width: 46%; aspect-ratio: 1; object-fit: cover;
  border-radius: 20px; border: 6px solid var(--ivory); box-shadow: var(--shadow);
  bottom: -34px; left: -34px;
}
.hero-badge {
  position: absolute; top: 26px; right: -14px;
  background: #fff; border-radius: 16px; box-shadow: var(--shadow);
  padding: 14px 20px; text-align: center;
}
.hero-badge .num { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 700; color: var(--saffron-dk); line-height: 1; }
.hero-badge .lbl { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-lt); }

/* Page hero (inner pages) */
.page-hero {
  position: relative; color: #fff; overflow: hidden;
  display: flex; align-items: flex-end;
  min-height: clamp(380px, 52vh, 560px);
}
.page-hero .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,31,99,0.25) 0%, rgba(16,31,99,0.78) 78%, rgba(16,31,99,0.92) 100%);
}
.page-hero .container { position: relative; z-index: 2; padding-bottom: clamp(44px,6vw,80px); padding-top: 120px; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,0.88); margin-top: 18px; }
.page-hero .eyebrow { color: var(--saffron-lt); }

/* ══ Sections ══ */
.section { padding: clamp(64px, 9vw, 118px) 0; }
.section-cream { background: var(--cream); }
.section-navy { background: linear-gradient(150deg, var(--navy-dk), var(--navy)); color: #E8EAFB; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .lead { color: rgba(232,234,251,0.85); }
.section-head { max-width: 720px; margin-bottom: clamp(36px,5vw,60px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .tricolor-rule { margin-left: auto; margin-right: auto; }

/* ══ Stat strip ══ */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.stat {
  background: #fff; border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm); border-top: 4px solid var(--saffron);
  transition: transform .25s ease;
}
.stat:nth-child(2) { border-top-color: var(--green); }
.stat:nth-child(3) { border-top-color: var(--navy); }
.stat:nth-child(4) { border-top-color: var(--sky); }
.stat:hover { transform: translateY(-5px); }
.stat .num { font-family: var(--font-serif); font-size: clamp(2rem,3.4vw,2.8rem); font-weight: 700; color: var(--navy-dk); line-height: 1.05; }
.stat .lbl { font-size: 0.86rem; color: var(--ink-md); margin-top: 8px; }
.stat .src { font-size: 0.7rem; color: var(--ink-lt); margin-top: 8px; letter-spacing: 0.03em; }

/* ══ Cards ══ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card img.card-photo { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-body h3 { font-size: 1.32rem; }
.card-body p { font-size: 0.93rem; color: var(--ink-md); }
.card-body .card-link { margin-top: auto; padding-top: 10px; font-weight: 600; font-size: 0.9rem; color: var(--saffron-dk); text-decoration: none; }
.card-body .card-link:hover { text-decoration: underline; }
.card-ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cream), var(--cream-dk)); font-size: 1.5rem;
}

/* ══ Split feature ══ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,70px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { width: 100%; border-radius: 24px; box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4/3.1; }
.split-copy h2 { margin-bottom: 8px; }
.split-copy p { color: var(--ink-md); margin: 14px 0; }
.check-list { list-style: none; margin: 20px 0; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-md); font-size: 0.96rem; }
.check-list li::before {
  content: "✓"; flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); color: #fff; display: grid; place-items: center;
  font-size: 0.8rem; font-weight: 700; margin-top: 2px;
}

/* ══ Numbered process ══ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; counter-reset: step; }
.step {
  background: #fff; border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm); position: relative; counter-increment: step;
}
.step::before {
  content: "0" counter(step);
  font-family: var(--font-serif); font-size: 2.6rem; font-weight: 700;
  background: linear-gradient(120deg, var(--saffron), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; line-height: 1; margin-bottom: 14px;
}
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--ink-md); }

/* ══ Quote / pledge band ══ */
.quote-band { text-align: center; max-width: 880px; margin: 0 auto; }
.quote-band blockquote {
  font-family: var(--font-serif); font-size: clamp(1.5rem,3vw,2.3rem);
  font-weight: 500; font-style: italic; line-height: 1.4; color: var(--navy-dk);
}
.section-navy .quote-band blockquote { color: #fff; }
.quote-band cite { display: block; margin-top: 22px; font-style: normal; font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--saffron-dk); }
.section-navy .quote-band cite { color: var(--saffron-lt); }

/* ══ Insights / article cards ══ */
.article-meta { display: flex; gap: 14px; align-items: center; font-size: 0.78rem; color: var(--ink-lt); letter-spacing: 0.05em; text-transform: uppercase; }
.tag { background: var(--cream-dk); color: var(--navy); font-size: 0.72rem; font-weight: 600; padding: 4px 12px; border-radius: 999px; letter-spacing: 0.06em; }

/* Article page */
.article-wrap { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.article-hero { padding: clamp(56px,7vw,90px) 0 clamp(30px,4vw,48px); }
.article-hero h1 { font-size: clamp(2rem,4vw,3.2rem); }
.article-body { padding-bottom: clamp(64px,8vw,110px); }
.article-body p { margin: 0 0 1.35em; color: #333A4E; font-size: 1.04rem; line-height: 1.85; }
.article-body h2 { font-size: 1.75rem; margin: 1.8em 0 0.7em; }
.article-body h3 { font-size: 1.3rem; margin: 1.6em 0 0.6em; }
.article-body ul, .article-body ol { margin: 0 0 1.4em 1.3em; color: #333A4E; }
.article-body li { margin-bottom: 0.5em; }
.article-body blockquote {
  border-left: 4px solid var(--saffron); background: var(--cream);
  padding: 22px 28px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-serif); font-size: 1.25rem; font-style: italic;
  color: var(--navy-dk); margin: 1.8em 0;
}
.article-body .figure-img { border-radius: var(--radius); box-shadow: var(--shadow-sm); margin: 2em 0; width: 100%; object-fit: cover; }
.article-footer-nav { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--cream-dk); padding: 28px 0 64px; }
.article-footer-nav a { font-weight: 600; text-decoration: none; color: var(--navy); }
.article-footer-nav a:hover { color: var(--saffron-dk); }

/* ══ Contact ══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px,5vw,64px); align-items: start; }
.contact-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 30px; display: flex; gap: 18px; align-items: flex-start; margin-bottom: 18px;
}
.contact-card .ico { width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px; display: grid; place-items: center; font-size: 1.4rem; background: linear-gradient(135deg, var(--cream), var(--cream-dk)); }
.contact-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.contact-card a { color: var(--saffron-dk); font-weight: 600; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
.contact-card p { font-size: 0.92rem; color: var(--ink-md); }
.contact-form { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(28px,4vw,44px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy-dk); margin-bottom: 7px; letter-spacing: 0.03em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1.6px solid var(--cream-dk); background: var(--ivory);
  font-family: var(--font-sans); font-size: 0.95rem; color: var(--ink);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy-lt); background: #fff; }
.form-note { font-size: 0.8rem; color: var(--ink-lt); margin-top: 14px; }

/* ══ CTA band ══ */
.cta-band {
  border-radius: 28px; overflow: hidden; position: relative;
  background: linear-gradient(130deg, var(--navy-dk) 0%, var(--navy) 60%, #2B3A8F 100%);
  color: #fff; padding: clamp(44px,6vw,76px) clamp(28px,5vw,72px);
  display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 36px; align-items: center;
}
.cta-band::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px;
  border-radius: 50%; background: radial-gradient(circle, rgba(240,102,24,0.35), transparent 65%);
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.85); }
.cta-band .actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; position: relative; }

/* ══ Footer ══ */
.site-footer { background: #131A3F; color: #B9BEDC; padding: clamp(56px,7vw,84px) 0 0; }
.footer-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px;
}
.footer-brand img { height: 52px; width: auto; margin-bottom: 20px; background: #fff; padding: 8px 14px; border-radius: 12px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 34em; }
.footer-col h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { color: #B9BEDC; text-decoration: none; font-size: 0.9rem; transition: color .2s; }
.footer-col a:hover { color: var(--saffron-lt); }
.footer-col p { font-size: 0.9rem; line-height: 1.8; }
.footer-col p a { color: var(--saffron-lt); }
.footer-bottom {
  margin-top: clamp(40px,5vw,60px); border-top: 1px solid rgba(255,255,255,0.10);
  padding: 22px 24px; text-align: center; font-size: 0.78rem; color: #8089A6;
}
.footer-tricolor { height: 5px; background: linear-gradient(90deg, var(--saffron) 33%, #fff 33% 66%, var(--green) 66%); }

/* ══ Chips (focus areas) ══ */
.chip-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
  background: #fff; border: 1.6px solid var(--cream-dk); border-radius: 999px;
  padding: 10px 22px; font-size: 0.92rem; font-weight: 500; color: var(--ink-md);
  transition: all .22s ease;
}
.chip:hover { border-color: var(--saffron); color: var(--saffron-dk); transform: translateY(-2px); }

/* ══ Impact list ══ */
.impact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.impact {
  background: rgba(255,255,255,0.07); border-radius: var(--radius); padding: 26px 24px;
  border-left: 4px solid var(--saffron-lt);
}
.impact .num { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 700; color: #fff; line-height: 1.2; }
.impact .lbl { font-size: 0.88rem; color: rgba(232,234,251,0.85); margin-top: 6px; }
@media (max-width: 900px) { .impact-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .impact-grid { grid-template-columns: 1fr; } }

/* ══ Reveal animation ══ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ══════════════ Responsive ══════════════ */
@media (max-width: 1100px) {
  .stat-strip, .steps, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 560px; }
  .cta-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: 14px 20px 26px; box-shadow: 0 24px 40px rgba(26,45,140,0.16);
    transform: translateY(-130%); transition: transform .32s ease; z-index: 99;
    border-bottom: 1px solid var(--cream-dk); max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 14px 12px; border-radius: 12px; font-size: 1rem; }
  .nav-links a.nav-cta { margin: 12px 0 0; justify-content: center; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .card-grid, .card-grid.cols-2, .stat-strip, .steps, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-media .photo-float { display: none; }
  .hero-badge { right: 8px; }
  .brand img { height: 38px; }
  :root { --nav-h: 70px; }
  .article-footer-nav { flex-direction: column; }
}

/* ══ WordPress integration ══ */
.nav-links li.current-menu-item > a,
.nav-links li.current_page_item > a,
.nav-links li.current_page_parent > a { color: var(--navy); background: var(--cream-dk); font-weight: 600; }
.nav-links li.menu-item-contact > a,
.nav-links li.nav-cta-item > a {
  background: linear-gradient(120deg, var(--saffron), var(--saffron-dk));
  color: #fff; font-weight: 600; margin-left: 8px;
  box-shadow: 0 4px 14px rgba(240,102,24,0.35);
}
.article-body a { color: var(--saffron-dk); }
.wp-block-image img, .article-body img { border-radius: var(--radius); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.aligncenter { margin-left: auto; margin-right: auto; }
img.alignleft { float: left; margin: 0 1.5em 1em 0; }
img.alignright { float: right; margin: 0 0 1em 1.5em; }
