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

:root {
    --bg-light: #FAF9F6;
    --green: #4A635D;
    --sand: #C8A97E;
    --dark: #2A2A2A;
    --mid-gray: #7A7A7A;
    --border: #E0DDD6;
    --container: 1000px;
    --text-col: 700px;
}

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

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

body {
    background-color: var(--bg-light);
    color: var(--dark);
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

p {
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.75;
    color: var(--dark);
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

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

.text-col {
    max-width: var(--text-col);
    margin: 0 auto;
}

.sand-accent {
    color: var(--sand);
}

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

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

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

/* ========== HEADER ========== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border);
    height: 64px;
    display: flex;
    align-items: center;
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.header-logo:hover {
    color: var(--green);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--mid-gray);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--dark);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--dark);
    transition: all 0.25s ease;
}

/* ========== MAIN OFFSET ========== */

.page-body {
    padding-top: 64px;
}

/* ========== PANELS ========== */

.panel {
    width: 100%;
    padding: 96px 24px;
}

.panel--green {
    background-color: var(--green);
}

.panel--green h1,
.panel--green h2,
.panel--green h3,
.panel--green p,
.panel--green .intro-label {
    color: var(--bg-light);
}

.panel--dark {
    background-color: var(--dark);
}

.panel--dark h1,
.panel--dark h2,
.panel--dark h3,
.panel--dark p {
    color: var(--bg-light);
}

.panel--light {
    background-color: var(--bg-light);
}

.panel--sand {
    background-color: #F3EDE3;
}

.panel--xs { padding: 48px 24px; }
.panel--sm { padding: 64px 24px; }
.panel--lg { padding: 128px 24px; }

/* ========== INTRO CARD ========== */

.intro-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sand);
    display: block;
    margin-bottom: 16px;
}

.intro-abstract {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--mid-gray);
    max-width: 680px;
    margin: 0 auto;
}

/* ========== HERO PANEL ========== */

.hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    color: var(--bg-light);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
}

.hero-title .accent {
    color: var(--sand);
}

.hero-sub {
    color: rgba(250,249,246,0.8);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 480px;
}

.hero-cta {
    display: inline-block;
    margin-top: 8px;
    padding: 14px 32px;
    background-color: transparent;
    border: 1px solid rgba(250,249,246,0.5);
    color: var(--bg-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: border-color 0.2s ease, color 0.2s ease;
    align-self: flex-start;
}

.hero-cta:hover {
    border-color: var(--sand);
    color: var(--sand);
}

.hero-image-wrap {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== TOPIC CARDS ========== */

.topic-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.topic-card {
    background-color: var(--bg-light);
    padding: 40px 32px;
    border: 1px solid var(--border);
}

.topic-number {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--sand);
    display: block;
    margin-bottom: 16px;
}

.topic-card h3 {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.topic-card p {
    font-size: 0.92rem;
    color: var(--mid-gray);
}

/* ========== TWO COLUMN ========== */

.two-col {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.two-col--text-first .two-col-image {
    order: 2;
}

.two-col-image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.two-col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.two-col-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.two-col-text h2 {
    line-height: 1.2;
}

/* ========== MATRIX TABLE ========== */

.matrix-wrap {
    max-width: var(--container);
    margin: 0 auto;
}

.matrix-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.matrix-table th {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 20px;
    text-align: left;
    background-color: var(--dark);
    color: var(--bg-light);
    border: none;
}

.matrix-table th:first-child {
    background-color: var(--green);
}

.matrix-table td {
    padding: 18px 20px;
    font-family: 'Playfair Display', serif;
    font-size: 0.96rem;
    line-height: 1.5;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.matrix-table tr:nth-child(even) td {
    background-color: rgba(74,99,93,0.04);
}

.matrix-table td:first-child {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--dark);
    border-left: 3px solid var(--sand);
}

/* ========== LONGREAD BLOCK ========== */

.longread-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 48px;
}

.longread-index {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 4px;
}

.longread-num {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sand);
    line-height: 1;
}

.longread-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.longread-section h3 {
    margin-bottom: 12px;
}

/* ========== GLOSSARY RAIL ========== */

.glossary-rail {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start;
}

.glossary-sidebar h3 {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-bottom: 24px;
}

.glossary-terms {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.glossary-term {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}

.glossary-term-word {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    display: block;
    transition: color 0.2s;
}

.glossary-term:hover .glossary-term-word {
    color: var(--green);
}

.glossary-main {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.glossary-entry {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

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

.glossary-entry-term {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 8px;
    display: block;
}

/* ========== FAQ BLOCK ========== */

.faq-list {
    max-width: var(--text-col);
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    padding: 22px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    line-height: 1.4;
}

.faq-question-mark {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: var(--sand);
    flex-shrink: 0;
    margin-top: 1px;
}

.faq-answer {
    display: none;
    padding: 0 0 22px;
    font-family: 'Playfair Display', serif;
    font-size: 0.96rem;
    line-height: 1.7;
    color: var(--mid-gray);
}

.faq-answer.open {
    display: block;
}

/* ========== STAT STRIP ========== */

.stat-strip {
    width: 100%;
    background-color: var(--green);
    padding: 48px 24px;
}

.stat-strip-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    gap: 0;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 16px 24px;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--sand);
    line-height: 1;
    display: block;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250,249,246,0.75);
    display: block;
    margin-top: 8px;
}

/* ========== CONTACT PANEL ========== */

.contact-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sand);
}

.contact-info-value {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--dark);
}

.contact-info-value a {
    color: var(--dark);
    transition: color 0.2s;
}

.contact-info-value a:hover {
    color: var(--green);
}

/* ========== FORM ========== */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mid-gray);
}

.form-input,
.form-textarea {
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    padding: 14px 16px;
    font-family: 'Playfair Display', serif;
    font-size: 0.96rem;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s ease;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--green);
}

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

.form-submit {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--dark);
    color: var(--bg-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    align-self: flex-start;
}

.form-submit:hover {
    background-color: var(--green);
}

/* ========== BLOG GRID ========== */

.blog-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.blog-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.blog-card:hover .blog-card-image img {
    transform: scale(1.03);
}

.blog-card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.blog-card-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sand);
}

.blog-card h3 {
    font-size: 1.05rem;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.92rem;
    color: var(--mid-gray);
    line-height: 1.6;
}

.blog-card-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
    margin-top: auto;
    padding-top: 12px;
    transition: color 0.2s;
}

.blog-card-link:hover {
    color: var(--sand);
}

/* ========== ARTICLE / BLOG PAGE ========== */

.article-hero {
    width: 100%;
    padding: 80px 24px 64px;
    background-color: var(--green);
}

.article-hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
}

.article-hero h1 {
    color: var(--bg-light);
    max-width: 760px;
    margin: 0 auto 24px;
}

.article-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(250,249,246,0.6);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.article-meta-sep {
    color: var(--sand);
}

.article-image-full {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
}

.article-image-full img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 24px 96px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.article-body h2 {
    margin-top: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--sand);
}

.article-body h3 {
    color: var(--green);
    margin-top: 8px;
}

.article-body p {
    line-height: 1.8;
}

.article-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0;
}

.article-body ul li {
    padding-left: 20px;
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: 0.98rem;
    line-height: 1.7;
}

.article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--sand);
}

/* ========== TIMELINE ========== */

.timeline {
    max-width: var(--text-col);
    margin: 32px auto 0;
    position: relative;
    padding-left: 48px;
}

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

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--sand);
    border: 2px solid var(--bg-light);
    box-shadow: 0 0 0 2px var(--sand);
}

.timeline-year {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 6px;
    display: block;
}

.timeline-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 0.93rem;
    color: var(--mid-gray);
    line-height: 1.65;
}

/* ========== SEASON TIMELINE ========== */

.season-strip {
    max-width: var(--container);
    margin: 32px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.season-block {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.season-block:nth-child(1) { background-color: #EEF2F0; }
.season-block:nth-child(2) { background-color: #F5F0E8; }
.season-block:nth-child(3) { background-color: #F0EDE7; }
.season-block:nth-child(4) { background-color: #EAEFF0; }

.season-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sand);
}

.season-block h3 {
    font-size: 0.95rem;
    color: var(--dark);
}

.season-block ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.season-block ul li {
    font-family: 'Playfair Display', serif;
    font-size: 0.88rem;
    color: var(--mid-gray);
    padding-left: 14px;
    position: relative;
}

.season-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--sand);
}

/* ========== ASYMMETRIC PANELS ========== */

.asym-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.asym-grid.reverse {
    grid-template-columns: 1fr 2fr;
}

/* ========== COMPARISON TABLE ========== */

.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
}

.compare-table th {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 20px;
    text-align: left;
    background-color: var(--green);
    color: var(--bg-light);
}

.compare-table td {
    padding: 16px 20px;
    font-family: 'Playfair Display', serif;
    font-size: 0.94rem;
    line-height: 1.5;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.compare-table tr:nth-child(even) td {
    background-color: rgba(74,99,93,0.04);
}

.compare-table td:first-child {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--dark);
}

/* ========== LEGAL PAGES ========== */

.legal-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 80px 24px 96px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.legal-body h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 8px;
}

.legal-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: var(--mid-gray);
    margin-top: -32px;
}

.legal-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-section h2 {
    font-size: 1.1rem;
    color: var(--green);
}

.legal-section p,
.legal-section ul li {
    font-size: 0.96rem;
    line-height: 1.75;
    color: var(--mid-gray);
}

.legal-section ul {
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.legal-section ul li {
    list-style: disc;
    padding-left: 4px;
    font-family: 'Playfair Display', serif;
}

/* ========== ABOUT ========== */

.about-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 24px;
}

.about-narrow h1 {
    margin-bottom: 8px;
}

.about-intro {
    font-family: 'Playfair Display', serif;
    font-size: 1.12rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 48px;
}

/* ========== BREADCRUMB ========== */

.breadcrumb {
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px 24px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a,
.breadcrumb span {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: var(--mid-gray);
}

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

.breadcrumb-sep {
    color: var(--border);
}

/* ========== TEXT LINK ========== */

.text-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid var(--sand);
    padding-bottom: 2px;
    transition: color 0.2s;
}

.text-link:hover {
    color: var(--green);
}

.text-link--light {
    color: var(--bg-light);
    border-bottom-color: rgba(200,169,126,0.5);
}

.text-link--light:hover {
    color: var(--sand);
}

/* ========== SOFT CTA STRIP ========== */

.soft-cta {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border);
    padding: 40px 24px;
    text-align: center;
}

.soft-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--mid-gray);
    margin-bottom: 12px;
}

/* ========== FOOTER ========== */

.site-footer {
    background-color: var(--dark);
    color: var(--bg-light);
    padding: 64px 24px 40px;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bg-light);
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(250,249,246,0.55);
    max-width: 260px;
}

.footer-disclaimer {
    font-family: 'Inter', sans-serif;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sand);
    margin-top: 8px;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(250,249,246,0.4);
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(250,249,246,0.65);
    transition: color 0.2s;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-row {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: rgba(250,249,246,0.65);
    line-height: 1.5;
}

.footer-contact-row a {
    color: rgba(250,249,246,0.65);
    transition: color 0.2s;
}

.footer-contact-row a:hover {
    color: var(--bg-light);
}

.footer-hours {
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: rgba(250,249,246,0.4);
    line-height: 1.7;
}

.footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(250,249,246,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    color: rgba(250,249,246,0.35);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    color: rgba(250,249,246,0.35);
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: rgba(250,249,246,0.7);
}

/* ========== COOKIE BANNER ========== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background-color: var(--dark);
    border-top: 2px solid var(--sand);
    padding: 24px;
    display: none;
}

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

.cookie-banner-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cookie-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(250,249,246,0.75);
    line-height: 1.6;
    flex: 1;
    min-width: 260px;
}

.cookie-text a {
    color: var(--sand);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    padding: 10px 24px;
    background-color: var(--sand);
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-btn-accept:hover {
    opacity: 0.85;
}

.cookie-btn-decline {
    padding: 10px 20px;
    background-color: transparent;
    color: rgba(250,249,246,0.55);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(250,249,246,0.2);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.cookie-btn-decline:hover {
    color: var(--bg-light);
    border-color: rgba(250,249,246,0.5);
}

/* ========== 404 PAGE ========== */

.not-found-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background-color: var(--bg-light);
}

.not-found-inner {
    text-align: center;
    max-width: 480px;
}

.not-found-num {
    font-family: 'Inter', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    color: var(--sand);
    line-height: 1;
    display: block;
    margin-bottom: 16px;
}

.not-found-inner h1 {
    margin-bottom: 16px;
}

.not-found-inner p {
    color: var(--mid-gray);
    margin-bottom: 32px;
}

/* ========== THANK YOU ========== */

.thankyou-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    background-color: var(--bg-light);
}

.thankyou-inner {
    text-align: center;
    max-width: 520px;
}

.thankyou-inner h1 {
    margin-bottom: 20px;
}

.thankyou-inner p {
    color: var(--mid-gray);
    margin-bottom: 12px;
    line-height: 1.7;
}

.thankyou-note {
    margin: 24px 0 32px;
    padding: 16px 20px;
    background-color: #F0EDE7;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--mid-gray);
    line-height: 1.6;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
    .panel { padding: 64px 20px; }
    .panel--lg { padding: 80px 20px; }

    .header-nav { display: none; }
    .header-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background-color: var(--bg-light);
        padding: 24px;
        border-bottom: 1px solid var(--border);
        gap: 16px;
    }
    .nav-toggle { display: flex; }

    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-image-wrap { aspect-ratio: 16/9; }

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

    .two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .two-col--text-first .two-col-image { order: 0; }

    .longread-inner { grid-template-columns: 1fr; }
    .longread-index { flex-direction: row; }
    .longread-num { font-size: 1.8rem; }

    .glossary-rail { grid-template-columns: 1fr; }
    .glossary-sidebar { display: none; }

    .season-strip { grid-template-columns: 1fr 1fr; }

    .asym-grid,
    .asym-grid.reverse {
        grid-template-columns: 1fr;
    }

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

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

    .footer-inner { grid-template-columns: 1fr 1fr; }

    .stat-strip-inner { gap: 16px; }
    .stat-number { font-size: 2.2rem; }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-inner { flex-direction: column; }
}

@media (max-width: 480px) {
    .season-strip { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .matrix-table, .compare-table { font-size: 0.85rem; }
    .matrix-table th, .compare-table th,
    .matrix-table td, .compare-table td {
        padding: 12px 12px;
    }
}
