/* ============================================
   WK WORLDWIDE — Design System
   Premium navy + gold corporate branding
   ============================================ */

:root {
    /* Colors */
    --navy: #1F1A17;
    --navy-deep: #15110F;
    --navy-light: #2C2520;
    --gold: #C9A14A;
    --gold-light: #D9B968;
    --gold-dark: #A8842F;
    --white: #FFFFFF;
    --cream: #FAF7F0;
    --gray-50: #F8F9FB;
    --gray-100: #F1F3F6;
    --gray-200: #E4E7EC;
    --gray-400: #98A2B3;
    --gray-600: #475467;
    --gray-800: #1D2939;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing & layout */
    --container: 1200px;
    --container-pad: 24px;
    --section-pad: 96px;
    --radius: 4px;
    --radius-lg: 8px;

    /* Transitions */
    --t-fast: 0.2s ease;
    --t-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(31, 26, 23, 0.10);
    --shadow-md: 0 8px 24px rgba(31, 26, 23, 0.15);
    --shadow-lg: 0 20px 50px rgba(31, 26, 23, 0.22);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

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 { list-style: none; }

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

.section { padding: var(--section-pad) 0; }

.gold { color: var(--gold); }

/* ============ SECTION HEADER ============ */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-eyebrow.light { color: var(--gold-light); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.section-title.light { color: var(--white); }

.section-divider {
    width: 64px;
    height: 2px;
    background: var(--gold);
    margin: 24px auto 0;
}

.section-subtitle {
    margin-top: 24px;
    color: var(--gray-600);
    font-size: 1.05rem;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--t-base);
    cursor: pointer;
    border: 1.5px solid transparent;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-full { width: 100%; text-align: center; }

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--t-base);
    background: rgba(31, 26, 23, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled {
    background: rgba(31, 26, 23, 0.98);
    padding: 14px 0;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.logo-img {
    height: 44px;
    width: auto;
    max-width: 220px;
    transition: transform var(--t-base);
}
.nav-logo:hover .logo-img { transform: scale(1.04); }

.logo-mark {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 2px 10px;
    border-radius: var(--radius);
    line-height: 1;
}

.logo-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px;
    position: relative;
    transition: color var(--t-fast);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 1.5px;
    background: var(--gold);
    transition: width var(--t-base);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta { color: var(--gold); }
.nav-cta:hover { color: var(--navy); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    z-index: 1001;
}
.nav-toggle span {
    width: 26px; height: 2px;
    background: var(--white);
    transition: all var(--t-base);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--navy-deep);
    padding-top: 80px;
}

.hero-static {
    background: linear-gradient(160deg, #0d0a08 0%, #1a1512 35%, #2c1f18 70%, #1F1A17 100%);
}

/* YouTube background video layer */
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background-color: var(--navy-deep);
}
/* Still-image fallback shown until/while the video loads, and on mobile where autoplay may be blocked */
.hero-video-fallback {
    position: absolute;
    inset: 0;
    background: url('https://placehold.co/1920x1080/15110F/C9A14A/png?text=WK+WORLDWIDE') center/cover no-repeat;
    background-color: var(--navy-deep);
    z-index: 1;
    transition: opacity 0.8s ease;
}
.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    border: 0;
    object-fit: cover;
}
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0,0,0,0.75);
    pointer-events: none;
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    border: 0;
    object-fit: cover;
    filter: brightness(0.35);
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: var(--container);
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

.hero-inner {
    max-width: 720px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}
.hero-eyebrow-line {
    display: block;
    width: 48px;
    height: 1.5px;
    background: var(--gold);
    flex-shrink: 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6.5vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}
.hero-title-line { display: block; }
.hero-title-thin {
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.78);
}
.hero-title-accent {
    display: block;
    color: var(--gold);
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.8;
    padding-left: 18px;
    border-left: 2px solid var(--gold);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* Vertical side rail */
.hero-rail {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    z-index: 4;
    pointer-events: none;
}
.hero-rail-text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
}

/* Bottom info strip */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 72px;
    padding-top: 32px;
    border-top: 1px solid rgba(201,161,74,0.25);
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 26px; height: 44px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 14px;
}
.hero-scroll span {
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 1.8s infinite;
}
@keyframes scrollDown {
    0% { opacity: 0; transform: translate(-50%, 0); }
    40% { opacity: 1; }
    80% { opacity: 0; transform: translate(-50%, 16px); }
    100% { opacity: 0; }
}

/* ============ ABOUT ============ */
.about { background: var(--cream); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.about-media {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.about-media img {
    width: 100%;
    height: auto;
    display: block;
}

.about-copy .lead {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.7;
}
.about-copy p { margin-bottom: 18px; color: var(--gray-600); }
.about-copy strong { color: var(--navy); font-weight: 600; }

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}
.stat { text-align: left; }
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 6px;
    letter-spacing: 0.5px;
}

/* ============ DIVISIONS ============ */
.divisions-intro { padding-bottom: 32px; }

/* Full-width alternating division blocks */
.division-block {
    padding: 80px 0;
    border-top: 1px solid var(--gray-200);
}
.division-block.alt { background: var(--cream); }

.division-row {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
}
.division-row.reverse .division-visual { order: 2; }

/* Visual side: feature image + gallery/partners */
.division-visual { display: flex; flex-direction: column; gap: 16px; }

.division-feature img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* PDF page slideshow (book-style auto-flip) */
.pdf-slideshow {
    position: relative;
    background: var(--navy-deep);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.pdf-slides-track {
    position: relative;
    width: 100%;
    aspect-ratio: 5/6;
    overflow: hidden;
}
.pdf-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.pdf-slide.active {
    opacity: 1;
    transform: translateX(0);
}
.pdf-slide.exiting {
    opacity: 0;
    transform: translateX(-30px);
}

.pdf-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 12px;
    background: rgba(21,17,15,0.9);
}
.pdf-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(201,161,74,0.4);
    color: var(--gold);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t-fast);
    cursor: pointer;
}
.pdf-btn:hover {
    background: var(--gold);
    color: var(--navy);
}
.pdf-indicator {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
}

.pdf-download {
    display: block;
    text-align: center;
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    background: var(--navy);
    border-top: 1px solid rgba(201,161,74,0.2);
    transition: background var(--t-fast);
}
.pdf-download:hover { background: var(--navy-light); }

.division-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.division-gallery img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform var(--t-base);
}
.division-gallery img:hover { transform: scale(1.03); }

/* Content side */
.division-content { padding: 8px 0; }
.division-number {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 16px;
    opacity: 0.85;
}
.division-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.25;
}
.division-desc {
    color: var(--gray-600);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.division-loc {
    font-size: 0.98rem;
    color: var(--navy);
    padding: 14px 18px;
    background: var(--gray-50);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
}
.division-loc strong { color: var(--gold-dark); }

/* Partner logos grid (within visual side) */
.partner-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.partner-logo {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--t-fast);
}
.partner-logo:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.partner-logo img {
    width: 100%;
    aspect-ratio: 5/3;
    object-fit: contain;
    padding: 10px;
}
.partner-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border: 1px dashed var(--gray-400);
}
.partner-soon span {
    font-size: 0.78rem;
    color: var(--gray-600);
    font-style: italic;
    text-align: center;
    padding: 8px;
}

/* Partner status line (within content side) */
.partner-status {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--gray-600);
}
.status-dot {
    display: inline-block;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.status-dot.soon {
    background: transparent;
    border: 2px solid var(--gold);
}

/* ============ BRANDS ============ */
.brands { background: var(--gray-50); }

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.brand-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all var(--t-base);
    cursor: pointer;
    position: relative;
}
.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.brand-card.brand-active {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201,161,74,0.3);
}
.brand-card.brand-active .brand-more {
    opacity: 1;
    transform: translateY(0);
    color: var(--gold-dark);
}

.brand-card:first-child {
    border-color: rgba(201,161,74,0.35);
}
.brand-card:first-child .brand-more {
    opacity: 1;
    transform: translateY(0);
}

.brand-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(4px);
    transition: all var(--t-base);
}
.brand-card:hover .brand-more {
    opacity: 1;
    transform: translateY(0);
}

.brand-logo {
    margin-bottom: 20px;
    background: transparent;
    overflow: hidden;
}
.brand-logo img { width: 100%; aspect-ratio: 14/9; object-fit: contain; padding: 16px; }

.brand-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}
.brand-desc { font-size: 0.88rem; color: var(--gray-600); }

.brand-logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 14/9;
    background: var(--navy-deep);
    border-radius: var(--radius);
}
.brand-text-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 4px;
}

/* ============ BRAND DETAIL PANEL ============ */
.brand-detail {
    display: none;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    margin-top: 36px;
    position: relative;
    border: 1px solid var(--gold);
    animation: brandDetailIn 0.4s ease;
}
@keyframes brandDetailIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.brand-detail.active { display: block; }

.brand-detail-close {
    position: absolute;
    top: 16px; right: 20px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    font-size: 1.3rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--t-fast);
}
.brand-detail-close:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.brand-detail-logo {
    margin-bottom: 24px;
}
.brand-detail-logo img {
    height: 56px;
    width: auto;
    max-width: 260px;
}
.brand-detail-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}
.brand-detail-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}
.brand-detail-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}
.brand-detail-info .info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.brand-detail-info .info-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
}
.brand-detail-info .info-value {
    font-size: 0.95rem;
    color: var(--navy);
    line-height: 1.6;
}

.brand-detail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}
.brand-detail-gallery img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform var(--t-base);
}
.brand-detail-gallery img:hover {
    transform: scale(1.03);
}

/* ============ 1 MALAYSIA FASHION EVENT ============ */
.fashion-event {
    background: var(--white);
}

.fashion-event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.fashion-event-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--t-base);
}
.fashion-event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.fe-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 20px;
}
.fe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-base);
}
.fashion-event-card:hover .fe-image img {
    transform: scale(1.05);
}

.fe-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 14px;
}

.fe-desc {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.fashion-event-cta {
    text-align: center;
    padding: 32px;
    background: var(--navy-deep);
    border-radius: var(--radius-lg);
}
.fashion-event-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1.02rem;
    margin-bottom: 20px;
}

/* ============ EVERGREEN ITEM SUPPLY ============ */
.evergreen {
    background: var(--cream);
}

.evergreen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.evergreen-content p {
    color: var(--gray-600);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 18px;
}
.evergreen-content strong {
    color: var(--navy);
    font-weight: 600;
}

.evergreen-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}
.evergreen-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--navy);
}
.ep-icon {
    width: 28px; height: 28px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.evergreen-visual-inner {
    aspect-ratio: 1;
    background: var(--navy-deep);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gold);
}
.ev-label {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 6px;
}
.ev-label-sub {
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* ============ LOCATIONS ============ */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}

.location-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-base);
    border: 1px solid var(--gray-100);
}
.location-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

.location-body { padding: 28px; }
.location-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.location-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.location-address { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 16px; }
.location-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    border-bottom: 1.5px solid var(--gold);
    padding-bottom: 2px;
    transition: color var(--t-fast);
}
.location-link:hover { color: var(--gold-dark); }

/* ============ TEAM ============ */
.team { background: var(--gray-50); }

.team-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}
.flag-my {
    width: 36px;
    height: 24px;
    object-fit: contain;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-base);
    border: 1px solid var(--gray-100);
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.team-photo {
    position: relative;
    overflow: hidden;
    background: var(--navy-deep);
}
.team-photo img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform var(--t-base);
}
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(21,17,15,0.35) 0%, transparent 50%);
    pointer-events: none;
}

.team-body { padding: 28px; text-align: center; }
.team-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.team-role {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.team-bio {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============ INVESTORS ============ */
.investors {
    position: relative;
    background: url('https://placehold.co/1920x1080/15110F/1F1A17/png?text=Investor+Partnership') center/cover no-repeat;
    background-color: var(--navy-deep);
}
.investors-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(21,17,15,0.97) 50%, rgba(31,26,23,0.80) 100%);
}

.investors .container { position: relative; z-index: 2; }

.investors-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
}

.investors-copy p {
    color: rgba(255,255,255,0.82);
    margin-bottom: 20px;
    font-size: 1.02rem;
    line-height: 1.8;
}
.investors-copy .btn { margin-top: 12px; }

.investors-media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 7/8;
    object-fit: cover;
    width: 100%;
}

/* ============ CONTACT ============ */
.contact { background: var(--cream); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
    font-size: 1.3rem;
    color: var(--gold);
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    border-radius: 50%;
    flex-shrink: 0;
}
.contact-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-400);
    margin-bottom: 4px;
}
.contact-value {
    font-size: 1.05rem;
    color: var(--navy);
    font-weight: 500;
    transition: color var(--t-fast);
}
a.contact-value:hover { color: var(--gold-dark); }

.contact-info .contact-map {
    margin-top: 8px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-social { display: flex; gap: 14px; margin-top: 8px; }
.social-link {
    width: 44px; height: 44px;
    border: 1.5px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--navy);
    transition: all var(--t-fast);
}
.social-link:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all var(--t-fast);
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,161,74,0.12);
}

.form-note {
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.6;
}
.form-note a { color: var(--gold-dark); text-decoration: underline; }

.form-success {
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(201,161,74,0.12);
    border-left: 3px solid var(--gold);
    color: var(--navy);
    font-size: 0.92rem;
    border-radius: var(--radius);
    line-height: 1.6;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.7);
    padding-top: 64px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-tagline { font-size: 0.92rem; max-width: 280px; }

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-links span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--gold); }
.footer-address { line-height: 1.6; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
    .about-grid,
    .investors-grid,
    .contact-grid,
    .division-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .division-row.reverse .division-visual { order: 0; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .about-media { max-width: 480px; margin: 0 auto; }
    .investors-media { max-width: 420px; margin: 0 auto; order: -1; }
    .division-visual { max-width: 600px; }
}

@media (max-width: 768px) {
    :root { --section-pad: 64px; }

    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 340px;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        background: var(--navy-deep);
        padding: 40px;
        transition: right var(--t-base);
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.active { right: 0; }
    .nav-link { font-size: 1.1rem; }

    .nav-toggle { display: flex; }

    .hero-rail { display: none; }
    .hero-content { padding-top: 100px; min-height: auto; }
    .hero-stats { flex-wrap: wrap; gap: 20px; margin-top: 48px; }
    .hero-stat-divider { display: none; }
    .hero-subtitle { padding-left: 14px; }
    .hero-cta { flex-direction: column; align-items: stretch; max-width: 320px; }
    .hero-cta .btn { text-align: center; }

    .divisions-intro { padding-bottom: 16px; }
    .division-block { padding: 56px 0; }
    .pdf-slides-track { aspect-ratio: 1/1; }
    .partner-logos { grid-template-columns: 1fr 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .fashion-event-grid { grid-template-columns: 1fr; }
    .evergreen-grid { grid-template-columns: 1fr; gap: 40px; }
    .evergreen-visual { max-width: 400px; margin: 0 auto; }
    .footer-container { grid-template-columns: 1fr; gap: 32px; }

    .about-stats { grid-template-columns: 1fr; gap: 16px; }
    .about-stats .stat { display: flex; align-items: baseline; gap: 16px; }

    .contact-form { padding: 28px; }

    .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
    .btn { padding: 12px 24px; font-size: 0.82rem; }
    .contact-icon, .social-link { width: 40px; height: 40px; }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ MOBILE MENU OVERLAY ============ */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--t-base);
}
.menu-overlay.active {
    display: block;
    opacity: 1;
}
