/* Shared premium header polish for all pages */
:root {
    --gs-header-bg: rgba(8, 13, 17, 0.9);
    --gs-header-bg-solid: rgba(8, 13, 17, 0.96);
    --gs-header-gold: #c9a84c;
    --gs-header-gold-dark: #8b6914;
    --gs-header-text: rgba(255, 255, 255, 0.9);
}

/* ── NAVBAR ── */
#gs-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background .35s, box-shadow .35s;
    background: transparent;
}
#gs-nav.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 24px rgba(0,0,0,0.08);
    backdrop-filter: blur(12px);
}
.gs-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
/* Logo */
.gs-logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}
#gs-nav.scrolled .gs-logo img {
    height: 55px;
}
/* Desktop links */
.gs-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.gs-link {
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .06em;
    color: rgba(255,255,255,0.88);
    padding: 8px 14px;
    border-radius: 6px;
    transition: color .25s, background .25s;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}
#gs-nav.scrolled .gs-link { color: #2a2a2a; }
.gs-link:hover { color: #8B6914; background: rgba(139,105,20,.07); }

/* Dropdown */
.gs-drop-wrap { position: relative; display: flex; align-items: center; }
.gs-drop-trigger { display: flex; align-items: center; gap: 5px; user-select: none; }
.gs-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    min-width: 200px;
    padding: 20px 8px 8px;
    margin-top: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(6px);
    transition: opacity .22s, transform .22s;
    z-index: 200;
}
/* Invisible bridge so cursor can move from trigger to dropdown */
.gs-dropdown::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}
.gs-drop-wrap:hover .gs-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
.gs-drop-item {
    display: block;
    padding: 10px 14px;
    font-size: .82rem;
    font-weight: 500;
    color: #2a2a2a;
    border-radius: 6px;
    transition: background .2s, color .2s;
    text-decoration: none;
    white-space: nowrap;
}
.gs-drop-item:hover { background: rgba(139,105,20,.08); color: #8B6914; }

/* CTA + Hamburger */
.gs-nav-right { display: flex; align-items: center; gap: 12px; }
.gs-cta-btn {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 10px 22px;
    background: linear-gradient(135deg, #c9a84c, #8B6914);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: opacity .25s, transform .2s;
    white-space: nowrap;
}
.gs-cta-btn:hover { opacity: .88; transform: translateY(-1px); }
.gs-ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.gs-ham span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}
#gs-nav.scrolled .gs-ham span { background: #2a2a2a; }

/* Mobile Overlay */
.gs-mob-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0; pointer-events: none;
    transition: opacity .35s;
}
.gs-mob-overlay.open { opacity: 1; pointer-events: all; }

/* Mobile Sidebar */
.gs-mob-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 88vw);
    background: #fff;
    z-index: 1002;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.16,1,.3,1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,.15);
}
.gs-mob-menu.open { transform: translateX(0); }
.gs-mob-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.gs-mob-logo { height: 36px; width: auto; }
.gs-mob-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    background: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .25s;
}
.gs-mob-close:hover { background: rgba(139,105,20,.1); border-color: #8B6914; }
.gs-mob-close svg { width: 16px; height: 16px; stroke: #2a2a2a; }
.gs-mob-links { flex: 1; overflow-y: auto; padding: 12px 0; }
.gs-mob-link {
    display: block;
    padding: 16px 28px;
    font-size: .95rem;
    font-weight: 500;
    color: #2a2a2a;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    text-decoration: none;
    transition: color .2s, padding .2s;
}
.gs-mob-link:hover { color: #8B6914; padding-left: 34px; }
/* Mobile group/accordion */
.gs-mob-group { border-bottom: 1px solid rgba(0,0,0,0.05); }
.gs-mob-parent {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    font-size: .95rem;
    font-weight: 500;
    color: #2a2a2a;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color .2s;
}
.gs-mob-parent:hover { color: #8B6914; }
.gs-mob-parent svg { transition: transform .3s; flex-shrink: 0; }
.gs-mob-group.open .gs-mob-parent svg { transform: rotate(180deg); }
.gs-mob-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(.16,1,.3,1);
    background: rgba(139,105,20,.03);
}
.gs-mob-group.open .gs-mob-sub { max-height: 300px; }
.gs-mob-sub-link {
    display: block;
    padding: 12px 28px 12px 40px;
    font-size: .88rem;
    color: #555;
    text-decoration: none;
    transition: color .2s;
}
.gs-mob-sub-link:hover { color: #8B6914; }
.gs-mob-cta {
    display: block;
    margin: 20px 24px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #c9a84c, #8B6914);
    color: #fff;
    border-radius: 8px;
    text-align: center;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity .25s;
}
.gs-mob-cta:hover { opacity: .88; }

/* Hide desktop nav on mobile */
@media (max-width: 900px) {
    .gs-links { display: none; }
    .gs-cta-btn { display: none; }
    .gs-ham { display: flex; }
}

.portfolio-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    min-height: 78px !important;
    padding: 0 clamp(18px, 5vw, 56px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    z-index: 1000 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(13, 16, 19, 0.08) !important;
    box-shadow: 0 12px 32px rgba(12, 16, 20, 0.1) !important;
    -webkit-backdrop-filter: blur(16px) saturate(130%) !important;
    backdrop-filter: blur(16px) saturate(130%) !important;
    box-sizing: border-box !important;
}

.portfolio-logo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    min-width: 0 !important;
    text-decoration: none !important;
}

.portfolio-logo img {
    height: 50px !important;
    width: auto !important;
    object-fit: contain !important;
    flex: 0 0 auto !important;
}

.logo-text-group {
    display: flex !important;
    min-width: 0 !important;
    flex-direction: column !important;
}

.logo-brand-name {
    color: #12171d !important;
    font-size: clamp(1.24rem, 2vw, 1.58rem) !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
    line-height: 1 !important;
}

.logo-sub-text {
    color: rgba(18, 23, 29, 0.58) !important;
    margin-top: 4px !important;
    font-size: 0.48rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.3em !important;
    line-height: 1 !important;
}

.back-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    min-height: 40px !important;
    padding: 0 15px !important;
    color: #ffffff !important;
    background: #0b1014 !important;
    border: 1px solid rgba(201, 168, 76, 0.24) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12) !important;
    font-size: 0.72rem !important;
    font-weight: 750 !important;
    letter-spacing: 0.08em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: transform 0.2s ease, background 0.2s ease !important;
}

.back-btn:hover {
    color: #ffffff !important;
    background: #151c24 !important;
    transform: translateY(-1px) !important;
}

@media (min-width: 992px) {
    #gs-nav .gs-ham {
        display: none !important;
    }
    #gs-nav .gs-links,
    #gs-nav .gs-cta-btn {
        display: flex !important;
    }
}

@media (max-width: 991px) {
    #gs-nav .gs-links,
    #gs-nav .gs-cta-btn {
        display: none !important;
    }

    #gs-nav .gs-ham {
        display: inline-flex !important;
    }
}

@media (max-width: 640px) {
    #gs-nav .gs-nav-inner,
    #gs-nav.scrolled .gs-nav-inner {
        height: 72px !important;
        padding: 0 16px !important;
    }

    #gs-nav .gs-logo img,
    #gs-nav.scrolled .gs-logo img {
        height: 58px !important;
        max-width: 180px !important;
    }

    .gs-mob-head {
        min-height: 72px !important;
        padding: 12px 16px !important;
    }

    .gs-mob-logo {
        height: 46px !important;
    }

    .portfolio-header {
        min-height: 72px !important;
        padding: 0 14px !important;
        gap: 10px !important;
    }

    .portfolio-logo {
        gap: 9px !important;
    }

    .portfolio-logo img {
        height: 42px !important;
    }

    .logo-brand-name {
        font-size: 1.12rem !important;
    }

    .logo-sub-text {
        font-size: 0.42rem !important;
        letter-spacing: 0.22em !important;
    }

    .back-btn {
        min-height: 36px !important;
        padding: 0 11px !important;
        gap: 6px !important;
        font-size: 0.62rem !important;
        letter-spacing: 0.04em !important;
    }
}

@media (max-width: 390px) {
    .logo-sub-text {
        display: none !important;
    }

    .portfolio-logo img {
        height: 38px !important;
    }

    .logo-brand-name {
        font-size: 1.02rem !important;
    }

    .back-btn {
        padding: 0 9px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    #gs-nav *,
    .portfolio-header * {
        transition: none !important;
        animation: none !important;
    }
}

/* ?????? GLOBAL FIX: REMOVE BOTTOM WHITE GAP ?????? */
html {
    background-color: #0d0d0d !important; /* Matches Footer Background */
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main, section:last-of-type {
    flex: 1;
}
.premium-footer {
    margin-top: auto;
}

/* ?????? FAB (SOCIAL ORB) STYLES ?????? */
.social-orb-wrap {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    user-select: none;
    touch-action: none;
}

.social-orb-wrap.is-dragging {
    cursor: grabbing;
    transition: none !important;
}

.social-orb-wrap.is-dragging .social-orb {
    animation: none !important;
    transform: scale(1.1) !important;
    box-shadow:
        0 0 0 3px rgba(197,160,89,0.4),
        0 20px 50px rgba(0,0,0,0.6),
        inset 0 0 35px rgba(197,160,89,0.4) !important;
}

/* â”€â”€â”€ Main Orb Button â”€â”€â”€ */
.social-orb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: radial-gradient(circle at 30% 30%, #e2c78d 0%, #c5a059 40%, #8a6d3b 100%);
    box-shadow: 
        0 15px 45px rgba(0,0,0,0.7),
        inset 0 0 35px rgba(197, 160, 89, 0.3);
    animation: orbFloat 3.5s ease-in-out infinite;
    overflow: visible;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(197, 160, 89, 0.2);
    z-index: 5; /* Ensure it's above the backdrop but below the links */
}

/* Pulsing Golden Halo */
.social-orb::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.25) 0%, transparent 70%);
    animation: orbHaloPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes orbHaloPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0.6; }
}

/* 3D Sphere Container with Tilt */
.orb-3d-sphere {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    transform: rotateX(20deg);
    animation: orbSpin3D 12s linear infinite;
}

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    margin: -11px;
    background: radial-gradient(circle at 30% 30%, rgba(197, 160, 89, 0.9) 0%, #8a6d3b 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 30px rgba(197, 160, 89, 0.6),
        inset 0 0 15px rgba(255,255,255,0.4);
    transform: translateZ(0);
    filter: blur(0.5px);
}

.orb-tile {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 11px;
    margin: -7px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.45rem;
    color: #fff;
    backface-visibility: visible;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform 0.4s ease, filter 0.3s ease;
}

/* Hovering tiles makes them glow */
.orb-tile:hover {
    filter: brightness(1.3) contrast(1.1);
    z-index: 10;
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
    transform: scale(1.15) !important;
}

/* Platform Colors with premium gradients */
.orb-tile.wa { background: linear-gradient(135deg, #25d366, #128c7e); }
.orb-tile.ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.orb-tile.fb { background: linear-gradient(135deg, #1877f2, #0e5a9a); }
.orb-tile.tw { background: linear-gradient(135deg, #1da1f2, #0d8bd9); }
.orb-tile.li { background: linear-gradient(135deg, #0077b5, #005582); }
.orb-tile.tg { background: linear-gradient(135deg, #0088cc, #006699); }
.orb-tile.yt { background: linear-gradient(135deg, #ff0000, #b30000); }
.orb-tile.share { background: linear-gradient(135deg, #c5a059, #8a6d3b); }

.orb-center-icon {
    position: absolute;
    font-size: 1rem;
    color: #fff;
    opacity: 0.8;
    z-index: 1;
}

@keyframes orbSpin3D {
    from { transform: rotateY(0) rotateX(20deg); }
    to { transform: rotateY(360deg) rotateX(20deg); }
}

/* â”€â”€â”€ Orb Open State â”€â”€â”€ */
.social-orb-wrap.is-open .social-orb {
    transform: scale(1.12) rotate(135deg);
    animation: none;
    box-shadow:
        0 0 0 3px rgba(255,255,255,0.18),
        0 0 40px rgba(197, 160, 89, 0.55),
        0 12px 40px rgba(0,0,0,0.5);
}

.social-orb-wrap.is-open .social-orb::after {
    animation: none;
    border-color: rgba(197,160,89,0.8);
    inset: -8px;
}

/* â”€â”€â”€ Radial Expanded Icons â”€â”€â”€ */
.orb-links {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 48px;
    pointer-events: none;
}

.orb-link {
    position: absolute;
    bottom: 50%;
    right: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    transform: translate(50%, 50%) translate(var(--tx, 0), var(--ty, 0)) scale(0);
    transition:
        opacity 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    will-change: transform, opacity;
}

/* Specific positions via variables */
.orb-link:nth-child(1) { --tx: 0; --ty: -70px; }
.orb-link:nth-child(2) { --tx: 0; --ty: -125px; }
.orb-link:nth-child(3) { --tx: 0; --ty: -180px; }

/* Open state */
.social-orb-wrap.is-open .orb-links {
    pointer-events: none; /* Let clicks pass through the container to the links */
    z-index: 10;
}

.social-orb-wrap.is-open .orb-link {
    opacity: 1;
    pointer-events: auto;
    transform: translate(50%, 50%) translate(var(--tx), var(--ty)) scale(1);
    z-index: 15;
}

/* Each icon color */
.orb-link.wa  { background: #25d366; }
.orb-link.ig  { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.orb-link.fb  { background: #1877f2; }
.orb-link.tg  { background: #0088cc; }
.orb-link.yt  { background: #ff0000; }
.orb-link.tw  { background: #1da1f2; }
.orb-link.li  { background: #0077b5; }

.orb-link:hover {
    transform: translate(50%, 50%) translate(var(--tx), var(--ty)) scale(1.2) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    filter: brightness(1.15);
    z-index: 100; /* Ensure hovered link is always on top */
}

/* Tooltip label */
.orb-link .orb-tooltip {
    position: absolute;
    top: 50%;
    right: calc(100% + 14px);
    transform: translateY(-50%);
    background: rgba(10,25,47,0.92);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    border: 1px solid rgba(197,160,89,0.3);
}

.orb-link:hover .orb-tooltip {
    opacity: 1;
}

/* â”€â”€â”€ Backdrop blur overlay (click to close) â”€â”€â”€ */
.orb-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1; /* Lowered so it doesn't block links */
    cursor: default;
}

.social-orb-wrap.is-open .orb-backdrop {
    display: block;
}

/* â”€â”€â”€ Animations â”€â”€â”€ */
@keyframes orbFloat {
    0%   { transform: translateY(0px) rotate(0deg); }
    33%  { transform: translateY(-8px) rotate(4deg); }
    66%  { transform: translateY(-4px) rotate(-4deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes orbRingPulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    50%  { transform: scale(1.25); opacity: 0; }
    100% { transform: scale(1);   opacity: 0; }
}

/* â”€â”€â”€ Responsive â”€â”€â”€ */
@media (max-width: 768px) {
    .social-orb-wrap {
        bottom: 20px;
        right: 20px;
    }
    .social-orb {
        width: 32px;
        height: 32px;
    }
    .orb-core {
        width: 18px;
        height: 18px;
        margin: -9px;
    }
    .orb-link {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    .orb-link:nth-child(1) { --tx: 0; --ty: -50px; }
    .orb-link:nth-child(2) { --tx: 0; --ty: -90px; }
    .orb-link:nth-child(3) { --tx: 0; --ty: -130px; }
}

/* VEX HERO & INTER TYPOGRAPHY */

:root {
    --font-inter: 'Inter', sans-serif;
}

body {
    font-family: var(--font-inter);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #000;
    color: #fff;
}

/* Liquid Glass Utility */
.liquid-glass {
    background: rgba(0, 0, 0, 0.4);
    background-blend-mode: luminosity;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: none;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.liquid-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.4px;
    background: linear-gradient(180deg,
      rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 20%,
      rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
      rgba(255,255,255,0.1) 80%, rgba(255,255,255,0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* VEX Header */
.vex-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar-wrapper {
    width: 100%;
}

.nav-links-vex a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* VEX Hero Section */
.hero-vex {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-video-vex {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-container-vex {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.vex-animated-heading {
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-size: clamp(2.5rem, 8vw, 5rem); /* Responsive text sizes */
}

/* Character Animation Styles */
.vex-char {
    display: inline-block;
    opacity: 0;
    transform: translateX(-18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.vex-char.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Fade In Elements */
.fade-in-element {
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-in-element.animate {
    opacity: 1;
}

/* Tailwind-like utilities used in requirements */
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.pt-6 { padding-top: 1.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mt-12 { margin-top: 3rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-lg { border-radius: 0.5rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-2xl { font-size: 1.5rem; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-light { font-weight: 300; }
.tracking-tight { letter-spacing: -0.025em; }
.text-white { color: #fff; }
.text-black { color: #000; }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-gray-300 { color: #d1d5db; }
.bg-white { background-color: #fff; }
.border { border-width: 1px; border-style: solid; }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.transition-colors { transition-property: color, background-color; transition-duration: 0.3s; }
.transition-all { transition-property: all; transition-duration: 0.3s; }

@media (min-width: 768px) {
    .md\:px-12 { padding-left: 3rem; padding-right: 3rem; }
    .md\:flex { display: flex; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-lg { font-size: 1.125rem; }
    .md\:text-xl { font-size: 1.25rem; }
}

@media (min-width: 1024px) {
    .lg\:px-16 { padding-left: 4rem; padding-right: 4rem; }
    .lg\:pb-16 { padding-bottom: 4rem; }
    .lg\:grid { display: grid; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:items-end { align-items: flex-end; }
    .lg\:justify-end { justify-content: flex-end; }
    .lg\:text-6xl { font-size: 3.75rem; }
    .lg\:text-2xl { font-size: 1.5rem; }
    .lg\:mt-0 { margin-top: 0; }
}

@media (min-width: 1280px) {
    .xl\:text-7xl { font-size: 4.5rem; }
}

.hidden { display: none; }



/* LOCAL STYLES */

/* 
    WHAT WE DO PAGE STYLES
    Luxury layouts inspired by premium hospitality brands.
*/

body.wwd-page {
    background-color: #ffffff !important;
    color: var(--primary-color);
}

.wwd-hero {
    padding: 180px 0 100px;
    background: #ffffff;
    text-align: center;
}

.wwd-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.wwd-hero p {
    font-size: 1.2rem;
    color: rgba(10, 25, 47, 0.6);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 1px;
}

/* â”€â”€â”€ SECTION WRAPPER â”€â”€â”€ */
.wwd-section {
    padding: 60px 0;
    overflow: hidden;
}

.wwd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.wwd-section:nth-child(even) .wwd-container {
    flex-direction: row-reverse;
}

/* â”€â”€â”€ IMAGE BLOCK â”€â”€â”€ */
.wwd-image {
    flex: 1.1;
    position: relative;
    height: 450px;
    overflow: hidden;
}

.wwd-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wwd-image:hover img {
    transform: scale(1.05);
}

/* â”€â”€â”€ CONTENT BLOCK â”€â”€â”€ */
.wwd-content {
    flex: 1;
}

.wwd-badge {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
}

.wwd-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 400;
}

.wwd-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(10, 25, 47, 0.7);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn-wwd {
    display: inline-block;
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(1.5rem, 4vw, 3rem);
    border: 1px solid rgba(10, 25, 47, 0.2);
    text-decoration: none;
    color: var(--primary-color);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
}

.btn-wwd:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

/* â”€â”€â”€ PREMIUM INTERIOR SECTION â”€â”€â”€ */
.wwd-section--interior {
    background: #ffffff;
    color: var(--primary-color);
    padding: 80px 0;
}

.wwd-section--interior .wwd-badge {
    font-family: 'Cinzel', serif;
    color: #c5a059;
    letter-spacing: 6px;
    font-weight: 500;
}

.wwd-section--interior h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.1;
}

.wwd-section--interior p {
    color: rgba(10, 25, 47, 0.7);
    font-size: 1.15rem;
    line-height: 2;
    font-family: 'Outfit', sans-serif;
}

.wwd-section--interior .btn-wwd {
    border-color: #c5a059;
    color: #c5a059;
    font-family: 'Cinzel', serif;
    padding: 1.2rem 3.5rem;
    background: transparent;
}

.wwd-section--interior .btn-wwd:hover {
    background: #c5a059;
    color: #0a0a0a;
    border-color: #c5a059;
}

.wwd-section--interior .wwd-image {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(197, 160, 89, 0.2);
}


/* â”€â”€â”€ PORTFOLIO GRID â”€â”€â”€ */
.wwd-portfolio {
    background: #fdfdfd;
    padding: 120px 0;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 5rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.8) 0%, rgba(10, 25, 47, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 1; /* Always visible */
    transition: 0.5s;
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.4) 100%);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay span {
    color: var(--accent-color);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
    .wwd-container {
        flex-direction: column !important;
        gap: 3rem;
        padding: 0 2rem;
    }
    .wwd-image {
        width: 100%;
        height: 400px;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .wwd-section {
        padding: 40px 0;
    }

    .wwd-section--interior {
        padding: 50px 0;
    }

    .wwd-section--interior h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .wwd-section--interior p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .wwd-content {
        text-align: center;
    }

    .wwd-image {
        height: 300px;
    }

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

    .btn-wwd {
        width: 100%;
        display: block;
        padding: 1rem;
        text-align: center;
    }

    .wwd-section--interior .btn-wwd {
        padding: 1rem;
    }
}



