@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Lato:wght@300;400;700&display=swap');

:root {
    --green: #1C4B3A;
    --green-dark: #163a2d;
    --green-light: #2a5e4a;
    --ochre: #C27B3D;
    --ochre-dark: #a86830;
    --ivory: #F5F0E6;
    --ivory-dark: #ede6d8;
    --charcoal: #333333;
    --charcoal-light: #555555;
    --white: #ffffff;
    --border: #d6cfc0;
    --shadow: rgba(28,75,58,0.10);
    --max-width: 1320px;
    --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--green);
    text-wrap: balance;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1.2rem; color: var(--charcoal); }
p:last-child { margin-bottom: 0; }

a { color: var(--ochre); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ochre-dark); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
li { margin-bottom: 0.4rem; }

strong { font-weight: 700; }

blockquote {
    border-left: 4px solid var(--ochre);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--ivory-dark);
    font-style: italic;
    color: var(--charcoal-light);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.bg-ivory { background: var(--ivory); }
.bg-ivory-dark { background: var(--ivory-dark); }
.bg-green { background: var(--green); }
.bg-charcoal { background: var(--charcoal); }
.bg-white { background: var(--white); }

.text-white { color: var(--white) !important; }
.text-ivory { color: var(--ivory) !important; }
.text-green { color: var(--green) !important; }
.text-ochre { color: var(--ochre) !important; }

.text-center { text-align: center; }
.text-left { text-align: left; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── HEADER ─── */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--green);
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
    transition: background 0.3s;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 1rem;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark {
    width: 38px; height: 38px;
    background: var(--ochre);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
}

.logo-mark svg { width: 22px; height: 22px; fill: var(--white); }

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--white);
    letter-spacing: 0.04em;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    padding: 0; margin: 0;
}

.primary-nav a {
    color: rgba(255,255,255,0.82);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.45rem 0.8rem;
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a.active {
    background: rgba(255,255,255,0.12);
    color: var(--white);
}

.primary-nav a.active {
    border-bottom: 2px solid var(--ochre);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    background: var(--green-dark);
    padding: 1rem 2rem 1.5rem;
}

.mobile-nav.open { display: block; }

.mobile-nav ul {
    list-style: none;
    padding: 0; margin: 0;
}

.mobile-nav ul li a {
    display: block;
    color: rgba(255,255,255,0.85);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mobile-nav ul li:last-child a { border-bottom: none; }
.mobile-nav ul li a:hover { color: var(--ochre); }

.header-spacer { height: 68px; }

/* ─── BUTTONS ─── */
.btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.78rem 1.8rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.22s, color 0.22s, border-color 0.22s, box-shadow 0.22s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--ochre);
    color: var(--white);
    border-color: var(--ochre);
}

.btn-primary:hover {
    background: var(--ochre-dark);
    border-color: var(--ochre-dark);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(194,123,61,0.3);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-green {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}

.btn-outline-green:hover {
    background: var(--green);
    color: var(--white);
}

.btn-outline-ochre {
    background: transparent;
    color: var(--ochre);
    border-color: var(--ochre);
}

.btn-outline-ochre:hover {
    background: var(--ochre);
    color: var(--white);
}

.btn-lg { padding: 1rem 2.4rem; font-size: 0.88rem; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.75rem; }

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10,30,22,0.82) 0%, rgba(28,75,58,0.68) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 760px;
}

.hero-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ochre);
    margin-bottom: 1.2rem;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.2rem;
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.2rem;
    max-width: 580px;
}

.hero-sm {
    min-height: 44vh;
    padding: 5rem 0 3.5rem;
}

.hero-sm .hero-content { max-width: 700px; }
.hero-sm h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }

/* ─── SECTION LABEL ─── */
.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ochre);
    margin-bottom: 0.8rem;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    max-width: 680px;
    line-height: 1.8;
}

.section-intro.centered { margin: 0 auto; text-align: center; }

/* ─── GRID ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2-1 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* ─── CARDS ─── */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
}

.card:hover {
    box-shadow: 0 8px 32px var(--shadow);
    transform: translateY(-3px);
}

.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ochre);
    margin-bottom: 0.6rem;
}

.card h3 { color: var(--green); margin-bottom: 0.7rem; font-size: 1.1rem; }
.card p { font-size: 0.9rem; color: var(--charcoal-light); margin-bottom: 1.2rem; }
.card-meta {
    font-size: 0.78rem;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

/* ─── TOPIC PANELS ─── */
.topic-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--green);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.25s;
}

.topic-panel:hover { box-shadow: 0 6px 24px var(--shadow); }

.topic-panel-img { width: 100%; height: 200px; object-fit: cover; }
.topic-panel-body { padding: 1.5rem; }
.topic-panel h3 { color: var(--green); margin-bottom: 0.8rem; }
.topic-panel p { font-size: 0.9rem; color: var(--charcoal-light); }

/* ─── TWO-COL CONTENT ─── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.two-col.reversed { direction: rtl; }
.two-col.reversed > * { direction: ltr; }

.two-col-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0,0,0,0.16);
}

/* ─── MISCONCEPTIONS ─── */
.misconception-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.misconception-item:last-child { border-bottom: none; }

.misconception-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.3rem;
}

.tag-myth { color: var(--ochre); }
.tag-fact { color: #7ecba5; }

/* ─── GLOSSARY RAIL ─── */
.glossary-rail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.glossary-item {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1rem;
    align-items: start;
}

.glossary-item:nth-child(even) { background: var(--ivory); }
.glossary-item:last-child { border-bottom: none; }

.glossary-term {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.glossary-def { font-size: 0.88rem; color: var(--charcoal-light); line-height: 1.6; }

/* ─── TIMELINE ─── */
.timeline { position: relative; padding-left: 2.5rem; }

.timeline::before {
    content: '';
    position: absolute;
    left: 8px; top: 0; bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -2.5rem;
    top: 0.3rem;
    width: 16px; height: 16px;
    background: var(--green);
    border-radius: 50%;
    border: 3px solid var(--ivory);
    box-shadow: 0 0 0 2px var(--green);
}

.timeline-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ochre);
    margin-bottom: 0.3rem;
}

.timeline-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--green);
    margin-bottom: 0.4rem;
}

.timeline-text { font-size: 0.9rem; color: var(--charcoal-light); line-height: 1.6; }

/* ─── STAT STRIP ─── */
.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--green);
    border-radius: var(--radius);
    overflow: hidden;
}

.stat-item {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.stat-item:last-child { border-right: none; }

.stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ochre);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.72);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ─── HISTORY PANELS ─── */
.history-img-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.history-img-pair img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
}

/* ─── ACCORDION/FAQ ─── */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }

.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.2s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--green);
}

.accordion-trigger:hover { background: var(--ivory-dark); }

.accordion-trigger.open { background: var(--ivory-dark); }

.accordion-icon {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border: 2px solid var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s, background 0.2s;
}

.accordion-trigger.open .accordion-icon {
    background: var(--green);
    transform: rotate(45deg);
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--green);
    border-radius: 1px;
}

.accordion-icon { position: relative; }
.accordion-icon::before { width: 10px; height: 2px; }
.accordion-icon::after { width: 2px; height: 10px; }

.accordion-trigger.open .accordion-icon::before,
.accordion-trigger.open .accordion-icon::after { background: var(--white); }

.accordion-panel {
    display: none;
    padding: 0 1.5rem 1.2rem;
    background: var(--white);
    font-size: 0.92rem;
    color: var(--charcoal-light);
    line-height: 1.7;
}

.accordion-panel.open { display: block; }

/* ─── DATA TABLE ─── */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.data-table thead tr {
    background: var(--green);
    color: var(--white);
}

.data-table thead th {
    padding: 0.9rem 1.2rem;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.data-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}

.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: var(--ivory); }

.data-table tbody td {
    padding: 0.85rem 1.2rem;
    color: var(--charcoal);
    vertical-align: top;
}

.data-table tbody td:first-child {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--green);
    font-size: 0.84rem;
}

/* ─── MYTH VS FACT ─── */
.myth-fact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.myth-card, .fact-card {
    padding: 2rem;
    border-radius: var(--radius);
}

.myth-card {
    background: #fdf4ec;
    border: 1px solid #e8c99a;
    border-left: 4px solid var(--ochre);
}

.fact-card {
    background: #edf6f1;
    border: 1px solid #a8d4bd;
    border-left: 4px solid var(--green);
}

.myth-card h3 { color: var(--ochre); }
.fact-card h3 { color: var(--green); }

.myth-label, .fact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: block;
}

.myth-label { color: var(--ochre); }
.fact-label { color: var(--green); }

/* ─── PILLAR PANELS ─── */
.pillar-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    background: var(--white);
    transition: box-shadow 0.25s;
}

.pillar-panel:hover { box-shadow: 0 6px 24px var(--shadow); }

.pillar-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--ivory-dark);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.pillar-panel h3 { color: var(--green); margin-bottom: 0.8rem; }
.pillar-panel p { font-size: 0.9rem; color: var(--charcoal-light); }

/* ─── ENV FACTOR GRID ─── */
.env-factor {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    border-top: 3px solid var(--green);
    transition: box-shadow 0.22s;
}

.env-factor:hover { box-shadow: 0 4px 18px var(--shadow); }

.env-factor h3 {
    font-size: 1rem;
    color: var(--green);
    margin-bottom: 0.6rem;
}

.env-factor p { font-size: 0.88rem; color: var(--charcoal-light); margin: 0; }

/* ─── CONTACT ─── */
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.contact-detail:last-child { border-bottom: none; margin-bottom: 0; }

.contact-icon {
    width: 44px; height: 44px;
    background: var(--green);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; fill: var(--white); }

.contact-detail-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ochre);
    margin-bottom: 0.2rem;
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.6;
}

/* ─── FORM ─── */
.form-group { margin-bottom: 1.5rem; }

.form-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(28,75,58,0.12);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0; margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.breadcrumb li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb li::after { content: '/'; color: rgba(255,255,255,0.4); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--ochre); }
.breadcrumb span { color: var(--ochre); }

/* ─── BLOG ARTICLE ─── */
.article-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
    overflow: hidden;
}

.article-meta-strip {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.article-author-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ochre);
    letter-spacing: 0.06em;
}

.article-date-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
}

.article-body {
    max-width: 820px;
    margin: 0 auto;
}

.article-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
    border-top: 2px solid var(--ivory-dark);
}

.article-body h3 {
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--green);
}

.article-body p { margin-bottom: 1.3rem; }
.article-body ul, .article-body ol { margin-bottom: 1.3rem; }
.article-body li { margin-bottom: 0.5rem; }

/* ─── LEGAL PAGES ─── */
.legal-body {
    max-width: 820px;
    margin: 0 auto;
}

.legal-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--green);
    border-bottom: 2px solid var(--border);
    padding-bottom: 0.5rem;
}

.legal-body p { margin-bottom: 1.1rem; font-size: 0.95rem; }
.legal-body ul { margin-bottom: 1.1rem; }
.legal-body li { font-size: 0.95rem; margin-bottom: 0.5rem; }

/* ─── DIVIDER ─── */
.divider {
    height: 1px;
    background: var(--border);
    margin: 0;
}

.divider-lg {
    height: 1px;
    background: var(--border);
    margin: 3rem 0;
}

/* ─── SECTION HEADER ─── */
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: 1rem; }

/* ─── MISSION BLOCK ─── */
.mission-block {
    background: var(--green);
    padding: 4rem;
    border-radius: var(--radius);
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.mission-block h2 { color: var(--white); margin-bottom: 1.2rem; }
.mission-block p { color: rgba(255,255,255,0.82); font-size: 1.05rem; line-height: 1.8; }

/* ─── HIGHLIGHT BOX ─── */
.highlight-box {
    background: var(--ivory-dark);
    border-left: 4px solid var(--green);
    padding: 1.5rem 2rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 2rem 0;
}

.highlight-box p { color: var(--charcoal); font-size: 0.95rem; margin: 0; }

/* ─── FOOTER ─── */
#site-footer {
    background: #0f2a1f;
    color: rgba(255,255,255,0.75);
    padding: 4rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 280px 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text { color: var(--white); font-size: 1.2rem; }
.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-top: 1rem;
    margin-bottom: 0;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ochre);
    margin-bottom: 1rem;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--ochre); }

.footer-contact p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.footer-disclaimer {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    font-style: italic;
    text-align: center;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-hours {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* ─── COOKIE BANNER ─── */
#cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: #0f2a1f;
    border-top: 2px solid var(--ochre);
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#cookie-banner.visible { transform: translateY(0); }

#cookie-banner p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
    flex: 1;
    min-width: 220px;
}

#cookie-banner a { color: var(--ochre); }

.cookie-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: var(--ochre);
    color: var(--white);
    border: none;
    padding: 0.55rem 1.3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.btn-cookie-accept:hover { background: var(--ochre-dark); }

.btn-cookie-decline {
    background: transparent;
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.55rem 1.3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: var(--radius);
    transition: border-color 0.2s, color 0.2s;
}

.btn-cookie-decline:hover {
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
}

/* ─── THANK YOU PAGE ─── */
.thankyou-wrap {
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ivory);
}

.thankyou-inner {
    text-align: center;
    max-width: 560px;
    padding: 4rem 2rem;
}

.thankyou-icon {
    width: 72px; height: 72px;
    background: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 2rem;
}

.thankyou-icon svg { width: 36px; height: 36px; fill: var(--white); }

/* ─── 404 PAGE ─── */
.notfound-wrap {
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ivory);
    text-align: center;
}

.notfound-code {
    font-family: 'Montserrat', sans-serif;
    font-size: 8rem;
    font-weight: 800;
    color: var(--green);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: -1rem;
}

/* ─── BACK TO TOP ─── */
#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px; height: 44px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, background 0.2s;
    z-index: 900;
}

#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--green-light); }
#back-to-top svg { width: 18px; height: 18px; fill: var(--white); }

/* ─── ANIMATED FADE-IN ─── */
.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stat-strip { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.12); }
}

@media (max-width: 900px) {
    .primary-nav { display: none; }
    .hamburger { display: flex; }

    .two-col,
    .two-col.reversed,
    .grid-2,
    .grid-2-1 { grid-template-columns: 1fr; direction: ltr; }

    .two-col.reversed > * { direction: ltr; }

    .grid-3 { grid-template-columns: 1fr 1fr; }

    .myth-fact-grid { grid-template-columns: 1fr; }
    .history-img-pair { grid-template-columns: 1fr; }
    .glossary-rail { grid-template-columns: 1fr; }
    .glossary-item { grid-template-columns: 1fr; }

    .hero { min-height: 75vh; }
    .hero-sm { min-height: 36vh; }

    .mission-block { padding: 2.5rem 1.5rem; }

    .section { padding: 3.5rem 0; }
}

@media (max-width: 640px) {
    .container { padding: 0 1.2rem; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .stat-strip { grid-template-columns: 1fr 1fr; }

    .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .header-inner { height: 60px; }
    .header-spacer { height: 60px; }

    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.3rem; }

    .article-meta-strip { gap: 0.8rem; }
    .btn-lg { padding: 0.8rem 1.6rem; }
    .mission-block { padding: 2rem 1.2rem; }
    #cookie-banner { padding: 1rem 1.2rem; }
}
