@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,400&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg: #f6f6f4;
  --bg-white: #ffffff;
  --bg-light: #eeeeed;
  --text-primary: #181818;
  --text-secondary: #46464a;
  --text-muted: #7a7a82;
  --navy: #1b3a6b;
  --navy-mid: #244c8a;
  --gold: #a87c2e;
  --gold-light: #c9a251;
  --border: #ddddd9;
  --border-light: #ebebea;
  --font-serif: 'Source Serif 4', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --max: 1200px;
  --r: 3px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: var(--font-sans); }

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

/* ── TOPBAR ── */
.topbar { background: var(--navy); color: rgba(255,255,255,.78); font-size: 11.5px; padding: 7px 0; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar__date { letter-spacing: .3px; opacity: .85; }
.topbar__links { display: flex; gap: 18px; }
.topbar__links a { color: rgba(255,255,255,.75); transition: color var(--transition); }
.topbar__links a:hover { color: var(--gold-light); }

/* ── HEADER ── */
.site-header { background: var(--bg-white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 200; box-shadow: 0 1px 6px rgba(0,0,0,.06); }
.header__inner { display: flex; align-items: center; height: 68px; gap: 28px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.logo__mark { width: 36px; height: 36px; background: var(--navy); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo__mark span { color: var(--gold-light); font-family: var(--font-serif); font-weight: 700; font-size: 19px; line-height: 1; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name { font-family: var(--font-serif); font-size: 21px; font-weight: 700; color: var(--navy); letter-spacing: -.3px; }
.logo__sub { font-size: 9.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }

/* ── NAV ── */
.main-nav { flex: 1; display: flex; justify-content: flex-end; align-items: center; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__item { position: relative; }
.nav__link { display: flex; align-items: center; gap: 4px; padding: 8px 12px; font-size: 13.5px; font-weight: 500; color: var(--text-secondary); border-radius: var(--r); transition: all var(--transition); white-space: nowrap; }
.nav__link:hover, .nav__link.active { color: var(--navy); background: var(--bg-light); }
.nav__link.active { font-weight: 600; }
.nav__arrow { width: 12px; height: 12px; opacity: .5; transition: transform var(--transition); }
.nav__item:hover .nav__arrow { transform: rotate(180deg); }

.nav__dropdown { position: absolute; top: calc(100% + 6px); left: 0; background: var(--bg-white); border: 1px solid var(--border); border-radius: 6px; min-width: 220px; box-shadow: 0 8px 28px rgba(0,0,0,.10); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all var(--transition); z-index: 300; padding: 6px; }
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown__link { display: block; padding: 9px 13px; font-size: 13.5px; color: var(--text-secondary); border-radius: var(--r); transition: all var(--transition); }
.dropdown__link:hover { background: var(--bg-light); color: var(--navy); }
.dropdown__sep { height: 1px; background: var(--border-light); margin: 4px 0; }

.header__search-btn { background: none; border: 1px solid var(--border); border-radius: var(--r); padding: 7px 13px; cursor: pointer; color: var(--text-muted); font-size: 13px; display: flex; align-items: center; gap: 6px; transition: all var(--transition); }
.header__search-btn:hover { border-color: var(--navy); color: var(--navy); }
.header__search-btn svg { width: 14px; height: 14px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all .3s; }

/* ── MOBILE NAV ── */
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--bg-white); z-index: 1000; padding: 24px; overflow-y: auto; flex-direction: column; }
.mobile-nav.open { display: flex; }
.mobile-nav__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; border-bottom: 1px solid var(--border-light); padding-bottom: 16px; }
.mobile-nav__close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text-secondary); }
.mobile-nav__list { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav__link { display: block; padding: 11px 14px; font-size: 15px; font-weight: 500; color: var(--text-secondary); border-radius: var(--r); transition: all var(--transition); border-left: 3px solid transparent; }
.mobile-nav__link:hover, .mobile-nav__link.active { background: var(--bg-light); color: var(--navy); border-left-color: var(--navy); }

/* ── HERO ── */
.hero { background: var(--bg-white); border-bottom: 1px solid var(--border); padding: 60px 0 52px; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.hero__content {}
.hero__section { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: block; }
.hero__title { font-family: var(--font-serif); font-size: clamp(30px, 4vw, 46px); font-weight: 700; line-height: 1.18; color: var(--text-primary); margin-bottom: 18px; letter-spacing: -.5px; }
.hero__title em { font-style: italic; color: var(--navy); }
.hero__desc { font-size: 17px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 30px; max-width: 520px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; border: 1px solid var(--border-light); }
.hero__meta { display: flex; gap: 18px; align-items: center; font-size: 12.5px; color: var(--text-muted); margin-bottom: 18px; flex-wrap: wrap; }
.hero__meta-author { font-weight: 600; color: var(--text-secondary); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 11px 22px; font-size: 13.5px; font-weight: 600; border-radius: var(--r); border: 1.5px solid transparent; cursor: pointer; transition: all var(--transition); text-decoration: none; line-height: 1.3; letter-spacing: .1px; white-space: nowrap; }
.btn--primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--primary:hover { background: var(--navy-mid); color: #fff; border-color: var(--navy-mid); box-shadow: 0 4px 14px rgba(27,58,107,.25); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-light); color: #fff; border-color: var(--gold-light); }
.btn--ghost { background: transparent; color: var(--text-secondary); border-color: var(--border); }
.btn--ghost:hover { background: var(--bg-light); color: var(--text-primary); }
.btn--sm { padding: 7px 16px; font-size: 12.5px; }
.btn--lg { padding: 13px 28px; font-size: 15px; }

/* ── SECTION HEADERS ── */
.section { padding: 60px 0; }
.section--sm { padding: 40px 0; }
.section--lg { padding: 80px 0; }
.section--white { background: var(--bg-white); }
.section--light { background: var(--bg-light); }
.section--navy { background: var(--navy); color: #fff; }
.section--bordered { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-header { margin-bottom: 36px; }
.section-header--flex { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.section-kicker { font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.section-title { font-family: var(--font-serif); font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: var(--text-primary); line-height: 1.25; letter-spacing: -.3px; }
.section-title--white { color: #fff; }
.section-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.65; max-width: 600px; margin-top: 10px; }
.section-link { font-size: 13.5px; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.section-link:hover { color: var(--gold); }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── CARDS ── */
.card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 5px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow var(--transition), transform var(--transition); }
.card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.09); transform: translateY(-2px); }
.card__img { overflow: hidden; background: var(--bg-light); aspect-ratio: 16/9; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.card__cat { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.card__cat:hover { color: var(--navy); }
.card__date { font-size: 12px; color: var(--text-muted); }
.card__read-time { font-size: 12px; color: var(--text-muted); }
.card__title { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--text-primary); line-height: 1.35; margin-bottom: 10px; letter-spacing: -.1px; }
.card__title a { color: inherit; }
.card__title a:hover { color: var(--navy); }
.card__excerpt { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 13px; border-top: 1px solid var(--border-light); gap: 10px; }
.card__author { font-size: 12.5px; color: var(--text-muted); font-weight: 500; }
.card__read { font-size: 12.5px; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 5px; }
.card__read:hover { color: var(--gold); }

/* card featured */
.card--featured { flex-direction: row; min-height: 240px; }
.card--featured .card__img { width: 42%; flex-shrink: 0; aspect-ratio: unset; }
.card--featured .card__body { padding: 24px 28px; }
.card--featured .card__title { font-size: 22px; }

/* card horizontal small */
.card--h { flex-direction: row; }
.card--h .card__img { width: 120px; flex-shrink: 0; aspect-ratio: unset; min-height: 90px; }
.card--h .card__body { padding: 12px 15px; }
.card--h .card__title { font-size: 14px; margin-bottom: 6px; }
.card--h .card__excerpt { font-size: 12.5px; }

/* ── LEAD SECTION (homepage) ── */
.lead-section { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.lead-main { background: var(--bg-white); border: 1px solid var(--border); border-radius: 5px; overflow: hidden; }
.lead-main__img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-light); }
.lead-main__img img { width: 100%; height: 100%; object-fit: cover; }
.lead-main__body { padding: 28px 30px 30px; }
.lead-main__cat { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.lead-main__title { font-family: var(--font-serif); font-size: clamp(22px, 2.8vw, 30px); font-weight: 700; color: var(--text-primary); line-height: 1.25; margin-bottom: 13px; }
.lead-main__title a { color: inherit; }
.lead-main__title a:hover { color: var(--navy); }
.lead-main__excerpt { font-size: 15px; color: var(--text-secondary); line-height: 1.68; margin-bottom: 20px; }
.lead-main__meta { display: flex; gap: 16px; font-size: 12.5px; color: var(--text-muted); align-items: center; }
.lead-main__meta strong { color: var(--text-secondary); font-weight: 600; }
.lead-sidebar { display: flex; flex-direction: column; gap: 14px; }

/* ── SIDEBAR / WIDGETS ── */
.sidebar { display: flex; flex-direction: column; gap: 26px; }
.widget { background: var(--bg-white); border: 1px solid var(--border); border-radius: 5px; padding: 22px; }
.widget__title { font-family: var(--font-serif); font-size: 15.5px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; padding-bottom: 11px; border-bottom: 2px solid var(--navy); display: flex; align-items: center; gap: 8px; }
.widget__title::before { content: ''; display: block; width: 3px; height: 14px; background: var(--gold); border-radius: 2px; flex-shrink: 0; }
.widget-list { display: flex; flex-direction: column; }
.widget-list__item { display: flex; gap: 11px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--border-light); }
.widget-list__item:last-child { border-bottom: none; padding-bottom: 0; }
.widget-list__num { font-size: 20px; font-weight: 700; color: var(--border); font-family: var(--font-serif); line-height: 1; flex-shrink: 0; margin-top: 1px; }
.widget-list__text { font-size: 13.5px; font-weight: 500; color: var(--text-primary); line-height: 1.45; }
.widget-list__text a { color: inherit; }
.widget-list__text a:hover { color: var(--navy); }
.widget-list__meta { font-size: 11.5px; color: var(--text-muted); margin-top: 3px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.tag { display: inline-block; padding: 5px 12px; font-size: 12px; font-weight: 500; color: var(--text-secondary); background: var(--bg-light); border: 1px solid var(--border); border-radius: 20px; text-decoration: none; transition: all var(--transition); cursor: pointer; }
.tag:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.newsletter-desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.newsletter-form { display: flex; flex-direction: column; gap: 9px; }
.newsletter-input { border: 1px solid var(--border); border-radius: var(--r); padding: 10px 13px; font-size: 13.5px; font-family: var(--font-sans); background: var(--bg); color: var(--text-primary); width: 100%; transition: border-color var(--transition); }
.newsletter-input:focus { outline: none; border-color: var(--navy); background: var(--bg-white); }
.newsletter-btn { background: var(--navy); color: #fff; border: none; border-radius: var(--r); padding: 11px 18px; font-size: 13px; font-weight: 600; cursor: pointer; width: 100%; transition: background var(--transition); }
.newsletter-btn:hover { background: var(--navy-mid); }
.newsletter-success { display: none; background: #e8f5e9; border: 1px solid #a5d6a7; border-radius: var(--r); padding: 12px 16px; color: #2e7d32; font-size: 13.5px; font-weight: 500; }
.newsletter-success.show { display: block; }

/* ── BREADCRUMBS ── */
.breadcrumbs { background: var(--bg-white); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumbs__list { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumbs__item { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text-muted); }
.breadcrumbs__item a { color: var(--text-muted); }
.breadcrumbs__item a:hover { color: var(--navy); }
.breadcrumbs__item::after { content: '/'; opacity: .35; }
.breadcrumbs__item:last-child::after { display: none; }
.breadcrumbs__item:last-child { color: var(--text-primary); font-weight: 500; }

/* ── ARTICLE PAGE ── */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.article-header { margin-bottom: 30px; }
.article-header__cat { font-size: 10.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.article-header__title { font-family: var(--font-serif); font-size: clamp(24px, 3.5vw, 38px); font-weight: 700; color: var(--text-primary); line-height: 1.2; letter-spacing: -.4px; margin-bottom: 16px; }
.article-header__lead { font-size: 17.5px; color: var(--text-secondary); line-height: 1.65; border-left: 3px solid var(--gold); padding-left: 18px; margin-bottom: 22px; }
.article-header__meta { display: flex; align-items: center; gap: 18px; font-size: 13px; color: var(--text-muted); padding: 13px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); flex-wrap: wrap; }
.article-header__meta strong { color: var(--text-secondary); font-weight: 600; }
.article-hero-img { width: 100%; aspect-ratio: 16/7; object-fit: cover; border-radius: var(--r); margin: 28px 0 8px; border: 1px solid var(--border-light); }
.article-hero-caption { font-size: 12px; color: var(--text-muted); text-align: center; margin-bottom: 32px; font-style: italic; }
.article-body { font-family: var(--font-serif); font-size: 17px; line-height: 1.82; color: var(--text-primary); }
.article-body p { margin-bottom: 22px; }
.article-body h2 { font-family: var(--font-serif); font-size: 24px; font-weight: 700; margin: 36px 0 14px; line-height: 1.3; }
.article-body h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 700; margin: 28px 0 11px; }
.article-body blockquote { border-left: 3px solid var(--gold); margin: 32px 0; padding: 16px 22px; background: var(--bg-light); border-radius: 0 var(--r) var(--r) 0; }
.article-body blockquote p { font-size: 17.5px; font-style: italic; color: var(--text-secondary); margin: 0; }
.article-body ul { list-style: disc; margin: 0 0 22px 22px; }
.article-body ol { list-style: decimal; margin: 0 0 22px 22px; }
.article-body li { margin-bottom: 7px; }
.article-body a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.article-body figure { margin: 32px 0; }
.article-body figure img { width: 100%; border-radius: var(--r); border: 1px solid var(--border-light); }
.article-body figcaption { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 7px; font-style: italic; font-family: var(--font-sans); }
.article-tags { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--border-light); }
.article-tags__label { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 11px; }
.article-share { margin-top: 26px; padding: 18px 22px; background: var(--bg-light); border-radius: var(--r); border: 1px solid var(--border); display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.share-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
.share-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: var(--r); font-size: 12.5px; font-weight: 600; cursor: pointer; border: 1px solid var(--border); background: var(--bg-white); color: var(--text-secondary); transition: all var(--transition); }
.share-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── RELATED ── */
.related-section { margin-top: 52px; padding-top: 36px; border-top: 2px solid var(--border); }
.related-section .section-title { font-size: 22px; margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* ── CATEGORY PAGE ── */
.category-header { padding: 44px 0 28px; background: var(--bg-white); border-bottom: 1px solid var(--border); }
.category-header h1 { font-family: var(--font-serif); font-size: 30px; font-weight: 700; margin-bottom: 10px; }
.category-header p { font-size: 15px; color: var(--text-secondary); max-width: 620px; line-height: 1.65; }
.cat-count { font-size: 12px; color: var(--text-muted); margin-top: 8px; }

/* ── ABOUT PAGE ── */
.about-intro-grid { display: grid; grid-template-columns: 1fr 420px; gap: 52px; align-items: start; }
.about-intro-grid h1 { font-family: var(--font-serif); font-size: 34px; font-weight: 700; margin-bottom: 18px; line-height: 1.25; }
.about-intro-grid p { font-size: 15px; color: var(--text-secondary); line-height: 1.72; margin-bottom: 15px; }
.about-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r); border: 1px solid var(--border-light); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 28px; }
.team-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 5px; padding: 24px 20px; text-align: center; }
.team-card__img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; margin: 0 auto 15px; border: 3px solid var(--bg-light); }
.team-card__name { font-family: var(--font-serif); font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-card__role { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.team-card__bio { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 28px; }
.value-item { padding: 24px; background: var(--bg-white); border: 1px solid var(--border); border-radius: 5px; border-top: 3px solid var(--navy); }
.value-icon { width: 42px; height: 42px; background: var(--bg-light); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.value-icon svg { width: 20px; height: 20px; color: var(--navy); }
.value-title { font-family: var(--font-serif); font-size: 16.5px; font-weight: 700; margin-bottom: 8px; }
.value-text { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 340px; gap: 52px; align-items: start; }
.contact-form-wrap h1 { font-family: var(--font-serif); font-size: 30px; font-weight: 700; margin-bottom: 12px; }
.contact-form-wrap .lead { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 30px; }
.contact-form { display: flex; flex-direction: column; gap: 17px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 11.5px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--text-secondary); }
.form-input, .form-textarea, .form-select { border: 1px solid var(--border); border-radius: var(--r); padding: 10px 13px; font-size: 14px; font-family: var(--font-sans); background: var(--bg-white); color: var(--text-primary); transition: border-color var(--transition), box-shadow var(--transition); width: 100%; }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,58,107,.09); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-success { display: none; background: #e8f5e9; border: 1px solid #a5d6a7; border-radius: var(--r); padding: 16px 20px; color: #2e7d32; font-size: 14px; font-weight: 500; align-items: center; gap: 10px; }
.form-success.show { display: flex; }
.contact-info { background: var(--bg-white); border: 1px solid var(--border); border-radius: 5px; padding: 26px; }
.contact-info h2 { font-family: var(--font-serif); font-size: 19px; font-weight: 700; margin-bottom: 20px; padding-bottom: 13px; border-bottom: 1px solid var(--border-light); }
.contact-detail { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--border-light); }
.contact-detail:last-of-type { border-bottom: none; padding-bottom: 0; }
.contact-detail__icon { width: 34px; height: 34px; background: var(--bg-light); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--navy); }
.contact-detail__label { font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.contact-detail__value { font-size: 14px; color: var(--text-primary); font-weight: 500; }

/* ── STATS STRIP ── */
.stats-strip { background: var(--navy); padding: 44px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--font-serif); font-size: 38px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 11.5px; color: rgba(255,255,255,.6); letter-spacing: 1.2px; text-transform: uppercase; }

/* ── SEARCH PAGE ── */
.search-form-big { display: flex; gap: 0; max-width: 640px; }
.search-input-big { flex: 1; border: 1.5px solid var(--navy); border-right: none; border-radius: var(--r) 0 0 var(--r); padding: 12px 18px; font-size: 15px; font-family: var(--font-sans); background: var(--bg-white); color: var(--text-primary); }
.search-input-big:focus { outline: none; }
.search-btn-big { background: var(--navy); color: #fff; border: none; border-radius: 0 var(--r) var(--r) 0; padding: 12px 24px; font-size: 14px; font-weight: 600; cursor: pointer; transition: background var(--transition); }
.search-btn-big:hover { background: var(--navy-mid); }

/* ── POLICY PAGES ── */
.policy-page { padding: 52px 0 72px; }
.policy-header { margin-bottom: 36px; padding-bottom: 26px; border-bottom: 1px solid var(--border); }
.policy-header h1 { font-family: var(--font-serif); font-size: 30px; font-weight: 700; margin-bottom: 8px; }
.policy-meta { font-size: 13px; color: var(--text-muted); }
.policy-body { font-size: 15px; line-height: 1.78; color: var(--text-secondary); }
.policy-body h2 { font-family: var(--font-serif); font-size: 21px; font-weight: 700; color: var(--text-primary); margin: 36px 0 13px; }
.policy-body h3 { font-size: 17px; font-weight: 700; color: var(--text-primary); margin: 24px 0 9px; }
.policy-body p { margin-bottom: 15px; }
.policy-body ul, .policy-body ol { margin: 0 0 16px 22px; }
.policy-body ul { list-style: disc; }
.policy-body ol { list-style: decimal; }
.policy-body li { margin-bottom: 7px; }
.policy-body a { color: var(--navy); text-decoration: underline; }
.policy-body strong { color: var(--text-primary); font-weight: 600; }
.policy-toc { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r); padding: 22px; margin-bottom: 32px; max-width: 480px; }
.policy-toc h3 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 13px; }
.policy-toc ol { margin: 0 0 0 16px; list-style: decimal; }
.policy-toc li { margin-bottom: 5px; }
.policy-toc a { color: var(--navy); font-size: 14px; }
.policy-toc a:hover { text-decoration: underline; }

/* ── HIGHLIGHT BOX ── */
.highlight-box { background: var(--bg-light); border: 1px solid var(--border); border-left: 3px solid var(--navy); border-radius: var(--r); padding: 18px 20px; margin: 24px 0; }
.highlight-box p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.65; margin: 0; }

/* ── PAGINATION ── */
.pagination { display: flex; gap: 6px; margin-top: 44px; justify-content: center; }
.page-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--r); font-size: 14px; font-weight: 500; color: var(--text-secondary); cursor: pointer; background: var(--bg-white); transition: all var(--transition); text-decoration: none; }
.page-btn:hover, .page-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── INFOGRAPHIC STRIP ── */
.infographic-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--border); border-radius: 5px; overflow: hidden; background: var(--bg-white); }
.infographic-item { padding: 28px 22px; border-right: 1px solid var(--border-light); text-align: center; }
.infographic-item:last-child { border-right: none; }
.infographic-item__num { font-family: var(--font-serif); font-size: 34px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1; }
.infographic-item__label { font-size: 12.5px; color: var(--text-muted); }
.infographic-item__detail { font-size: 13px; color: var(--text-secondary); margin-top: 5px; line-height: 1.45; }

/* ── METHODOLOGY BOX ── */
.methodology-box { border: 1px solid var(--border); border-radius: 5px; overflow: hidden; margin: 36px 0; }
.methodology-box__head { background: var(--navy); padding: 14px 20px; }
.methodology-box__head h3 { font-family: var(--font-serif); font-size: 16px; font-weight: 700; color: #fff; }
.methodology-box__body { padding: 20px; background: var(--bg-white); }
.methodology-box__body p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 10px; }
.methodology-box__body p:last-child { margin-bottom: 0; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.78); padding: 56px 0 0; font-size: 13.5px; }
.footer__grid { display: grid; grid-template-columns: 260px 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__logo { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 12px; display: block; }
.footer__desc { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.58); margin-bottom: 18px; }
.footer__col-title { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { color: rgba(255,255,255,.68); font-size: 13.5px; transition: color var(--transition); }
.footer__links a:hover { color: var(--gold-light); }
.footer__contact-item { display: flex; flex-direction: column; gap: 1px; margin-bottom: 12px; }
.footer__contact-item strong { font-size: 10.5px; color: rgba(255,255,255,.5); letter-spacing: .5px; font-weight: 600; }
.footer__contact-item span { font-size: 13.5px; color: rgba(255,255,255,.78); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-size: 12px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 10px; }
.footer__bottom-links { display: flex; gap: 16px; }
.footer__bottom-links a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer__bottom-links a:hover { color: rgba(255,255,255,.75); }

/* ── UTILITY ── */
.divider { height: 1px; background: var(--border-light); margin: 36px 0; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* ── STATS ROW (homepage) ── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stats-row__item { text-align: center; padding: 28px 16px; border-right: 1px solid var(--border); }
.stats-row__item:last-child { border-right: none; }
.stats-row__num { font-family: var(--font-serif); font-size: 36px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.stats-row__label { font-size: 12px; color: var(--text-muted); letter-spacing: .5px; }

/* ── FEATURE CARDS (homepage topics) ── */
.feature-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 5px; padding: 26px 22px; height: 100%; transition: box-shadow var(--transition), transform var(--transition); }
.feature-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.feature-card__icon { width: 44px; height: 44px; background: var(--bg-light); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--navy); }
.feature-card__title { font-family: var(--font-serif); font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.feature-card__desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; }

/* ── LEAD ARTICLE (homepage) ── */
.lead-article { display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }
.lead-article__main { background: var(--bg-white); border: 1px solid var(--border); border-radius: 5px; overflow: hidden; }
.lead-article__img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-light); }
.lead-article__img img { width: 100%; height: 100%; object-fit: cover; }
.lead-article__content { padding: 26px 28px 30px; }
.lead-article__cat { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 11px; display: block; }
.lead-article__title { font-family: var(--font-serif); font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; color: var(--text-primary); line-height: 1.25; margin-bottom: 12px; }
.lead-article__title a { color: inherit; }
.lead-article__title a:hover { color: var(--navy); }
.lead-article__excerpt { font-size: 15px; color: var(--text-secondary); line-height: 1.68; margin-bottom: 18px; }
.lead-article__meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--text-muted); align-items: center; flex-wrap: wrap; }
.lead-article__sidebar { display: flex; flex-direction: column; gap: 14px; }

/* ── ABOUT PAGE ── */
.about-hero { padding: 52px 0; background: var(--bg-white); border-bottom: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 420px; gap: 52px; align-items: center; }
.about-img { border-radius: 5px; overflow: hidden; border: 1px solid var(--border-light); }
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-features { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 32px; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 5px; padding: 24px 20px; text-align: center; }
.team-card__img { width: 84px; height: 84px; border-radius: 50%; overflow: hidden; margin: 0 auto 15px; border: 3px solid var(--bg-light); background: var(--bg-light); }
.team-card__img img { width: 100%; height: 100%; object-fit: cover; }
.team-card__info {}
.team-card__name { font-family: var(--font-serif); font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-card__role { font-size: 10.5px; color: var(--gold); font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 10px; }
.team-card__bio { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── CONTACT PAGE ── */
.contact-layout { display: grid; grid-template-columns: 1fr 340px; gap: 52px; align-items: start; }
.contact-form { background: var(--bg-white); border: 1px solid var(--border); border-radius: 5px; padding: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group:last-child { margin-bottom: 0; }
.form-label { font-size: 11.5px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--text-secondary); }
.form-label span { color: #dc2626; margin-left: 2px; }
.form-input, .form-textarea, .form-select { border: 1px solid var(--border); border-radius: var(--r); padding: 10px 13px; font-size: 14px; font-family: var(--font-sans); background: var(--bg-white); color: var(--text-primary); transition: border-color var(--transition), box-shadow var(--transition); width: 100%; }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,58,107,.09); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-error { font-size: 12px; color: #dc2626; display: none; }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--text-secondary); line-height: 1.55; cursor: pointer; }
.form-check input { margin-top: 3px; flex-shrink: 0; accent-color: var(--navy); }
.form-success { display: none; background: #e8f5e9; border: 1px solid #a5d6a7; border-radius: var(--r); padding: 16px 20px; color: #2e7d32; font-size: 14px; font-weight: 500; align-items: center; gap: 10px; margin-bottom: 20px; }
.form-success.show { display: flex; }
.contact-info-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 5px; padding: 26px; }
.contact-info-item { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--border-light); }
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-icon { width: 34px; height: 34px; background: var(--bg-light); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--navy); }
.contact-info-icon svg { width: 16px; height: 16px; }
.contact-info-label { font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.contact-info-val { font-size: 14px; color: var(--text-primary); font-weight: 500; }
.contact-info-val a { color: var(--navy); }

/* ── BACK TO TOP ── */
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 42px; height: 42px; background: var(--navy); color: #fff; border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all var(--transition); z-index: 99; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--navy-mid); transform: translateY(-2px); }

/* ── COOKIE BANNER ── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); color: #fff; z-index: 999; transform: translateY(100%); transition: transform .4s ease; }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner__inner { max-width: var(--max); margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: space-between; }
.cookie-banner__text { font-size: 13.5px; color: rgba(255,255,255,.82); line-height: 1.55; flex: 1; min-width: 280px; }
.cookie-banner__text a { color: var(--gold-light); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── NEWSLETTER SECTION (footer) ── */
.newsletter-section { background: var(--navy); padding: 52px 0; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.newsletter-text .section-title { color: #fff; }
.newsletter-text p { font-size: 15px; color: rgba(255,255,255,.68); line-height: 1.65; margin-top: 12px; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input[type="email"] { flex: 1; border: 1.5px solid rgba(255,255,255,.25); border-right: none; border-radius: var(--r) 0 0 var(--r); padding: 12px 16px; font-size: 14px; font-family: var(--font-sans); background: rgba(255,255,255,.1); color: #fff; }
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--gold-light); }
.newsletter-form .btn--gold { border-radius: 0 var(--r) var(--r) 0; padding: 12px 22px; }
.newsletter-success { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: var(--r); padding: 14px 18px; color: rgba(255,255,255,.9); font-size: 14px; font-weight: 500; display: none; margin-top: 10px; }
.newsletter-success.show { display: block; }

/* ── FOOTER LINKS ── */
.footer__list { display: flex; flex-direction: column; gap: 8px; }
.footer__list li a { color: rgba(255,255,255,.68); font-size: 13.5px; transition: color var(--transition); }
.footer__list li a:hover { color: var(--gold-light); }
.footer__contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13.5px; color: rgba(255,255,255,.7); align-items: flex-start; }
.footer__policy { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.footer__policy a { color: rgba(255,255,255,.4); font-size: 12px; transition: color var(--transition); }
.footer__policy a:hover { color: rgba(255,255,255,.75); }
.footer__policy span { color: rgba(255,255,255,.25); font-size: 11px; }
.footer__copy { font-size: 12px; color: rgba(255,255,255,.4); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; flex-wrap: wrap; gap: 12px; border-top: 1px solid rgba(255,255,255,.1); }

/* ── ARTICLE PAGE ── */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }

/* ── SEARCH PAGE ── */
.search-results-list { display: flex; flex-direction: column; gap: 28px; margin-top: 28px; }
.search-result-item { padding-bottom: 28px; border-bottom: 1px solid var(--border-light); }
.search-result-item:last-child { border-bottom: none; }
.search-result-cat { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; display: block; }
.search-result-title { font-family: var(--font-serif); font-size: 21px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.search-result-title a { color: inherit; }
.search-result-title a:hover { color: var(--navy); }
.search-result-excerpt { font-size: 14.5px; color: var(--text-secondary); line-height: 1.65; }
.search-result-meta { font-size: 12px; color: var(--text-muted); margin-top: 8px; }

/* ── METHODOLOGY PAGE ── */
.methodology-step { display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border-light); align-items: start; }
.methodology-step:last-child { border-bottom: none; }
.methodology-step__num { font-family: var(--font-serif); font-size: 48px; font-weight: 700; color: var(--border); line-height: 1; text-align: center; padding-top: 4px; }
.methodology-step__content {}
.methodology-step__title { font-family: var(--font-serif); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.methodology-step__text { font-size: 15px; color: var(--text-secondary); line-height: 1.72; }

/* ── EXPERTS PAGE ── */
.expert-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 5px; padding: 28px 24px; display: grid; grid-template-columns: 100px 1fr; gap: 22px; align-items: start; }
.expert-card__img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid var(--bg-light); }
.expert-card__name { font-family: var(--font-serif); font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.expert-card__role { font-size: 11px; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.expert-card__bio { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 12px; }
.expert-card__links { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-features { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .lead-article { grid-template-columns: 1fr; }
  .lead-article__sidebar { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stats-row__item:nth-child(2) { border-right: none; }
  .stats-row__item:nth-child(3), .stats-row__item:nth-child(4) { border-top: 1px solid var(--border); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__img { max-width: 560px; }
  .lead-section { grid-template-columns: 1fr; }
  .lead-sidebar { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
  .article-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .related-grid { grid-template-columns: repeat(2,1fr); }
  .infographic-strip { grid-template-columns: repeat(2,1fr); }
  .infographic-item:nth-child(2) { border-right: none; }
  .infographic-item:nth-child(3), .infographic-item:nth-child(4) { border-top: 1px solid var(--border-light); }
}

@media (max-width: 768px) {
  .about-features { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .lead-article { grid-template-columns: 1fr; }
  .lead-article__sidebar { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { border-right: 1.5px solid rgba(255,255,255,.25); border-radius: var(--r); }
  .newsletter-form .btn--gold { border-radius: var(--r); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .expert-card { grid-template-columns: 1fr; }
  .methodology-step { grid-template-columns: 60px 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header__search-btn .search-text { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .card--featured { flex-direction: column; }
  .card--featured .card__img { width: 100%; min-height: 200px; }
  .lead-sidebar { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .related-grid { grid-template-columns: 1fr; }
  .infographic-strip { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 40px 0 36px; }
  .section { padding: 44px 0; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .topbar__date { display: none; }
}
