/* =============================================================
   SGLN 2026 — Main Stylesheet
   Designer mockup: SGLN_08_WebsiteConcepts 7.0.ai (March 2026)
   Font: Rethink Sans (variable)
   ============================================================= */

/* ---------- Font ---------- */
@font-face {
    font-family: 'Rethink Sans';
    src: url('../fonts/RethinkSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* ---------- Custom Properties ---------- */
:root {
    --green:        #4b6b44;   /* header/footer/nav accents */
    --green-dark:   #3d5838;
    --sage:         #8ab09b;   /* Projects + Support sections */
    --slate:        #66818b;   /* BPP section */
    --brown-hero:   rgba(177, 125, 77, 0.73); /* hero pill overlay */
    --brown-solid:  #b17d4d;   /* News section */
    --sage-mid:     #607e6f;   /* Join Us + stats accent */
    --brown:        #b87842;   /* keep for misc use */
    --bg:           #eeebe3;
    --bg-white:     #ffffff;
    --text:         #2a2a2a;
    --text-muted:   #5a5a5a;
    --white:        #ffffff;
    --radius-card:  8px;
    --shadow:       0 2px 12px rgba(0,0,0,0.08);
    --transition:   0.22s ease;
    --max-width:    1280px;
    --gutter:       clamp(1.25rem, 4vw, 3rem);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: 'Rethink Sans', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    color: var(--text);
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-white);
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.75rem var(--gutter);
}

.header-logo { flex-shrink: 0; }
.site-logo { height: 60px; width: auto; }

/* Nav */
.header-nav { flex: 1; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-menu li { position: relative; }

.nav-menu a {
    display: block;
    padding: 0.5rem 0.7rem;
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    border-radius: 4px;
    transition: color var(--transition), background var(--transition);
}

.nav-menu a:hover {
    color: var(--green);
}

/* Dropdown items from WP */
.nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 200px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    z-index: 200;
    padding: 0.5rem 0;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
    display: block;
}

.nav-menu .sub-menu a {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Dropdown caret for items-with-children */
.nav-menu .menu-item-has-children > a::after {
    content: ' ▾';
    font-size: 0.7em;
    opacity: 0.7;
}

/* Search icon */
.header-search {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background var(--transition);
}
.header-search:hover { background: var(--bg); }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    padding: 6px;
    margin-left: auto;
    border-radius: 4px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* =============================================================
   HERO
   ============================================================= */
.hero-section {
    position: relative;
    overflow: hidden;
    height: clamp(380px, 52vw, 520px);
    background: #5a7a52;
}

.hero-image-wrap {
    position: absolute;
    inset: 0;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero-content {
    position: absolute;
    inset: 0;
}

/* Pill shape anchored to bottom-left, matching reference design */
.hero-blob {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    max-width: 720px;
    background: var(--brown-hero);
    border-radius: 0 90px 90px 0;
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 4rem);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-heading {
    font-size: clamp(1.1rem, 2vw, 1.75rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

/* SGLN colour icon overlay — top-right of hero, partially off-screen */
.hero-circle-decor {
    position: absolute;
    top: clamp(40px, 10vw, 130px);
    right: clamp(-80px, -5vw, -60px);
    width: clamp(180px, 28vw, 360px);
    height: clamp(180px, 28vw, 360px);
    border-radius: 0;
    background: transparent url('https://www.sgln.net.au/wp-content/uploads/2021/10/SGLN_IconA_FullColour_CMYK.png') center / contain no-repeat;
    opacity: 0.75;
    pointer-events: none;
}

/* =============================================================
   STATS
   ============================================================= */
.stats-section {
    background: #ffffff;
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.stats-heading {
    text-align: center;
    font-size: clamp(1.2rem, 2.2vw, 1.65rem);
    font-weight: 600;
    color: var(--sage-mid);
    max-width: 640px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
    line-height: 1.35;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 100px;
}

.stat-icon-wrap {
    width: clamp(70px, 10vw, 90px);
    height: clamp(70px, 10vw, 90px);
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stat-icon {
    width: clamp(70px, 10vw, 90px);
    height: clamp(70px, 10vw, 90px);
    object-fit: contain;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--sage-mid);
    text-align: center;
    line-height: 1.3;
}

/* =============================================================
   MAP
   ============================================================= */
.map-section {
    position: relative;
    background: var(--sage-mid);
    overflow: hidden;
    padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.map-image-wrap {
    width: 100%;
    background: var(--sage-mid);
    overflow: hidden;
}
.map-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
    mix-blend-mode: multiply;
    opacity: 0.9;
}

.map-caption {
    position: relative;
    z-index: 2;
    padding: clamp(1.5rem, 3vw, 2.5rem) var(--gutter) 0;
    max-width: var(--max-width);
    margin: 0 auto;
    color: var(--white);
}

.map-caption-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.map-caption-text {
    font-size: 0.925rem;
    max-width: 480px;
    line-height: 1.6;
    opacity: 0.92;
}

/* Decorative circle top-right of map */
.map-circle-decor {
    position: absolute;
    top: -5%;
    right: -2%;
    width: clamp(80px, 14vw, 160px);
    height: clamp(80px, 14vw, 160px);
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    pointer-events: none;
}

/* =============================================================
   SHARED SECTION PATTERNS
   ============================================================= */

/* Projects — light sage */
.projects-section {
    background: var(--sage);
    padding: clamp(3rem, 6vw, 5rem) 0;
}

/* News — cream/light background */
.news-section {
    background: var(--bg);
    padding: clamp(3rem, 6vw, 5rem) 0;
}

/* Support — cream/light background */
.support-section {
    background: var(--bg);
    padding: clamp(3rem, 6vw, 5rem) 0;
}

/* Section header layout */
.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    flex-wrap: wrap;
}

.section-title-group {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section-icon {
    width: 28px;
    height: auto;
    flex-shrink: 0;
    filter: brightness(0) invert(1); /* Make white */
}

.section-icon--color {
    filter: none; /* Keep original color for light sections */
    width: 32px;
}

.section-heading {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
}

.section-heading--dark {
    color: var(--text);
}

.section-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.section-description {
    font-size: 0.925rem;
    color: rgba(255,255,255,0.88);
    max-width: 320px;
    text-align: right;
    line-height: 1.5;
}

.section-description--dark {
    color: var(--text-muted);
    text-align: right;
}

/* =============================================================
   BUTTONS
   ============================================================= */

/* Outlined white button (on dark sections) */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.2rem;
    border: 1.5px solid var(--white);
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    background: transparent;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.18);
}

.btn-arrow { font-size: 1rem; line-height: 1; }

/* Solid green button (on light sections) */
.btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1.5px solid var(--green);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.btn-solid--green {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn-solid--green:hover {
    background: var(--green);
    color: var(--white);
}

.btn-solid--green-dark {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-solid--green-dark:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

/* =============================================================
   CARDS CAROUSEL
   ============================================================= */
.carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.carousel-btn {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.5);
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
    z-index: 2;
}
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--white);
}

.carousel-btn--dark {
    border-color: rgba(75,107,68,0.5);
    color: var(--green);
}
.carousel-btn--dark:hover {
    background: rgba(75,107,68,0.1);
    border-color: var(--green);
}

.cards-carousel {
    display: flex;
    gap: 1.25rem;
    overflow: hidden;
    flex: 1;
    scroll-behavior: smooth;
}

/* Cards */
.card {
    flex: 0 0 calc(33.333% - 0.84rem);
    min-width: 0;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform var(--transition);
}
.card:hover { transform: translateY(-3px); }

.card--light {
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

.card-image-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 0;
}
.card-image-link:hover .card-image { transform: scale(1.04); }

.card-image--placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.08);
}
.card-image--placeholder-light {
    background: var(--bg);
}

.card-body {
    padding: 0.9rem 1rem 1.1rem;
}

.card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 0.4rem;
}
.card-title a { color: inherit; }
.card-title a:hover { text-decoration: underline; }

.card-title--dark { color: var(--text); }

.card-excerpt {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.55;
}
.card-excerpt--dark { color: var(--text-muted); }

/* =============================================================
   FEATURE SPLIT SECTIONS (BPP + JOIN US) — 50/50 layout
   ============================================================= */

/* Container */
.feature-split {
    display: flex;
    min-height: clamp(380px, 40vw, 520px);
    overflow: hidden;
}

/* Text panel — left half */
.split-text-panel {
    width: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 5vw, 5rem);
    gap: 1rem;
}

/* BPP: slate blue-grey */
.bpp-section .split-text-panel  { background: var(--slate); }

/* Join Us: medium sage */
.join-section .split-text-panel { background: var(--sage-mid); }

/* Image panel — right half, photo with top-left arch */
.split-image-panel {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.split-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-top-left-radius: clamp(160px, 22vw, 280px);
}

/* Shared text/icon styles inside split panels */
.feature-icon {
    width: 36px;
    height: auto;
    opacity: 0.9;
}

.feature-heading {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
}

.feature-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.6;
    max-width: 420px;
}

/* =============================================================
   NEWS SECTION OVERRIDES (cream background — no overrides needed,
   default dark text + green accents are correct)
   ============================================================= */

/* =============================================================
   SUPPORT SECTION OVERRIDES (cream background — no overrides needed,
   default dark text + green button are correct)
   ============================================================= */

/* =============================================================
   SUPPORT SECTION
   ============================================================= */
.support-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.support-text {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.support-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-image-circle {
    width: clamp(260px, 34vw, 400px);
    height: clamp(280px, 38vw, 420px);
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.support-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.charity-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: clamp(80px, 10vw, 110px);
    height: auto;
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1.5fr 2fr 1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    align-items: start;
}

.footer-org-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.footer-col p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.footer-col a { color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--green); }

/* Social icons */
.footer-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    transition: background var(--transition);
    flex-shrink: 0;
}
.social-icon:hover { background: var(--green-dark); }
.social-icon svg { width: 16px; height: 16px; }

/* Newsletter */
.footer-heading {
    font-weight: 600;
    font-size: 0.925rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.newsletter-input-wrap {
    display: flex;
    border: 1.5px solid rgba(75,107,68,0.35);
    border-radius: 2rem;
    overflow: hidden;
    background: var(--bg-white);
}

.newsletter-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.55rem 1rem;
    font-family: inherit;
    font-size: 0.875rem;
    background: transparent;
    color: var(--text);
    min-width: 0;
}
.newsletter-input-wrap input::placeholder { color: #aaa; }

.newsletter-input-wrap button {
    background: none;
    border: none;
    padding: 0.55rem 0.9rem;
    color: var(--green);
    display: flex;
    align-items: center;
    transition: color var(--transition);
}
.newsletter-input-wrap button:hover { color: var(--green-dark); }

/* Acknowledgement */
.footer-col--acknowledgement p {
    font-size: 0.8rem;
    line-height: 1.65;
}

/* Aboriginal flag */
.aboriginal-flag {
    width: clamp(60px, 7vw, 90px);
    height: auto;
    border-radius: 3px;
}

/* =============================================================
   FULL-BLEED SECTIONS (BPP + JOIN US) — image bg + curved overlay
   ============================================================= */
.fullbleed-section {
    position: relative;
    overflow: hidden;
    min-height: clamp(420px, 48vw, 580px);
}

.fullbleed-image-wrap {
    position: absolute;
    inset: 0;
}

.fullbleed-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.fullbleed-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48%;
    max-width: 580px;
    padding: clamp(2rem, 4vw, 3.5rem) clamp(2rem, 5vw, 4.5rem);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    z-index: 2;
}

.fullbleed-overlay .feature-icon { width: 36px; opacity: 0.9; }
.fullbleed-overlay .feature-heading { color: var(--white); }
.fullbleed-overlay .feature-description { color: rgba(255,255,255,0.92); }

/* BPP: slate overlay with top-right curve */
.bpp-overlay {
    background: var(--slate);
    border-radius: 0 clamp(80px, 14vw, 160px) 0 0;
}

/* Join Us: brown overlay with top-right curve */
.join-overlay {
    background: var(--brown-hero);
    border-radius: 0 clamp(80px, 14vw, 160px) 0 0;
}

/* =============================================================
   INNER PAGES (page.php)
   ============================================================= */
.page-content {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    min-height: 50vh;
}

.entry-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.entry-content {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
    max-width: 780px;
}
.entry-content p { margin-bottom: 1rem; }
.entry-content h2, .entry-content h3 { font-weight: 700; margin: 1.5rem 0 0.5rem; }
.entry-content a { color: var(--green); text-decoration: underline; }

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

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    .card {
        flex: 0 0 calc(50% - 0.63rem);
    }

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

    .footer-col--flag {
        display: flex;
        align-items: flex-end;
    }
}

/* Tablet portrait (≤ 768px) */
@media (max-width: 768px) {

    /* Header */
    .nav-toggle { display: flex; }

    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        padding: 1rem var(--gutter);
        z-index: 99;
    }

    .header-nav.is-open { display: block; }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-menu a {
        padding: 0.65rem 0;
        width: 100%;
        font-size: 1rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .nav-menu .sub-menu {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
        display: block;
        border-radius: 0;
    }

    /* Hero */
    .hero-section { height: clamp(300px, 65vw, 420px); }

    .hero-blob {
        width: 70%;
        border-radius: 0 60px 60px 0;
        min-height: 110px;
    }

    .hero-circle-decor {
        width: 160px;
        height: 160px;
        top: 30px;
        right: -40px;
    }

    /* Stats */
    .stats-grid { gap: 1.5rem 2.5rem; }
    .stat-icon-wrap, .stat-icon { width: 70px; height: 70px; }

    /* Section header */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .section-meta { align-items: flex-start; }
    .section-description, .section-description--dark { text-align: left; }

    /* Cards */
    .card { flex: 0 0 calc(100% - 0rem); }
    .carousel-btn { display: none; }

    /* Feature split (legacy — kept for compatibility) */
    .feature-split { flex-direction: column; min-height: 0; }
    .split-text-panel { width: 100%; padding: 2rem var(--gutter); }
    .split-image-panel { min-height: 260px; }
    .split-photo { border-top-left-radius: 0; }

    /* Full-bleed overlay sections */
    .fullbleed-section { min-height: 380px; }
    .fullbleed-overlay {
        width: 75%;
        border-radius: 0 80px 0 0 !important;
        padding: 1.5rem var(--gutter) 1.5rem;
    }

    /* Support */
    .support-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .support-image-wrap { justify-content: flex-start; }
    .charity-badge { bottom: 0.5rem; right: -1rem; }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
    .site-logo { height: 46px; }
    .hero-heading { font-size: 1.1rem; }
    .hero-blob { padding: 1rem 1.25rem; }
    .stats-grid { gap: 1.25rem 2rem; }

    .split-image-panel { min-height: 200px; }

    .fullbleed-section { min-height: 320px; }
    .fullbleed-overlay { width: 85%; border-radius: 0 60px 0 0 !important; }
}

