@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600&family=Oswald:wght@300;400;500;600;700;800&display=swap');

/* ================================================= */
/* === 1. GLOBAL SETTINGS & RESET === */
/* ================================================= */
:root {
    --primary: #FFD54F;
    /* Bright, Metallic Gold */
    --accent: #4CAF50;
    /* Vivid Green */
    --text-head: #FFFFFF;
    --text-body: #E0E0E0;
    --overlay-dark: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
    --footer-bg: #06180e;
    --brand-font: "Oswald", "Bahnschrift", "Bahnschrift SemiCondensed", "Inter Tight", "Roboto Condensed", "Archivo Narrow", "Segoe UI", sans-serif;
    --anim-ease: cubic-bezier(0.22, 1, 0.36, 1);

    /* Footer Glow variables */
    --glow-x: 0px;
    --glow-y: 0px;
    --scroll-glow: 0.15;
    --text-reveal: 0;

    /* LAYOUT VARIABLES */
    --section-pad-y: 86px;
    --section-pad-x: 5vw;

    /* PAGE 2 (STORY) */
    --p2-x: 0px;
    --p2-y: 37px;
    --p2-scale: 0.9;
    --p2-img-h: 476px;

    /* PAGE 3 (HARVEST) */
    --p3-x: -2px;
    --p3-y: 60px;
    --p3-scale: 0.8;
    --p3-img-h: 250px;
    --p3-gap: 30px;

    /* PAGE 4 (JOURNEY) */
    --p4-x: 0px;
    --p4-y: -10px;
    --p4-scale: 1.1;
    --p4-gap: 36px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-padding-top: 80px;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background-color: #0b0b0b;
    font-family: 'Segoe UI', sans-serif;
    color: var(--text-body);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    color: var(--text-head);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

/* ================================================= */
/* === 2. NAVIGATION BAR === */
/* ================================================= */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    z-index: 1100;
    background: rgba(14, 27, 19, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s var(--anim-ease);
}

.glass-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.nav-logo,
.nav-links a {
    perspective: 1000px;
    display: inline-block;
}

.nav-flip {
    display: inline-block;
    opacity: 0;
    transform: rotateX(-90deg);
    transform-origin: center top;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.glass-nav.active .nav-flip {
    opacity: 1;
    transform: rotateX(0deg);
}

.nav-logo .nav-flip {
    transition-delay: 0.1s;
}

.nav-links li:nth-child(1) .nav-flip {
    transition-delay: 0.2s;
}

.nav-links li:nth-child(2) .nav-flip {
    transition-delay: 0.3s;
}

.nav-links li:nth-child(3) .nav-flip {
    transition-delay: 0.4s;
}

.nav-links li:nth-child(4) .nav-flip {
    transition-delay: 0.5s;
}

.nav-logo {
    cursor: pointer;
}

.nav-logo img {
    height: 50px;
    width: auto;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a .nav-flip {
    color: #fff;
    transition: color 0.3s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s;
}

.nav-links a:hover .nav-flip {
    color: var(--primary);
}

@media (max-width: 768px) {
    .glass-nav {
        padding: 0 24px;
        height: 70px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* ================================================= */
/* === 3. PARALLAX HERO & UTILS === */
/* ================================================= */
#page1-spacer {
    height: 100vh;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    z-index: 9;
    scroll-snap-align: start;
}

#stage {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 1920px;
    height: 1080px;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    pointer-events: none;
    z-index: 0;
}

.layer {
    position: absolute;
    left: 50%;
    top: 0;
    transform-origin: center top;
    will-change: transform;
}

.anim-trigger {
    opacity: 0;
    transition: opacity 0.8s var(--anim-ease), transform 0.8s var(--anim-ease);
    will-change: opacity, transform;
}

.anim-slide-up {
    transform: translateY(80px) scale(0.95);
}

.anim-trigger.active.anim-slide-up {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.anim-scale-up {
    transform: scale(0.9);
}

.anim-trigger.active.anim-scale-up {
    opacity: 1;
    transform: scale(1);
}

.delay-0 {
    transition-delay: 0ms;
}

.delay-100 {
    transition-delay: 150ms;
}

.delay-200 {
    transition-delay: 300ms;
}

.delay-300 {
    transition-delay: 450ms;
}

/* ================================================= */
/* === 4. CONTENT SECTIONS === */
/* ================================================= */
#main-content {
    position: relative;
    z-index: 10;
    width: 100%;
    overflow-x: hidden;
    background-color: #0b0b0b;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 1);
    margin-bottom: 0;
}

section {
    padding: var(--section-pad-y) var(--section-pad-x);
    position: relative;
    width: 100%;
    overflow-x: hidden;
    background-color: #0b0b0b;
    z-index: 20;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    transition: transform 0.1s linear;
    transform-origin: center top;
}

.info-bar {
    background-color: #1A2820;
    width: 100%;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 20;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-bar h3 {
    color: var(--primary);
    font-size: 2rem;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: none;
}

.info-bar p {
    color: var(--text-body);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.title {
    font-size: 3rem;
    color: white;
    margin: 0 0 20px 0;
}

/* --- SECTION 2: STORY (STITCH REBUILD) --- */
.story-section {
    min-height: 100vh;
    position: sticky;
    top: 0;
    z-index: 5;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    background-image: url('../images/Page2.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 120px var(--section-pad-x) 40px;
}

/* Vignette/gradient overlay removed per request */

.story-outline-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
    font-size: 25vw;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 900;
    line-height: 0.8;
    position: absolute;
    top: 10%;
    left: 5%;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .story-outline-text {
        font-size: 40vw;
        top: 15%;
    }
}

#our-story .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: calc(100vh - 160px);
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

.story-text-block {
    max-width: 700px;
    margin-bottom: 50px;
    margin-top: auto;
    text-align: left;
}

.story-main-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3.5rem, 6vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: 0.03em;
    color: #f0f4f0;
    margin: 0 0 24px 0;
    text-transform: uppercase;
}

.story-main-title .text-accent {
    color: var(--primary);
    /* Gold color */
    background: linear-gradient(135deg, #FFF59D 0%, var(--primary) 50%, #F57F17 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-main-desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 1.1vw, 1.25rem);
    line-height: 1.7;
    color: rgba(240, 244, 240, 0.8);
    max-width: 480px;
    margin: 0 0 35px 0;
}

.story-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--primary);
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.4s var(--anim-ease);
}

.story-cta-btn .arrow-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.4s var(--anim-ease);
}

.story-cta-btn .arrow-circle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s var(--anim-ease);
}

.story-cta-btn:hover {
    color: #ffffff;
}

.story-cta-btn:hover .arrow-circle {
    background-color: var(--primary);
    color: #000000;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 213, 79, 0.4);
}

.story-cta-btn:hover .arrow-circle svg {
    transform: translateX(3px);
}

/* Features Card */
.story-features-card {
    background: linear-gradient(145deg, rgba(19, 28, 21, 0.9) 0%, rgba(10, 16, 13, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.feature-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-text h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0 0 4px 0;
    text-shadow: none;
}

.feature-text p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #a0a0a0;
    margin: 0;
}

.feature-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

@media (max-width: 768px) {
    .story-section {
        padding: 80px 20px 20px;
    }

    .story-content-container {
        min-height: auto;
    }

    .story-text-block {
        margin-bottom: 35px;
    }

    .story-features-card {
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 20px;
    }

    .feature-item {
        align-items: center;
    }

    .feature-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    }
}

/* --- SECTION 3: HARVEST (STITCH REBUILD) --- */
#harvest {
    min-height: 100vh;
    position: sticky;
    top: 0;
    z-index: 20;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    background-image: url('../images/Page3.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 120px var(--section-pad-x) 40px;
}

#harvest::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18, 20, 17, 0.4) 0%, rgba(18, 20, 17, 0.8) 100%);
    z-index: 1;
}

.harvest-outline-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
    font-size: 25vw;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 900;
    line-height: 0.8;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: 0.05em;
    opacity: 0.2;
}

#harvest .container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: calc(100vh - 160px);
    box-sizing: border-box;
}

.harvest-header-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: flex-end;
    margin-bottom: 40px;
    width: 100%;
    text-align: left;
}

@media (max-width: 968px) {
    .harvest-header-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.harvest-pretitle {
    font-family: "Bebas Neue", sans-serif;
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 12px;
}

.harvest-main-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3.2rem, 5.5vw, 6rem);
    line-height: 0.9;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-transform: uppercase;
}

.harvest-main-title .text-accent {
    color: var(--primary);
    background: linear-gradient(135deg, #FFF59D 0%, var(--primary) 50%, #F57F17 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.harvest-desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: clamp(0.95rem, 1vw, 1.1rem);
    line-height: 1.6;
    color: #cccccc;
    max-width: 450px;
    margin: 0 0 24px 0;
}

.harvest-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--primary);
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.4s var(--anim-ease);
}

.harvest-explore-btn .btn-arrow-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.4s var(--anim-ease);
}

.harvest-explore-btn .btn-arrow-circle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s var(--anim-ease);
}

.harvest-explore-btn:hover {
    color: #ffffff;
}

.harvest-explore-btn:hover .btn-arrow-circle {
    background-color: var(--primary);
    color: #000000;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 213, 79, 0.4);
}

.harvest-explore-btn:hover .btn-arrow-circle svg {
    transform: translateX(4px);
}

.harvest-accents {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    text-align: right;
    padding-bottom: 12px;
}

@media (max-width: 968px) {
    .harvest-accents {
        display: none;
    }
}

.accent-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.accent-row span {
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    color: #8d928a;
}

.accent-row svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* Product Grid & Cards */
.products-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .products-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-cards-grid {
        grid-template-columns: 1fr;
    }
}

.product-category-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #121411;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--primary);
}

.card-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s;
    z-index: 0;
}

.product-category-card:hover .card-bg-img {
    transform: scale(1.1);
    opacity: 0.95;
}

.card-dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    z-index: 1;
}

.card-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.card-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.4s var(--anim-ease);
}

.card-icon-circle svg {
    width: 20px;
    height: 20px;
}

.product-category-card:hover .card-icon-circle {
    background-color: rgba(255, 213, 79, 0.1);
}

.card-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.card-cta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary);
}

.card-cta-text {
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 0.4s var(--anim-ease), transform 0.4s var(--anim-ease);
}

.product-category-card:hover .card-cta-text {
    opacity: 1;
    transform: translateX(0);
}

.card-cta-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--anim-ease);
}

.card-cta-circle svg {
    width: 10px;
    height: 10px;
    transition: transform 0.4s var(--anim-ease);
}

.product-category-card:hover .card-cta-circle {
    background-color: var(--primary);
    color: #000000;
}

.product-category-card:hover .card-cta-circle svg {
    transform: translateX(1px);
}

/* Harvest Footer Navigation */
.harvest-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding-bottom: 10px;
}

.harvest-footer-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.harvest-footer-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.harvest-footer-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.harvest-footer-btn svg {
    width: 16px;
    height: 16px;
}

.harvest-footer-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.harvest-footer-num {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.8rem;
    color: var(--primary);
}

.harvest-footer-label {
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: #8d928a;
}

/* --- SECTION 4: JOURNEY --- */
.origin-section {
    min-height: 100vh;
    position: sticky;
    top: 0;
    z-index: 5;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    background-color: #121411;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Colors and Typography */
.origin-section {
    --surface: #121411;
    --on-surface: #e3e3de;
    --on-surface-variant: #c3c8bf;
    --tertiary: #f8bd43;
    --on-tertiary: #412d00;
    --outline-variant: rgba(67, 72, 66, 0.4);
    --surface-container-low: #1a1c19;
}

.origin-section .absolute {
    position: absolute;
}

.origin-section .relative {
    position: relative;
}

.origin-section .inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.origin-section .z-0 {
    z-index: 0;
}

.origin-section .z-10 {
    z-index: 10;
}

.origin-section .w-full {
    width: 100%;
}

.origin-section .h-full {
    height: 100%;
}

.origin-section .object-cover {
    object-fit: cover;
}

.origin-section .overflow-hidden {
    overflow: hidden;
}

.origin-section .brightness-\[0\.4\] {
    filter: brightness(0.4);
}

.origin-section .bg-gradient-to-t {
    background: linear-gradient(to top, var(--surface) 0%, transparent 100%);
}

.origin-section .bg-gradient-to-r {
    background: linear-gradient(to right, rgba(18, 20, 17, 0.6) 0%, transparent 100%);
}

.origin-section .font-display {
    font-family: 'Bebas Neue', sans-serif;
}

.origin-section .font-body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.origin-section .text-tertiary {
    color: var(--tertiary);
}

.origin-section .text-on-surface {
    color: var(--on-surface);
}

.origin-section .text-on-surface-variant {
    color: var(--on-surface-variant);
}

.origin-section .bg-surface-container\/40 {
    background-color: rgba(30, 32, 29, 0.4);
}

.origin-section .border-outline-variant {
    border-color: var(--outline-variant);
}

/* Layout and Spacing */
.origin-section .flex {
    display: flex;
}

.origin-section .flex-col {
    flex-direction: column;
}

.origin-section .justify-end {
    justify-content: flex-end;
}

.origin-section .justify-between {
    justify-content: space-between;
}

.origin-section .justify-center {
    justify-content: center;
}

.origin-section .items-start {
    align-items: flex-start;
}

.origin-section .items-center {
    align-items: center;
}

.origin-section .max-w-\[1440px\] {
    max-width: 1440px;
}

.origin-section .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.origin-section .px-margin-mobile {
    padding-left: 20px;
    padding-right: 20px;
}

.origin-section .py-12 {
    padding-top: 48px;
    padding-bottom: 48px;
}

.origin-section .py-10 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.origin-section .pt-32 {
    padding-top: 128px;
}

.origin-section .space-y-8>*+* {
    margin-top: 32px;
}

.origin-section .mb-4 {
    margin-bottom: 16px;
}

.origin-section .mb-6 {
    margin-bottom: 24px;
}

.origin-section .mt-1 {
    margin-top: 4px;
}

.origin-section .p-6 {
    padding: 24px;
}

.origin-section .p-8 {
    padding: 32px;
}

.origin-section .px-8 {
    padding-left: 32px;
    padding-right: 32px;
}

.origin-section .py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
}

/* Font sizes */
.origin-section .text-\[18px\] {
    font-size: 18px;
}

.origin-section .tracking-\[0\.2em\] {
    letter-spacing: 0.2em;
}

.origin-section .leading-relaxed {
    line-height: 1.625;
}

.origin-section .max-w-lg {
    max-width: 512px;
}

.origin-section .inline-flex {
    display: inline-flex;
}

.origin-section .gap-4 {
    gap: 16px;
}

.origin-section .text-\[20px\] {
    font-size: 20px;
}

.origin-section .tracking-widest {
    letter-spacing: 0.1em;
}

.origin-section .group {
    cursor: pointer;
}

.origin-section .top-\[15\%\] {
    top: 15%;
}

.origin-section .left-0 {
    left: 0;
}

.origin-section .pointer-events-none {
    pointer-events: none;
}

.origin-section .opacity-\[0\.03\] {
    opacity: 0.03;
}

.origin-section .select-none {
    user-select: none;
}

.origin-section .text-\[25vw\] {
    font-size: 25vw;
}

.origin-section .leading-none {
    line-height: 1;
}

.origin-section .whitespace-nowrap {
    white-space: nowrap;
}

.origin-section .-translate-x-\[5\%\] {
    transform: translateX(-5%);
}

/* Left Column elements */
.origin-section .text-\[56px\] {
    font-size: 56px;
}

.origin-section .leading-\[1\.05\] {
    line-height: 1.05;
}

.origin-section .w-12 {
    width: 48px;
}

.origin-section .h-12 {
    height: 48px;
}

.origin-section .border {
    border: 1px solid;
}

.origin-section .rounded-full {
    border-radius: 9999px;
}

.origin-section .transition-transform {
    transition: transform 0.3s ease;
}

.origin-section .group-hover\:translate-x-1 {
    transition: transform 0.3s ease;
}

.origin-section .group:hover .group-hover\:translate-x-1 {
    transform: translateX(4px);
}

.origin-section .group-hover\:bg-tertiary {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.origin-section .group:hover .group-hover\:bg-tertiary {
    background-color: var(--tertiary);
    color: var(--on-tertiary);
}

.origin-section .group-hover\:text-on-tertiary {
    transition: color 0.3s ease;
}

/* Grid and Cards */
.origin-section .grid {
    display: grid;
}

.origin-section .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.origin-section .pt-12 {
    padding-top: 48px;
}

.origin-section .backdrop-blur-md {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.origin-section .transition-colors {
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.origin-section .hover\:border-tertiary:hover {
    border-color: var(--tertiary);
}

.origin-section .text-tertiary {
    color: var(--tertiary);
}

.origin-section .\!text-\[40px\] {
    font-size: 40px !important;
}

.origin-section .tracking-wider {
    letter-spacing: 0.05em;
}

.origin-section .mb-2 {
    margin-bottom: 8px;
}

.origin-section .text-\[12px\] {
    font-size: 12px;
}

.origin-section .leading-snug {
    line-height: 1.375;
}

/* Map and Callouts */
.origin-section .min-h-\[600px\] {
    min-height: 600px;
}

.origin-section .max-w-\[500px\] {
    max-width: 500px;
}

.origin-section .map-glow {
    filter: drop-shadow(0 0 10px rgba(248, 189, 67, 0.45));
}

.origin-section .opacity-60 {
    opacity: 0.6;
}

.origin-section .grayscale {
    filter: grayscale(100%);
}

.origin-section .brightness-150 {
    filter: brightness(1.5) grayscale(100%);
}

.origin-section .cursor-pointer {
    cursor: pointer;
}

.origin-section .w-3 {
    width: 12px;
}

.origin-section .h-3 {
    height: 12px;
}

.origin-section .shadow-\[0_0_15px_rgba\(248\,189\,67\,0\.8\)\] {
    box-shadow: 0 0 15px rgba(248, 189, 67, 0.8);
}

.origin-section .dot-pulse {
    animation: dotPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}

.origin-section .bottom-full {
    bottom: 100%;
}

.origin-section .left-1/2 {
    left: 50%;
}

.origin-section .-translate-x-1/2 {
    transform: translateX(-50%);
}

.origin-section .callout-box {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
}

.origin-section .group:hover .callout-box {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.origin-section .w-px {
    width: 1px;
}

.origin-section .h-6 {
    height: 24px;
}

.origin-section .bg-tertiary\/40 {
    background-color: rgba(248, 189, 67, 0.4);
}

.origin-section .right-full {
    right: 100%;
}

.origin-section .top-1/2 {
    top: 50%;
}

.origin-section .-translate-y-1/2 {
    transform: translateY(-50%);
}

.origin-section .callout-box.right-full {
    transform: translateY(-50%) translateX(10px);
}

.origin-section .group:hover .callout-box.right-full {
    transform: translateY(-50%) translateX(0);
}

.origin-section .callout-box.left-full {
    transform: translateY(-50%) translateX(-10px);
}

.origin-section .group:hover .callout-box.left-full {
    transform: translateY(-50%) translateX(0);
}

.origin-section .mr-4 {
    margin-right: 16px;
}

.origin-section .text-right {
    text-align: right;
}

.origin-section .w-8 {
    width: 32px;
}

.origin-section .left-full {
    left: 100%;
}

.origin-section .ml-4 {
    margin-left: 16px;
}

.origin-section .w-12 {
    width: 48px;
}

/* Stats Bar */
.origin-stats-bar {
    border-radius: 16px;
    width: 100%;
    max-width: 896px;
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.origin-stats-bar .stats-col {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 32px;
    flex: 1;
    min-width: 200px;
}

.origin-section .bg-surface-container-low\/60 {
    background-color: rgba(26, 28, 25, 0.6);
}

.origin-section .border-outline-variant\/30 {
    border-color: rgba(67, 72, 66, 0.3);
}

.origin-section .backdrop-blur-xl {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.origin-section .max-w-4xl {
    max-width: 896px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .origin-section .right-col {
        min-height: 400px !important;
        margin-top: 32px;
    }

    .origin-section .callout-box {
        display: none;
        /* Hide callout boxes on mobile for better visibility */
    }
}

@media (min-width: 768px) {
    .origin-section .md\:px-margin-desktop {
        padding-left: 80px;
        padding-right: 80px;
    }

    .origin-section .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .origin-section .md\:flex-nowrap {
        flex-wrap: nowrap;
    }

    .origin-section .md\:py-0 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .origin-section .md\:text-\[80px\] {
        font-size: 80px;
    }

    .origin-stats-bar .stats-col:not(:first-child) {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (min-width: 1024px) {
    .origin-section .lg\:pt-0 {
        padding-top: 0;
    }

    .origin-section .lg\:flex-row {
        flex-direction: row;
    }

    .origin-section .lg\:gap-0 {
        gap: 0;
    }

    .origin-section .lg\:items-center {
        align-items: center;
    }

    .origin-section .lg\:w-1/2 {
        width: 50%;
    }

    .origin-section .lg\:justify-end {
        justify-content: flex-end;
    }
}

/* --- LOGO BAR --- */
.logo-bar-container {
    background-color: #1A2820;
    padding: 70px 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 20;
}

.logo-bar-container::before,
.logo-bar-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-bar-container::before {
    left: 0;
    background: linear-gradient(to right, #1A2820, transparent);
}

.logo-bar-container::after {
    right: 0;
    background: linear-gradient(to left, #1A2820, transparent);
}

.logo-slider {
    display: flex;
    width: 100%;
    position: relative;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-logos 25s linear infinite;
}

.logo-track:hover,
.logo-track:hover .cert-logo {
    animation-play-state: paused;
}

.cert-logo {
    height: 120px;
    width: auto;
    margin: 0 50px;
    filter: grayscale(100%) brightness(0.85) contrast(0.9);
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: floatingLogo 6s ease-in-out infinite;
    will-change: transform, filter;
}

.cert-logo:nth-child(odd) {
    animation-delay: 0s;
}

.cert-logo:nth-child(even) {
    animation-delay: -3s;
}

.cert-logo:hover {
    filter: grayscale(0%) brightness(1.1) contrast(1) drop-shadow(0 0 15px rgba(255, 213, 79, 0.3));
    opacity: 1;
    transform: scale(1.15) translateY(0) rotate(0deg) !important;
    cursor: pointer;
    z-index: 10;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes floatingLogo {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-8px) rotate(2deg);
    }

    75% {
        transform: translateY(4px) rotate(-2deg);
    }
}

/* --- FOOTER REDESIGN (PREMIUM STUDIO-GRADE CANVAS) --- */
.portport-footer {
    position: relative;
    width: 100%;
    min-height: 900px;
    background-color: #050505 !important;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 100px 5vw 40px 5vw;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
}

/* Corner foliage decoration */
.footer-corner-leaf {
    position: absolute;
    bottom: -60px;
    width: clamp(280px, 28vw, 420px);
    height: auto;
    pointer-events: none;
    z-index: 6;
    opacity: 0.88;
    filter: brightness(0.6) contrast(1.15) saturate(0.9);
    transition: transform 1.2s ease-out;
}

.footer-corner-leaf.leaf-left {
    left: -60px;
    transform: rotate(10deg);
}

.footer-corner-leaf.leaf-right {
    right: -60px;
    transform: rotate(-10deg) scaleX(-1);
}

/* Layer 1 backdrop outline typography */
.footer-backdrop-text {
    position: absolute;
    z-index: 1;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(220px, 20vw, 420px);
    letter-spacing: 0.03em;
    color: transparent;
    -webkit-text-stroke: 3px rgba(255, 255, 255, 0.4);
    opacity: 0.4;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.footer-bg-text-agrox {
    top: 64%;
    left: 38%;
    transform: translate(calc(-50% + var(--footer-agrox-tx, -180px)), calc(-50% + var(--footer-agrox-ty, -80px) + var(--footer-plant-parallax-y, 0px))) scale(var(--footer-agrox-scale, 1)) rotate(var(--footer-agrox-rotate, 0deg)) !important;
}

.footer-bg-text-group {
    top: 46%;

    left: 66%;
    transform: translate(calc(-50% + var(--footer-group-tx, 140px)), calc(-50% + var(--footer-group-ty, 80px) + var(--footer-plant-parallax-y, 0px))) scale(var(--footer-group-scale, 1)) rotate(var(--footer-group-rotate, 0deg)) !important;
}

/* Layer 2 centered plant visual depth */
.footer-plant-container {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(calc(-50% + var(--footer-plant-tx, 0px)), calc(-50% + var(--footer-plant-ty, 80px) + var(--footer-plant-parallax-y, 0px))) scale(var(--footer-plant-scale, 1)) rotate(var(--footer-plant-rotate, 0deg)) !important;
    z-index: 2;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 480px;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.footer-plant-image {
    height: clamp(320px, 25vw, 450px);
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.85)) brightness(0.85);
}

/* Foreground container */
.footer-container {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 760px;
    height: 100%;
    gap: 40px;
}

/* Header Row layout */
.footer-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand-logo img {
    max-height: 88px;
    width: auto;
    display: block;
}

.footer-center-headline {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3.2vw, 4rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 900;
}

/* Rotating Micro CTA button */
.footer-micro-cta {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
}

.cta-circle-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateCTA 15s linear infinite;
}

.cta-circle-text svg {
    display: block;
    width: 100%;
    height: 100%;
}

@keyframes rotateCTA {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cta-text-path {
    font-family: 'Poppins', sans-serif;
    font-size: 8.5px;
    font-weight: 600;
    fill: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: fill 0.3s ease;
}

.footer-micro-cta:hover .cta-text-path {
    fill: #D4A017;
}

.cta-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A017;
    font-size: 13px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-micro-cta:hover .cta-arrow {
    transform: scale(1.12) rotate(45deg);
    background-color: #D4A017;
    color: #050505;
    box-shadow: 0 0 25px rgba(212, 160, 23, 0.45);
}

/* 3-Column main Grid */
.footer-grid-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: end;
    width: 100%;
}

.col-title-gold {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #D4A017;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* Left Column Links stack */
.explore-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.explore-links li {
    opacity: 0;
    transform: translateY(15px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.explore-links li.link-visible {
    opacity: 1;
    transform: translateY(0);
}

.explore-links a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.explore-links a span {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.4s ease;
}

.explore-links a:hover {
    transform: translateX(6px);
    color: #D4A017;
}

.explore-links a:hover span {
    color: #D4A017;
    transform: rotate(90deg);
}

/* Center Column Newsletter */
.footer-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.newsletter-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: 0.01em;
    color: #ffffff;
    margin: 0 0 25px 0;
    text-transform: uppercase;
}

.newsletter-form {
    width: 100%;
    max-width: 380px;
}

.newsletter-input-wrap {
    position: relative;
    height: 56px;
    width: 100%;
    display: flex;
    align-items: center;
}

.newsletter-input {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0 70px 0 24px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: #D4A017;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.15);
}

.newsletter-btn {
    position: absolute;
    right: 6px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #D4A017;
    border: none;
    color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.newsletter-btn:hover {
    transform: scale(1.06);
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Right Column Contact */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    color: #D4A017;
    font-size: 14px;
    margin-top: 4px;
}

.contact-item p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #D4A017;
}

/* Social icons outline */
.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(212, 160, 23, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A017;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-icon:hover {
    transform: translateY(-3px);
    background-color: #D4A017;
    color: #050505;
    border-color: #D4A017;
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.4);
}

/* Bottom Row utility links */
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.copyright-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.policy-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-links a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-links a:hover {
    color: #D4A017;
}

.dot-separator {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.6rem;
}

/* Cinematic Reveal triggers */
.anim-reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-reveal-up.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.anim-fade-in {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-in.reveal-active {
    opacity: 1;
}

/* Disable transitions and set final visible states when GSAP is controlling these elements */
.gsap-active .anim-reveal-up,
.gsap-active .anim-fade-in,
.gsap-active .explore-links li {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .portport-footer {
        min-height: auto;
        padding: 80px 4vw 40px 4vw;
    }

    .footer-container {
        min-height: auto;
        gap: 50px;
    }

    .footer-grid-row {
        grid-template-columns: 1fr;
        gap: 50px;
        justify-items: center;
        text-align: center;
    }

    .footer-col-left,
    .footer-col-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .explore-links {
        align-items: center;
    }

    .contact-details {
        align-items: center;
    }

    .footer-plant-image {
        height: 300px;
    }

    .footer-corner-leaf {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .footer-header-row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-center-headline {
        font-size: 2.2rem;
    }

    .footer-micro-cta {
        margin-top: 10px;
    }

    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-plant-image {
        height: 250px;
    }

    .footer-corner-leaf {
        opacity: 0.35;
    }
}

/* --- FOOTER DESKTOP VISUAL ALIGNMENT OVERRIDES --- */
@media (min-width: 992px) {
    .portport-footer {
        min-height: 100vh !important;
        height: 100vh !important;
        padding: 104px 5vw 40px 5vw !important;
    }

    .footer-container {
        padding-top: 0px !important;
        min-height: unset !important;
        height: 100% !important;
    }

    .footer-header-row {
        margin-top: 0px !important;
        transform: translate3d(21px, -7px, 0px) scale(1) rotate(0deg) !important;
    }

    .footer-grid-row {
        transform: translate3d(2px, 151px, 0px) scale(1) rotate(0deg) !important;
    }

    .footer-col-left {
        font-size: 12px !important;
        line-height: 0.8 !important;
        letter-spacing: 2px !important;
        font-weight: 100 !important;
    }

    .footer-col-right {
        transform: translate3d(82px, 0px, 0px) scale(1) rotate(0deg) !important;
    }

    .footer-bottom-row {
        transform: translate3d(0px, 46px, 0px) scale(1) rotate(0deg) !important;
    }

    .copyright-text {
        transform: translate3d(1px, -20px, 0px) scale(1) rotate(0deg) !important;
    }

    .policy-links {
        transform: translate3d(-1px, -21px, 0px) scale(1) rotate(0deg) !important;
    }
}

:root {
    --footer-plant-tx: -4px;
    --footer-plant-ty: 15px;
    --footer-plant-scale: 1.15;
    --footer-agrox-tx: -164px;
    --footer-agrox-ty: -134px;
    --footer-agrox-scale: 0.95;
    --footer-group-tx: 134px;
    --footer-group-ty: -4px;
    --footer-group-scale: 0.95;
}

/* ================================================= */
/* === 5. HERO REDESIGN: LUXURY CINEMATIC LAYOUT === */
/* ================================================= */

/* Navigation Gradient Readability Overlay - REMOVED */
/*
.hero-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 55%, transparent 100%);
    z-index: 8;
    pointer-events: none;
    will-change: opacity;
    transition: opacity 0.4s var(--anim-ease);
}
*/

/* Enhanced Vignette & Lighting overlay on the background stage - REMOVED */
/*
.vignette-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.45) 100%),
                linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.60) 100%);
    z-index: 2;
    pointer-events: none;
}
*/

/* Cinematic Layer Filtering for Depth & Separation - REMOVED SHADOWS */
/*
#layerTop { filter: brightness(0.5) contrast(1.35) saturate(0.8); }
#layerMid2 { filter: brightness(0.6) contrast(1.25) saturate(0.85); }
#layerMid1 { filter: brightness(0.65) contrast(1.2) saturate(0.85); }
#layerBottom { filter: brightness(0.55) contrast(1.3) saturate(0.9); }
*/

/* Hero Text & CTA Content Layout */
.hero-editorial-container {
    width: 100%;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-sizing: border-box;
}

.hero-editorial-column {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    z-index: 9;
    pointer-events: auto;
    animation: heroFadeInLeft 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-editorial-tagline {
    font-family: var(--brand-font);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--primary);
    /* Gold Accent */
    margin: 0 0 24px 0;
    line-height: 1;
}

.hero-editorial-headline {
    font-family: var(--brand-font);
    font-size: clamp(65px, 8.2vw, 145px);
    font-weight: 800;
    line-height: 0.86;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 32px 0;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-editorial-headline span {
    display: block;
}

.hero-editorial-headline .accent-gold {
    color: var(--primary);
    /* Brand gold */
    background: linear-gradient(135deg, #FFF59D 0%, var(--primary) 50%, #F57F17 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(255, 213, 79, 0.2));
}

.hero-editorial-description {
    font-family: 'Segoe UI', sans-serif;
    font-size: clamp(1rem, 1.05vw, 1.15rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin: 0 0 48px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-editorial-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--primary);
    font-family: var(--brand-font);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.4s var(--anim-ease);
}

.hero-editorial-cta .cta-text {
    transition: color 0.4s var(--anim-ease);
}

.hero-editorial-cta .cta-arrow-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.4s var(--anim-ease);
}

.hero-editorial-cta .cta-arrow-circle i {
    font-size: 0.95rem;
    transition: transform 0.4s var(--anim-ease);
}

.hero-editorial-cta:hover .cta-arrow-circle {
    background-color: var(--primary);
    color: #000000;
    box-shadow: 0 0 15px rgba(255, 213, 79, 0.4);
}

.hero-editorial-cta:hover .cta-arrow-circle i {
    transform: translateX(2px);
}

.hero-editorial-cta:hover .cta-text {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 213, 79, 0.3);
}

/* Certified Seal Badge */
.hero-certified-badge {
    position: absolute;
    right: clamp(60px, 8vw, 120px);
    bottom: 12%;
    z-index: 9;
    pointer-events: auto;
    transition: transform 0.4s var(--anim-ease);
    animation: heroFadeInRight 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-certified-badge:hover {
    transform: scale(1.06);
}

.organic-seal {
    animation: spin-slow 35s linear infinite;
    display: block;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Bottom Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    pointer-events: none;
    animation: heroFadeInUp 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.scroll-mouse-icon {
    width: 20px;
    height: 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-dot {
    width: 3px;
    height: 7px;
    background-color: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    animation: scroll-wheel-anim 1.8s infinite ease-in-out;
}

.scroll-text {
    font-family: var(--brand-font);
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes scroll-wheel-anim {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        transform: translateY(8px);
        opacity: 0;
    }

    100% {
        transform: translateY(8px);
        opacity: 0;
    }
}

/* Luxury Cinematic Keyframe Animations */
@keyframes heroFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroFadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 25px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* ================================================= */
/* === 6. HAMBURGER & MOBILE DRAWER STYLING === */
/* ================================================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary);
}

.nav-menu-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 340px;
    height: 100vh;
    background: rgba(10, 20, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1050;
    padding: 110px 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.7);
}

.nav-menu-mobile.active {
    transform: translateX(0);
    visibility: visible;
}

.nav-menu-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nav-menu-mobile ul a,
.nav-menu-mobile .mobile-dropdown-toggle {
    font-family: var(--brand-font);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu-mobile ul a:hover,
.nav-menu-mobile .mobile-dropdown-toggle:hover {
    color: var(--primary);
}

/* Mobile Dropdown Sub-menu */
.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    padding-left: 15px !important;
    margin-top: 0 !important;
    gap: 12px !important;
    transition: max-height 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), margin-top 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-dropdown-parent.active .mobile-dropdown-menu {
    max-height: 400px;
    margin-top: 12px !important;
}

.mobile-dropdown-parent.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
    color: var(--primary);
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
}

.nav-menu-mobile .mobile-dropdown-menu a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: none;
    color: #b5b5b5;
    letter-spacing: 0.5px;
}

.nav-menu-mobile .mobile-dropdown-menu a:hover {
    color: var(--primary);
    padding-left: 4px;
}

/* Responsiveness adjustments for smaller viewports */
@media (max-width: 968px) {
    .hero-editorial-container {
        padding: 0 40px;
    }

    .hero-certified-badge {
        right: 40px;
        bottom: 12%;
    }
}

@media (max-width: 768px) {

    /* Unified Padding for Mobile */
    .container,
    .hero-editorial-container,
    #harvest .container,
    .footer-content-wrapper {
        padding: 0 24px !important;
    }

    /* Centered Hero on Mobile */
    .hero-editorial-container {
        flex-direction: column;
        justify-content: center;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-editorial-column {
        max-width: 100%;
        padding-top: 60px;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-editorial-headline {
        font-size: clamp(38px, 11vw, 70px);
        margin: 0 0 24px 0;
    }

    .hero-editorial-tagline {
        margin: 0 0 16px 0;
        letter-spacing: 3px;
    }

    .hero-editorial-description {
        margin: 0 auto 36px !important;
        max-width: 480px;
    }

    .hero-editorial-cta {
        justify-content: center;
    }

    .hero-certified-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 36px;
        align-self: center !important;
        animation: heroFadeInUp 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    /* Centered Story on Mobile */
    .story-text-block {
        margin: 0 auto 35px !important;
        text-align: center !important;
    }

    .story-main-desc {
        margin: 0 auto 35px !important;
    }

    .story-cta-btn {
        margin: 0 auto;
        justify-content: center;
    }

    /* Centered Harvest Grid Header on Mobile */
    .harvest-header-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center !important;
    }

    .harvest-header-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .harvest-desc {
        margin: 0 auto 24px !important;
    }

    .harvest-explore-btn {
        margin: 0 auto;
        justify-content: center;
    }

    /* Product Cards 2-column Grid for Mobile */
    .products-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .product-category-card {
        border-radius: 12px;
    }

    .card-content {
        padding: 16px !important;
    }

    .card-title {
        font-size: 1.3rem !important;
        margin-bottom: 6px !important;
    }

    .card-icon-circle {
        width: 38px !important;
        height: 38px !important;
        margin-bottom: 12px !important;
    }

    .card-icon-circle svg {
        width: 16px;
        height: 16px;
    }

    .card-cta-text {
        display: none !important;
    }

    /* Centered Process Cards on Mobile */
    .process-card {
        text-align: center !important;
        align-items: center !important;
        padding-top: 40px !important;
    }

    .process-num {
        left: 50% !important;
        transform: translateX(-50%) !important;
        border-radius: 0 0 8px 8px !important;
    }

    .process-card h3 {
        margin-top: 15px !important;
    }

    /* Footer Responsive Polish - Removed for redesign */
}

@media (max-width: 480px) {
    .products-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .hero-editorial-headline {
        font-size: 2.3rem;
    }
}

/* --- SECTION 5: PROCESS REFINED --- */
.process-refined-section {
    min-height: 100vh;
    position: sticky;
    top: 0;
    z-index: 6 !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    background-color: #121411;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    padding: 0 !important;
    box-sizing: border-box;
}

.process-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.process-bg-img {
    width: 100%;
    height: 100%;
    object-cover: cover;
    object-fit: cover;
    opacity: 0.6;
}

.process-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #121411 0%, transparent 50%, rgba(18, 20, 17, 0.8) 100%);
}

.process-watermark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
    user-select: none;
}

.watermark-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30vw;
    line-height: 1;
    letter-spacing: 0.15em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
    opacity: 0.25;
}

.process-header {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-left: 5vw;
    padding-right: 5vw;
    width: 100%;
    box-sizing: border-box;
}

.process-header-content {
    max-width: 700px;
    text-align: left;
}

.process-subtitle {
    font-family: 'Poppins', sans-serif;
    color: #D4A017;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3em;
    margin-bottom: 16px;
    display: block;
}

.process-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 6vw, 6.5rem);
    line-height: 0.95;
    margin: 0 0 20px 0;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
}

.text-gold {
    color: #D4A017;
}

.process-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin: 0;
}

.process-grid-container {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    width: 100%;
    box-sizing: border-box;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    position: relative;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(5, 1fr);
        height: 60vh;
    }
}

.process-step-col {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 30px;
    min-height: 350px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .process-step-col {
        min-height: auto;
        height: 100%;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .process-step-col:last-child {
        border-right: none;
    }
}

.step-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.step-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-step-col:hover .step-bg-img {
    transform: scale(1.1);
}

.step-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #121411 0%, rgba(18, 20, 17, 0.4) 60%, transparent 100%);
    z-index: 1;
}

.step-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.step-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    width: 100%;
}

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    color: #D4A017;
    margin-bottom: 8px;
    line-height: 1;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-align: center;
    text-shadow: none;
}

.step-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #D4A017;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 20, 17, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.process-step-col:hover .step-icon-wrapper {
    background: #D4A017;
    box-shadow: 0 0 15px rgba(212, 160, 23, 0.4);
}

.step-icon {
    width: 24px;
    height: 24px;
    color: #D4A017;
    transition: color 0.3s ease;
}

.process-step-col:hover .step-icon {
    color: #121411;
}

.step-description {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin: 0;
    max-width: 220px;
}

.timeline-connector {
    display: none;
}

@media (min-width: 768px) {
    .timeline-connector {
        display: flex;
        position: absolute;
        top: 68%;
        left: 0;
        width: 100%;
        padding: 0 10%;
        align-items: center;
        justify-content: space-between;
        pointer-events: none;
        z-index: 3;
        box-sizing: border-box;
    }
}

.timeline-dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.timeline-line {
    height: 1px;
    background-color: rgba(212, 160, 23, 0.5);
    flex-grow: 1;
}

.process-footer {
    position: relative;
    z-index: 2;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.scroll-explore-mouse {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.mouse-icon {
    width: 22px;
    height: 36px;
    border: 1px solid #D4A017;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    margin-bottom: 8px;
    box-sizing: border-box;
}

.mouse-wheel {
    width: 3px;
    height: 6px;
    background-color: #D4A017;
    border-radius: 9999px;
    animation: processMouseScroll 1.5s infinite;
}

@keyframes processMouseScroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(6px);
    }
}

.scroll-text {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.scroll-explore-mouse:hover .scroll-text {
    color: #D4A017;
}

/* ================================================= */
/* === AGROX UNIVERSAL BANNER SYSTEM === */
/* ================================================= */
:root {
    --navbar-safe-zone: 120px;
    --bg-parallax-y: 0px;
    --typo-parallax-y: 0px;
    --title-parallax-y: 0px;
    --typo-slide-x: 0px;
    --title-slide-x: 0px;
}

@media (max-width: 767px) {
    :root {
        --navbar-safe-zone: 90px;
    }
}

/* Base Wrapper Specificity Override */
body .banner-wrapper {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    margin-bottom: 0px !important;
    display: block !important;
    background-color: #050505 !important;

    /* Viewport-controlled sizing system (Compact Internal Page Header) */
    height: 300px !important;
    min-height: unset !important;
    max-height: unset !important;

    /* Smooth entrance animation */
    opacity: 1 !important;
}

/* Responsive Sizing Rules */
@media (max-width: 1200px) {

    /* Laptop */
    body .banner-wrapper {
        height: 280px !important;
    }
}

@media (max-width: 991px) {

    /* Tablet */
    body .banner-wrapper {
        height: 240px !important;
    }
}

@media (max-width: 767px) {

    /* Mobile */
    body .banner-wrapper {
        height: 200px !important;
    }
}

/* Layer 1: Background Image with Scroll Bleed (Scale 1.1 for 20px parallax) */
body .banner-wrapper img,
body .banner-wrapper .banner-img-responsive,
body .banner-wrapper .banner-bg-image {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    z-index: 1 !important;
    transform: translate(-50%, calc(-50% + var(--bg-parallax-y, 0px))) scale(1.1) !important;
    transition: transform 0.05s ease-out;
    will-change: transform;
}

/* Layer 2: Dark Cinematic Overlay & Vignette */
body .banner-wrapper .banner-overlay-dark,
body .banner-wrapper .vignette-overlay,
body .banner-wrapper .banner-vignette {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.3) 0%, rgba(5, 5, 5, 0.75) 100%), radial-gradient(circle at center, transparent 30%, rgba(5, 5, 5, 0.6) 100%) !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

/* Content Alignment System (Flexbox centered within safe zone) */
body .banner-wrapper .banner-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100% !important;
    width: 100% !important;
    padding-top: var(--navbar-safe-zone) !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 4 !important;
}

/* Layer 3: Brand Outline Typography (Signature Layer Centered Visually with visual breathing padding) */
body .banner-wrapper .banner-bg-typography,
body .banner-wrapper .banner-scroll-text {
    position: absolute !important;
    top: calc(50% + (var(--navbar-safe-zone) / 2)) !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    /* Removed !important to allow JS inline transform */
    z-index: 3 !important;
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    font-size: clamp(8rem, 15vw, 15rem) !important;
    /* Protected breathing space */
    line-height: 1 !important;
    letter-spacing: 0.02em !important;
    color: transparent !important;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4) !important;
    text-shadow: none !important;
    /* Stripped double outline/neon shadows */
    opacity: 0.35 !important;
    white-space: nowrap !important;
    pointer-events: none !important;
    user-select: none !important;
    text-align: center !important;
    will-change: transform;
}

/* Responsive outline typography scales to fit smaller device screens and preserve negative space */
@media (max-width: 1200px) {

    body .banner-wrapper .banner-bg-typography,
    body .banner-wrapper .banner-scroll-text {
        font-size: clamp(7rem, 12vw, 12rem) !important;
    }
}

@media (max-width: 991px) {

    body .banner-wrapper .banner-bg-typography,
    body .banner-wrapper .banner-scroll-text {
        font-size: clamp(5.5rem, 9vw, 9rem) !important;
    }
}

@media (max-width: 767px) {

    body .banner-wrapper .banner-bg-typography,
    body .banner-wrapper .banner-scroll-text {
        font-size: clamp(4rem, 7.5vw, 7.5rem) !important;
    }
}

/* Layer 4 Wrapper: Title Scroll Parallax (Centered Visually in Content Area) */
body .banner-wrapper .banner-fg-title-wrapper {
    position: relative !important;
    z-index: 4 !important;
    transform: translate(var(--title-slide-x, 0px), var(--title-parallax-y, 0px));
    will-change: transform;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

/* Layer 4: Foreground Title (Proportional & Dominant) */
body .banner-wrapper .banner-fg-title {
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    font-size: clamp(4rem, 7vw, 8rem) !important;
    letter-spacing: 0.02em !important;
    line-height: 0.95 !important;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.9), 0 3px 10px rgba(0, 0, 0, 0.5) !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    text-align: center !important;
    max-width: 90% !important;
    /* Title Container Rules */
    text-wrap: balance !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    position: relative !important;

    /* Subtle Premium Entry Animation */
    opacity: 0;
    filter: blur(8px);
    animation: bannerTitleReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
    animation-delay: 0.1s !important;
    will-change: transform, filter, opacity;
}

body .banner-wrapper .banner-title {
    position: absolute !important;
    top: calc(50% + (var(--navbar-safe-zone) / 2)) !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    /* Removed !important to allow JS inline transform */
    z-index: 4 !important;
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    font-size: clamp(3.5rem, 7vw, 8rem) !important;
    letter-spacing: 0.02em !important;
    line-height: 0.95 !important;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.9), 0 3px 10px rgba(0, 0, 0, 0.5) !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    text-align: center !important;
    width: 90% !important;
    text-wrap: balance !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;

    /* Subtle Premium Entry Animation */
    opacity: 0;
    filter: blur(8px);
    animation: bannerTitleRevealAbsolute 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.15s;
    will-change: transform, filter, opacity;
}

@keyframes bannerTitleReveal {
    0% {
        opacity: 0;
        filter: blur(8px);
        transform: scale(0.98) translateY(5px);
    }

    100% {
        opacity: 1;
        filter: blur(0px);
        transform: scale(1) translateY(0);
    }
}

@keyframes bannerTitleRevealAbsolute {
    0% {
        opacity: 0;
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        filter: blur(0px);
    }
}

/* Layer 5: Subtle Vignette (Soft edges) */
body .banner-wrapper .banner-vignette {
    position: absolute !important;
    inset: 0 !important;
    background: radial-gradient(circle at center, transparent 50%, rgba(5, 5, 5, 0.6) 100%) !important;
    z-index: 5 !important;
    pointer-events: none !important;
}