@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
    --primary: #2C3E50;
    --accent-gold: #F39C12;
    --accent-teal: #1ABC9C;
    --accent-silver: #BDC3C7;
    --bg-light: #F8F7F4;
    --bg-white: #FFFFFF;
    --bg-section: #F2F1EE;
    --text-dark: #1A252F;
    --text-body: #3D4A56;
    --text-muted: #6B7A87;
    --text-light: #9AACB8;
    --border-subtle: #D8D5CF;
    --shadow-sm: 0 2px 8px rgba(44,62,80,0.08);
    --shadow-md: 0 6px 24px rgba(44,62,80,0.12);
    --shadow-lg: 0 16px 48px rgba(44,62,80,0.16);
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Open Sans', system-ui, sans-serif;
    --container-max: 1280px;
    --section-py: 96px;
    --section-py-sm: 64px;
}

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

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

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--accent-gold);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.25;
    font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

p:last-child { margin-bottom: 0; }

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.container--narrow {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: var(--section-py) 0;
}

.section--sm {
    padding: var(--section-py-sm) 0;
}

.section--dark {
    background-color: var(--primary);
    color: #E8E4DC;
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
    color: #F0ECE4;
}

.section--gray {
    background-color: var(--bg-section);
}

.section--white {
    background-color: var(--bg-white);
}

.section--accent {
    background-color: #EAE8E3;
}

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

.text-muted { color: var(--text-muted); }
.text-gold { color: var(--accent-gold); }
.text-teal { color: var(--accent-teal); }

.label-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.divider {
    width: 56px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 1.25rem 0 1.75rem;
}

.divider--center {
    margin-left: auto;
    margin-right: auto;
}

.divider--teal {
    background-color: var(--accent-teal);
}

.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 13px 32px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    line-height: 1.3;
}

.btn--primary {
    background-color: var(--primary);
    color: #F0ECE4;
    border-color: var(--primary);
}

.btn--primary:hover {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn--outline:hover {
    background-color: var(--primary);
    color: #F0ECE4;
}

.btn--gold {
    background-color: var(--accent-gold);
    color: #1A252F;
    border-color: var(--accent-gold);
}

.btn--gold:hover {
    background-color: transparent;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.btn--light {
    background-color: #F0ECE4;
    color: var(--primary);
    border-color: #F0ECE4;
}

.btn--light:hover {
    background-color: transparent;
    color: #F0ECE4;
    border-color: #F0ECE4;
}

.read-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s ease, gap 0.2s ease;
}

.read-link:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
    gap: 10px;
}

.read-link::after {
    content: '→';
    font-size: 0.85rem;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 32px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.navbar__logo {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 900;
    color: #F0ECE4;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.navbar__logo span {
    color: var(--accent-gold);
}

.navbar__logo:hover {
    color: #F0ECE4;
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar__nav a {
    display: block;
    padding: 8px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(240,236,228,0.75);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.navbar__nav a:hover,
.navbar__nav a.active {
    color: #F0ECE4;
    border-bottom-color: var(--accent-gold);
}

.navbar__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #F0ECE4;
    transition: all 0.3s ease;
}

.navbar__mobile {
    display: none;
    background-color: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 32px 24px;
}

.navbar__mobile.open {
    display: block;
}

.navbar__mobile a {
    display: block;
    padding: 10px 0;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(240,236,228,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s ease;
}

.navbar__mobile a:hover {
    color: #F0ECE4;
}

/* =====================
   HERO
   ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 72px;
}

.hero--short {
    min-height: 62vh;
}

.hero--page {
    min-height: 44vh;
    align-items: flex-end;
    padding-bottom: 72px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-color: #1A2530;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,62,80,0.82) 0%, rgba(26,37,47,0.65) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 64px 32px;
    max-width: 880px;
}

.hero__content--left {
    text-align: left;
    max-width: 760px;
}

.hero__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.25rem;
}

.hero h1 {
    color: #F0ECE4;
    margin-bottom: 1.25rem;
}

.hero__sub {
    font-size: 1.05rem;
    color: rgba(240,236,228,0.8);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero__sub--left {
    margin: 0 0 2.5rem;
}

/* =====================
   CARDS
   ===================== */
.card-grid {
    display: grid;
    gap: 28px;
}

.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card__img img {
    transform: scale(1.04);
}

.card__body {
    padding: 28px;
}

.card__meta {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.6rem;
}

.card__title {
    font-size: 1.15rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.card__excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

/* =====================
   TWO-COLUMN LAYOUT
   ===================== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.two-col--reverse .two-col__img {
    order: 2;
}

.two-col--reverse .two-col__text {
    order: 1;
}

.two-col__img {
    position: relative;
}

.two-col__img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.two-col__img--tall img {
    height: 600px;
}

.two-col__text h2 {
    margin-bottom: 0.75rem;
}

.two-col__text h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.6rem;
    color: var(--primary);
}

/* =====================
   STAT / SIDEBAR RAIL
   ===================== */
.rail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    align-items: start;
}

.stat-rail {
    background-color: var(--primary);
    padding: 40px 32px;
    color: #E8E4DC;
}

.stat-rail__item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat-rail__item:first-child { padding-top: 0; }
.stat-rail__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-rail__value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.stat-rail__label {
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(240,236,228,0.75);
}

/* =====================
   MISCONCEPTIONS
   ===================== */
.misconception-item {
    padding: 32px 0;
    border-bottom: 1px solid var(--border-subtle);
}

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

.misconception-item__claim {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.misconception-item__badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    margin-right: 8px;
    vertical-align: middle;
}

.badge--myth {
    background-color: #E8D5B0;
    color: #8B6000;
}

.badge--context {
    background-color: #C8EAE5;
    color: #0D6E60;
}

/* =====================
   GLOSSARY
   ===================== */
.glossary-list {
    list-style: none;
    padding: 0;
}

.glossary-list li {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-subtle);
    align-items: start;
    margin-bottom: 0;
}

.glossary-list li:last-child { border-bottom: none; }

.glossary-list__term {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
}

.glossary-list__def {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* =====================
   ACCORDION / FAQ
   ===================== */
.accordion {
    border-top: 1px solid var(--border-subtle);
}

.accordion__item {
    border-bottom: 1px solid var(--border-subtle);
}

.accordion__btn {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.accordion__btn h3 {
    font-size: 1.05rem;
    color: var(--primary);
    transition: color 0.2s ease;
}

.accordion__btn:hover h3 { color: var(--accent-gold); }

.accordion__icon {
    width: 28px;
    height: 28px;
    border: 2px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: all 0.25s ease;
}

.accordion__item.open .accordion__icon {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #1A252F;
    transform: rotate(45deg);
}

.accordion__body {
    display: none;
    padding: 0 0 24px;
}

.accordion__body.open {
    display: block;
}

.accordion__body p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* =====================
   TIMELINE
   ===================== */
.timeline {
    position: relative;
    padding-left: 40px;
}

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

.timeline__item {
    position: relative;
    margin-bottom: 40px;
}

.timeline__item:last-child { margin-bottom: 0; }

.timeline__dot {
    position: absolute;
    left: -34px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    border: 3px solid var(--bg-white);
    box-shadow: 0 0 0 2px var(--accent-gold);
}

.timeline__period {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-teal);
    margin-bottom: 0.3rem;
}

.timeline__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.timeline__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* =====================
   TABLE
   ===================== */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.data-table th {
    background-color: var(--primary);
    color: #F0ECE4;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 20px;
    text-align: left;
}

.data-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-body);
    vertical-align: top;
}

.data-table tr:last-child td { border-bottom: none; }

.data-table tr:nth-child(even) td {
    background-color: var(--bg-section);
}

/* =====================
   BREADCRUMB
   ===================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.breadcrumb a:hover { color: var(--accent-gold); }

.breadcrumb__sep {
    color: var(--text-light);
}

.breadcrumb__current {
    color: var(--text-dark);
    font-weight: 600;
}

/* =====================
   SECTION HEADER
   ===================== */
.section-header {
    margin-bottom: 56px;
}

.section-header--center {
    text-align: center;
}

.section-header--center .divider {
    margin-left: auto;
    margin-right: auto;
}

/* =====================
   CONTACT FORM
   ===================== */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 13px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--bg-white);
    border: 1.5px solid var(--border-subtle);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    line-height: 1.5;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44,62,80,0.08);
}

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

/* =====================
   CONTACT INFO
   ===================== */
.contact-info__item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-info__icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.contact-info__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-info__value {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background-color: var(--primary);
    color: rgba(240,236,228,0.7);
    padding: 72px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: #F0ECE4;
    margin-bottom: 1rem;
}

.footer__brand span { color: var(--accent-gold); }

.footer__desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(240,236,228,0.6);
    margin-bottom: 0;
}

.footer__col-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.25rem;
}

.footer__links {
    list-style: none;
    padding: 0;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 0.88rem;
    color: rgba(240,236,228,0.6);
    transition: color 0.2s ease;
}

.footer__links a:hover { color: #F0ECE4; }

.footer__contact-item {
    font-size: 0.88rem;
    color: rgba(240,236,228,0.6);
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer__contact-item a {
    color: rgba(240,236,228,0.6);
}

.footer__contact-item a:hover { color: #F0ECE4; }

.footer__bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__copy {
    font-size: 0.8rem;
    color: rgba(240,236,228,0.45);
}

.footer__note {
    font-size: 0.78rem;
    color: rgba(240,236,228,0.45);
    font-style: italic;
}

.footer__legal {
    font-size: 0.78rem;
    color: rgba(240,236,228,0.45);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__legal a {
    color: rgba(240,236,228,0.45);
    transition: color 0.2s ease;
}

.footer__legal a:hover { color: rgba(240,236,228,0.8); }

/* =====================
   COOKIE BANNER
   ===================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1A252F;
    border-top: 3px solid var(--accent-gold);
    z-index: 9999;
    padding: 20px 32px;
    display: none;
}

.cookie-banner.visible { display: block; }

.cookie-banner__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner__text {
    font-size: 0.88rem;
    color: rgba(240,236,228,0.8);
    flex: 1;
    min-width: 260px;
}

.cookie-banner__text a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 9px 22px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.cookie-btn--accept {
    background-color: var(--accent-gold);
    color: #1A252F;
    border-color: var(--accent-gold);
}

.cookie-btn--accept:hover {
    background-color: transparent;
    color: var(--accent-gold);
}

.cookie-btn--decline {
    background-color: transparent;
    color: rgba(240,236,228,0.7);
    border-color: rgba(240,236,228,0.25);
}

.cookie-btn--decline:hover {
    border-color: rgba(240,236,228,0.6);
    color: rgba(240,236,228,1);
}

/* =====================
   BLOG ARTICLE
   ===================== */
.article-header {
    margin-bottom: 48px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.article-meta__author {
    font-weight: 600;
    color: var(--text-dark);
}

.article-hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    margin-bottom: 48px;
}

.article-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.article-body h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.article-body p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-body);
}

.article-body ul,
.article-body ol {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.75;
}

.article-blockquote {
    border-left: 4px solid var(--accent-gold);
    padding: 20px 28px;
    margin: 2rem 0;
    background-color: var(--bg-section);
}

.article-blockquote p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* =====================
   LEGAL PAGES
   ===================== */
.legal-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--primary);
}

.legal-body p {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--text-body);
}

.legal-body ul {
    font-size: 0.97rem;
    color: var(--text-body);
    line-height: 1.75;
}

.legal-updated {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
    background-color: var(--bg-section);
    padding: 6px 14px;
}

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
    background-color: var(--primary);
    padding: 96px 0 72px;
    margin-top: 72px;
}

.page-hero h1 {
    color: #F0ECE4;
    margin-bottom: 0.75rem;
}

.page-hero .hero__sub {
    margin: 0;
}

/* =====================
   THANK YOU PAGE
   ===================== */
.thankyou-wrap {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 32px;
}

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

/* =====================
   404
   ===================== */
.not-found-wrap {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 32px;
    background-color: var(--bg-light);
}

.not-found-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    color: var(--accent-silver);
    line-height: 1;
    margin-bottom: 1rem;
}

/* =====================
   SECTION DIVIDER
   ===================== */
.visual-divider {
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-teal) 100%);
}

/* =====================
   FRAMEWORK CARDS
   ===================== */
.framework-card {
    border-left: 4px solid var(--accent-gold);
    padding: 28px;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-subtle);
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.framework-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.framework-card:nth-child(2) {
    border-left-color: var(--accent-teal);
}

.framework-card:nth-child(3) {
    border-left-color: #8E9BA8;
}

.framework-card:nth-child(4) {
    border-left-color: var(--accent-gold);
}

.framework-card__icon {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.framework-card__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.framework-card__text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
    background-color: var(--primary);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: #F0ECE4;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(240,236,228,0.7);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
}

/* =====================
   COMPARISON MATRIX
   ===================== */
.matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background-color: var(--border-subtle);
}

.matrix-cell {
    background-color: var(--bg-white);
    padding: 24px 20px;
}

.matrix-cell--header {
    background-color: var(--primary);
    color: #F0ECE4;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.matrix-cell__title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.matrix-cell__text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1100px) {
    .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .matrix-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    :root {
        --section-py: 72px;
        --section-py-sm: 48px;
    }
    .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .two-col--reverse .two-col__img { order: unset; }
    .two-col--reverse .two-col__text { order: unset; }
    .two-col__img img { height: 340px; }
    .two-col__img--tall img { height: 380px; }
    .rail-layout {
        grid-template-columns: 1fr;
    }
    .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .glossary-list li { grid-template-columns: 1fr; gap: 6px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .container--narrow { padding: 0 20px; }
    .navbar__nav { display: none; }
    .navbar__toggle { display: flex; }
    .card-grid--3 { grid-template-columns: 1fr; }
    .card-grid--2 { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
    .footer__legal { flex-direction: column; gap: 8px; }
    .hero__content { padding: 48px 20px; }
    .article-hero-img { height: 280px; }
    .matrix-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .cookie-banner__inner { flex-direction: column; }
    .page-hero { padding: 72px 0 48px; }
}
