/* Custom Fonts */
@font-face {
    font-family: 'Alliance No.1';
    src: local('Alliance No.1 Light'), local('AllianceNo.1-Light'), local('Alliance No.1'), url('fonts/Alliance No.1 Regular.otf') format('opentype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Alliance No.2';
    src: local('Alliance No.2 Light'), local('AllianceNo.2-Light'), local('Alliance No.2'), url('fonts/Alliance No.2 Regular.otf') format('opentype');
    font-weight: 100 900;
    font-style: normal;
}

h1 {
    font-family: 'Alliance No.2', 'Alliance No.2 Light', 'AllianceNo.2-Light', 'Inter', sans-serif !important;
}

h2 {
    font-family: 'Alliance No.1', 'Alliance No.1 Light', 'AllianceNo.1-Light', 'Inter', sans-serif !important;
}

:root {
    --primary-red: #E32128;
    --secondary-blue: #003057;
    --charcoal: #17171B;
    --background: #FFFFFF;
    --foreground: #17171B;
    --light-gray: #F7F7F7;
    --text-muted: #575757;
    --header-height: 90px;
    --border-color: rgba(23, 23, 27, 0.08);
    --section-padding: 4rem 2rem;
    --container-max-width: 1600px;
    --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

@media (max-width: 1024px) {
    :root {
        --header-height: 70px;
        --section-padding: 2.5rem 1.5rem;
    }
}

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

html,
body {
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    overflow-x: clip;
    /* Prevent horizontal scroll without breaking sticky positioning */
}

body {
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
}

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

@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 500px) {
    .container {
        padding: 0 1.25rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.75rem;
    gap: 1rem;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: #c40510;
    transform: translateY(-2px);
}

.btn-primary svg {
    transition: transform 0.4s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-outline {
    background-color: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
}

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

/* ============================================================
   SCROLL ANIMATION SYSTEM — Multi-Type
============================================================ */

/* Base: everything hidden, transitions shared */
.reveal {
    opacity: 0;
    transition:
        opacity 1.4s cubic-bezier(0.23, 1, 0.32, 1),
        transform 1.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Default direction: fade UP */
.reveal {
    transform: translateY(50px);
}

/* Directional variants */
.reveal.reveal-left {
    transform: translateX(-60px);
}

.reveal.reveal-right {
    transform: translateX(60px);
}

.reveal.scale-in {
    transform: scale(0.88) translateY(30px);
}

/* Active state — all variants resolve to same resting position */
.reveal.active {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Staggered delay utilities */
.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.30s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

.reveal-delay-4 {
    transition-delay: 0.60s;
}

/* Top Page Progress Bar (Turner's thin red line at page top) */
#page-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--primary-red);
    z-index: 99999;
    transition: width 0.1s linear;
    pointer-events: none;
}

/* Stats Counter Section */
.stats-section {
    background: var(--charcoal);
    padding: 4rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:first-child {
    border-left: none;
}

.stat-number {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 300;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-number::after {
    content: attr(data-suffix);
    font-size: 2rem;
    color: var(--primary-red);
    margin-left: 4px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    margin-top: 1rem;
}

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

    .stat-item {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat-item:nth-child(-n+2) {
        border-top: none;
    }
}

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

    .stat-item:nth-child(2) {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}


.handwriting {
    position: relative;
    display: inline-block;
    font-family: 'Caveat', cursive;
    color: var(--primary-red);
    font-size: 1.2em;
    margin-left: 0.1em;
    font-weight: 500;
    vertical-align: middle;
}

/* Hand-drawn Flourish (Underline/Stroke) */
.flourish-svg {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.flourish-path {
    fill: none;
    stroke: var(--primary-red);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.5s;
}

.reveal.active .flourish-path {
    stroke-dashoffset: 0;
}

/* Vertical Scroll Pillar (Turner Style) */
.scroll-pillar {
    position: fixed;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    height: 200px;
    width: 1px;
    background: rgba(23, 23, 27, 0.1);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-pillar-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-red);
    transition: height 0.1s linear;
}

.scroll-pillar-label {
    position: absolute;
    top: -40px;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--charcoal);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

@media (max-width: 1200px) {
    .scroll-pillar {
        display: none;
    }
}

/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================================
   TURNER-STYLE NEWS LAYOUT (Sticky Left + Looping Scroll Right)
============================================================ */
.news-section {
    overflow: hidden;
}

.news-insights-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

/* ---- Left Sticky Featured Card ---- */
.news-left-sticky {
    position: sticky;
    top: 120px;
    align-self: start;
    z-index: 2;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: white;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.news-card .img-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    margin-bottom: 2rem;
}

.news-card.featured .img-container {
    aspect-ratio: 16/11;
}

.news-card .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.news-card:hover .img-container img {
    transform: scale(1.04);
}

.news-card .card-content {
    padding: 0;
}

.news-card .card-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.news-card h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.news-card.featured h3 {
    font-size: 1.75rem;
}

.news-card:hover h3 {
    color: var(--primary-red);
}

.card-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Sliding Arrow Link */
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--charcoal);
    text-transform: uppercase;
    margin-top: auto;
}

.read-more-link .arrow-svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-red);
    stroke-width: 2.5;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.read-more-link:hover .arrow-svg {
    transform: translateX(8px);
}

/* ---- Right Loop-Scroll Carousel ---- */
.news-right-scroll {
    position: relative;
    overflow: hidden;
}

.news-scroll-viewport {
    position: relative;
    overflow: hidden;
    height: 580px;
    /* shows ~2 cards at a time */
    mask-image: linear-gradient(to bottom,
            transparent 0%,
            black 6%,
            black 90%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom,
            transparent 0%,
            black 6%,
            black 90%,
            transparent 100%);
}

.news-scroll-track {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: newsScrollLoop 20s linear infinite;
}

.news-right-scroll:hover .news-scroll-track {
    animation-play-state: paused;
}

@keyframes newsScrollLoop {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Individual scroll card */
.news-scroll-card {
    flex-shrink: 0;
}

.news-scroll-card .img-container {
    aspect-ratio: 16/9;
    margin-bottom: 1.25rem;
}

.news-scroll-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Scroll progress bar */
.news-scroll-controls {
    margin-top: 1.5rem;
}

.scroll-progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border-radius: 2px;
}

.scroll-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--primary-red);
    animation: scrollProgressAnim 20s linear infinite;
}

@keyframes scrollProgressAnim {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.news-right-scroll:hover .scroll-progress-fill {
    animation-play-state: paused;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
    .news-insights-container {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .news-insights-container {
        grid-template-columns: 1fr;
    }

    .news-left-sticky {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .news-right-scroll {
        width: 100%;
    }

    .news-scroll-viewport {
        height: 480px;
    }
}

@media (max-width: 768px) {
    .news-scroll-viewport {
        height: 420px;
    }

    .news-insights-container {
        gap: 2rem;
    }
}

/* ============================================================
   HEADER HIDE / SHOW ON SCROLL DIRECTION
   (transition is defined in header.php .main-header rule)
============================================================ */
.main-header.hidden {
    transform: translateY(-100%);
}

/* ============================================================
   HERO PARALLAX — clip hero so scrolled bg doesn't overflow
============================================================ */
.hero-section {
    overflow: hidden !important;
}

.hero-section .hero-bg {
    will-change: transform;
}

/* ============================================================
   SECTION IMAGE PARALLAX
============================================================ */
.split-image {
    overflow: hidden;
}

.split-image img,
.parallax-img {
    will-change: transform;
    transition: transform 0s linear;
    /* allow JS to drive values */
    transform-origin: center center;
}

/* ============================================================
   CUSTOM CURSOR (Optional Enhancements - Now safe)
============================================================ */
#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--primary-red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
    mix-blend-mode: multiply;
}

#custom-cursor.hovered {
    width: 40px;
    height: 40px;
    background: rgba(227, 33, 40, 0.15);
    border: 1.5px solid var(--primary-red);
    mix-blend-mode: normal;
}

#custom-cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(227, 33, 40, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

@media (hover: none) {

    /* Mobile — restore default cursor, hide custom cursor */
    *,
    *::before,
    *::after {
        cursor: auto !important;
    }

    #custom-cursor,
    #custom-cursor-trail {
        display: none;
    }
}

/* ============================================================
   SMOOTH SECTION TRANSITIONS
============================================================ */
.section {
    transition: opacity 0.4s ease;
}

/* Hero scroll indicator — ensure it clips correctly */
.hero-scroll {
    z-index: 10;
}

/* ============================================================
   SHARED PAGE STYLES (used across all inner pages)
============================================================ */

/* Page Hero (inner pages) */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 0;
    margin-top: 0;
}

.page-hero.video-hero {
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding-bottom: 0;
    background: #000;
    overflow: hidden;
}

@media (max-width: 767px) {
    .page-hero, .page-hero.video-hero {
        height: 40vh;
        min-height: 280px;
    }
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.65;
    z-index: 1;
}

.page-hero.video-hero .page-hero-overlay {
    background: linear-gradient(to bottom, rgba(23,23,27,0.45) 0%, rgba(23,23,27,0.8) 100%);
    z-index: 2;
}

.page-hero.video-hero .page-hero-content {
    z-index: 3;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    color: white;
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-hero-sub {
    font-size: 1.1rem;
    opacity: 0.75;
    max-width: 600px;
    line-height: 1.6;
}

/* Filter Section (shared by Projects & Insights) */
.filter-section {
    padding: 2.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--light-gray);
}

.filter-bar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    white-space: nowrap;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn,
a.filter-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    color: var(--charcoal);
    text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active,
a.filter-btn:hover,
a.filter-btn.active {
    background: var(--charcoal);
    color: white;
    border-color: var(--charcoal);
}

/* Active Nav Link (current page) */
.nav-link.active,
.main-header.scrolled .nav-link.active {
    color: var(--primary-red) !important;
}

/* ============================================================
   PERSISTENT CTA — Floating Bottom-Right Button
============================================================ */
.persistent-cta {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 9000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.persistent-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.persistent-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-red);
    color: white;
    padding: 1rem 1.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 10px 40px rgba(227, 33, 40, 0.4);
    transition: all 0.3s ease;
}

.persistent-cta-btn:hover {
    background: #c01820;
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(227, 33, 40, 0.5);
}

@media (max-width: 768px) {
    .persistent-cta {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .persistent-cta-btn span {
        display: none;
    }

    .persistent-cta-btn {
        padding: 1rem;
        border-radius: 50%;
    }

    .page-hero-title {
        font-size: 2.75rem;
    }
}

/* ============================================================
   FEATURED PROJECTS PORTFOLIO (Turner Style)
============================================================ */
.turner-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.turner-project-card {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--charcoal);
    color: white;
    text-decoration: none;
    aspect-ratio: 4/5;
}

.turner-project-card .img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.turner-project-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.8;
}

.turner-project-card:hover .img-wrapper img {
    transform: scale(1.06);
    opacity: 0.6;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    transition: padding-bottom 0.4s ease;
}

.turner-project-card:hover .project-overlay {
    padding-bottom: 3.5rem;
}

.overlay-text {
    position: relative;
    z-index: 2;
}

.project-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.overlay-text h3 {
    color: white;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.turner-project-card:hover .overlay-text h3 {
    color: var(--primary-red);
}

.view-btn {
    position: absolute;
    bottom: 2rem;
    right: -50px;
    background: var(--primary-red);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.turner-project-card:hover .view-btn {
    right: 0;
    opacity: 1;
}

@media (max-width: 1024px) {
    .turner-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .turner-project-card {
        aspect-ratio: 16/10;
    }
}

/* ============================================================
   GLOBAL SHARED SECTION STYLES
============================================================ */
.section {
    padding: var(--section-padding);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.section-title.large {
    font-size: clamp(2.5rem, 7vw, 5rem);
}

.sub-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2rem;
    color: var(--primary-red);
    margin-bottom: 1.25rem;
    display: block;
    text-transform: uppercase;
}

.large-para {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    max-width: 900px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
}

/* Split Grid System */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.split-image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

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

    .split-grid.reverse .split-content {
        order: 1;
    }

    .split-grid.reverse .split-image {
        order: 2;
    }
}

.btn-group {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Culture/Team Grid */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

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

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

/* Responsive Header Flex (Used for section titles with buttons) */
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .header-flex h2 {
        margin-bottom: 0 !important;
    }

    .header-flex .btn {
        width: 100%;
        justify-content: center;
    }
}