/* --- BRAND DESIGN VARIABLES --- */
:root {
    --primary-forest: #283F24;
    --championship-gold: #FFDE42;
    --white: #FFFFFF;
    --black: #000000;
    --font-main: 'Jost', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- GLOBAL RESETS & FOUNDATIONS --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--black);
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    color: var(--white);
}

/* --- TYPOGRAPHY ARCHITECTURE --- */
h1, h2, h3, .editorial-heading {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.95;
}

p {
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.thin-quote {
    font-weight: 300;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.6;
}

hr {
    border: none;
    height: 1px;
    background-color: rgb(243, 220, 108);
    margin: 2rem 0;
}

/* --- PAGE SECTIONS SYSTEM --- */
.page-section {
    display: none;
    animation: fadeInUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.page-section.active {
    display: block;
}

#home-section {
    display: block;
}

/* --- IMMERSIVE INTERACTION LAYERS --- */
.btn-gold {
    background-color: var(--championship-gold);
    color: var(--primary-forest);
    border: 1px solid var(--championship-gold);
    padding: 0.8rem 2rem;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-main);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--championship-gold);
    box-shadow: 0 0 15px var(--championship-gold);
}

/* --- COMPONENT: MASTER NAVIGATION HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: var(--primary-forest);
    border-bottom: 1px solid var(--championship-gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    z-index: 1000;
    transition: transform 0.4s ease-in-out;
}

header.header-hidden {
    transform: translateY(-100%);
}

.logo-frame img {
    height: 245px;
    margin-top: 2rem;
    display: block;
    object-fit: contain;
}

nav.nav-desktop {
    display: flex;
    gap: 3.5rem;
}

nav.nav-desktop a {
    color: var(--championship-gold);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

nav.nav-desktop a:hover {
    opacity: 0.7;
}

nav.nav-desktop a.active {
    border-bottom-color: var(--championship-gold);
    opacity: 1;
}

.contact-cta-wrapper a {
    color: var(--primary-forest);
    background-color: var(--championship-gold);
    padding: 0.6rem 1.8rem;
    text-decoration: none;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.contact-cta-wrapper a:hover {
    background-color: var(--white);
    color: var(--black);
}

/* --- MOBILE HAMBURGER SYSTEM --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    border: none;
    background: transparent;
    z-index: 1010;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--championship-gold);
    transition: var(--transition-smooth);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-forest);
    z-index: 1005;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--championship-gold);
    font-size: 2rem;
    text-decoration: none;
    font-weight: 100;
    text-transform: uppercase;
    cursor: pointer;
}

.mobile-menu a:hover {
    opacity: 0.7;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- MOBILE MENU CLOSE BUTTON --- */
.mobile-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.mobile-close-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--championship-gold);
    transition: var(--transition-smooth);
    position: absolute;
}

.mobile-close-btn span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-close-btn span:nth-child(2) {
    transform: rotate(-45deg);
}

.mobile-close-btn:hover span {
    background-color: var(--white);
    opacity: 0.7;
}

/* --- MOBILE MENU UPDATED STYLES --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-forest);
    z-index: 1005;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: var(--transition-smooth);
    padding: 2rem;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-top: -2rem;
}

.mobile-menu a {
    color: var(--championship-gold);
    font-size: 2rem;
    text-decoration: none;
    font-weight: 100;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.mobile-menu a:hover {
    opacity: 0.7;
    transform: scale(1.05);
}

.mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--championship-gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.mobile-menu a:hover::after {
    width: 100%;
}

/* Mobile menu responsive */
@media (max-width: 768px) {
    .mobile-close-btn {
        top: 25px;
        right: 25px;
        width: 35px;
        height: 35px;
    }
    
    .mobile-close-btn span {
        width: 25px;
    }
    
    .mobile-menu a {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .mobile-close-btn {
        top: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
    }
    
    .mobile-close-btn span {
        width: 22px;
    }
    
    .mobile-menu a {
        font-size: 1.4rem;
    }
    
    .mobile-menu-links {
        gap: 1.8rem;
    }
}

/* --- SECTION 01: HERO SECTION --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('https://i.pinimg.com/736x/6d/dc/17/6ddc17b3deec00a9c8648e8385fc0179.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-content {
    max-width: 1000px;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(3.5rem, 7vw, 7.5rem);
    margin-bottom: 2rem;
}

.hero-content .thin-quote {
    color: var(--white);
    max-width: 500px;
}

/* --- SECTION 02: FEATURED STORIES (SLIDER) --- */
.stories-section {
    background-color: var(--primary-forest);
    color: var(--championship-gold);
    padding: 10rem 0 8rem 0;
    overflow: hidden;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    margin-left: 4%;
    margin-bottom: 3rem;
    display: block;
}

.slider-outer-container {
    position: relative;
    padding: 0 4%;
}

.slider-track {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 2rem;
    cursor: grab;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slider-track:active {
    cursor: grabbing;
}

.story-card {
    flex: 0 0 500px;
    scroll-snap-align: start;
    transition: var(--transition-smooth);
}

.story-card-image-wrapper {
    width: 500px;
    height: 500px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.story-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.story-card h3 {
    margin-top: 1.5rem;
    font-size: 1.75rem;
    color: var(--championship-gold);
    font-weight: 100;
    letter-spacing: -0.01em;
}

.story-card:hover .story-card-image-wrapper {
    border-color: var(--championship-gold);
    box-shadow: 0 0 25px rgba(255, 222, 62, 0.4);
}

.story-card:hover .story-card-image-wrapper img {
    transform: scale(1.05);
}

.slider-footer-text {
    margin-top: 4rem;
    margin-left: 4%;
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.8;
    letter-spacing: 0.05em;
}

/* --- SECTION 03: PERFORMANCE INSIGHTS --- */
.insights-section {
    background-color: var(--white);
    color: var(--primary-forest);
    padding: 10rem 4%;
}

.insights-section h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 4rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.split-left-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    display: block;
}

.split-right-panel {
    background-color: var(--championship-gold);
    color: var(--primary-forest);
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right-panel p {
    font-size: 1.25rem;
    font-weight: 450;
}

/* --- MANIFESTO SECTION --- */
.manifesto-section {
    background-color: var(--primary-forest);
    color: var(--championship-gold);
    padding: 12rem 4%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.manifesto-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

.manifesto-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 222, 66, 0.4);
    display: block;
    margin-bottom: 1.5rem;
}

.manifesto-section h2 {
    font-size: clamp(3rem, 6vw, 6rem);
    margin-bottom: 2rem;
}

.manifesto-quote-block {
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 222, 66, 0.15);
    border-bottom: 1px solid rgba(255, 222, 66, 0.15);
}

.manifesto-main-quote {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    color: var(--white);
    max-width: 900px;
}

.manifesto-attribution {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 222, 66, 0.5);
}

.manifesto-body {
    margin: 4rem 0;
}

.manifesto-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.manifesto-column h4 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--championship-gold);
    margin-bottom: 1rem;
    font-weight: 300;
}

.manifesto-column p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.manifesto-divider {
    width: 60px;
    height: 2px;
    background: var(--championship-gold);
    margin: 4rem auto;
    opacity: 0.3;
}

.manifesto-extended {
    max-width: 850px;
    margin: 0 auto;
}

.manifesto-extended-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.manifesto-extended-text.manifesto-bold {
    font-weight: 500;
    color: var(--championship-gold);
    font-size: 1.2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 222, 66, 0.1);
}

.manifesto-cta {
    margin-top: 3rem;
    text-align: center;
}

.manifesto-cta a {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: var(--championship-gold);
    color: var(--primary-forest);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    border: 1px solid var(--championship-gold);
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
}

.manifesto-cta a:hover {
    background: transparent;
    color: var(--championship-gold);
    box-shadow: 0 0 20px rgba(255, 222, 66, 0.2);
    transform: translateY(-2px);
}

.fade-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- SECTION 05: PARALLAX --- */
.parallax-container {
    height: 90vh;
    width: 100%;
    background-image: url('https://images.unsplash.com/photo-1541252260730-0412e8e2108e?q=80&w=2074&auto=format&fit=crop');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* --- SECTION 06: THREE-COLUMN EDITORIAL GRID --- */
.editorial-grid-section {
    background-color: var(--primary-forest);
    color: var(--championship-gold);
    padding: 10rem 4%;
}

.editorial-grid-section h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.editorial-grid-section hr {
    margin: 3rem 0;
}

.three-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid var(--championship-gold);
    border-bottom: 1px solid var(--championship-gold);
}

.grid-column {
    padding: 4rem 3rem;
    border-right: 1px solid var(--championship-gold);
}

.grid-column:last-child {
    border-right: none;
}

.grid-column h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.grid-column p {
    color: var(--championship-gold);
    opacity: 0.9;
}

/* --- SECTION 07: LONG-FORM INSIGHTS --- */
.long-form-section {
    background-color: var(--white);
    color: var(--black);
    padding: 10rem 15% 12rem 15%;
}

.long-form-section h2 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 1rem;
    text-align: center;
}

.long-form-section .thin-quote {
    text-align: center;
    display: block;
    margin-bottom: 6rem;
    color: #555;
}

.stacked-blocks-wrapper {
    display: flex;
    flex-direction: column;
}

.editorial-block {
    padding: 4rem 0;
}

.editorial-block:first-child {
    padding-top: 0;
}

.editorial-block h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-forest);
}

.editorial-block p {
    font-size: 1.15rem;
    color: #1a1a1a;
    text-align: justify;
}

.long-form-section hr {
    background-color: rgba(0, 0, 0, 0.15);
    margin: 0;
}

/* --- STORIES PAGE STYLES --- */
.stories-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: 
                url('https://i.pinimg.com/736x/de/28/39/de2839f8e16ad6ccdfde46c92f2c8a7d.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--championship-gold);
}

.stories-hero-content {
    max-width: 900px;
}

.stories-hero-content h1 {
    font-size: clamp(3.5rem, 7vw, 7rem);
    margin: 1.5rem 0 2rem;
    color: var(--white);
    line-height: 1.05;
}

.stories-hero-content .thin-quote {
    max-width: 550px;
    color: var(--white);
}

.stories-grid-section {
    background-color: var(--white);
    padding: 6rem 4%;
}

.stories-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.story-article {
    background: var(--white);
    border: 1px solid rgba(40, 63, 36, 0.08);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-smooth);
    color: var(--black);
}

.story-article:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(40, 63, 36, 0.08);
    border-color: var(--championship-gold);
}

.story-article-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.story-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.story-article:hover .story-article-image img {
    transform: scale(1.05);
}

.story-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--championship-gold);
    color: var(--primary-forest);
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.story-article-content {
    padding: 1.5rem 2rem 2rem;
}

.story-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.story-article-content h3 {
    font-size: 1.3rem;
    color: var(--primary-forest);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.story-article-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.story-read-more {
    color: var(--championship-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    display: inline-block;
    border-bottom: 1px solid transparent;
}

.story-read-more:hover {
    color: var(--primary-forest);
    border-bottom-color: var(--primary-forest);
}

.stories-cta {
    background-color: var(--primary-forest);
    padding: 6rem 4%;
    text-align: center;
    border-top: 1px solid rgba(255, 222, 66, 0.1);
    border-bottom: 1px solid rgba(255, 222, 66, 0.1);
}

.stories-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.stories-cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--championship-gold);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.stories-cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* --- STORY MODAL --- */
.story-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.story-modal.active {
    display: flex;
}

.story-modal-content {
    background: var(--white);
    max-width: 800px;
    width: 100%;
    border-radius: 8px;
    padding: 3rem;
    position: relative;
    color: var(--black);
    max-height: 90vh;
    overflow-y: auto;
}

.story-modal-close {
    position: sticky;
    top: 0;
    float: right;
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    transition: var(--transition-smooth);
    z-index: 10;
    line-height: 1;
}

.story-modal-close:hover {
    color: var(--black);
    transform: rotate(90deg);
}

.story-modal-body h2 {
    font-size: 2.2rem;
    color: var(--primary-forest);
    margin-bottom: 1rem;
}

.story-modal-body .modal-meta {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.story-modal-body .modal-meta span {
    margin-right: 1.5rem;
}

.story-modal-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.story-modal-body .modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    margin: 1.5rem 0;
}

/* --- FOOTER --- */
footer {
    background-color: var(--primary-forest);
    color: var(--championship-gold);
    padding: 8rem 4% 0 4%;
}

.footer-logo-brand h1 {
    font-size: clamp(4rem, 10vw, 9.5rem);
    line-height: 0.85;
    letter-spacing: -0.04em;
}

.footer-split-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0;
    margin-top: 5rem;
    padding-bottom: 6rem;
    border-top: 1px solid rgba(255, 222, 66, 0.15);
    padding-top: 4rem;
}

.footer-column {
    padding: 0 2rem;
    border-right: 1px solid rgba(250, 225, 100, 0.947);
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--championship-gold);
}

.newsletter-area p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

.input-group input[type="email"] {
    background: transparent;
    border: 1px solid var(--championship-gold);
    padding: 0.8rem 1rem;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1rem;
    width: 100%;
}

.input-group input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 10px var(--championship-gold);
}

.input-group input[type="email"]::placeholder {
    color: rgba(255, 222, 66, 0.4);
    letter-spacing: 0.05em;
}

.form-action-buttons {
    display: flex;
    gap: 0.8rem;
}

.btn-action-form {
    flex: 1;
    padding: 0.7rem 1rem;
    font-family: var(--font-main);
    font-weight: 100;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid var(--championship-gold);
    transition: var(--transition-smooth);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.btn-subscribe {
    background-color: var(--championship-gold);
    color: var(--primary-forest);
}

.btn-subscribe:hover {
    background-color: transparent;
    color: var(--championship-gold);
}

.btn-unsubscribe {
    background-color: transparent;
    color: var(--championship-gold);
    opacity: 0.7;
}

.btn-unsubscribe:hover {
    opacity: 1;
    background-color: rgba(255, 222, 66, 0.1);
}

.form-feedback-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 200;
    display: none;
    color: var(--championship-gold);
}

.form-feedback-message.visible {
    display: block;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-smooth);
    font-weight: 300;
    cursor: pointer;
}

.footer-column ul li a:hover {
    color: var(--championship-gold);
    padding-left: 5px;
}

.final-bar-sub-footer {
    background-color: var(--black);
    color: var(--championship-gold);
    padding: 1.5rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 222, 66, 0.1);
    margin: 0 -4%;
    padding-left: 4%;
    padding-right: 4%;
}

.final-bar-sub-footer p {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 1400px) {
    .footer-split-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

@media (max-width: 1200px) {
    .long-form-section {
        padding: 8rem 8% 10rem 8%;
    }
    
    .footer-split-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    
    .footer-column {
        padding: 1.5rem 2rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 222, 66, 0.1);
    }
    
    .footer-column:nth-child(2) {
        border-right: 1px solid rgba(255, 222, 66, 0.1);
    }
    
    .footer-column:last-child {
        border-right: none;
        border-bottom: none;
    }
    
    .footer-column:first-child {
        padding-left: 0;
    }
    
    .footer-column:nth-child(3) {
        border-right: none;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .three-column-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-column {
        border-right: none;
        border-bottom: 1px solid var(--championship-gold);
        padding: 3rem 1rem;
    }
    
    .grid-column:last-child {
        border-bottom: none;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
    }
    
    .split-right-panel {
        padding: 3rem 2rem;
    }
    
    .split-left-image {
        min-height: 400px;
    }
    
    .manifesto-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header nav.nav-desktop,
    header .contact-cta-wrapper {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .story-card {
        flex: 0 0 320px;
    }
    
    .story-card-image-wrapper {
        width: 320px;
        height: 320px;
    }
    
    .footer-split-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-column {
        padding: 1.5rem 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 222, 66, 0.1);
    }
    
    .footer-column:last-child {
        border-bottom: none;
    }
    
    .footer-column:first-child {
        padding-left: 0;
    }
    
    .footer-column:last-child {
        padding-right: 0;
    }
    
    .input-group {
        max-width: 100%;
    }
    
    .final-bar-sub-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 4%;
    }
    
    .footer-logo-brand h1 {
        font-size: clamp(3rem, 8vw, 4.5rem);
    }
    
    .parallax-container {
        background-attachment: scroll;
    }
    
    .manifesto-section .thin-quote {
        font-size: 1.3rem;
    }
    
    .hero-section {
        padding: 0 5%;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-hero {
        min-height: 50vh;
        padding: 0 5%;
    }
    
    .stories-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .story-article-image {
        height: 200px;
    }
    
    .story-modal-content {
        padding: 2rem;
    }
    
    .story-modal-body h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 4rem 4% 0 4%;
    }
    
    .form-action-buttons {
        flex-direction: column;
    }
    
    .btn-action-form {
        padding: 0.8rem;
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
    
    .footer-column ul li a {
        font-size: 0.9rem;
    }
    
    .story-card {
        flex: 0 0 280px;
    }
    
    .story-card-image-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .split-right-panel {
        padding: 2rem 1.5rem;
    }
    
    .split-right-panel p {
        font-size: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .long-form-section {
        padding: 4rem 5% 6rem 5%;
    }
    
    .editorial-block h3 {
        font-size: 1.8rem;
    }
    
    .stories-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .story-article-content {
        padding: 1rem 1.25rem 1.5rem;
    }
    
    .story-modal-content {
        padding: 1.5rem;
    }
    
    .manifesto-columns {
        grid-template-columns: 1fr;
    }
}

/* --- ACCESSIBILITY --- */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (prefers-contrast: high) {
    .btn-gold {
        border-width: 2px;
    }
    
    .input-group input[type="email"] {
        border-width: 2px;
    }
    
    .btn-action-form {
        border-width: 2px;
    }
}

/* --- PRINT STYLES --- */
@media print {
    header,
    footer,
    .parallax-container {
        display: none !important;
    }
    
    .hero-section {
        height: auto;
        padding: 2rem;
        background-image: none !important;
        color: var(--black);
    }
    
    .hero-content h1 {
        color: var(--black);
    }
    
    .hero-content .thin-quote {
        color: var(--black);
    }
    
    .insights-section,
    .manifesto-section,
    .editorial-grid-section,
    .long-form-section {
        padding: 2rem;
        break-inside: avoid;
    }
    
    .grid-column {
        break-inside: avoid;
        border: none;
        padding: 1rem;
    }
}

/* ============ CONTACT PAGE STYLES ============ */
.contact-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: linear-gradient(rgba(40, 63, 36, 0.85), rgba(40, 63, 36, 0.9)), 
                url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--championship-gold);
}

.contact-hero-content {
    max-width: 900px;
}

.contact-hero-content h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    margin: 1.5rem 0 2rem;
    color: var(--white);
    line-height: 1.05;
}

.contact-hero-content .thin-quote {
    max-width: 550px;
    color: var(--white);
}

.contact-main-section {
    background-color: var(--white);
    padding: 6rem 4%;
    color: var(--black);
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border: 1px solid rgba(40, 63, 36, 0.08);
    border-radius: 4px;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--primary-forest);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.contact-form-wrapper p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form-wrapper .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.contact-form-wrapper .form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-forest);
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-smooth);
    width: 100%;
}

.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group textarea:focus {
    outline: none;
    border-color: var(--championship-gold);
    box-shadow: 0 0 0 3px rgba(255, 222, 66, 0.1);
}

.contact-form-wrapper .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-wrapper .btn-gold {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

#contact-feedback {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 4px;
    display: none;
}

#contact-feedback.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#contact-feedback.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Info */
.contact-info-wrapper {
    padding: 3rem;
    background: var(--primary-forest);
    color: var(--white);
    border-radius: 4px;
}

.contact-info-wrapper h2 {
    font-size: 2rem;
    color: var(--championship-gold);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.contact-info-wrapper > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.8rem;
    min-width: 45px;
}

.contact-info-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--championship-gold);
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--championship-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-info-item a:hover {
    opacity: 0.7;
}

.contact-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.contact-social-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.contact-social-links a:hover {
    color: var(--championship-gold);
    border-bottom-color: var(--championship-gold);
}

/* ============ PRIVACY PAGE STYLES ============ */
.privacy-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: linear-gradient(rgba(40, 63, 36, 0.85), rgba(40, 63, 36, 0.9)), 
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--championship-gold);
}

.privacy-hero-content {
    max-width: 900px;
}

.privacy-hero-content h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    margin: 1.5rem 0 2rem;
    color: var(--white);
    line-height: 1.05;
}

.privacy-hero-content .thin-quote {
    max-width: 550px;
    color: var(--white);
}

.privacy-content-section {
    background-color: var(--white);
    padding: 4rem 4% 6rem 4%;
    color: var(--black);
}

.privacy-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.privacy-sidebar {
    position: sticky;
    top: 120px;
    background: var(--tint-1, #f7f7f7);
    padding: 2rem;
    border-radius: 4px;
}

.privacy-sidebar h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-forest);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.privacy-sidebar ul {
    list-style: none;
}

.privacy-sidebar ul li {
    margin-bottom: 0.75rem;
}

.privacy-sidebar ul li a {
    color: var(--gray-text, #555);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: block;
    padding: 0.25rem 0;
}

.privacy-sidebar ul li a:hover {
    color: var(--primary-forest);
    padding-left: 0.5rem;
}

.privacy-main {
    padding: 0;
}

.privacy-block {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.privacy-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-block h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-forest);
    margin-bottom: 1.5rem;
}

.privacy-block p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-block ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.privacy-block ul li {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.privacy-block ul li strong {
    color: var(--primary-forest);
}

.privacy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* ============ RESPONSIVE CONTACT & PRIVACY ============ */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .privacy-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .privacy-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 40vh;
        padding: 0 5%;
    }
    
    .contact-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-form-wrapper .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info-wrapper {
        padding: 1.5rem;
    }
    
    .privacy-content-section {
        padding: 2rem 4% 4rem 4%;
    }
    
    .privacy-block h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .privacy-block h2 {
        font-size: 1.3rem;
    }
}

/* ============ TERMS PAGE STYLES ============ */
.terms-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: linear-gradient(rgba(40, 63, 36, 0.85), rgba(40, 63, 36, 0.9)), 
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--championship-gold);
}

.terms-hero-content {
    max-width: 900px;
}

.terms-hero-content h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    margin: 1.5rem 0 2rem;
    color: var(--white);
    line-height: 1.05;
}

.terms-hero-content .thin-quote {
    max-width: 550px;
    color: var(--white);
}

.terms-content-section {
    background-color: var(--white);
    padding: 4rem 4% 6rem 4%;
    color: var(--black);
}

.terms-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.terms-sidebar {
    position: sticky;
    top: 120px;
    background: var(--tint-1, #f7f7f7);
    padding: 2rem;
    border-radius: 4px;
}

.terms-sidebar h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-forest);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.terms-sidebar ul {
    list-style: none;
}

.terms-sidebar ul li {
    margin-bottom: 0.75rem;
}

.terms-sidebar ul li a {
    color: var(--gray-text, #555);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: block;
    padding: 0.25rem 0;
}

.terms-sidebar ul li a:hover {
    color: var(--primary-forest);
    padding-left: 0.5rem;
}

.terms-main {
    padding: 0;
}

.terms-block {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.terms-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-block h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-forest);
    margin-bottom: 1.5rem;
}

.terms-block p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-block ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.terms-block ul li {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.terms-block ul li strong {
    color: var(--primary-forest);
}

.terms-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* ============ COOKIE PAGE STYLES ============ */
.cookie-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: linear-gradient(rgba(40, 63, 36, 0.85), rgba(40, 63, 36, 0.9)), 
                url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--championship-gold);
}

.cookie-hero-content {
    max-width: 900px;
}

.cookie-hero-content h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    margin: 1.5rem 0 2rem;
    color: var(--white);
    line-height: 1.05;
}

.cookie-hero-content .thin-quote {
    max-width: 550px;
    color: var(--white);
}

.cookie-content-section {
    background-color: var(--white);
    padding: 4rem 4% 6rem 4%;
    color: var(--black);
}

.cookie-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.cookie-sidebar {
    position: sticky;
    top: 120px;
    background: var(--tint-1, #f7f7f7);
    padding: 2rem;
    border-radius: 4px;
}

.cookie-sidebar h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-forest);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cookie-sidebar ul {
    list-style: none;
}

.cookie-sidebar ul li {
    margin-bottom: 0.75rem;
}

.cookie-sidebar ul li a {
    color: var(--gray-text, #555);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: block;
    padding: 0.25rem 0;
}

.cookie-sidebar ul li a:hover {
    color: var(--primary-forest);
    padding-left: 0.5rem;
}

.cookie-main {
    padding: 0;
}

.cookie-block {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cookie-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cookie-block h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-forest);
    margin-bottom: 1.5rem;
}

.cookie-block p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cookie-block ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.cookie-block ul li {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.cookie-block ul li strong {
    color: var(--primary-forest);
}

.cookie-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* ============ DISCLAIMER PAGE STYLES ============ */
.disclaimer-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: linear-gradient(rgba(40, 63, 36, 0.85), rgba(40, 63, 36, 0.9)), 
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--championship-gold);
}

.disclaimer-hero-content {
    max-width: 900px;
}

.disclaimer-hero-content h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    margin: 1.5rem 0 2rem;
    color: var(--white);
    line-height: 1.05;
}

.disclaimer-hero-content .thin-quote {
    max-width: 550px;
    color: var(--white);
}

.disclaimer-content-section {
    background-color: var(--white);
    padding: 4rem 4% 6rem 4%;
    color: var(--black);
}

.disclaimer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.disclaimer-sidebar {
    position: sticky;
    top: 120px;
    background: var(--tint-1, #f7f7f7);
    padding: 2rem;
    border-radius: 4px;
}

.disclaimer-sidebar h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-forest);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.disclaimer-sidebar ul {
    list-style: none;
}

.disclaimer-sidebar ul li {
    margin-bottom: 0.75rem;
}

.disclaimer-sidebar ul li a {
    color: var(--gray-text, #555);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: block;
    padding: 0.25rem 0;
}

.disclaimer-sidebar ul li a:hover {
    color: var(--primary-forest);
    padding-left: 0.5rem;
}

.disclaimer-main {
    padding: 0;
}

.disclaimer-block {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.disclaimer-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.disclaimer-block h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-forest);
    margin-bottom: 1.5rem;
}

.disclaimer-block p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.disclaimer-block ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.disclaimer-block ul li {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.disclaimer-block ul li strong {
    color: var(--primary-forest);
}

.disclaimer-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* ============ RESPONSIVE LEGAL PAGES ============ */
@media (max-width: 992px) {
    .terms-container,
    .cookie-container,
    .disclaimer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .terms-sidebar,
    .cookie-sidebar,
    .disclaimer-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .terms-hero,
    .cookie-hero,
    .disclaimer-hero {
        min-height: 40vh;
        padding: 0 5%;
    }
    
    .terms-hero-content h1,
    .cookie-hero-content h1,
    .disclaimer-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .terms-content-section,
    .cookie-content-section,
    .disclaimer-content-section {
        padding: 2rem 4% 4rem 4%;
    }
    
    .terms-block h2,
    .cookie-block h2,
    .disclaimer-block h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .terms-hero-content h1,
    .cookie-hero-content h1,
    .disclaimer-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .terms-block h2,
    .cookie-block h2,
    .disclaimer-block h2 {
        font-size: 1.3rem;
    }
}