/* ============================================
   WYE BRAND DESIGN SYSTEM
   Integrated: Design + Content + UX Enhancements
   ============================================ */

:root {
    /* ========================================
       PRIMARY PALETTE - Exact Brand Values
       ======================================== */
    --wye-green: #9CC93D;
    --wye-green-rgb: 156, 201, 61;
    --wye-green-light: #B8E066;
    --wye-green-dark: #7BA32E;
    
    --wye-black: #262A2B;
    --wye-black-rgb: 38, 42, 43;
    --wye-black-light: #3A3F41;
    
    --wye-grey: #F2F2F6;
    --wye-grey-rgb: 242, 242, 246;
    --wye-grey-dark: #E2E2E8;
    
    --wye-white: #FFFFFF;
    --wye-white-rgb: 255, 255, 255;
    
    /* ========================================
       SECONDARY PALETTE
       ======================================== */
    --wye-yellow: #F4C430;
    --wye-lime: #A4C639;
    --wye-pink: #E8B4CB;
    --wye-blue: #B8D4E3;
    --wye-coral: #E84855;
    --wye-teal: #39A845;
    --wye-slate: #7BA3B5;
    --wye-rose: #F48FB1;
    
    /* ========================================
       SEMANTIC COLORS
       ======================================== */
    --bg-primary: var(--wye-white);
    --bg-secondary: var(--wye-grey);
    --bg-dark: var(--wye-black);
    --text-primary: var(--wye-black);
    --text-secondary: rgba(38, 42, 43, 0.65);
    --text-light: rgba(255, 255, 255, 0.85);
    --accent: var(--wye-green);
    
    /* ========================================
       TYPOGRAPHY - Mundial Specifications
       ======================================== */
    --font-primary: 'MundialLight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-headings: 'MundialDemibold', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Tracking: -10 for headlines */
    --tracking-tight: -0.05em;
    --tracking-normal: 0;
    --tracking-wide: 0.05em;
    --tracking-wider: 0.1em;
    
    /* ========================================
       SPACING SYSTEM - 8px base
       ======================================== */
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 3rem;
    --space-6: 4rem;
    --space-7: 6rem;
    --space-8: 8rem;
    
    /* ========================================
       BORDER RADIUS - Brand Shapes
       40% of element size on opposite corners
       ======================================== */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Brand shape: 40% corner radius */
    --radius-brand: 40% 40% 40% 40% / 40% 40% 40% 40%;
    --radius-brand-alt: 40% 0% 40% 0% / 40% 0% 40% 0%;
    --radius-brand-reverse: 0% 40% 0% 40% / 0% 40% 0% 40%;
    
    /* ========================================
       EASING - Premium feel
       ======================================== */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-dramatic: cubic-bezier(0.87, 0, 0.13, 1);
    --ease-expo-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* ========================================
       SHADOWS - Subtle, premium depth
       ======================================== */
    --shadow-sm: 0 1px 2px 0 rgba(38, 42, 43, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(38, 42, 43, 0.08), 0 2px 4px -2px rgba(38, 42, 43, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(38, 42, 43, 0.08), 0 4px 6px -4px rgba(38, 42, 43, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(38, 42, 43, 0.08), 0 8px 10px -6px rgba(38, 42, 43, 0.04);
    --shadow-premium: 0 25px 50px -12px rgba(38, 42, 43, 0.12);
    --shadow-green: 0 20px 40px rgba(156, 201, 61, 0.25);
    --shadow-green-lg: 0 30px 60px rgba(156, 201, 61, 0.35);
    
    /* ========================================
       Z-INDEX SCALE
       ======================================== */
    --z-base: 0;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    --z-toast: 800;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    width: 100%;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY - FONT FAMILIES
   ============================================ */

/* Headings use MundialDemibold */
h1, h2, h3, h4, h5, h6,
.display-xl, .display-lg, .display-md,
.section-eyebrow,
.nav-logo {
    font-family: var(--font-headings);
}

/* Body text uses MundialLight */
body, p, .nav-link {
    font-family: var(--font-primary);
}

/* ============================================
   TYPOGRAPHY SCALE
   ============================================ */

.display-xl {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: var(--font-weight-light);
    letter-spacing: var(--tracking-tight);
    line-height: 0.95;
}

.display-lg {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: var(--font-weight-light);
    letter-spacing: var(--tracking-tight);
    line-height: 1;
}

.display-md {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: var(--font-weight-regular);
    letter-spacing: var(--tracking-tight);
    line-height: 1.1;
}

.heading-lg {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--tracking-tight);
    line-height: 1.2;
}

.heading-md {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.heading-sm {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.body-lg {
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    font-weight: var(--font-weight-regular);
    line-height: 1.8;
    color: var(--text-secondary);
}

.body-md {
    font-size: 1rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.7;
    color: var(--text-secondary);
}

.body-sm {
    font-size: 0.875rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--text-secondary);
}

.label {
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

/* ============================================
   UTILITIES
   ============================================ */

.text-green { color: var(--wye-green); }
.text-white { color: var(--wye-white); }
.text-light { color: var(--text-light); }

.bg-white { background: var(--wye-white); }
.bg-grey { background: var(--wye-grey); }
.bg-dark { background: var(--wye-black); }
.bg-green { background: var(--wye-green); }

.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================
   LAYOUT COMPONENTS
   ============================================ */

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

.container-narrow {
    max-width: 960px;
}

.grid {
    display: grid;
    gap: var(--space-4);
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }

/* ============================================
   PAGE LOADER
   ============================================ */

/* Simplified Page Loader - Fast fade */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--wye-white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.loader-logo {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--wye-black);
    letter-spacing: var(--tracking-tight);
}

.loader-logo::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--wye-green);
    margin-left: 4px;
    border-radius: 2px;
}

/* ============================================
   SCROLL PROGRESS INDICATOR
   ============================================ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--wye-green), var(--wye-lime));
    z-index: 10000;
    transform-origin: left;
    transform: scaleX(0);
}

/* ============================================
   BRAND SHAPE ELEMENTS
   ============================================ */

.brand-shape {
    position: absolute;
    border-radius: var(--radius-brand);
    pointer-events: none;
}

.brand-shape-alt {
    border-radius: var(--radius-brand-alt);
}

.brand-shape-reverse {
    border-radius: var(--radius-brand-reverse);
}

.brand-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.15; transform: none; }
    50% { opacity: 0.25; transform: none; }
}

/* ============================================
   NAVIGATION - Premium Fixed with Backdrop Blur
   ============================================ */



/* ============================================
   HERO - Editorial Mosaic with Kinetic Typography
   ============================================ */

.section-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        160deg,
        var(--wye-white) 0%,
        var(--wye-grey) 40%,
        var(--wye-white) 70%,
        rgba(156, 201, 61, 0.03) 100%
    );
}

/* Subtle dot-grid texture */
.hero-texture {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(38, 42, 43, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
    mask-image: linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 55%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 55%);
}

/* Ambient green glow behind images */
.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    right: 8%;
    top: 18%;
    background: radial-gradient(circle, rgba(156, 201, 61, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-6);
    align-items: center;
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 100vh;
}

.hero-content {
    position: relative;
    max-width: 620px;
    padding-left: 32px;
}

/* Vertical green accent line */
.hero-accent-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--wye-green) 0%, rgba(156, 201, 61, 0.1) 100%);
    border-radius: 2px;
    transform-origin: top;
    transform: scaleY(0);
    will-change: transform;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(156, 201, 61, 0.08);
    border-radius: var(--radius-full);
    border: 1px solid rgba(156, 201, 61, 0.15);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wye-green);
    margin-bottom: var(--space-4);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.hero-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--wye-green);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: none; }
    50% { opacity: 0.5; transform: none; }
}

.hero-title {
    font-size: clamp(2.75rem, 5.5vw, 5rem);
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--wye-black);
    margin-bottom: var(--space-4);
}

.hero-title-line {
    display: block;
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.hero-title-line:last-child {
    margin-top: 0.1em;
}

/* Text-clip effect: image shows through WYE letters */
.hero-title-wye {
    display: inline-block;
    background-image: url('/images/hero/_O9A1628 3.webp');
    background-size: cover;
    background-position: center 40%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.15em;
    font-weight: 700;
    position: relative;
}

/* Fallback for browsers without background-clip: text */
@supports not (-webkit-background-clip: text) {
    .hero-title-wye {
        color: var(--wye-green);
        -webkit-text-fill-color: var(--wye-green);
        background-image: none;
    }
}

.hero-title .text-green {
    color: var(--wye-green);
}

.hero-description {
    font-size: clamp(1rem, 1.2vw, 1.1875rem);
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: var(--space-5);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

/* ============================================
   HERO IMAGE MOSAIC
   ============================================ */

.hero-images {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
}

.hero-img-primary {
    position: relative;
    width: 88%;
    height: 420px;
    margin-left: auto;
    border-radius: var(--radius-brand-alt);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    z-index: 2;
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.hero-img-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s var(--ease-smooth);
}

.hero-img-primary:hover img {
    transform: none;
}

/* Subtle bottom gradient on primary image */
.hero-img-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(38, 42, 43, 0.12) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-img-secondary {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 52%;
    height: 260px;
    border-radius: var(--radius-brand-reverse);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--wye-white);
    transform: rotate(-2deg) translateY(40px);
    z-index: 3;
    opacity: 1;
    will-change: opacity, transform;
}

.hero-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s var(--ease-smooth);
}

.hero-img-secondary:hover {
    transform: rotate(0deg) translateY(0);
}

.hero-img-secondary:hover img {
    transform: none;
}

.hero-img-accent {
    position: absolute;
    top: -15px;
    right: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--wye-green);
    box-shadow: var(--shadow-lg);
    z-index: 4;
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.hero-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-img-accent:hover {
    box-shadow: 0 0 0 6px rgba(156, 201, 61, 0.25), var(--shadow-lg);
}

/* ============================================
   UNIFIED CTA BUTTON STYLES
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s var(--ease-spring);
    position: relative;
    overflow: hidden;
    will-change: transform;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    line-height: 1.4;
}

.btn-primary {
    background: var(--wye-green);
    color: #FFFFFF;
    border-color: var(--wye-green);
    box-shadow: 0 4px 15px rgba(156, 201, 61, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--wye-green-dark) 0%, var(--wye-green) 100%);
    opacity: 1;
    transition: opacity 0.4s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(156, 201, 61, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary i,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    color: var(--wye-green);
    border: 2px solid var(--wye-green);
}

.btn-outline:hover {
    background: var(--wye-green);
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(156, 201, 61, 0.4);
}

/* Magnetic button effect */
.btn-magnetic {
    transition: transform 0.3s var(--ease-expo-out);
}

/* Secondary Button (outline on dark) */
.btn-outline-light {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.03);
}

.btn-outline-light span {
    position: relative;
    z-index: 1;
}

/* Floating Stats Card */
.hero-stats-card {
    position: relative;
    z-index: 5;
    max-width: 1100px;
    margin: -40px auto 0;
    background: var(--wye-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(38, 42, 43, 0.08), 0 1px 3px rgba(38, 42, 43, 0.04);
    overflow: hidden;
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.hero-stats-card-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--wye-green) 0%, var(--wye-green-light) 100%);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 32px 24px;
}

.hero-stat {
    text-align: center;
    position: relative;
    padding: 8px 16px;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: none;
    height: 40px;
    width: 1px;
    background: rgba(38, 42, 43, 0.1);
}

.hero-stat-number {
    font-size: clamp(2rem, 2.8vw, 2.75rem);
    font-weight: 700;
    color: var(--wye-black);
    display: inline;
    font-variant-numeric: tabular-nums;
}

.hero-stat-plus {
    font-size: clamp(2rem, 2.8vw, 2.75rem);
    font-weight: 700;
    color: var(--wye-green);
}

.hero-stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(38, 42, 43, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: 6px;
}

/* ============================================
   SECTION DIVIDERS
   ============================================ */

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(156, 201, 61, 0.3) 50%, transparent 100%);
    margin: 0 auto;
    max-width: 200px;
}

.section-divider-dark {
    background: linear-gradient(90deg, transparent 0%, rgba(156, 201, 61, 0.2) 50%, transparent 100%);
}

/* ============================================
   SECTION: ABOUT WYE - IMMERSIVE SHOWCASE
   ============================================ */

.section-about {
    width: 100%;
    padding: var(--space-8) 0;
    background: var(--wye-white);
    position: relative;
    overflow: hidden;
}

/* Subtle diagonal accent */
.section-about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(156,201,61,0.03) 100%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-8);
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-content {
    position: relative;
    z-index: 10;
    padding-right: var(--space-4);
}

/* About section specific - inherits from unified .section-eyebrow */
.about-content .section-eyebrow {
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.about-content h2 {
    color: var(--wye-black);
    margin-bottom: var(--space-4);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.about-content > p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: var(--space-5);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

/* Experience Badge */
.about-experience-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
    padding: var(--space-3) var(--space-5);
    background: var(--wye-black);
    border-radius: var(--radius-xl);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.about-experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wye-green);
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.3;
}

.about-cta {
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

/* Elegant Image Gallery */
.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
}

.about-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
    transition: all 0.5s var(--ease-expo-out);
    aspect-ratio: 4/3;
}

.about-img:hover {
    transform: none;
    box-shadow: var(--shadow-xl);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s var(--ease-expo-out);
    background: var(--wye-grey);
}

.about-img:hover img {
    transform: none;
}

.about-img:nth-child(1) {
    border-radius: var(--radius-brand-alt);
}

.about-img:nth-child(2) {
    border-radius: var(--radius-brand);
}

.about-img:nth-child(3) {
    border-radius: var(--radius-brand-reverse);
}

.about-img:nth-child(4) {
    border-radius: var(--radius-brand-alt);
}

/* Unified Section Eyebrow - Pill Style */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--wye-green);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    margin-bottom: var(--space-4);
    padding: 10px 24px;
    background: rgba(156, 201, 61, 0.1);
    border: 1px solid rgba(156, 201, 61, 0.2);
    border-radius: var(--radius-full);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

/* ============================================
   SECTION: OPERATIONS
   ============================================ */

.section-operations {
    width: 100%;
    padding: var(--space-8) 0;
    background: #F2F2F6;
    position: relative;
}

.operations-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
    align-items: center;
}

/* Operations section specific - inherits from unified .section-eyebrow */
.operations-content .section-eyebrow {
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.operations-content h2 {
    color: var(--wye-black);
    margin-bottom: var(--space-4);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.operations-content > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-5);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.operations-cta {
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

/* Warehouse Map Visual */
.operations-map {
    position: relative;
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.operations-map-container {
    height: 480px;
    background: linear-gradient(135deg, var(--wye-grey) 0%, #e8e8ec 100%);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: center;
}
/* UK outline shape using CSS */
/* .operations-map-container::before {
    content: '';
    position: absolute;
    top: 8%;
    left: 20%;
    width: 60%;
    height: 84%;
    background: rgba(var(--wye-green-rgb), 0.06);
    border-radius: 40% 50% 35% 45% / 30% 40% 50% 40%;
    pointer-events: none;
} */

.map-location {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    cursor: pointer;
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.map-pin {
    width: 20px;
    height: 20px;
    background: var(--wye-green);
    border-radius: 50%;
    border: 4px solid var(--wye-white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    position: relative;
    transition: all 0.3s var(--ease-spring);
}

.map-location:hover .map-pin {
    transform: none;
    box-shadow: 0 8px 24px rgba(var(--wye-green-rgb), 0.5);
}

.map-pin::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--wye-green);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: none; opacity: 1; }
    100% { transform: none; opacity: 1; }
}

.map-label {
    background: var(--wye-white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    transition: all 0.3s var(--ease-expo-out);
}

.map-location:hover .map-label {
    background: var(--wye-black);
    color: var(--wye-white);
    transform: none;
}

/* ============================================
   SECTION: 2026 GROWTH
   ============================================ */

.section-growth {
    width: 100%;
    padding: var(--space-8) 0;
    background: var(--wye-grey);
    position: relative;
}

.growth-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-7);
}

/* Growth section specific - inherits from unified .section-eyebrow */
.growth-header .section-eyebrow {
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.growth-header h2 {
    color: var(--wye-black);
    margin-bottom: var(--space-4);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.growth-header > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-5);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.growth-cta {
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.growth-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.growth-card {
    background: var(--wye-white);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm);
    transition: all 0.5s var(--ease-expo-out);
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--wye-green);
    opacity: 1;
    transform: none;
    will-change: transform, opacity, box-shadow;
}

.growth-card:hover {
    transform: none;
    box-shadow: var(--shadow-premium);
}

.growth-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(var(--wye-green-rgb), 0.1);
    color: var(--wye-green);
    border-radius: var(--radius-brand);
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-3);
}

.growth-card h3 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--wye-black);
    margin-bottom: var(--space-2);
}

.growth-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--wye-black);
    font-weight: var(--font-weight-semibold);
    font-size: 0.9375rem;
    transition: all 0.3s var(--ease-expo-out);
    position: relative;
}

.link-arrow::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--wye-green);
    transition: width 0.3s var(--ease-expo-out);
}

.link-arrow:hover {
    gap: var(--space-3);
    color: var(--wye-green);
}

.link-arrow:hover::after {
    width: 100%;
}

/* ============================================
   SECTION: RETAIL
   ============================================ */



/* ============================================
   SECTION: LOCATIONS - Apple Inspired
   ============================================ */

.section-locations {
    width: 100%;
    padding: var(--space-8) 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.locations-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-6);
}

.locations-header .section-eyebrow {
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.locations-header h2 {
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.locations-header > p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-top: var(--space-4);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

/* Location Cards Grid */
.locations-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-8);
    align-items: start;
}

.locations-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.location-card {
    background: var(--wye-white);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(38, 42, 43, 0.06);
    transition: all 0.4s var(--ease-expo-out);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.location-card:hover {
    transform: none;
    box-shadow: var(--shadow-md);
    border-color: rgba(156, 201, 61, 0.3);
}

.location-icon {
    width: 44px;
    height: 44px;
    background: rgba(156, 201, 61, 0.12);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
    color: var(--wye-green);
}

.location-icon svg {
    width: 22px;
    height: 22px;
}

.location-card h4 {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--wye-black);
    margin-bottom: var(--space-2);
}

.location-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Simple Map Visualization */
.locations-map {
    background: var(--wye-white);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(38, 42, 43, 0.06);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.locations-map-title {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--wye-black);
    text-align: center;
    margin-bottom: var(--space-4);
}

.locations-map-visual {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.locations-map-visual svg {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

.location-marker {
    cursor: pointer;
    transition: opacity 0.3s;
}

.location-marker:hover {
    opacity: 0.8;
}

.locations-map-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: var(--space-4);
}

/* ============================================
   SECTION: MARKETING
   ============================================ */

.section-marketing {
    width: 100%;
    padding: var(--space-8) 0;
    background: var(--wye-white);
    position: relative;
}

.marketing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
    align-items: start;
}

/* Marketing section specific - inherits from unified .section-eyebrow */
.marketing-content .section-eyebrow {
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.marketing-content h2 {
    margin-bottom: var(--space-4);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.marketing-content > p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: var(--space-5);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.marketing-cta {
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.marketing-images {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.marketing-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 240px;
}

.marketing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-expo-out);
}

.marketing-img:hover img {
    transform: none;
}

/* Instagram Feed Placeholder */
.instagram-feed {
    margin-top: var(--space-7);
    text-align: center;
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.instagram-feed-title {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.instagram-feed-title svg {
    color: var(--wye-green);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-3);
}

.instagram-placeholder {
    aspect-ratio: 1;
    background: var(--wye-grey);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.4s var(--ease-expo-out);
    cursor: pointer;
}

.instagram-placeholder:hover {
    background: var(--wye-black);
    color: var(--wye-white);
    transform: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.instagram-placeholder svg {
    width: 24px;
    height: 24px;
    opacity: 0.5;
}

/* ============================================
   SECTION: PARTNERSHIPS (Simplified)
   ============================================ */

.section-partnerships {
    width: 100%;
    padding: var(--space-8) 0;
    background: var(--wye-grey);
    position: relative;
}

.section-partnerships::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(156, 201, 61, 0.06) 0%, transparent 100%);
    border-radius: var(--radius-brand);
    pointer-events: none;
}

.partnerships-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-7);
}

/* Partnerships section specific - inherits from unified .section-eyebrow */
.partnerships-header .section-eyebrow {
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.partnerships-header h2 {
    margin-bottom: var(--space-4);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.partnerships-header > p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: var(--space-5);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.partnerships-cta {
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

/* Partner Logos */
.partners-logos {
    margin-top: var(--space-5);
    padding-top: var(--space-5);
    border-top: 1px solid rgba(var(--wye-black-rgb), 0.08);
}

.logos-title {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    margin-bottom: var(--space-5);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-4);
    align-items: center;
}

.logo-item {
    aspect-ratio: 16/9;
    background: var(--wye-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-secondary);
    opacity: 1;
    transform: none;
    will-change: opacity, transform, background;
    transition: all 0.4s var(--ease-expo-out);
    cursor: pointer;
}

.logo-item:hover {
    opacity: 1;
    background: var(--wye-black);
    color: var(--wye-white);
    transform: none;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* ============================================
   SECTION: CONTACT - Light Theme
   ============================================ */

.section-contact {
    width: 100%;
    padding: var(--space-8) 0;
    background: var(--wye-grey);
    color: var(--wye-black);
    position: relative;
    overflow: hidden;
}

.section-contact::before {
    content: '';
    position: absolute;
    top: -10%;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(156, 201, 61, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-7);
}

/* Contact section specific - inherits from unified .section-eyebrow */
.contact-header .section-eyebrow {
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.contact-header h2 {
    color: var(--wye-black);
    margin-bottom: var(--space-4);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.contact-header > p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: var(--space-5);
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.contact-cta-btn {
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--wye-white);
    border: 1px solid rgba(38, 42, 43, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
    transition: all 0.4s var(--ease-expo-out);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wye-green) 0%, var(--wye-lime) 100%);
}

.contact-form-wrapper:hover {
    border-color: rgba(var(--wye-green-rgb), 0.3);
    box-shadow: var(--shadow-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    transition: color 0.3s;
}

.form-group:focus-within label {
    color: var(--wye-green);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--wye-grey);
    border: 1px solid rgba(38, 42, 43, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    color: var(--wye-black);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.4s var(--ease-expo-out);
    will-change: border-color, background, box-shadow;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wye-green);
    background: var(--wye-white);
    box-shadow: 0 0 0 4px rgba(var(--wye-green-rgb), 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: var(--wye-green);
    color: #FFFFFF;
    border: 2px solid var(--wye-green);
    border-radius: 50px;
    padding: 14px 32px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s var(--ease-spring);
    margin-top: var(--space-2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--wye-green-dark) 0%, var(--wye-green) 100%);
    opacity: 1;
    transition: opacity 0.4s;
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(var(--wye-green-rgb), 0.4);
}

.submit-btn.loading {
    pointer-events: none;
}

.submit-btn.loading .btn-text {
    opacity: 1;
}

.submit-btn.loading .btn-loader {
    opacity: 1;
}

.submit-btn.success {
    background: var(--wye-teal);
}

.btn-loader {
    position: absolute;
    opacity: 1;
    transition: opacity 0.3s;
}

.btn-loader::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--wye-black);
    border-radius: 50%;
    display: block;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   FOOTER - Light Theme Consistent
   ============================================ */

.footer {
    background: var(--wye-white);
    color: var(--wye-black);
    padding: var(--space-6) 0 var(--space-4);
    border-top: 1px solid rgba(38, 42, 43, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

.footer-brand .footer-logo {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    display: flex;
    align-items: center;
    margin-bottom: var(--space-3);
    position: relative;
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
    color: var(--wye-black);
}

/* .footer-logo::after {
    content: '';
    width: 10px;
    height: 4px;
    background: var(--wye-green);
    margin-left: 8px;
    border-radius: 2px;
} */

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.8;
    max-width: 320px;
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.footer-col {
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--wye-black);
    margin-bottom: var(--space-4);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    transition: all 0.3s var(--ease-expo-out);
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--wye-green);
    transition: width 0.3s var(--ease-expo-out);
}

.footer-links a:hover {
    color: var(--wye-green);
    transform: none;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(38, 42, 43, 0.08);
    padding-top: var(--space-4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(38, 42, 43, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.4s var(--ease-spring);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--wye-green);
    transform: none;
    border-radius: 50%;
    transition: transform 0.4s var(--ease-spring);
}

.social-link:hover {
    border-color: var(--wye-green);
    color: var(--wye-black);
    transform: translateY(-5px) rotate(5deg);
}

.social-link:hover::before {
    transform: none;
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s var(--ease-spring);
}

.social-link:hover svg {
    transform: none;
}



/* ============================================
   RESPONSIVE FIXES & MOBILE REFINEMENTS
   ============================================ */

/* Prevent horizontal scroll due to transforms / separators */
.section-hero, .section-operations, .section-growth, .section-about, .section-retail, .section-locations, .section-contact { overflow-x: hidden; }

/* Mobile nav overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-expo-out);
    z-index: calc(var(--z-fixed) - 1);
}

body.menu-open { overflow: hidden; }
body.menu-open .nav-overlay { opacity: 1; pointer-events: auto; }

/* Safer container gutters on small screens */
@media (max-width: 1100px) {
    .nav-menu-desktop {
        display: none;
    }

    .nav-menu-mobile {
        display: flex;
    }

    .nav-logo {
        position: absolute;
        left: 50%;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .container { padding: 0 var(--space-3); }
}

@media (max-width: 520px) {
    .container { padding: 0 var(--space-2); }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .about-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 140px;
        min-height: auto;
        gap: 12px;
    }

    .about-img:nth-child(1) {
        grid-row: span 1;
    }

    .about-img:nth-child(4) {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        height: 100%;
        border: none;
    }

    .about-experience-badge {
        width: 100%;
        justify-content: center;
    }

}

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

/* ============================================
   RESPONSIVE: Large Tablet / Small Desktop (≤1200px)
   ============================================ */
@media (max-width: 1200px) {
    .hero-grid {
        gap: var(--space-4);
    }
    .hero-content {
        max-width: 540px;
    }
    .hero-img-primary {
        height: 380px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .about-images {
        min-height: 450px;
    }

    .marketing-layout {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

   

    .locations-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .locations-cards {
        grid-template-columns: 1fr 1fr;
        order: 2;
    }

    .locations-map {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .operations-layout {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .operations-map-container {
        height: 380px;
    }

    .growth-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   RESPONSIVE: Tablet (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 130px;
        padding-bottom: 60px;
        gap: var(--space-5);
        min-height: auto;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding-left: 0;
    }
    .hero-accent-line {
        display: none;
    }
    .hero-title {
        font-size: clamp(2.25rem, 5vw, 3.5rem);
    }
    .hero-description {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-images {
        max-width: 600px;
        margin: 0 auto;
        min-height: 400px;
    }
    .hero-img-primary {
        width: 80%;
        height: 340px;
    }
    .hero-img-secondary {
        width: 50%;
        height: 220px;
        left: 0;
    }
    .hero-img-accent {
        width: 120px;
        height: 120px;
    }
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    .hero-stats-card {
        margin-top: var(--space-5);
    }
}

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

    .nav-menu-mobile {
        position: fixed;
        z-index: var(--z-popover);
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 70px var(--space-5) var(--space-5);
        transition: right 0.4s var(--ease-expo-out);
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        gap: 0;
    }

    .nav-menu-mobile.active {
        right: 0;
    }

    .nav-menu-mobile .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
        color: var(--wye-black);
        border-bottom: 1px solid rgba(0,0,0,0.06);
        width: 100%;
        text-align: left;
    }

    .nav-menu-mobile .nav-link:hover {
        color: var(--wye-green);
    }

    .nav-menu-mobile .nav-link::after {
        display: none;
    }

    .nav-logo {
        position: absolute;
        left: 50%;
        transform: none;
        margin: 0;
    }

    .nav-logo img {
        height: 24px;
    }

    .nav-menu-mobile .nav-cta {
        margin-top: var(--space-4);
        justify-content: center;
        width: 100%;
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }

    .nav-toggle {
        position: absolute;
        right: var(--space-4);
        top: 50%;
        transform: none;
    }

    /* Hero responsive - mobile */
    .hero-grid {
        padding-top: 110px;
        padding-bottom: 40px;
        gap: var(--space-4);
    }
    .hero-title {
        font-size: clamp(2rem, 6vw, 2.75rem);
    }
    .hero-images {
        min-height: 320px;
    }
    .hero-img-primary {
        width: 85%;
        height: 280px;
    }
    .hero-img-secondary {
        width: 55%;
        height: 180px;
        bottom: 0;
    }
    .hero-img-accent {
        width: 100px;
        height: 100px;
        top: -10px;
        right: 0;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 24px 16px;
    }
    .hero-stat:not(:last-child)::after {
        display: none;
    }
    .hero-stat-number {
        font-size: 1.75rem;
    }

    /* Locations mobile */
    .locations-content {
        gap: var(--space-5);
    }

    .locations-cards {
        grid-template-columns: 1fr;
        order: 2;
    }

    .locations-map {
        order: 1;
        padding: var(--space-4);
    }

    .locations-map-visual svg {
        max-height: 320px;
    }

    .location-card {
        padding: var(--space-4);
    }

    .nav-toggle {
        display: flex;
    }

    .display-xl {
        font-size: 3rem;
    }

    .display-lg {
        font-size: 2.25rem;
    }

    .growth-grid {
        grid-template-columns: 1fr;
    }

    .marketing-layout {
        grid-template-columns: 1fr;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .operations-map-container {
        height: 320px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .locations-cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-3);
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .about-images {
        min-height: 400px;
    }

    .operations-map-container { height: 280px; }
}

/* ============================================
   RESPONSIVE: Small Mobile (≤520px)
   ============================================ */
@media (max-width: 520px) {
    .hero-grid {
        padding-top: 100px;
        padding-bottom: 30px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    .hero-img-secondary {
        width: 50%;
        height: 150px;
    }
    .hero-img-accent {
        width: 80px;
        height: 80px;
    }
    .hero-title-wye {
        /* On very small screens, fallback to green text for readability */
        -webkit-text-fill-color: var(--wye-green);
        background-image: none;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .page-loader {
        display: none;
    }

    .hero-accent-line,
    .hero-eyebrow,
    .hero-title-line,
    .hero-title,
    .hero-description,
    .hero-actions,
    .hero-img-primary,
    .hero-img-secondary,
    .hero-img-accent,
    .about-content h2,
    .about-content > p,
    .about-cta,
    .about-experience-badge,
    .about-img,
    .section-eyebrow,
    .operations-content .section-eyebrow,
    .operations-content h2,
    .operations-content > p,
    .operations-cta,
    .operations-map,
    .map-location,
    .growth-header .section-eyebrow,
    .growth-header h2,
    .growth-header > p,
    .growth-cta,
    .growth-card,
    .retail-header .section-eyebrow,
    .retail-header h2,
    .retail-header > p,
    .retail-cta,
    .retail-gallery-img,
    .locations-header .section-eyebrow,
    .locations-header h2,
    .locations-header > p,
    .locations-cta,
    .location-card,
    .locations-map,
    .marketing-content .section-eyebrow,
    .marketing-content h2,
    .marketing-content > p,
    .marketing-cta,
    .marketing-images,
    .instagram-feed,
    .partnerships-header .section-eyebrow,
    .partnerships-header h2,
    .partnerships-header > p,
    .partnerships-cta,
    .logos-title,
    .logo-item,
    .contact-header .section-eyebrow,
    .contact-header h2,
    .contact-header > p,
    .contact-cta-btn,
    .contact-form-wrapper,
    .footer-logo,
    .footer-brand p,
    .footer-col,
    .footer-bottom {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   UTILITY ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 1;
        transform: none;
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s var(--ease-expo-out) forwards;
}

/* Loading states */
.skeleton {
    background: linear-gradient(90deg, var(--wye-grey) 25%, #e8e8ec 50%, var(--wye-grey) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
