/* =========================================
   ZELVON — Main Stylesheet
   Paleta: #FFFFFF | #1B3A2D | #E8EAED | #B8973A
   ========================================= */

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

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

:root {
  --white:   #FFFFFF;
  --green:   #1B3A2D;
  --green-light: #274d3c;
  --green-pale: #eef3f0;
  --gray:    #E8EAED;
  --gray-mid: #c4c9d1;
  --gray-dark: #6b7280;
  --gold:    #B8973A;
  --gold-light: #d4b55a;
  --text:    #1a1e2e;
  --text-mid: #3d4350;
  --radius:  3px;
  --max-w:   1180px;
  --serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:    'DM Sans', 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ---- LINKS ---- */
a { color: var(--green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

/* ---- UTILITY ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.label-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  margin-bottom: 14px;
}
.section-divider {
  border: none;
  border-top: 1px solid var(--gray);
  margin: 0;
}
.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 18px 0 24px;
}

/* ============================
   TOP BAR
   ============================ */
.topbar {
  background: var(--green);
  color: rgba(255,255,255,.7);
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--green-light);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,.7); }
.topbar a:hover { color: var(--gold); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }

/* ============================
   HEADER / NAV
   ============================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.logo-main {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -.02em;
}
.logo-sub {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* NAV */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 8px 15px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .01em;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
  color: var(--green);
  border-bottom-color: var(--gold);
}

/* Dropdown */
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray);
  border-top: 2px solid var(--gold);
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  z-index: 200;
}
.dropdown ul { list-style: none; padding: 8px 0; }
.dropdown ul li a {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  color: var(--text-mid);
  border-left: 3px solid transparent;
  transition: all .18s;
}
.dropdown ul li a:hover {
  color: var(--green);
  border-left-color: var(--gold);
  background: var(--green-pale);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  transition: all .3s;
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--green);
  color: rgba(255,255,255,.8);
  padding: 60px 0 0;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .logo-main { color: var(--white); font-size: 22px; }
.footer-brand .logo-sub { color: var(--gold); }
.footer-brand p {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.7); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 13px; color: rgba(255,255,255,.7); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ============================
   HERO — HOMEPAGE
   ============================ */
.hero-home {
  background: var(--green);
  color: var(--white);
  padding: 0;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-home-content {
  padding: 80px 64px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-home-content .label-tag { color: var(--gold-light); border-color: var(--gold-light); }
.hero-home-content h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-home-content p {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-home-image {
  position: relative;
  overflow: hidden;
}
.hero-home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .55;
}
.hero-home-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--green) 0%, transparent 40%);
}

/* ============================
   HERO — INNER PAGES
   ============================ */
.hero-inner {
  background: var(--green);
  padding: 52px 0 48px;
  border-bottom: 3px solid var(--gold);
}
.hero-inner .breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.hero-inner .breadcrumb a { color: rgba(255,255,255,.5); }
.hero-inner .breadcrumb a:hover { color: var(--gold); }
.hero-inner .breadcrumb span { margin: 0 6px; }
.hero-inner h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.22;
  max-width: 720px;
}
.hero-inner p.lead {
  font-size: 16px;
  color: rgba(255,255,255,.72);
  max-width: 640px;
  margin-top: 16px;
  line-height: 1.7;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 12px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
}
.btn-sm { padding: 8px 18px; font-size: 12.5px; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ============================
   STAT BAR
   ============================ */
.stat-bar {
  background: var(--gray);
  border-bottom: 1px solid var(--gray-mid);
  padding: 20px 0;
}
.stat-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 24px;
  border-right: 1px solid var(--gray-mid);
}
.stat-item:last-child { border-right: none; }
.stat-item .stat-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 12px;
  color: var(--gray-dark);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ============================
   SECTIONS — GENERAL
   ============================ */
section { padding: 72px 0; }
.section-header { margin-bottom: 48px; }
.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.22;
}
.section-header p {
  font-size: 15.5px;
  color: var(--text-mid);
  max-width: 580px;
  margin-top: 12px;
  line-height: 1.7;
}
.section-bg-gray { background: var(--gray); }
.section-bg-green { background: var(--green); color: var(--white); }
.section-bg-green .section-header h2 { color: var(--white); }
.section-bg-green .section-header p { color: rgba(255,255,255,.72); }

/* ============================
   TWO-COLUMN LAYOUT
   ============================ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col-reverse { grid-template-columns: 1fr 1fr; }
.two-col-3-2 { grid-template-columns: 3fr 2fr; }
.two-col-2-3 { grid-template-columns: 2fr 3fr; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* ============================
   CARDS
   ============================ */
.card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .22s, border-color .22s;
}
.card:hover { box-shadow: 0 6px 28px rgba(27,58,45,.09); border-color: var(--gray-mid); }
.card-image img { width: 100%; height: 200px; object-fit: cover; display: block; }
.card-body { padding: 24px; }
.card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.card-body h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.3;
  margin-bottom: 10px;
}
.card-body h3 a { color: inherit; }
.card-body h3 a:hover { color: var(--gold); }
.card-body p { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.card-meta { font-size: 12px; color: var(--gray-dark); display: flex; gap: 16px; flex-wrap: wrap; padding-top: 14px; border-top: 1px solid var(--gray); }

/* Card — horizontal */
.card-h { display: grid; grid-template-columns: 200px 1fr; }
.card-h .card-image img { height: 100%; }

/* ============================
   FEATURED ARTICLE
   ============================ */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  overflow: hidden;
}
.featured-article .feat-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-article .feat-body {
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--gray);
}
.featured-article .feat-body h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.28;
  margin-bottom: 14px;
}
.featured-article .feat-body p { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }

/* ============================
   SIDEBAR LAYOUT
   ============================ */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.sidebar-widget {
  background: var(--gray);
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 28px;
  border-left: 3px solid var(--gold);
}
.sidebar-widget h3 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 16px;
}
.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li {
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-mid);
  font-size: 13.5px;
}
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { color: var(--text-mid); }
.sidebar-widget ul li a:hover { color: var(--green); }

/* ============================
   ARTICLE BODY (Rich Text)
   ============================ */
.article-body h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  margin: 36px 0 14px;
}
.article-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
  margin: 28px 0 12px;
}
.article-body p { font-size: 15.5px; line-height: 1.78; color: var(--text-mid); margin-bottom: 18px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 18px; }
.article-body li { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 6px; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  background: var(--green-pale);
  margin: 28px 0;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--green);
  font-style: italic;
}
.article-body .data-callout {
  background: var(--green);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  margin: 28px 0;
}
.article-body .data-callout .callout-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.article-body .data-callout p { color: rgba(255,255,255,.8); margin: 0; font-size: 14px; }
.article-body img { width: 100%; border-radius: var(--radius); margin: 24px 0; display: block; }
.article-body .img-caption { font-size: 12.5px; color: var(--gray-dark); text-align: center; margin-top: -16px; margin-bottom: 24px; font-style: italic; }

/* ============================
   DATA TABLE
   ============================ */
.data-table-wrap { overflow-x: auto; margin: 24px 0; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table thead tr { background: var(--green); }
.data-table thead th {
  padding: 13px 16px;
  text-align: left;
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.data-table tbody tr { border-bottom: 1px solid var(--gray); }
.data-table tbody tr:nth-child(even) { background: var(--gray); }
.data-table tbody td { padding: 12px 16px; color: var(--text-mid); }
.data-table .td-num { font-family: var(--serif); font-weight: 600; color: var(--green); }
.data-table .td-up { color: #2d7a47; }
.data-table .td-down { color: #c0392b; }

/* ============================
   DATA GRID (Highlight boxes)
   ============================ */
.data-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0; }
.data-grid-item {
  background: var(--green-pale);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 24px 20px;
  border-top: 3px solid var(--gold);
}
.data-grid-item .dg-num {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.data-grid-item .dg-label { font-size: 13px; color: var(--gray-dark); margin-top: 6px; }

/* ============================
   TIMELINE
   ============================ */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--gray-mid);
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-item h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}
.timeline-item .timeline-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.timeline-item p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ============================
   TEAM CARDS
   ============================ */
.team-card { text-align: center; }
.team-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); margin-bottom: 16px; }
.team-card h3 { font-family: var(--serif); font-size: 18px; color: var(--green); margin-bottom: 4px; }
.team-card .role { font-size: 12px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.team-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; }

/* ============================
   CONTACT FORM
   ============================ */
.contact-form-wrap { background: var(--white); border: 1px solid var(--gray); padding: 40px; border-radius: var(--radius); border-top: 3px solid var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--green); margin-bottom: 6px; letter-spacing: .02em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27,58,45,.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: var(--green-pale);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--green);
  font-size: 15px;
  margin-top: 16px;
  align-items: center;
  gap: 14px;
}
.form-success.show { display: flex; }
.form-success-icon { font-size: 24px; flex-shrink: 0; }

/* ============================
   ACCORDION / FAQ
   ============================ */
.faq-item { border-bottom: 1px solid var(--gray); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: 20px; font-weight: 300; flex-shrink: 0; transition: transform .25s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 20px; font-size: 14.5px; color: var(--text-mid); line-height: 1.75; }
.faq-answer.open { display: block; }

/* ============================
   NEWSLETTER / CTA BAND
   ============================ */
.cta-band {
  background: var(--green);
  padding: 60px 0;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-band p { font-size: 15px; color: rgba(255,255,255,.72); max-width: 520px; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  padding: 12px 18px;
  font-size: 14px;
  font-family: var(--sans);
  border: none;
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
  width: 280px;
  border: 1px solid rgba(255,255,255,.2);
  border-right: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form button {
  padding: 12px 22px;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--gold-light); }

/* ============================
   PAGINATION
   ============================ */
.pagination { display: flex; gap: 6px; align-items: center; margin-top: 48px; }
.page-item a, .page-item span {
  display: block;
  padding: 8px 14px;
  font-size: 13.5px;
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  color: var(--text-mid);
  transition: all .18s;
}
.page-item a:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }
.page-item.active span { background: var(--green); color: var(--white); border-color: var(--green); }

/* ============================
   POLICY PAGES
   ============================ */
.policy-body { max-width: 780px; margin: 0 auto; padding: 60px 24px; }
.policy-body h1 { font-family: var(--serif); font-size: 36px; color: var(--green); margin-bottom: 8px; }
.policy-body .policy-meta { font-size: 13px; color: var(--gray-dark); margin-bottom: 40px; padding-bottom: 20px; border-bottom: 2px solid var(--gold); }
.policy-body h2 { font-family: var(--serif); font-size: 22px; color: var(--green); margin: 36px 0 12px; }
.policy-body h3 { font-family: var(--serif); font-size: 18px; color: var(--green); margin: 24px 0 10px; }
.policy-body p { font-size: 15px; color: var(--text-mid); line-height: 1.78; margin-bottom: 16px; }
.policy-body ul, .policy-body ol { padding-left: 22px; margin-bottom: 16px; }
.policy-body li { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 6px; }
.policy-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.policy-body table th { background: var(--green); color: var(--white); padding: 10px 14px; text-align: left; }
.policy-body table td { padding: 10px 14px; border-bottom: 1px solid var(--gray); color: var(--text-mid); }
.policy-body table tr:nth-child(even) td { background: var(--gray); }

/* ============================
   COOKIE BANNER
   ============================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green);
  color: rgba(255,255,255,.85);
  padding: 16px 0;
  z-index: 999;
  display: none;
  border-top: 2px solid var(--gold);
}
.cookie-banner.show { display: block; }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-text { font-size: 13.5px; line-height: 1.6; max-width: 700px; }
.cookie-text a { color: var(--gold); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s;
}
.cookie-btn-accept:hover { background: var(--gold-light); }
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3);
  padding: 9px 20px;
  font-family: var(--sans);
  font-size: 13px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .2s;
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,.7); color: var(--white); }

/* ============================
   TAGS / BADGES
   ============================ */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.tag-green { background: var(--green-pale); color: var(--green); }
.tag-gold { background: #f5edd6; color: #8a6c22; }
.tag-gray { background: var(--gray); color: var(--gray-dark); }

/* ============================
   METHODOLOGY STEPS
   ============================ */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.step-item { padding: 28px 24px; background: var(--white); border: 1px solid var(--gray); border-radius: var(--radius); border-top: 3px solid var(--gold); }
.step-num { font-family: var(--serif); font-size: 44px; font-weight: 700; color: var(--gray-mid); line-height: 1; margin-bottom: 14px; }
.step-item h3 { font-family: var(--serif); font-size: 18px; color: var(--green); margin-bottom: 10px; }
.step-item p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ============================
   EVENTS
   ============================ */
.event-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 16px;
  align-items: start;
  transition: box-shadow .2s;
}
.event-card:hover { box-shadow: 0 4px 20px rgba(27,58,45,.08); }
.event-date-box {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 12px 8px;
  border-radius: var(--radius);
  line-height: 1;
}
.event-date-box .day { font-family: var(--serif); font-size: 28px; font-weight: 700; }
.event-date-box .month { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); margin-top: 4px; }
.event-info h3 { font-family: var(--serif); font-size: 18px; color: var(--green); margin-bottom: 6px; }
.event-info p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; margin-bottom: 10px; }
.event-meta { display: flex; gap: 20px; font-size: 12px; color: var(--gray-dark); }

/* ============================
   SECTORS GRID
   ============================ */
.sector-item {
  padding: 28px;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  background: var(--white);
  border-bottom: 3px solid transparent;
  transition: all .22s;
}
.sector-item:hover { border-bottom-color: var(--gold); box-shadow: 0 4px 20px rgba(27,58,45,.07); }
.sector-icon { font-size: 32px; margin-bottom: 14px; }
.sector-item h3 { font-family: var(--serif); font-size: 18px; color: var(--green); margin-bottom: 8px; }
.sector-item p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; }

/* ============================
   BREADCRUMB
   ============================ */
.breadcrumb-bar { padding: 12px 0; background: var(--gray); border-bottom: 1px solid var(--gray-mid); }
.breadcrumb-bar .breadcrumb { font-size: 13px; color: var(--gray-dark); }
.breadcrumb-bar .breadcrumb a { color: var(--gray-dark); }
.breadcrumb-bar .breadcrumb a:hover { color: var(--green); }
.breadcrumb-bar .breadcrumb span { margin: 0 7px; }

/* ============================
   SITEMAP
   ============================ */
.sitemap-section { margin-bottom: 40px; }
.sitemap-section h2 { font-family: var(--serif); font-size: 22px; color: var(--green); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--gray); }
.sitemap-section ul { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.sitemap-section ul li a { font-size: 14.5px; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.sitemap-section ul li a:hover { color: var(--green); }
.sitemap-section ul li a::before { content: '→'; color: var(--gold); font-size: 12px; }

/* ============================
   404
   ============================ */
.error-page { text-align: center; padding: 100px 24px; }
.error-code { font-family: var(--serif); font-size: 120px; font-weight: 700; color: var(--gray); line-height: 1; }
.error-page h1 { font-family: var(--serif); font-size: 32px; color: var(--green); margin-bottom: 16px; }
.error-page p { font-size: 15.5px; color: var(--text-mid); max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }

/* ============================
   INDICATORS BAR
   ============================ */
.indicators-bar { background: var(--green); padding: 0; overflow: hidden; }
.indicators-track { display: flex; gap: 0; }
.indicator-item { padding: 14px 28px; border-right: 1px solid rgba(255,255,255,.1); flex-shrink: 0; display: flex; align-items: center; gap: 12px; }
.indicator-name { font-size: 12px; color: rgba(255,255,255,.6); }
.indicator-val { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--white); }
.indicator-change { font-size: 12px; font-weight: 600; }
.ind-up { color: #5dba7d; }
.ind-down { color: #e57373; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .newsletter-form input { width: 220px; }
  .hero-home { grid-template-columns: 1fr; min-height: auto; }
  .hero-home-image { height: 320px; }
  .hero-home-content { padding: 60px 24px; }
  .featured-article { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr 1fr; }
  .data-grid { grid-template-columns: 1fr 1fr; }
  .four-col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; inset: 0; top: 70px; background: var(--white); flex-direction: column; align-items: flex-start; padding: 24px; overflow-y: auto; z-index: 99; border-top: 1px solid var(--gray); }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; width: 100%; }
  .main-nav > ul > li > a { padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--gray); }
  .dropdown { position: static; box-shadow: none; border: none; background: var(--gray); }
  .dropdown ul li a { padding: 10px 16px; }
  .has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .nav-toggle { display: flex; }
  .topbar { display: none; }
  .two-col, .two-col-3-2, .two-col-2-3, .three-col, .four-col { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .stat-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: 1fr; }
  .data-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .card-h { grid-template-columns: 1fr; }
  .indicators-bar { overflow-x: auto; }
  section { padding: 48px 0; }
  .hero-inner { padding: 36px 0 32px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .sitemap-section ul { grid-template-columns: 1fr; }
  .hero-home-content { padding: 48px 24px; }
}
