/* ===================================================
   Natura Medya — Editorial Focus Layout
   Deep Blue #1B3A6B | Muted Orange #C85A1A
   Playfair Display (headings) + Inter (body)
=================================================== */

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

/* ---------- CSS VARIABLES ---------- */
:root {
  --navy:        #1B3A6B;
  --navy-dark:   #122952;
  --navy-mid:    #2A5298;
  --orange:      #C85A1A;
  --orange-lt:   #E07444;
  --bg:          #F8F8F6;
  --white:       #FFFFFF;
  --g50:         #F4F4F2;
  --g100:        #EAEAEA;
  --g200:        #D4D4D4;
  --g400:        #999999;
  --g600:        #5C5C5C;
  --g800:        #2E2E2E;
  --g900:        #1A1A1A;
  --display:     'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;
  --max:         1200px;
  --radius:      3px;
  --t:           0.22s ease;
  --sh-sm:       0 1px 4px rgba(0,0,0,.07);
  --sh-md:       0 4px 18px rgba(0,0,0,.09);
  --sh-lg:       0 8px 36px rgba(0,0,0,.12);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--g800);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: .55em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }

/* ---------- LAYOUT UTILS ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 100px 0; }
.section--dark { background: var(--navy); }
.section--gray { background: var(--g50); }
.section--white { background: var(--white); }

/* ---------- GRID SYSTEMS ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }

/* ---------- COOKIE CONSENT ---------- */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy-dark);
  color: #D0D8E8;
  padding: 20px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .88rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.22);
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { margin: 0; max-width: 750px; }
#cookie-banner a { color: var(--orange-lt); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btns button {
  padding: 9px 22px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .88rem;
  font-weight: 600;
  transition: background var(--t);
}
.btn-accept-cookie { background: var(--orange); color: #fff; }
.btn-accept-cookie:hover { background: var(--orange-lt); }
.btn-reject-cookie { background: transparent; color: #D0D8E8; border: 1px solid rgba(255,255,255,.25); }
.btn-reject-cookie:hover { background: rgba(255,255,255,.08); }

/* ---------- HEADER ---------- */
#site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--navy);
  z-index: 900;
  height: 68px;
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: .68rem;
  font-weight: 500;
  color: var(--g400);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 2px;
}
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 0 16px;
  height: 68px;
  line-height: 68px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li > a.active {
  color: var(--orange);
  background: var(--g50);
}
/* Dropdown */
.main-nav .has-dropdown:hover .dropdown,
.main-nav .has-dropdown:focus-within .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute;
  top: 68px; left: 0;
  background: var(--white);
  min-width: 230px;
  border: 1px solid var(--g100);
  border-top: 3px solid var(--orange);
  box-shadow: var(--sh-md);
  z-index: 999;
}
.dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: .86rem;
  color: var(--g800);
  border-bottom: 1px solid var(--g100);
  transition: background var(--t), color var(--t);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--g50); color: var(--navy); padding-left: 26px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: all var(--t);
}

/* ---------- HERO (no badges / no promo blocks) ---------- */
.hero {
  position: relative;
  height: 82vh;
  min-height: 500px;
  max-height: 750px;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .72;
}
.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 24px 56px;
  background: linear-gradient(transparent, rgba(18,41,82,.82) 60%);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.hero-category {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.68);
  margin-bottom: 14px;
}
.hero h1 {
  color: #fff;
  max-width: 720px;
  margin-bottom: 18px;
}
.hero-lead {
  color: rgba(255,255,255,.80);
  font-size: 1.08rem;
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,.55);
  font-size: .82rem;
}
.hero-meta span { display: flex; align-items: center; gap: 6px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 11px 28px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--t), color var(--t), transform .15s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-lt); }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-mid); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-sm { padding: 7px 18px; font-size: .82rem; }
.btn-lg { padding: 14px 38px; font-size: 1rem; }

/* ---------- SECTION HEADER ---------- */
.section-header { margin-bottom: 44px; }
.section-header .overline {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--g600); max-width: 600px; font-size: .97rem; }
.section-header--center { text-align: center; }
.section-header--center p { margin-left: auto; margin-right: auto; }

/* ---------- ARTICLE CARDS ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t), transform var(--t);
  display: flex;
  flex-direction: column;
}
.card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.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: 22px; flex: 1; display: flex; flex-direction: column; }
.card-category {
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: 8px;
}
.card h3, .card h4 { margin-bottom: 10px; }
.card h3 a, .card h4 a { color: var(--navy); transition: color var(--t); }
.card h3 a:hover, .card h4 a:hover { color: var(--orange); }
.card p { color: var(--g600); font-size: .9rem; flex: 1; }
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--g100);
  font-size: .78rem;
  color: var(--g400);
}
.card-meta a { color: var(--orange); font-weight: 600; font-size: .8rem; }
.card-meta a:hover { text-decoration: underline; }

/* ---------- FEATURED CARD (wide) ---------- */
.card-featured {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  transition: box-shadow var(--t);
}
.card-featured:hover { box-shadow: var(--sh-md); }
.card-featured .card-img { aspect-ratio: auto; height: 100%; }
.card-featured .card-body { padding: 36px; }

/* ---------- QUOTE BLOCK ---------- */
.quote-block {
  border-left: 5px solid var(--orange);
  padding: 18px 28px;
  margin: 32px 0;
  background: var(--g50);
}
.quote-block blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.22rem;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 10px;
}
.quote-block cite {
  font-size: .83rem;
  color: var(--g600);
  font-style: normal;
  font-weight: 500;
}

/* ---------- KEY FACT BOX ---------- */
.fact-box {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.fact-box .fact-number {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange-lt);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.fact-box .fact-label {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--navy);
  padding: 40px 0;
}
.stats-bar .grid-4 { align-items: center; }
.stat-item { text-align: center; }
.stat-item .stat-num {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange-lt);
  display: block;
}
.stat-item .stat-txt { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: 4px; }

/* ---------- HIGHLIGHT STRIP ---------- */
.highlight-strip {
  background: var(--orange);
  color: #fff;
  padding: 16px 0;
  overflow: hidden;
}
.strip-inner { display: flex; align-items: center; gap: 0; white-space: nowrap; }
.strip-inner span {
  font-size: .86rem;
  font-weight: 500;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,.3);
}
.strip-inner span:last-child { border-right: none; }

/* ---------- SIDEBAR ---------- */
.sidebar {}
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: var(--sh-sm);
}
.sidebar-widget h4 {
  font-size: 1rem;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 18px;
}
.sidebar-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--g100);
  font-size: .88rem;
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li a { color: var(--g800); transition: color var(--t); }
.sidebar-list li a:hover { color: var(--orange); }
.sidebar-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block;
  padding: 5px 13px;
  background: var(--g50);
  border: 1px solid var(--g200);
  border-radius: 2px;
  font-size: .78rem;
  color: var(--g600);
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.tag:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- ARTICLE BODY ---------- */
.article-body {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--g800);
}
.article-body h2 { margin: 2em 0 .6em; font-size: 1.65rem; }
.article-body h3 { margin: 1.6em 0 .5em; font-size: 1.28rem; }
.article-body p { margin-bottom: 1.3em; }
.article-body ul, .article-body ol {
  padding-left: 1.6em;
  margin-bottom: 1.3em;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: .5em; }
.article-body a { color: var(--orange); text-decoration: underline; }
.article-body strong { color: var(--navy); font-weight: 600; }
.article-body figure { margin: 2em 0; }
.article-body figcaption {
  font-size: .82rem;
  color: var(--g400);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* ---------- INFO TABLE ---------- */
.info-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.info-table th, .info-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--g200);
}
.info-table th { background: var(--navy); color: #fff; font-weight: 600; }
.info-table tr:nth-child(even) td { background: var(--g50); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: var(--navy);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.page-hero .overline { color: var(--orange-lt); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; display: block; margin-bottom: 12px; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.72); max-width: 640px; font-size: 1.02rem; line-height: 1.65; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--t); }
.breadcrumb a:hover { color: rgba(255,255,255,.88); }
.breadcrumb span { color: rgba(255,255,255,.35); }
.breadcrumb li:last-child a { color: rgba(255,255,255,.85); font-weight: 500; pointer-events: none; }

/* ---------- CONTACT FORM ---------- */
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: .86rem; font-weight: 500; color: var(--navy); margin-bottom: 7px; }
.form-label .req { color: var(--orange); }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--g200);
  border-radius: var(--radius);
  font-size: .92rem;
  background: var(--white);
  color: var(--g900);
  transition: border-color var(--t), box-shadow var(--t);
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,107,.1);
}
.form-control::placeholder { color: var(--g400); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type=checkbox] { margin-top: 3px; accent-color: var(--navy); width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }
.form-check label { font-size: .86rem; color: var(--g600); cursor: pointer; }
.form-check label a { color: var(--orange); }
.form-error { font-size: .8rem; color: #c0392b; margin-top: 5px; display: none; }
.form-error.visible { display: block; }

/* Success message */
#form-success {
  display: none;
  background: #ecf9f0;
  border: 1px solid #27ae60;
  border-radius: var(--radius);
  padding: 22px 28px;
  text-align: center;
  margin-top: 20px;
}
#form-success.visible { display: block; }
#form-success .success-icon { font-size: 2.4rem; margin-bottom: 12px; }
#form-success h4 { color: #1a7a3a; font-family: var(--sans); font-size: 1.1rem; margin-bottom: 6px; }
#form-success p { color: #2e7d52; font-size: .9rem; margin: 0; }

/* ---------- NEWSLETTER BLOCK ---------- */
.newsletter-block {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 44px 48px;
  text-align: center;
}
.newsletter-block h3 { color: #fff; margin-bottom: 10px; }
.newsletter-block p { color: rgba(255,255,255,.7); margin-bottom: 26px; font-size: .95rem; }
.newsletter-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius);
  font-size: .92rem;
}
.newsletter-form input:focus { outline: 2px solid var(--orange); }

/* ---------- POLICY PAGES ---------- */
.policy-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.policy-body h1 { font-size: 2rem; margin-bottom: 8px; }
.policy-body .policy-date { color: var(--g400); font-size: .85rem; margin-bottom: 36px; display: block; }
.policy-body h2 { font-size: 1.35rem; margin: 2.2em 0 .7em; }
.policy-body h3 { font-size: 1.1rem; margin: 1.6em 0 .5em; }
.policy-body p, .policy-body li { font-size: .97rem; line-height: 1.75; color: var(--g800); }
.policy-body ul { padding-left: 1.5em; list-style: disc; margin-bottom: 1.2em; }
.policy-body ol { padding-left: 1.5em; list-style: decimal; margin-bottom: 1.2em; }
.policy-body li { margin-bottom: .5em; }
.policy-divider { border: none; border-top: 1px solid var(--g200); margin: 36px 0; }
.policy-body a { color: var(--orange); }
.policy-body strong { color: var(--navy); }
.policy-contact-box {
  background: var(--g50);
  border-left: 4px solid var(--navy);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: .92rem;
}
.policy-contact-box strong { display: block; margin-bottom: 8px; color: var(--navy); }

/* ---------- FOOTER ---------- */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .logo-text { color: #fff; font-size: 1.4rem; }
.footer-brand .logo-sub { color: rgba(255,255,255,.4); }
.footer-brand p {
  margin-top: 14px;
  font-size: .86rem;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
}
.footer-address {
  margin-top: 20px;
  font-size: .84rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.footer-address strong { color: rgba(255,255,255,.75); }
.footer-col h5 {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: .87rem;
  color: rgba(255,255,255,.65);
  transition: color var(--t);
}
.footer-col ul li a:hover { color: var(--orange-lt); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,.55); transition: color var(--t); }
.footer-bottom a:hover { color: var(--orange-lt); }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- MISC COMPONENTS ---------- */
.divider {
  border: none;
  border-top: 1px solid var(--g200);
  margin: 40px 0;
}
.divider--dark { border-color: rgba(255,255,255,.12); }

.badge-category {
  display: inline-block;
  padding: 3px 10px;
  background: var(--g50);
  border: 1px solid var(--g200);
  font-size: .72rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 2px;
  margin-right: 6px;
  margin-bottom: 6px;
}
.badge-category:hover { background: var(--navy); color: #fff; border-color: var(--navy); cursor: pointer; }

.icon-box {
  width: 52px; height: 52px;
  background: rgba(27,58,107,.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.icon-box--orange { background: rgba(200,90,26,.1); }

.step-block { counter-reset: steps; }
.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
  counter-increment: steps;
}
.step-num {
  width: 40px; height: 40px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.step-num::before { content: counter(steps); }

.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: .9rem;
  margin: 16px 0;
  border-left: 4px solid;
}
.alert-info { background: #e8f0fb; border-color: var(--navy); color: var(--navy-dark); }
.alert-warning { background: #fff3e0; border-color: #e67e22; color: #7d4e0a; }

/* ---------- SEARCH BAR ---------- */
.search-bar { display: flex; gap: 10px; margin-bottom: 32px; }
.search-bar input {
  flex: 1;
  padding: 11px 16px;
  border: 1.5px solid var(--g200);
  border-radius: var(--radius);
  font-size: .92rem;
}
.search-bar input:focus { outline: none; border-color: var(--navy); }

/* ---------- PAGINATION ---------- */
.pagination {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}
.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1.5px solid var(--g200);
  border-radius: var(--radius);
  font-size: .88rem;
  color: var(--g800);
  transition: background var(--t), border-color var(--t), color var(--t);
  cursor: pointer;
}
.page-link:hover, .page-link.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* ---------- TABLE OF CONTENTS ---------- */
.toc {
  background: var(--g50);
  border: 1px solid var(--g200);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.toc h5 { font-size: .9rem; margin-bottom: 12px; color: var(--navy); }
.toc ol { padding-left: 1.2em; list-style: decimal; }
.toc li { font-size: .88rem; margin-bottom: 5px; }
.toc li a { color: var(--navy-mid); }
.toc li a:hover { color: var(--orange); text-decoration: underline; }

/* ---------- BACK TO TOP ---------- */
#back-top {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 42px; height: 42px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), background var(--t);
  z-index: 800;
}
#back-top.visible { opacity: 1; pointer-events: all; }
#back-top:hover { background: var(--orange); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  .card-featured { grid-template-columns: 1fr; }
  .main-nav { 
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    border-top: 1px solid var(--g100);
    box-shadow: var(--sh-md);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    z-index: 890;
  }
  .main-nav.open { display: flex; }
  .main-nav > li > a { height: auto; line-height: 1.4; padding: 14px 20px; border-bottom: 1px solid var(--g100); }
  .dropdown { display: block; position: static; border: none; border-top: none; box-shadow: none; background: var(--g50); }
  .dropdown li a { padding-left: 32px; }
  .nav-toggle { display: flex; }
  .hero { height: 65vw; min-height: 320px; }
  .hero h1 { font-size: 1.7rem; }
  .section { padding: 48px 0; }
  .newsletter-block { padding: 30px 22px; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar .grid-4 { grid-template-columns: 1fr 1fr; }
}

/* ---------- SITEMAP ---------- */
.sitemap-section { margin-bottom: 32px; }
.sitemap-section h3 {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--g100);
}
.sitemap-section ul li { border-bottom: 1px solid var(--g100); }
.sitemap-section ul li:last-child { border-bottom: none; }
.sitemap-section ul li a {
  display: block;
  padding: 9px 0;
  font-size: .9rem;
  color: var(--g800);
  transition: color var(--t), padding-left var(--t);
}
.sitemap-section ul li a:hover { color: var(--orange); padding-left: 6px; }

/* ---------- TEAM CARDS ---------- */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t);
}
.team-card:hover { box-shadow: var(--sh-md); }
.team-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.team-card-body { padding: 20px 22px; }
.team-card-body h4 { color: var(--navy); margin-bottom: 4px; font-size: 1rem; }
.team-card-body .role {
  font-size: .75rem; font-weight: 600; color: var(--orange);
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px;
}

/* ---------- EVENT CARDS ---------- */
.event-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--sh-sm);
  border-left: 4px solid var(--navy);
  transition: box-shadow var(--t);
}
.event-card:hover { box-shadow: var(--sh-md); }
.event-date-badge {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 10px 8px;
  text-align: center;
  flex-shrink: 0;
}
.event-date-badge .day {
  display: block;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.event-date-badge .month {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}
.event-content h4 { font-size: .97rem; margin-bottom: 5px; color: var(--navy); }
.event-content p  { font-size: .84rem; color: var(--g600); margin-bottom: 6px; }
.event-meta { font-size: .76rem; color: var(--g400); }

/* ---------- REPORT CARDS ---------- */
.report-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t), transform var(--t);
}
.report-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.report-card-top { padding: 24px 24px 16px; flex: 1; }
.report-card-top .card-category { margin-bottom: 8px; }
.report-card-top h4 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
.report-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background: var(--g50);
  border-top: 1px solid var(--g100);
  font-size: .78rem;
  color: var(--g400);
}
.report-card-footer a { color: var(--orange); font-weight: 600; font-size: .8rem; }
.report-card-footer a:hover { text-decoration: underline; }

/* ---------- GRID 3-SIDE (content + sidebar) ---------- */
.grid-content-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .grid-content-sidebar { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 60px 1fr; }
}

/* ---------- METHODOLOGY STEPS ---------- */
.method-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--g100);
}
.method-step:last-child { border-bottom: none; }
.method-num {
  width: 48px; height: 48px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.method-body h4 { margin-bottom: 6px; color: var(--navy); }
.method-body p  { font-size: .9rem; color: var(--g600); margin: 0; }

/* ---------- EXPERT PROFILE CARD ---------- */
.expert-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--sh-sm);
  border-left: 4px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}
.expert-card:hover { border-left-color: var(--orange); box-shadow: var(--sh-md); }
.expert-card img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; }
.expert-card-body h4 { color: var(--navy); margin-bottom: 3px; }
.expert-card-body .role { font-size: .76rem; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px; }
.expert-card-body p  { font-size: .88rem; color: var(--g600); }

@media (max-width: 480px) {
  .expert-card { grid-template-columns: 1fr; }
  .expert-card img { width: 80px; height: 80px; }
  .method-step { grid-template-columns: 40px 1fr; }
}

/* SVG Icon Sizing */
.footer-social a svg,
.footer-links a svg,
.social-links a svg,
nav svg,
footer svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
}
