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

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

:root {
    --bg: #F2F5F4;
    --green: #2B4E41;
    --sand: #C7BCA1;
    --dark: #1C1D1C;
    --max-width: 1300px;
    --text-width: 700px;
}

html {
    background-color: var(--bg);
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--dark);
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--dark);
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    color: var(--green);
}

h3 {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dark);
}

p {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1rem;
    line-height: 1.72;
    color: var(--dark);
    max-width: var(--text-width);
}

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

a:hover {
    opacity: 0.6;
}

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--bg);
    border-bottom: 1px solid var(--sand);
    padding: 18px 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 1.25rem;
    letter-spacing: 0.06em;
    color: var(--green);
    text-transform: uppercase;
}

.site-logo:hover {
    opacity: 0.7;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.site-nav a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
}

.site-nav a.active,
.site-nav a:hover {
    color: var(--green);
    opacity: 1;
}

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg);
        border-bottom: 1px solid var(--sand);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 16px 20px;
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid var(--sand);
    }

    .site-nav a:last-child {
        border-bottom: none;
    }
}

/* FOOTER */
.site-footer {
    background-color: var(--dark);
    color: var(--bg);
    padding: 80px 0 40px;
    margin-top: 160px;
}

.site-footer p,
.site-footer a,
.site-footer li {
    color: var(--bg);
    max-width: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.footer-brand h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 14px;
}

.footer-brand p {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(242,245,244,0.65);
    max-width: 320px;
}

.footer-disclaimer {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--sand);
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(199,188,161,0.3);
}

.footer-col h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 16px;
}

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

.footer-col ul li a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: rgba(242,245,244,0.65);
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

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

.footer-contact-line {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: rgba(242,245,244,0.65);
    line-height: 1.8;
    max-width: none;
}

.footer-bottom {
    border-top: 1px solid rgba(199,188,161,0.25);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: rgba(242,245,244,0.45);
    max-width: none;
}

/* SECTION SPACING */
.section {
    padding: 120px 0;
}

.section-sm {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .section-sm {
        padding: 48px 0;
    }

    .site-footer {
        margin-top: 80px;
    }
}

/* DIVIDER */
.divider {
    width: 100%;
    height: 1px;
    background-color: var(--sand);
    border: none;
    margin: 0;
}

/* HERO INDEX */
.hero-index {
    padding: 100px 0 80px;
}

.hero-index .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-index-text {
    padding-right: 20px;
}

.hero-index-text .overline {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 24px;
    display: block;
}

.hero-index-text h1 {
    margin-bottom: 28px;
}

.hero-index-text p {
    font-size: 1.05rem;
    line-height: 1.72;
    margin-bottom: 36px;
}

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

@media (max-width: 900px) {
    .hero-index .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-index-image img {
        height: 320px;
    }
}

/* TEXT LINK ARROW */
.text-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease, opacity 0.2s ease;
}

.text-link:hover {
    gap: 14px;
    opacity: 1;
    color: var(--green);
}

.text-link::after {
    content: '→';
}

/* EDITORIAL INTRO */
.editorial-intro {
    padding: 100px 0;
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
}

.editorial-intro .manifesto {
    max-width: var(--text-width);
    margin: 0 auto;
}

.editorial-intro .manifesto h2 {
    margin-bottom: 28px;
}

.editorial-intro .manifesto p {
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 100%;
    margin-bottom: 18px;
}

/* TOPIC OVERVIEW */
.topic-overview {
    padding: 120px 0;
}

.topic-overview-header {
    margin-bottom: 64px;
}

.topic-overview-header h3 {
    margin-bottom: 14px;
}

.topic-overview-header h2 {
    max-width: 600px;
}

.topic-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

.topic-block {
    padding: 48px 36px;
    border-left: 1px solid var(--sand);
}

.topic-block:first-child {
    border-left: none;
}

.topic-block h3 {
    margin-bottom: 16px;
    color: var(--green);
}

.topic-block p {
    font-size: 0.95rem;
    max-width: 100%;
}

@media (max-width: 768px) {
    .topic-blocks {
        grid-template-columns: 1fr;
    }

    .topic-block {
        border-left: none;
        border-top: 1px solid var(--sand);
        padding: 32px 0;
    }

    .topic-block:first-child {
        border-top: none;
    }
}

/* CONTEXTUAL SECTION */
.contextual-section {
    padding: 0;
}

.contextual-section .image-band {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
}

.contextual-section .image-band img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.contextual-section .text-block {
    padding: 80px 0;
}

.contextual-section .text-block .inner {
    max-width: var(--text-width);
    margin: 0 0 0 auto;
    padding-right: 60px;
}

@media (max-width: 900px) {
    .contextual-section .text-block .inner {
        margin: 0;
        padding-right: 0;
    }
}

/* MYTH FACT TABLE */
.myth-fact-section {
    padding: 120px 0;
}

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

.myth-fact-section h2 {
    margin-bottom: 48px;
    max-width: 500px;
}

.myth-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'DM Serif Display', Georgia, serif;
}

.myth-table thead tr {
    border-bottom: 2px solid var(--green);
}

.myth-table thead th {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    padding: 12px 0;
    text-align: left;
    width: 50%;
}

.myth-table tbody tr {
    border-bottom: 1px solid var(--sand);
}

.myth-table tbody tr:last-child {
    border-bottom: none;
}

.myth-table tbody td {
    padding: 24px 0;
    font-size: 0.95rem;
    line-height: 1.65;
    vertical-align: top;
}

.myth-table tbody td:first-child {
    padding-right: 40px;
    color: rgba(28,29,28,0.6);
    font-style: italic;
}

.myth-table tbody td:last-child {
    color: var(--dark);
}

/* LONGREAD SPORT */
.longread-section {
    padding: 120px 0;
    border-top: 1px solid var(--sand);
}

.longread-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 60px;
}

.longread-margin {
    padding-top: 8px;
}

.longread-margin .margin-note {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sand);
    display: block;
    margin-bottom: 20px;
    line-height: 1.5;
}

.longread-body h2 {
    margin-bottom: 28px;
}

.longread-body p {
    margin-bottom: 20px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .longread-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* GLOSSARY */
.glossary-section {
    padding: 120px 0;
    border-top: 1px solid var(--sand);
}

.glossary-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
}

.glossary-label {
    padding-top: 6px;
}

.glossary-label h3 {
    color: var(--green);
}

.glossary-terms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.glossary-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--sand);
}

.glossary-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.glossary-item dt {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 8px;
}

.glossary-item dd {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--dark);
    padding-right: 24px;
}

@media (max-width: 900px) {
    .glossary-grid {
        grid-template-columns: 1fr;
    }

    .glossary-terms {
        grid-template-columns: 1fr;
    }

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

/* FAQ SECTION */
.faq-section {
    padding: 100px 0;
    border-top: 1px solid var(--sand);
}

.faq-inner {
    max-width: var(--text-width);
}

.faq-inner h3 {
    margin-bottom: 12px;
}

.faq-inner h2 {
    margin-bottom: 48px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

.faq-item:first-of-type {
    border-top: 1px solid var(--sand);
}

.faq-question {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 12px;
}

.faq-answer {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark);
    max-width: 100%;
}

/* CONTACT PREVIEW */
.contact-preview {
    padding: 120px 0;
    border-top: 1px solid var(--sand);
}

.contact-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-preview-text h3 {
    margin-bottom: 12px;
}

.contact-preview-text h2 {
    margin-bottom: 24px;
}

.contact-preview-text p {
    margin-bottom: 24px;
    max-width: 100%;
}

.contact-preview-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

@media (max-width: 900px) {
    .contact-preview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* FINAL CTA */
.final-cta {
    padding: 80px 0;
    border-top: 1px solid var(--sand);
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.final-cta-inner p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: rgba(28,29,28,0.55);
    max-width: none;
}

/* BLOG STRIP INDEX */
.blog-strip-section {
    padding: 120px 0;
    border-top: 1px solid var(--sand);
}

.blog-strip-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 24px;
    flex-wrap: wrap;
}

.blog-strip-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 60px;
}

.blog-strip-item {
    display: flex;
    gap: 24px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--sand);
}

.blog-strip-item img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-strip-item-text .meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 8px;
    display: block;
}

.blog-strip-item-text h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-strip-item-text p {
    font-size: 0.87rem;
    max-width: 100%;
    line-height: 1.6;
    color: rgba(28,29,28,0.65);
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .blog-strip-items {
        grid-template-columns: 1fr;
    }
}

/* ABOUT PAGE */
.about-hero {
    padding: 100px 0 80px;
    border-bottom: 1px solid var(--sand);
}

.about-hero h3 {
    margin-bottom: 14px;
}

.about-hero h1 {
    max-width: 720px;
    margin-bottom: 0;
}

.about-manifesto {
    padding: 100px 0;
}

.about-manifesto .inner {
    max-width: var(--text-width);
}

.about-manifesto .dropcap::first-letter {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 4.5rem;
    line-height: 0.85;
    float: left;
    margin-right: 10px;
    margin-top: 6px;
    color: var(--green);
    font-weight: 400;
}

.about-manifesto p {
    margin-bottom: 22px;
    max-width: 100%;
}

.about-image-section {
    padding: 0 0 100px;
}

.about-image-section img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
}

/* BLOGS CATALOG */
.blogs-hero {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--sand);
}

.blogs-hero h3 {
    margin-bottom: 12px;
}

.blogs-hero h1 {
    max-width: 700px;
}

.blogs-hero-image {
    margin-top: 48px;
}

.blogs-hero-image img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
}

.blogs-list {
    padding: 80px 0;
}

.blog-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    padding: 56px 0;
    border-bottom: 1px solid var(--sand);
    align-items: start;
}

.blog-card:first-child {
    border-top: 1px solid var(--sand);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-body .meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 14px;
    display: block;
}

.blog-card-body h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    max-width: 580px;
}

.blog-card-body p {
    margin-bottom: 24px;
    max-width: 100%;
    font-size: 0.97rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .blog-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card img {
        height: 220px;
    }
}

/* BLOG SINGLE */
.blog-single-hero {
    padding: 80px 0 0;
}

.blog-single-hero .meta-line {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-single-hero h1 {
    max-width: 820px;
    margin-bottom: 40px;
}

.blog-single-hero .hero-image {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    margin-bottom: 0;
}

.blog-single-body {
    padding: 80px 0;
}

.blog-single-layout {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 60px;
}

.blog-side-index {
    padding-top: 8px;
    position: sticky;
    top: 90px;
    align-self: start;
}

.blog-side-index h3 {
    margin-bottom: 16px;
    color: var(--green);
}

.blog-side-index ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-side-index ul li a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: rgba(28,29,28,0.55);
    line-height: 1.5;
    letter-spacing: 0.04em;
}

.blog-side-index ul li a:hover {
    color: var(--green);
    opacity: 1;
}

.blog-content h2 {
    font-size: 1.6rem;
    margin-top: 52px;
    margin-bottom: 20px;
}

.blog-content h2:first-child {
    margin-top: 0;
}

.blog-content p {
    margin-bottom: 20px;
    max-width: 100%;
}

.blog-content ul,
.blog-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.blog-content li {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .blog-single-layout {
        grid-template-columns: 1fr;
    }

    .blog-side-index {
        position: static;
    }
}

/* MATRIX TABLE */
.matrix-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-family: 'DM Serif Display', Georgia, serif;
}

.matrix-table thead tr {
    border-bottom: 2px solid var(--green);
}

.matrix-table thead th {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    padding: 10px 16px 10px 0;
    text-align: left;
}

.matrix-table tbody tr {
    border-bottom: 1px solid var(--sand);
}

.matrix-table tbody td {
    padding: 18px 16px 18px 0;
    font-size: 0.92rem;
    line-height: 1.6;
    vertical-align: top;
}

.matrix-table tbody td:first-child {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green);
    white-space: nowrap;
}

/* STAT STRIP */
.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background-color: var(--green);
    padding: 0;
    margin: 60px 0;
}

.stat-item {
    padding: 40px 32px;
    border-right: 1px solid rgba(242,245,244,0.15);
}

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

.stat-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--bg);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sand);
}

@media (max-width: 768px) {
    .stat-strip {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item {
        border-bottom: 1px solid rgba(242,245,244,0.15);
    }
}

/* TIMELINE */
.timeline {
    margin: 40px 0;
    position: relative;
    padding-left: 32px;
    border-left: 1px solid var(--sand);
}

.timeline-entry {
    padding: 0 0 40px 28px;
    position: relative;
}

.timeline-entry::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--green);
}

.timeline-entry:last-child {
    padding-bottom: 0;
}

.timeline-year {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 8px;
    display: block;
}

.timeline-entry p {
    font-size: 0.95rem;
    line-height: 1.68;
    max-width: 100%;
}

/* GLOSSARY RAIL (blog) */
.glossary-rail {
    background-color: rgba(43,78,65,0.05);
    padding: 32px;
    margin: 40px 0;
}

.glossary-rail h3 {
    margin-bottom: 20px;
    color: var(--green);
}

.glossary-rail dl {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.glossary-rail dt {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 4px;
}

.glossary-rail dd {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 0.92rem;
    line-height: 1.65;
}

/* SEASON TIMELINE (blog 2) */
.season-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 40px 0;
    border: 1px solid var(--sand);
}

.season-col {
    padding: 28px 20px;
    border-right: 1px solid var(--sand);
}

.season-col:last-child {
    border-right: none;
}

.season-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
    display: block;
}

.season-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.season-col ul li {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 0.87rem;
    color: var(--dark);
}

@media (max-width: 640px) {
    .season-strip {
        grid-template-columns: 1fr 1fr;
    }

    .season-col:nth-child(2) {
        border-right: none;
    }

    .season-col:nth-child(3) {
        border-top: 1px solid var(--sand);
    }

    .season-col:nth-child(4) {
        border-top: 1px solid var(--sand);
    }
}

/* TWO-COLUMN BLOG */
.two-col-blog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .two-col-blog {
        grid-template-columns: 1fr;
    }
}

/* CONTACT PAGE */
.contact-page-section {
    padding: 80px 0 100px;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-page-form h2 {
    margin-bottom: 36px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    display: block;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--dark);
    padding: 10px 0;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1rem;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.65;
}

.form-submit-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bg);
    background-color: var(--green);
    border: none;
    padding: 16px 40px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    display: inline-block;
}

.form-submit-btn:hover {
    opacity: 0.8;
}

.contact-page-info h2 {
    margin-bottom: 36px;
}

.contact-info-block {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--sand);
}

.contact-info-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-block h3 {
    margin-bottom: 12px;
}

.contact-info-block p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 100%;
    color: rgba(28,29,28,0.75);
}

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

.contact-page-image {
    margin-top: 80px;
}

.contact-page-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* THANK YOU PAGE */
.thank-you-section {
    padding: 140px 0 160px;
}

.thank-you-inner {
    max-width: 520px;
}

.thank-you-inner h3 {
    margin-bottom: 20px;
}

.thank-you-inner h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
}

.thank-you-inner p {
    font-size: 0.97rem;
    max-width: 100%;
    margin-bottom: 16px;
    line-height: 1.75;
    color: rgba(28,29,28,0.7);
}

.thank-you-inner .back-link {
    margin-top: 40px;
}

/* LEGAL PAGES */
.legal-hero {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--sand);
}

.legal-hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    max-width: 700px;
}

.legal-body {
    padding: 80px 0 120px;
}

.legal-body .inner {
    max-width: 760px;
}

.legal-body h2 {
    font-size: 1.3rem;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--green);
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body p {
    margin-bottom: 16px;
    max-width: 100%;
    font-size: 0.97rem;
    line-height: 1.75;
}

.legal-body ul {
    padding-left: 22px;
    margin-bottom: 16px;
}

.legal-body ul li {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 0.97rem;
    line-height: 1.72;
    margin-bottom: 6px;
}

.legal-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 8px;
    display: block;
}

/* 404 */
.error-404-section {
    padding: 160px 0 200px;
}

.error-404-section h3 {
    margin-bottom: 16px;
}

.error-404-section h1 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    margin-bottom: 24px;
}

.error-404-section p {
    font-size: 1rem;
    max-width: 500px;
    margin-bottom: 36px;
}

/* BREADCRUMB */
.breadcrumb {
    padding: 20px 0;
    border-bottom: 1px solid var(--sand);
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb ol li {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(28,29,28,0.45);
}

.breadcrumb ol li + li::before {
    content: '/';
    margin-right: 8px;
    color: rgba(28,29,28,0.25);
}

.breadcrumb ol li a {
    color: rgba(28,29,28,0.45);
}

.breadcrumb ol li a:hover {
    color: var(--green);
    opacity: 1;
}

.breadcrumb ol li:last-child {
    color: var(--dark);
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--dark);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: rgba(242,245,244,0.75);
    max-width: 700px;
    line-height: 1.6;
}

.cookie-banner p a {
    color: var(--sand);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background-color: var(--green);
    color: var(--bg);
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

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

.cookie-btn-decline {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: none;
    color: rgba(242,245,244,0.55);
    border: 1px solid rgba(242,245,244,0.25);
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn-decline:hover {
    color: var(--bg);
    border-color: rgba(242,245,244,0.6);
}

@media (max-width: 640px) {
    .cookie-banner {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* PAGE HERO (generic) */
.page-hero {
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--sand);
}

.page-hero h3 {
    margin-bottom: 12px;
}

.page-hero h1 {
    max-width: 760px;
}

/* ASYMMETRIC TWO-COL */
.asymmetric-section {
    padding: 100px 0;
}

.asymmetric-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 900px) {
    .asymmetric-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* HIGHLIGHT QUOTE */
.highlight-quote {
    border-left: 3px solid var(--green);
    padding-left: 28px;
    margin: 40px 0;
}

.highlight-quote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--green);
    line-height: 1.65;
    max-width: 100%;
}

/* LEGAL PAGES */
.legal-page {
    padding: 80px 0 120px;
}

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

.legal-inner h3 {
    margin-bottom: 12px;
}

.legal-inner h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 8px;
}

.legal-date {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: rgba(28,29,28,0.45);
    margin-bottom: 56px;
    letter-spacing: 0.06em;
}

.legal-inner h2 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-top: 48px;
    margin-bottom: 14px;
}

.legal-inner p {
    margin-bottom: 16px;
}

/* ARTICLE PAGES */
.article-hero {
    padding: 80px 0 40px;
}

.article-hero-meta {
    margin-bottom: 16px;
}

.article-hero h1 {
    max-width: 860px;
}

.article-image-band {
    margin-bottom: 0;
}

.article-image-band img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.article-body {
    padding: 80px 0 60px;
}

.article-longread-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 64px;
    align-items: start;
}

@media (max-width: 900px) {
    .article-longread-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.article-margin-rail {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.margin-rail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.margin-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(28,29,28,0.38);
}

.margin-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.4;
}

.article-text h2 {
    margin-top: 52px;
    margin-bottom: 18px;
}

.article-text h2:first-child {
    margin-top: 0;
}

.article-text p {
    margin-bottom: 18px;
    max-width: 100%;
}

.article-table-wrap {
    margin: 36px 0;
    overflow-x: auto;
}

/* TWO COLUMN ARTICLE */
.article-two-col {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 64px;
    align-items: start;
}

@media (max-width: 960px) {
    .article-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.article-col-main h2 {
    margin-top: 48px;
    margin-bottom: 16px;
}

.article-col-main h2:first-child {
    margin-top: 0;
}

.article-col-main p {
    margin-bottom: 16px;
    max-width: 100%;
}

.article-col-aside {
    position: sticky;
    top: 100px;
}

.article-aside-block {
    background-color: rgba(43,78,65,0.05);
    padding: 28px;
}

.article-aside-block h3 {
    margin-bottom: 4px;
    color: var(--green);
}

/* STAT STRIP */
.stat-strip {
    background-color: var(--green);
    padding: 48px 0;
    margin-bottom: 0;
}

.stat-strip-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 48px;
}

.stat-item:first-child {
    padding-left: 0;
}

.stat-divider {
    width: 1px;
    background-color: rgba(242,245,244,0.2);
    flex-shrink: 0;
}

.stat-value {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--bg);
    line-height: 1;
}

.stat-label {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 0.88rem;
    color: rgba(242,245,244,0.65);
    line-height: 1.55;
    max-width: 200px;
}

@media (max-width: 768px) {
    .stat-strip-inner {
        flex-direction: column;
        gap: 32px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .stat-item {
        padding: 0;
    }
}

/* TIMELINE */
.timeline-block {
    margin: 36px 0;
    border-left: 2px solid var(--sand);
    padding-left: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 32px;
    padding: 28px 0 28px 32px;
    border-bottom: 1px solid rgba(199,188,161,0.3);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 36px;
    width: 8px;
    height: 8px;
    background-color: var(--green);
    border-radius: 50%;
}

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

.timeline-season {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    padding-top: 4px;
    flex-shrink: 0;
}

.timeline-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    max-width: 100%;
}

@media (max-width: 640px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-left: 24px;
    }
}

/* ARTICLE BACK LINK */
.article-back {
    padding: 40px 0 60px;
    border-top: 1px solid var(--sand);
}
