/* 
    BRIGADE-STYLE LUXURY DESIGN SYSTEM 
    Color Palette: Midnight Navy (#0a192f) & Champagne Gold (#c5a059)
    Typography: Bodoni Moda (Headings) & Outfit (Body)
*/

:root {
    --primary-color: #0a192f;
    --accent-color: #c5a059;
    --bg-light: #ffffff;
    --text-primary: #0a192f;
    --text-secondary: #5b6572;
    --font-heading: 'Bodoni Moda', serif;
    --font-body: 'Outfit', sans-serif;
    --nav-height: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: var(--font-body);
    background-color: #ffffff;
    color: var(--text-primary);
    overflow-x: hidden;
    max-width: 100%;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* â”€â”€â”€ SCROLL PROGRESS â”€â”€â”€ */
#nmb-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent-color);
    z-index: 10000;
    width: 0%;
    transition: width 0.1s;
}

/* â”€â”€â”€ MAGNETIC CURSOR â”€â”€â”€ */
#nmb-cursor-dot2 {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
}

#nmb-cursor-ring {
    width: 25px;
    height: 25px;
    border: 1px solid rgba(197, 160, 89, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

/* â”€â”€â”€ NAVIGATION â”€â”€â”€ */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Transparent State (Only for Dark Hero sections at scroll 0) */
.dark-hero #main-header:not(.nav--scrolled) {
    background: transparent;
    height: var(--nav-height);
    box-shadow: none;
}

#main-header .nav-link:not(.nav-link--cta) {
    color: #0a192f;
}

.dark-hero #main-header:not(.nav--scrolled) .nav-link:not(.nav-link--cta) {
    color: #ffffff;
}

#main-header .nav-icon {
    color: #0a192f;
}

.dark-hero #main-header:not(.nav--scrolled) .nav-icon {
    color: #ffffff;
}

#main-header .hamburger-menu span {
    background: #0a192f;
}

.dark-hero #main-header:not(.nav--scrolled) .hamburger-menu span {
    background: #ffffff;
}

#main-header .hamburger-menu::before {
    color: #0a192f;
}

.dark-hero #main-header:not(.nav--scrolled) .hamburger-menu::before {
    color: #ffffff;
}

#main-header .nav-link--cta {
    background: #0a192f;
    color: #ffffff;
}

.dark-hero #main-header:not(.nav--scrolled) .nav-link--cta {
    background: var(--accent-color);
    color: var(--primary-color);
}

#main-header .btn-consultation {
    border-color: #0a192f;
    color: #0a192f;
}

.dark-hero #main-header:not(.nav--scrolled) .btn-consultation {
    border-color: transparent;
    color: #ffffff;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: 0.3s;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: 0.3s;
}

.nav-link:hover::after, .nav-link--active::after {
    width: 100%;
}

.nav-link--cta {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
}

.nav-link--cta::after { display: none; }

.nav-link--cta:hover {
    background: #fff;
    color: var(--primary-color);
}

/* â”€â”€â”€ HERO SECTION â”€â”€â”€ */
.hero {
    height: 100vh;
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%); /* Removed scale to fix blurriness */
    z-index: -2;
}

.hero-video.video-active {
    transform: translate(-50%, -50%);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.2); /* Reduced opacity for a clearer image */
    z-index: -1;
}

.hero-content {
    position: absolute;
    bottom: 40px;
    left: 4rem;
    z-index: 10;
    max-width: 700px;
    text-align: left;
    padding: 1rem 0;
    background: transparent;
    opacity: 0;
    visibility: hidden;
}

.hero-content.hero-active {
    opacity: 1;
    visibility: visible;
}

.hero-content h4 {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    font-size: 0.65rem;
    font-weight: 600;
}

.hero-active h4 {
    /* Animation removed */
}

.hero-title {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    height: 1.2em;
    margin-bottom: -0.2em;
}

.hero-active .title-line {
    /* Animation removed */
}

.hero-active .title-line:nth-child(1) { /* Animation removed */ }
.hero-active .title-line:nth-child(2) { /* Animation removed */ }

@keyframes lineReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 450px;
    letter-spacing: 0.5px;
    font-style: italic;
}

.hero-active p {
    /* Animation removed */
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: 0.4s;
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-5px);
}

.btn-ghost {
    display: inline-block;
    padding: 1rem 2.8rem;
    border: 1px solid #d4c5b9;
    color: #8a6d3b;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: transparent;
}

.btn-ghost:hover {
    background: #d4c5b9;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 197, 185, 0.2);
}

.hero-content .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 0.75rem;
}

.hero-active .btn-primary {
    /* Animation removed */
}

/* â”€â”€â”€ TICKER â”€â”€â”€ */
.ticker-wrapper {
    position: relative;
    background: linear-gradient(90deg, #050d18 0%, #0a192f 50%, #050d18 100%);
    padding: 1.05rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(197, 160, 89, 0.28);
    border-bottom: 1px solid rgba(197, 160, 89, 0.28);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 14px 35px rgba(0,0,0,0.18);
}

.ticker-wrapper::before,
.ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 120px;
    pointer-events: none;
}

.ticker-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #050d18, transparent);
}

.ticker-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #050d18, transparent);
}

.ticker-track {
    position: relative;
    display: flex;
    white-space: nowrap;
    animation: tickerScroll 32s linear infinite;
}

.ticker-track::before {
    content: '';
    position: absolute;
    top: -1.05rem;
    bottom: -1.05rem;
    left: -20%;
    width: 14%;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.12), transparent);
    transform: skewX(-18deg);
    animation: tickerShine 5s linear infinite;
    pointer-events: none;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-track span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0;
    display: flex;
    align-items: center;
}

.ticker-dot {
    margin: 0 2.4rem;
    color: var(--accent-color);
    opacity: 0.9;
    text-shadow: 0 0 14px rgba(197, 160, 89, 0.45);
}

@keyframes tickerShine {
    0% { left: -20%; }
    100% { left: 110%; }
}

/* â”€â”€â”€ PROP TYPE SECTION FLOATING PARTICLES â”€â”€â”€ */
.prop-type-section {
    position: relative;
    overflow: hidden;
}

.prop-type-section::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197,160,89,0.07) 0%, transparent 70%);
    bottom: 5%;
    left: -80px;
    pointer-events: none;
    animation: orbFloat 10s ease-in-out infinite;
    z-index: 0;
}

.prop-type-section::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10,25,47,0.06) 0%, transparent 70%);
    top: 10%;
    right: -60px;
    pointer-events: none;
    animation: orbFloat 12s ease-in-out infinite reverse;
    z-index: 0;
}

.prop-type-section .container {
    position: relative;
    z-index: 1;
}

/* â”€â”€â”€ STATS SECTION â”€â”€â”€ */
.stats-section {
    padding: 4rem 0;
    background: var(--primary-color);
}

.stats-section .container {
    max-width: 1180px;
}

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    overflow: hidden;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 6px;
    background: rgba(5, 13, 24, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    animation: statsFloat 5s ease-in-out infinite;
}

.stats-grid::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -35%;
    width: 30%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-18deg);
    animation: statsShine 4.5s linear infinite;
    pointer-events: none;
}

.stat-item {
    position: relative;
    z-index: 1;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: inline-block;
}

.stat-suffix {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.stat-label {
    margin-top: 0.3rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.6);
}

@keyframes statsFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes statsShine {
    0% { left: -35%; }
    100% { left: 105%; }
}

/* â”€â”€â”€ REVEAL ANIMATIONS (Legacy, now handled by PremiumScrollEngine) â”€â”€â”€ */
.reveal {
    /* Kept for structural backward compatibility, animations moved to JS engine */
}

.reveal.active {
}

/* Stagger children animations */
.reveal.active .prop-type-card:nth-child(1) { animation-delay: 0.05s; }
.reveal.active .prop-type-card:nth-child(2) { animation-delay: 0.15s; }
.reveal.active .prop-type-card:nth-child(3) { animation-delay: 0.25s; }

.reveal.active .service-card:nth-child(1) { animation-delay: 0.05s; }
.reveal.active .service-card:nth-child(2) { animation-delay: 0.12s; }
.reveal.active .service-card:nth-child(3) { animation-delay: 0.19s; }
.reveal.active .service-card:nth-child(4) { animation-delay: 0.26s; }

.reveal.active .award-item:nth-child(1) { animation: itemPopIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.05s both; }
.reveal.active .award-item:nth-child(2) { animation: itemPopIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.15s both; }
.reveal.active .award-item:nth-child(3) { animation: itemPopIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.25s both; }

@keyframes itemPopIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Stat items pop in */
.reveal.active .stat-item:nth-child(1) { animation: statPop 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.0s both; }
.reveal.active .stat-item:nth-child(2) { animation: statPop 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.1s both; }
.reveal.active .stat-item:nth-child(3) { animation: statPop 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both; }
.reveal.active .stat-item:nth-child(4) { animation: statPop 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both; }
.reveal.active .stat-item:nth-child(5) { animation: statPop 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.4s both; }

@keyframes statPop {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* â”€â”€â”€ PAGE LOADER â”€â”€â”€ */
#nb-page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050b16; 
    background: radial-gradient(circle at center, #0a192f 0%, #050b16 100%);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: clip-path 1.4s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s ease;
    clip-path: circle(150% at 50% 50%);
}

#nb-page-loader.loader-hidden {
    clip-path: circle(0% at 50% 50%);
    opacity: 0;
    pointer-events: none;
}

.nb-loader-inner {
    text-align: center;
    width: 100%;
}

.nb-loader-logo {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.loader-word {
    display: flex;
}

.loader-word span {
    display: block;
    font-family: 'Bodoni Moda', serif;
    font-size: 5rem;
    color: #fff;
    font-weight: 800;
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
    animation: loaderCharReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    letter-spacing: -2px;
}

.loader-word.accent span {
    color: var(--accent-color);
}

/* Staggering characters */
.loader-word span:nth-child(1) { animation-delay: 0.1s; }
.loader-word span:nth-child(2) { animation-delay: 0.15s; }
.loader-word span:nth-child(3) { animation-delay: 0.2s; }
.loader-word span:nth-child(4) { animation-delay: 0.25s; }
.loader-word.accent span:nth-child(1) { animation-delay: 0.35s; }
.loader-word.accent span:nth-child(2) { animation-delay: 0.4s; }
.loader-word.accent span:nth-child(3) { animation-delay: 0.45s; }
.loader-word.accent span:nth-child(4) { animation-delay: 0.5s; }

@keyframes loaderCharReveal {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.nb-loader-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-20deg);
    animation: loaderShine 3s infinite;
}

@keyframes loaderShine {
    0% { left: -100%; }
    50% { left: 200%; }
    100% { left: 200%; }
}

.nb-loader-tagline {
    font-size: 0.65rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 3rem;
    opacity: 0;
    animation: taglineReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
}

@keyframes taglineReveal {
    from {
        opacity: 0;
        letter-spacing: 20px;
        transform: translateY(10px);
    }
    to {
        opacity: 0.8;
        letter-spacing: 8px;
        transform: translateY(0);
    }
}

.nb-loader-bar {
    width: 150px;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s forwards 0.6s;
}

.nb-loader-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--accent-color);
    width: 0%;
    transition: width 0.4s cubic-bezier(0.1, 1, 0.3, 1);
    box-shadow: 0 0 15px var(--accent-color);
}

/* â”€â”€â”€ MISC SECTIONS â”€â”€â”€ */
.section { padding: 10rem 0; }
.bg-light { background: var(--bg-light); color: var(--primary-color); }

/* About Grid */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text-content { color: var(--primary-color); }
.about-image-content { height: 450px; background-image: url('../assets/property2.webp'); background-size: cover; background-position: center; border-radius: 4px; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* Sustainability Section */
.sustainability-content { display: flex; align-items: center; gap: 5rem; }
.sustainability-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.sustainability-content:hover .sustainability-image {
    transform: scale(1.02);
}

.sustainability-text { 
    flex: 0 1 550px; 
    align-self: center; 
    padding: 0; 
    background: transparent; 
    border-radius: 0; 
    box-shadow: none; 
    border-left: none; 
    position: relative; 
}


.service-card:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2) !important;
}

.service-card:hover i {
    color: var(--accent-color) !important;
}

.service-card:hover p {
    color: var(--text-secondary) !important;
}

/* Home Services Premium Block */
.home-services-premium {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(246,243,238,0.96) 100%),
        url('../assets/property2.webp') center/cover no-repeat !important;
    color: var(--primary-color);
}

.home-services-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(10,25,47,0.045) 1px, transparent 1px);
    background-size: 96px 100%;
    opacity: 0.55;
    pointer-events: none;
}

.home-services-premium .container {
    position: relative;
    z-index: 1;
}

.home-services-header {
    max-width: 720px;
    margin: 0 auto 2.5rem !important;
}

.home-services-header h4 {
    margin-bottom: 0.75rem;
    color: var(--accent-color) !important;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0 !important;
}

.home-services-header h2 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-size: 2.2rem !important;
    line-height: 1.05;
}

.home-services-header p {
    max-width: 580px;
    margin: 0 auto;
    color: #5b6572;
    font-size: 0.95rem;
    line-height: 1.7;
}

.home-services-premium .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1.1rem !important;
}

.home-services-premium .service-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    padding: 1.5rem 1.3rem !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left !important;
    background:
        linear-gradient(145deg, rgba(10,25,47,0.98), rgba(5,13,24,0.98)) !important;
    border: 1px solid rgba(197,160,89,0.26) !important;
    border-radius: 6px !important;
    box-shadow: 0 22px 55px rgba(10,25,47,0.16);
}

.home-services-premium .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197,160,89,0.16), transparent 38%);
    opacity: 0.75;
    pointer-events: none;
}

.home-services-premium .service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.home-services-premium .service-card:hover::after {
    transform: scaleX(1);
}

.home-services-premium .service-card i {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    margin-bottom: 1.2rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color) !important;
    font-size: 1.3rem !important;
    background: rgba(197,160,89,0.12);
    border: 1px solid rgba(197,160,89,0.28);
    border-radius: 50%;
}

.home-service-step {
    position: absolute;
    top: 1.2rem;
    right: 1.3rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(197,160,89,0.18);
}

.home-services-premium .service-card h3,
.home-services-premium .service-card p {
    position: relative;
    z-index: 1;
}

.home-services-premium .service-card h3 {
    margin-bottom: 0.65rem;
    color: #ffffff !important;
    font-size: 1.05rem !important;
    line-height: 1.25;
}

.home-services-premium .service-card p {
    max-width: 220px;
    color: rgba(255,255,255,0.68) !important;
    font-size: 0.88rem !important;
    line-height: 1.65;
}

.home-services-premium .service-card:hover {
    border-color: rgba(197,160,89,0.58) !important;
    box-shadow: 0 30px 70px rgba(10,25,47,0.26) !important;
}

/* â”€â”€â”€ Nav Actions & Hamburger â”€â”€â”€ */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-icon {
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.nav-icon:hover {
    color: var(--accent-color);
}

.hamburger-menu {
    display: grid;
    grid-template-columns: auto 25px;
    grid-template-rows: auto auto auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 5px;
    cursor: pointer;
    z-index: 1001; /* Above mega menu */
}

.hamburger-menu::before {
    content: 'MENU';
    grid-column: 1;
    grid-row: 1 / span 3;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.hamburger-menu:hover::before {
    color: var(--accent-color);
}

.hamburger-menu span {
    grid-column: 2;
    display: block;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
}

.hamburger-menu span:nth-child(1) { width: 15px; justify-self: start; }
.hamburger-menu span:nth-child(2) { width: 25px; justify-self: start; }
.hamburger-menu span:nth-child(3) { width: 15px; justify-self: end; }

.hamburger-menu:hover span {
    background: var(--accent-color);
}

/* â”€â”€â”€ Mega Menu (Redesigned as Side Drawer) â”€â”€â”€ */
.mega-menu {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    max-width: 80vw;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    overflow-y: auto;
    padding-top: 80px; /* Space for close button */
}

.mega-menu.active {
    right: 0;
}

.mega-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mega-col h4 {
    display: none; /* Hidden to match screenshot */
}

.mega-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mega-col ul li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mega-col ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #444;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 300;
    transition: 0.3s;
}

.mega-col ul li a:hover {
    color: var(--accent-color);
    background: rgba(0,0,0,0.02);
}

/* Add arrows to the first 3 links */
.mega-col ul li:nth-child(1) a::after,
.mega-col ul li:nth-child(2) a::after,
.mega-col ul li:nth-child(3) a::after,
.mega-col ul li:nth-child(4) a::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
    color: #888;
    transition: transform 0.3s;
}

.mega-col ul li:nth-child(1) a:hover::after,
.mega-col ul li:nth-child(2) a:hover::after,
.mega-col ul li:nth-child(3) a:hover::after,
.mega-col ul li:nth-child(4) a:hover::after {
    transform: translateX(5px);
    color: var(--accent-color);
}

/* Make the remaining items have a gray background */
.mega-col ul li:nth-child(n+5) {
    background: #f4f4f4;
    border-bottom-color: rgba(0,0,0,0.03);
}

/* Stretch the last item to fill the bottom */
.mega-col ul li:last-child {
    flex: 1;
}

.mega-col ul li:last-child a {
    height: 100%;
    align-items: flex-start;
}

/* Reset button styling for the consultation button inside the list */
.mega-col ul li .btn-consultation {
    border: none !important;
    background: transparent !important;
    color: #444 !important;
    padding: 1.5rem 3rem !important;
    border-radius: 0 !important;
    font-weight: 300 !important;
    display: flex !important;
    align-items: flex-start !important;
}
.mega-col ul li .btn-consultation:hover {
    color: var(--accent-color) !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

/* â”€â”€â”€ Hero Finder Bar â”€â”€â”€ */
.hero-finder-bar {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px; /* Pill shape */
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 2;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.finder-tab {
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: 0.3s;
    border-radius: 20px;
}

.finder-tab.active {
    background: var(--accent-color);
    color: var(--primary-color);
}

.finder-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

.finder-select {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    cursor: pointer;
}

.finder-select option {
    background: var(--primary-color);
    color: var(--text-primary);
}

.finder-btn {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.finder-btn:hover {
    background: #fff;
}

/* â”€â”€â”€ Search Overlay â”€â”€â”€ */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.98);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    padding: 2rem 4rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-input-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-input-container input {
    width: 80%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--text-secondary);
    color: var(--text-primary);
    font-size: 3rem;
    padding: 1rem 0;
    outline: none;
    font-family: var(--font-heading);
}

.search-input-container input:focus {
    border-bottom-color: var(--accent-color);
}

/* â”€â”€â”€ Property Tabs â”€â”€â”€ */
.prop-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.prop-tab {
    background: transparent;
    border: 1px solid rgba(197,160,89,0.4);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.prop-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-color);
    border-radius: 30px;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.prop-tab:hover, .prop-tab.active {
    color: var(--primary-color);
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(197,160,89,0.3);
    transform: translateY(-2px);
}

.prop-tab:hover::before, .prop-tab.active::before {
    transform: scale(1);
}

.prop-panel {
    display: none;
    animation: panelSlideIn 0.55s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes panelSlideIn {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.prop-panel.active {
    display: block;
}

.prop-type-scroll-wrapper {
    position: relative;
    max-height: 580px;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 16px;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(197,160,89,0.5) rgba(197,160,89,0.08);
}

.prop-type-scroll-wrapper::-webkit-scrollbar {
    width: 5px;
}

.prop-type-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(197,160,89,0.08);
    border-radius: 10px;
}

.prop-type-scroll-wrapper::-webkit-scrollbar-thumb {
    background: rgba(197,160,89,0.5);
    border-radius: 10px;
}

.prop-type-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(197,160,89,0.8);
}

/* Fade gradient at bottom to hint scrollability */
.prop-type-scroll-wrapper::after {
    content: '';
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(245,242,236,0.95) 0%, transparent 100%);
    display: block;
    pointer-events: none;
    margin-top: -60px;
}

.prop-scroll-hint {
    text-align: center;
    margin-top: 1.2rem;
    color: var(--accent-color);
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(5px); opacity: 1; }
}

.prop-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0.5rem 0.5rem 1rem 0.5rem;
}

.prop-type-card {
    position: relative;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prop-type-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197,160,89,0) 0%, rgba(197,160,89,0.12) 50%, rgba(197,160,89,0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
    pointer-events: none;
}

.prop-type-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-15deg);
    transition: left 0.0s;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
}

.prop-type-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(197,160,89,0.5);
    border-color: rgba(197, 160, 89, 0.4);
}

.prop-type-card:hover::before {
    opacity: 1;
}

.prop-type-card:hover::after {
    opacity: 1;
    left: 120%;
    transition: left 0.7s ease 0.1s;
}

.prop-type-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.prop-type-card:hover .prop-type-img {
    transform: scale(1.12);
}

.prop-type-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 1.5rem 1.8rem;
    background: linear-gradient(to top, 
        rgba(5, 15, 30, 0.95) 0%, 
        rgba(5, 15, 30, 0.6) 50%, 
        transparent 100%
    );
    color: white;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.prop-type-card:hover .prop-type-overlay {
    transform: translateY(0);
}

.prop-type-overlay h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
    color: #ffffff;
}

.prop-type-overlay p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.5rem;
}

.btn-outline {
    display: inline-block;
    border: 1px solid rgba(197,160,89,0.8);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 0; /* Luxury sharp look */
    position: relative;
    overflow: hidden;
    letter-spacing: 2px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.8rem 2rem !important;
    text-transform: uppercase;
    background: rgba(197, 160, 89, 0.05);
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.btn-outline:hover {
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.btn-outline:hover::before {
    transform: scaleX(1);
}


/* â”€â”€â”€ Sustainability Section (Redesign for Mission) â”€â”€â”€ */
.sustainability-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.sustainability-image {
    flex: 0.7;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.sustainability-text {
    flex: 1.3;
}

.gs-mission-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gs-mission-line {
    height: 1px;
    width: 50px;
    background: var(--accent-color);
}

.gs-mission-badge {
    color: var(--accent-color);
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

.gs-mission-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.gs-mission-btn {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.gs-mission-btn:hover {
    gap: 1rem;
}

/* â”€â”€â”€ Awards Section â”€â”€â”€ */
.awards-premium-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}
.awards-premium-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(10, 25, 47, 0.025) 0px, rgba(10, 25, 47, 0.025) 1px, transparent 1px, transparent 10px);
    pointer-events: none;
}

/* Floating gold orbs in awards section */
.awards-premium-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197,160,89,0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 20px) scale(1.1); }
    66% { transform: translate(20px, -15px) scale(0.95); }
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.award-item {
    text-align: center;
    padding: 3.5rem 2rem;
    background: linear-gradient(145deg, #0a192f 0%, #0d2240 100%);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.4s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
}

.award-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197,160,89,0.08), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.award-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.award-item:hover {
    transform: translateY(-14px) scale(1.02);
    border-color: rgba(197,160,89,0.5);
    box-shadow: 0 25px 60px rgba(10, 25, 47, 0.25), 0 0 0 1px rgba(197,160,89,0.15), inset 0 0 40px rgba(197,160,89,0.04);
}

.award-item:hover::before {
    left: 150%;
}

.award-item:hover::after {
    width: 100%;
}

.award-item i {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.4));
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s ease;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.3)); }
    50% { filter: drop-shadow(0 0 22px rgba(197, 160, 89, 0.6)); }
}

.award-item:hover i {
    transform: scale(1.15) translateY(-4px);
    filter: drop-shadow(0 0 25px rgba(197, 160, 89, 0.7));
    animation: none;
}

.award-item p {
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: color 0.3s;
}

.award-item:hover p {
    color: var(--accent-color);
}

.award-item span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.award-item:hover span {
    color: rgba(197,160,89,0.7);
}

/* â”€â”€â”€ Luxury Brand Ribbon â”€â”€â”€ */
.gs-brand-ribbon {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 45%, rgba(71, 49, 12, 0.16) 100%),
        linear-gradient(90deg, #b88d3e 0%, #d5b469 24%, #c5a059 52%, #e2c579 76%, #b88d3e 100%);
    padding: 1.15rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.34);
    border-bottom: 1px solid rgba(71, 49, 12, 0.32);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), inset 0 -1px 0 rgba(71,49,12,0.18), 0 14px 35px rgba(10, 25, 47, 0.18);
}

.gs-brand-ribbon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 45%, transparent 70%);
    transform: translateX(-100%) skewX(-18deg);
    animation: ribbonGleam 5s linear infinite;
    pointer-events: none;
}

.gs-brand-ribbon::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 34px);
    opacity: 0.22;
    pointer-events: none;
}

.gs-ribbon-track {
    position: relative;
    z-index: 1;
    display: flex;
    white-space: nowrap;
    animation: ribbonScroll 25s linear infinite;
}

@keyframes ribbonScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gs-ribbon-track span {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 0.82rem;
    text-shadow: 0 1px 0 rgba(255,255,255,0.24);
}

.gs-ribbon-sep {
    margin: 0 1.8rem;
    color: rgba(10, 25, 47, 0.62) !important;
    opacity: 1;
    text-shadow: 0 0 10px rgba(255,255,255,0.28);
}

@keyframes ribbonGleam {
    0% { transform: translateX(-110%) skewX(-18deg); }
    100% { transform: translateX(110%) skewX(-18deg); }
}

/* â”€â”€â”€ Partners Showcase â”€â”€â”€ */
.partners-showcase {
    padding: 6rem 0;
    background: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partners-header {
    margin-bottom: 4rem;
}

.partners-subtitle {
    color: #1a9e66;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.partners-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 800;
}

.partners-marquee-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    width: 100%;
    padding: 0;
}

.partners-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.row-1 .marquee-track {
    animation: marqueeLeft 40s linear infinite;
}

.row-2 .marquee-track {
    animation: marqueeRight 40s linear infinite;
}

.partners-marquee:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.partner-box {
    width: 160px;
    height: 75px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(197, 160, 89, 0.1);
    position: relative;
    overflow: hidden;
}

.partner-box::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(197, 160, 89, 0.3), transparent);
    transform: skewX(-25deg);
    transition: left 0.7s ease;
}

.partner-box:hover::before {
    left: 150%;
}

.partner-box:hover {
    transform: translateY(-8px) scale(1.05);
    background: var(--primary-color);
    border-color: rgba(197, 160, 89, 0.6);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.25);
    z-index: 10;
}

.partner-name {
    color: #333;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    font-family: var(--font-heading);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.partner-box:hover .partner-name {
    color: var(--accent-color);
    letter-spacing: 1px;
}

.partners-cta-container {
    margin-top: 2rem;
}

.btn-partner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.2rem 2.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-partner:hover {
    background: var(--primary-color);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* â”€â”€â”€ Premium Footer â”€â”€â”€ */
.premium-footer {
    background: #0d0d0d;
    padding: 2.5rem 0 1.5rem;
    color: #fff;
    font-family: var(--font-body);
    position: relative;
    z-index: 10;
}

.premium-footer .container {
    max-width: 1200px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 1rem;
}

.footer-brand .footer-logo {
    width: 130px;
    margin-bottom: 1.2rem;
}

.brand-badge {
    display: inline-block;
    padding: 0.5rem 1.6rem;
    background: #164e33;
    color: #fff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 320px;
}

.footer-col-title {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: #164e33;
    color: #fff;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-transform: none;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    transition: 0.3s;
    opacity: 0.85;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.4rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact-item i {
    color: #1a9e66;
    margin-top: 4px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: #164e33;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1rem;
}

.social-btn:hover {
    background: #1a9e66;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.footer-bottom-new {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    padding-bottom: 2rem; /* Clean symmetrical spacing */
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.footer-bottom-new p {
    margin: 0 !important; /* Prevent browser margin-bottom collapse */
}

/* â”€â”€â”€ Media Queries â”€â”€â”€ */
@media (max-width: 1024px) {
    .container { padding: 0 2rem; }
    .nav-container { padding: 0 2rem; }
    .hero-content h1 { font-size: 3.5rem; }
    .hero-content { left: 2rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image-content { height: 360px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .prop-type-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
    .awards-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .sustainability-content { gap: 3rem; }
    .hero-finder-bar { max-width: 95%; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) {
    .section { padding: 5rem 0; }
    .container { padding: 0 1.5rem; }
    .nav-container { padding: 0 1.5rem; }
    .nav-actions { gap: 1rem; }
    .nav-actions .nav-icon {
        display: none;
    }
    .hamburger-menu {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        width: 26px;
        height: 20px;
        justify-content: space-between;
        align-items: flex-start;
        cursor: pointer;
        z-index: 2000;
        position: relative;
        overflow: visible;
    }
    .hamburger-menu span {
        display: block !important;
        height: 2.5px;
        background: #0a192f !important;
        border-radius: 3px;
        transition: 0.3s;
    }
    .dark-hero #main-header:not(.nav--scrolled) .hamburger-menu span {
        background: #ffffff !important;
    }
    .hamburger-menu span:nth-child(1) { width: 16px; }
    .hamburger-menu span:nth-child(2) { width: 26px; }
    .hamburger-menu span:nth-child(3) { width: 16px; }
    .hamburger-menu::before {
        display: none !important;
    }
    .hero {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        padding-top: 80px;
    }
    .hero-content {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: 100%;
        padding: 0;
        order: 1;
        margin-top: 35vh; /* Pushes content down significantly */
    }
    .title-line {
        height: auto;
        overflow: visible;
        font-size: 1rem !important; /* Force override inline styles */
    }
    .hero-content h1 { font-size: 1rem !important; margin-top: 1rem; }
    .hero-content p { margin: 0 auto 1.5rem; max-width: 100%; }
    .nav-links { display: none; }
    
    /* Grids to Single Column */
    .services-grid, .prop-type-grid, .awards-grid, .footer-grid, .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 1.2rem 0.85rem;
        gap: 0.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .stat-number {
        font-size: 1.6rem;
    }
    .stat-suffix {
        font-size: 1rem;
    }
    .stat-label {
        font-size: 0.62rem;
        letter-spacing: 1px;
    }
    .stat-item {
        min-width: 60px;
    }
    
    /* Interactive Elements */
    .prop-tabs { flex-wrap: wrap; }
    .prop-tab { font-size: 0.9rem; padding: 0.6rem 1.2rem; }
    
    /* Finder Bar */
    .hero-finder-bar {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 20px;
        padding: 1.5rem;
        gap: 0.5rem;
        width: 100%;
        order: 2;
        margin-top: 2rem;
    }
    .finder-tab { flex: 1 1 auto; text-align: center; padding: 0.6rem 0.5rem; font-size: 0.85rem; }
    .finder-divider { width: 100%; height: 1px; margin: 0.5rem 0; }
    .finder-select { width: 100%; padding: 0.8rem 0; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .finder-btn { margin-left: 0; width: 100%; justify-content: center; margin-top: 0.5rem; padding: 1rem; }
    
    /* Ticker and Ribbon */
    .ticker-wrapper { padding: 0.9rem 0; }
    .ticker-wrapper::before, .ticker-wrapper::after { width: 58px; }
    .ticker-track span { font-size: 0.72rem; }
    .ticker-dot { margin: 0 1.4rem; }
    
    .gs-brand-ribbon { padding: 0.95rem 0; }
    .gs-ribbon-track span { font-size: 0.74rem; }
    .gs-ribbon-sep { margin: 0 1.25rem; }
    
    /* Home Services Premium */
    .home-services-premium { padding: 5.5rem 0; }
    .home-services-header { margin-bottom: 2.8rem !important; }
    .home-services-header h2 { font-size: 2.35rem !important; }
    .home-services-premium .services-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
    .home-services-premium .service-card { min-height: 235px; padding: 1.8rem !important; }
    
    /* Sustainability */
    .sustainability-content { flex-direction: column; gap: 2rem; }
    .sustainability-image { height: 350px; width: 100%; flex: none; }
    .sustainability-text { flex: none; width: 100%; padding: 2.5rem 1.5rem; }
    
    .search-input-container input { font-size: 1.8rem; }

    /* Partners Section Mobile Fix */
    .partners-title {
        font-size: 1.6rem !important;
        line-height: 1.3;
        padding: 0 1rem;
    }
    .partners-showcase {
        overflow: hidden;
    }
    .partner-box {
        width: 140px !important;
        height: 70px !important;
        padding: 0.8rem !important;
    }
    .partner-name {
        font-size: 0.85rem !important;
    }
}

/* --- EXPENSIVE LOOK OVERRIDES --- */
.section-header.center {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header .badge {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: rgba(197, 160, 89, 0.08);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.8rem;
    border: 1px solid rgba(197, 160, 89, 0.25);
    position: relative;
    overflow: hidden;
}

.section-header .badge::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: badgeGleam 4s infinite;
}

@keyframes badgeGleam {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.section-header h2 {
    font-family: "Bodoni Moda", serif;
    font-size: clamp(2.8rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -0.04em;
    position: relative;
}

.section-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* Background for the property section */
.prop-type-section {
    background: #ffffff;
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(197, 160, 89, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(10, 25, 47, 0.02) 0%, transparent 50%);
    padding: 8rem 0;
}

.prop-type-grid {
    gap: 3rem;
}

/* â”€â”€â”€ FREE CONSULTATION BUTTON (HEADER) â”€â”€â”€ */
.btn-consultation {
    background: #164e33;
    color: #fff !important;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid transparent;
    display: inline-block;
    margin-left: 1rem;
    box-shadow: 0 10px 20px rgba(22, 78, 51, 0.2);
    white-space: nowrap;
}

.btn-consultation:hover {
    background: #1a9e66;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(26, 158, 102, 0.3);
}

/* â”€â”€â”€ APPOINTMENT MODAL SYSTEM â”€â”€â”€ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #fff;
    width: 95%;
    max-width: 480px;
    border-radius: 30px;
    padding: 3rem 2.5rem;
    position: relative;
    transform: translateY(40px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #f5f5f5;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    font-size: 1.2rem;
    transition: 0.3s;
}

.modal-close:hover {
    background: #eee;
    transform: rotate(90deg);
}

.modal-container h2 {
    color: #357a64;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: left;
    font-family: var(--font-heading);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    padding-left: 5px;
}

.form-field input, 
.form-field select {
    background: #fff;
    border: 1.5px solid #e1e8e6;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    color: #444;
}

.form-field input:focus, 
.form-field select:focus {
    border-color: #357a64;
    box-shadow: 0 0 0 4px rgba(53, 122, 100, 0.1);
}

.form-field .availability-note {
    font-size: 0.75rem;
    color: #888;
    margin-top: 2px;
    padding-left: 5px;
}

.submit-appointment {
    background: #357a64;
    color: #fff;
    border: none;
    padding: 1.1rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    margin-top: 1rem;
    width: fit-content;
    padding-left: 2rem;
    padding-right: 2rem;
}

.submit-appointment:hover {
    background: #2a614f;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(53, 122, 100, 0.2);
}

.submit-appointment i {
    font-size: 0.9rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem 0 1.25rem;
        overflow: visible;
    }
    .nav-actions {
        gap: 0.75rem;
        flex-shrink: 0;
    }
    .nav-icon {
        font-size: 1.05rem;
    }
    .hamburger-menu {
        grid-template-columns: 25px;
        column-gap: 0;
        padding-right: 0;
        margin-right: 2px;
        flex-shrink: 0;
    }
    .hamburger-menu span {
        grid-column: 1;
    }
    .hamburger-menu::before {
        display: none;
    }
    .hero {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .hero-content {
        max-width: 100%;
    }
    .title-line {
        height: auto;
        overflow: visible;
        font-size: clamp(2rem, 9.5vw, 2.55rem);
    }
    .hero-content p {
        max-width: 100%;
    }
    .modal-container {
        padding: 2.5rem 1.5rem;
    }
    .modal-container h2 {
        font-size: 1.6rem;
    }
    .btn-consultation {
        display: none; /* Hide on mobile to avoid clutter, or keep in mega menu */
    }
}


/* --- HERO SLIDER & GHAR SETU --- */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 8s ease-out;
    transform: scale(1.1);
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-main-title {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hiring-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(18, 30, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    animation: slideInRight 1s ease-out;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5a059;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-subtitle {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
}

.badge-btn {
    background: #1e4d3b;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: 0.3s;
}

.badge-btn:hover {
    background: #2d7258;
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* LOGO ANIMATION & STYLING */
.logo-img {
    height: 55px; /* Compact by default */
    width: auto;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Home Page hero â€” large size only when NOT scrolled */
.dark-hero header:not(.nav--scrolled) .logo-img {
    height: 75px;
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(197, 160, 89, 0));
    animation: logoFloat 4s ease-in-out infinite, logoGlow 6s infinite alternate;
}

/* Hover states */
.logo:hover .logo-img {
    transform: scale(1.05) rotate(-1deg);
    filter: drop-shadow(0 8px 16px rgba(197, 160, 89, 0.35));
}

.dark-hero .logo:hover .logo-img {
    transform: scale(1.06) rotate(-1deg);
}

/* Floating animation */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
}

/* Glow animation */
@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 2px rgba(197, 160, 89, 0.15)); }
    100% { filter: drop-shadow(0 0 12px rgba(197, 160, 89, 0.45)); }
}

/* Header align */
header .nav-container {
    height: 100%;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

/* â”€â”€ MOBILE: Logo fix â”€â”€ */
@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }

    .dark-hero header:not(.nav--scrolled) .logo-img {
        height: 85px;
        transform: scale(1);
        animation: logoGlow 6s infinite alternate;
    }
}

/* ================================================================
   PREMIUM 3D SOCIAL ORB â€” GHARSETU
   ================================================================ */

/* â”€â”€â”€ Orb Container â”€â”€â”€ */
.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: 14px;
    height: 14px;
    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;
    }
}
/* 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;
    }
}




/ *   S h a r e d   p r e m i u m   h e a d e r   p o l i s h   f o r   a l l   p a g e s   * / 
 
 : r o o t   { 
 
         - - g s - h e a d e r - b g :   r g b a ( 8 ,   1 3 ,   1 7 ,   0 . 9 ) ; 
 
         - - g s - h e a d e r - b g - s o l i d :   r g b a ( 8 ,   1 3 ,   1 7 ,   0 . 9 6 ) ; 
 
         - - g s - h e a d e r - g o l d :   # c 9 a 8 4 c ; 
 
         - - g s - h e a d e r - g o l d - d a r k :   # 8 b 6 9 1 4 ; 
 
         - - g s - h e a d e r - t e x t :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 9 ) ; 
 
 } 
 
 
 
 / *   â  ¬ â  ¬   N A V B A R   â  ¬ â  ¬   * / 
 
 # g s - n a v   { 
 
         p o s i t i o n :   f i x e d ; 
 
         t o p :   0 ;   l e f t :   0 ;   r i g h t :   0 ; 
 
         z - i n d e x :   1 0 0 0 ; 
 
         t r a n s i t i o n :   b a c k g r o u n d   . 3 5 s ,   b o x - s h a d o w   . 3 5 s ; 
 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
 
 } 
 
 # g s - n a v . s c r o l l e d   { 
 
         b a c k g r o u n d :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 9 7 ) ; 
 
         b o x - s h a d o w :   0   2 p x   2 4 p x   r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ; 
 
         b a c k d r o p - f i l t e r :   b l u r ( 1 2 p x ) ; 
 
 } 
 
 . g s - n a v - i n n e r   { 
 
         m a x - w i d t h :   1 2 8 0 p x ; 
 
         m a r g i n :   0   a u t o ; 
 
         p a d d i n g :   0   3 2 p x ; 
 
         h e i g h t :   7 2 p x ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
 
         g a p :   2 4 p x ; 
 
 } 
 
 / *   L o g o   * / 
 
 . g s - l o g o   i m g   { 
 
         h e i g h t :   6 5 p x ; 
 
         w i d t h :   a u t o ; 
 
         o b j e c t - f i t :   c o n t a i n ; 
 
         t r a n s i t i o n :   h e i g h t   0 . 3 s   e a s e ; 
 
 } 
 
 # g s - n a v . s c r o l l e d   . g s - l o g o   i m g   { 
 
         h e i g h t :   5 5 p x ; 
 
 } 
 
 / *   D e s k t o p   l i n k s   * / 
 
 . g s - l i n k s   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   4 p x ; 
 
 } 
 
 . g s - l i n k   { 
 
         f o n t - s i z e :   . 8 2 r e m ; 
 
         f o n t - w e i g h t :   5 0 0 ; 
 
         l e t t e r - s p a c i n g :   . 0 6 e m ; 
 
         c o l o r :   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 8 8 ) ; 
 
         p a d d i n g :   8 p x   1 4 p x ; 
 
         b o r d e r - r a d i u s :   6 p x ; 
 
         t r a n s i t i o n :   c o l o r   . 2 5 s ,   b a c k g r o u n d   . 2 5 s ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         c u r s o r :   p o i n t e r ; 
 
         w h i t e - s p a c e :   n o w r a p ; 
 
 } 
 
 # g s - n a v . s c r o l l e d   . g s - l i n k   {   c o l o r :   # 2 a 2 a 2 a ;   } 
 
 . g s - l i n k : h o v e r   {   c o l o r :   # 8 B 6 9 1 4 ;   b a c k g r o u n d :   r g b a ( 1 3 9 , 1 0 5 , 2 0 , . 0 7 ) ;   } 
 
 
 
 / *   D r o p d o w n   * / 
 
 . g s - d r o p - w r a p   {   p o s i t i o n :   r e l a t i v e ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   } 
 
 . g s - d r o p - t r i g g e r   {   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   5 p x ;   u s e r - s e l e c t :   n o n e ;   } 
 
 . g s - d r o p d o w n   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   1 0 0 % ; 
 
         l e f t :   5 0 % ; 
 
         b a c k g r o u n d :   # f f f ; 
 
         b o r d e r :   1 p x   s o l i d   r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ; 
 
         b o r d e r - r a d i u s :   1 0 p x ; 
 
         b o x - s h a d o w :   0   1 2 p x   4 0 p x   r g b a ( 0 , 0 , 0 , 0 . 1 2 ) ; 
 
         m i n - w i d t h :   2 0 0 p x ; 
 
         p a d d i n g :   2 0 p x   8 p x   8 p x ; 
 
         m a r g i n - t o p :   0 ; 
 
         o p a c i t y :   0 ; 
 
         p o i n t e r - e v e n t s :   n o n e ; 
 
         t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % )   t r a n s l a t e Y ( 6 p x ) ; 
 
         t r a n s i t i o n :   o p a c i t y   . 2 2 s ,   t r a n s f o r m   . 2 2 s ; 
 
         z - i n d e x :   2 0 0 ; 
 
 } 
 
 / *   I n v i s i b l e   b r i d g e   s o   c u r s o r   c a n   m o v e   f r o m   t r i g g e r   t o   d r o p d o w n   * / 
 
 . g s - d r o p d o w n : : b e f o r e   { 
 
         c o n t e n t :   ' ' ; 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   - 1 6 p x ; 
 
         l e f t :   0 ; 
 
         r i g h t :   0 ; 
 
         h e i g h t :   1 6 p x ; 
 
 } 
 
 . g s - d r o p - w r a p : h o v e r   . g s - d r o p d o w n   { 
 
         o p a c i t y :   1 ; 
 
         p o i n t e r - e v e n t s :   a l l ; 
 
         t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % )   t r a n s l a t e Y ( 0 ) ; 
 
 } 
 
 . g s - d r o p - i t e m   { 
 
         d i s p l a y :   b l o c k ; 
 
         p a d d i n g :   1 0 p x   1 4 p x ; 
 
         f o n t - s i z e :   . 8 2 r e m ; 
 
         f o n t - w e i g h t :   5 0 0 ; 
 
         c o l o r :   # 2 a 2 a 2 a ; 
 
         b o r d e r - r a d i u s :   6 p x ; 
 
         t r a n s i t i o n :   b a c k g r o u n d   . 2 s ,   c o l o r   . 2 s ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         w h i t e - s p a c e :   n o w r a p ; 
 
 } 
 
 . g s - d r o p - i t e m : h o v e r   {   b a c k g r o u n d :   r g b a ( 1 3 9 , 1 0 5 , 2 0 , . 0 8 ) ;   c o l o r :   # 8 B 6 9 1 4 ;   } 
 
 
 
 / *   C T A   +   H a m b u r g e r   * / 
 
 . g s - n a v - r i g h t   {   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   1 2 p x ;   } 
 
 . g s - c t a - b t n   { 
 
         f o n t - s i z e :   . 7 8 r e m ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         l e t t e r - s p a c i n g :   . 0 8 e m ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         p a d d i n g :   1 0 p x   2 2 p x ; 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # c 9 a 8 4 c ,   # 8 B 6 9 1 4 ) ; 
 
         c o l o r :   # f f f ; 
 
         b o r d e r - r a d i u s :   6 p x ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         t r a n s i t i o n :   o p a c i t y   . 2 5 s ,   t r a n s f o r m   . 2 s ; 
 
         w h i t e - s p a c e :   n o w r a p ; 
 
 } 
 
 . g s - c t a - b t n : h o v e r   {   o p a c i t y :   . 8 8 ;   t r a n s f o r m :   t r a n s l a t e Y ( - 1 p x ) ;   } 
 
 . g s - h a m   { 
 
         d i s p l a y :   n o n e ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         g a p :   5 p x ; 
 
         b a c k g r o u n d :   n o n e ; 
 
         b o r d e r :   n o n e ; 
 
         c u r s o r :   p o i n t e r ; 
 
         p a d d i n g :   6 p x ; 
 
 } 
 
 . g s - h a m   s p a n   { 
 
         d i s p l a y :   b l o c k ; 
 
         w i d t h :   2 4 p x ; 
 
         h e i g h t :   2 p x ; 
 
         b a c k g r o u n d :   # f f f ; 
 
         b o r d e r - r a d i u s :   2 p x ; 
 
         t r a n s i t i o n :   a l l   . 3 s ; 
 
 } 
 
 # g s - n a v . s c r o l l e d   . g s - h a m   s p a n   {   b a c k g r o u n d :   # 2 a 2 a 2 a ;   } 
 
 
 
 / *   M o b i l e   O v e r l a y   * / 
 
 . g s - m o b - o v e r l a y   { 
 
         p o s i t i o n :   f i x e d ;   i n s e t :   0 ; 
 
         b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , 0 . 5 ) ; 
 
         b a c k d r o p - f i l t e r :   b l u r ( 4 p x ) ; 
 
         z - i n d e x :   1 0 0 1 ; 
 
         o p a c i t y :   0 ;   p o i n t e r - e v e n t s :   n o n e ; 
 
         t r a n s i t i o n :   o p a c i t y   . 3 5 s ; 
 
 } 
 
 . g s - m o b - o v e r l a y . o p e n   {   o p a c i t y :   1 ;   p o i n t e r - e v e n t s :   a l l ;   } 
 
 
 
 / *   M o b i l e   S i d e b a r   * / 
 
 . g s - m o b - m e n u   { 
 
         p o s i t i o n :   f i x e d ; 
 
         t o p :   0 ;   r i g h t :   0 ;   b o t t o m :   0 ; 
 
         w i d t h :   m i n ( 3 4 0 p x ,   8 8 v w ) ; 
 
         b a c k g r o u n d :   # f f f ; 
 
         z - i n d e x :   1 0 0 2 ; 
 
         t r a n s f o r m :   t r a n s l a t e X ( 1 0 0 % ) ; 
 
         t r a n s i t i o n :   t r a n s f o r m   . 4 s   c u b i c - b e z i e r ( . 1 6 , 1 , . 3 , 1 ) ; 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         b o x - s h a d o w :   - 8 p x   0   4 0 p x   r g b a ( 0 , 0 , 0 , . 1 5 ) ; 
 
 } 
 
 . g s - m o b - m e n u . o p e n   {   t r a n s f o r m :   t r a n s l a t e X ( 0 ) ;   } 
 
 . g s - m o b - h e a d   { 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
 
         p a d d i n g :   2 0 p x   2 4 p x ; 
 
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 0 , 0 , 0 , 0 . 0 7 ) ; 
 
 } 
 
 . g s - m o b - l o g o   {   h e i g h t :   3 6 p x ;   w i d t h :   a u t o ;   } 
 
 . g s - m o b - c l o s e   { 
 
         w i d t h :   3 6 p x ;   h e i g h t :   3 6 p x ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         b o r d e r :   1 p x   s o l i d   r g b a ( 0 , 0 , 0 , 0 . 1 ) ; 
 
         b a c k g r o u n d :   n o n e ; 
 
         c u r s o r :   p o i n t e r ; 
 
         d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         t r a n s i t i o n :   a l l   . 2 5 s ; 
 
 } 
 
 . g s - m o b - c l o s e : h o v e r   {   b a c k g r o u n d :   r g b a ( 1 3 9 , 1 0 5 , 2 0 , . 1 ) ;   b o r d e r - c o l o r :   # 8 B 6 9 1 4 ;   } 
 
 . g s - m o b - c l o s e   s v g   {   w i d t h :   1 6 p x ;   h e i g h t :   1 6 p x ;   s t r o k e :   # 2 a 2 a 2 a ;   } 
 
 . g s - m o b - l i n k s   {   f l e x :   1 ;   o v e r f l o w - y :   a u t o ;   p a d d i n g :   1 2 p x   0 ;   } 
 
 . g s - m o b - l i n k   { 
 
         d i s p l a y :   b l o c k ; 
 
         p a d d i n g :   1 6 p x   2 8 p x ; 
 
         f o n t - s i z e :   . 9 5 r e m ; 
 
         f o n t - w e i g h t :   5 0 0 ; 
 
         c o l o r :   # 2 a 2 a 2 a ; 
 
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         t r a n s i t i o n :   c o l o r   . 2 s ,   p a d d i n g   . 2 s ; 
 
 } 
 
 . g s - m o b - l i n k : h o v e r   {   c o l o r :   # 8 B 6 9 1 4 ;   p a d d i n g - l e f t :   3 4 p x ;   } 
 
 / *   M o b i l e   g r o u p / a c c o r d i o n   * / 
 
 . g s - m o b - g r o u p   {   b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ;   } 
 
 . g s - m o b - p a r e n t   { 
 
         w i d t h :   1 0 0 % ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
 
         p a d d i n g :   1 6 p x   2 8 p x ; 
 
         f o n t - s i z e :   . 9 5 r e m ; 
 
         f o n t - w e i g h t :   5 0 0 ; 
 
         c o l o r :   # 2 a 2 a 2 a ; 
 
         b a c k g r o u n d :   n o n e ; 
 
         b o r d e r :   n o n e ; 
 
         c u r s o r :   p o i n t e r ; 
 
         t e x t - a l i g n :   l e f t ; 
 
         t r a n s i t i o n :   c o l o r   . 2 s ; 
 
 } 
 
 . g s - m o b - p a r e n t : h o v e r   {   c o l o r :   # 8 B 6 9 1 4 ;   } 
 
 . g s - m o b - p a r e n t   s v g   {   t r a n s i t i o n :   t r a n s f o r m   . 3 s ;   f l e x - s h r i n k :   0 ;   } 
 
 . g s - m o b - g r o u p . o p e n   . g s - m o b - p a r e n t   s v g   {   t r a n s f o r m :   r o t a t e ( 1 8 0 d e g ) ;   } 
 
 . g s - m o b - s u b   { 
 
         m a x - h e i g h t :   0 ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         t r a n s i t i o n :   m a x - h e i g h t   . 3 5 s   c u b i c - b e z i e r ( . 1 6 , 1 , . 3 , 1 ) ; 
 
         b a c k g r o u n d :   r g b a ( 1 3 9 , 1 0 5 , 2 0 , . 0 3 ) ; 
 
 } 
 
 . g s - m o b - g r o u p . o p e n   . g s - m o b - s u b   {   m a x - h e i g h t :   3 0 0 p x ;   } 
 
 . g s - m o b - s u b - l i n k   { 
 
         d i s p l a y :   b l o c k ; 
 
         p a d d i n g :   1 2 p x   2 8 p x   1 2 p x   4 0 p x ; 
 
         f o n t - s i z e :   . 8 8 r e m ; 
 
         c o l o r :   # 5 5 5 ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         t r a n s i t i o n :   c o l o r   . 2 s ; 
 
 } 
 
 . g s - m o b - s u b - l i n k : h o v e r   {   c o l o r :   # 8 B 6 9 1 4 ;   } 
 
 . g s - m o b - c t a   { 
 
         d i s p l a y :   b l o c k ; 
 
         m a r g i n :   2 0 p x   2 4 p x ; 
 
         p a d d i n g :   1 4 p x   2 0 p x ; 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # c 9 a 8 4 c ,   # 8 B 6 9 1 4 ) ; 
 
         c o l o r :   # f f f ; 
 
         b o r d e r - r a d i u s :   8 p x ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
         f o n t - s i z e :   . 8 5 r e m ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
         l e t t e r - s p a c i n g :   . 0 8 e m ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         t r a n s i t i o n :   o p a c i t y   . 2 5 s ; 
 
 } 
 
 . g s - m o b - c t a : h o v e r   {   o p a c i t y :   . 8 8 ;   } 
 
 
 
 / *   H i d e   d e s k t o p   n a v   o n   m o b i l e   * / 
 
 @ m e d i a   ( m a x - w i d t h :   9 0 0 p x )   { 
 
         . g s - l i n k s   {   d i s p l a y :   n o n e ;   } 
 
         . g s - c t a - b t n   {   d i s p l a y :   n o n e ;   } 
 
         . g s - h a m   {   d i s p l a y :   f l e x ;   } 
 
 } 
 
 
 
 . p o r t f o l i o - h e a d e r   { 
 
         p o s i t i o n :   f i x e d   ! i m p o r t a n t ; 
 
         t o p :   0   ! i m p o r t a n t ; 
 
         l e f t :   0   ! i m p o r t a n t ; 
 
         r i g h t :   0   ! i m p o r t a n t ; 
 
         w i d t h :   1 0 0 %   ! i m p o r t a n t ; 
 
         m i n - h e i g h t :   7 8 p x   ! i m p o r t a n t ; 
 
         p a d d i n g :   0   c l a m p ( 1 8 p x ,   5 v w ,   5 6 p x )   ! i m p o r t a n t ; 
 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n   ! i m p o r t a n t ; 
 
         g a p :   1 8 p x   ! i m p o r t a n t ; 
 
         z - i n d e x :   1 0 0 0   ! i m p o r t a n t ; 
 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 9 5 )   ! i m p o r t a n t ; 
 
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 1 3 ,   1 6 ,   1 9 ,   0 . 0 8 )   ! i m p o r t a n t ; 
 
         b o x - s h a d o w :   0   1 2 p x   3 2 p x   r g b a ( 1 2 ,   1 6 ,   2 0 ,   0 . 1 )   ! i m p o r t a n t ; 
 
         - w e b k i t - b a c k d r o p - f i l t e r :   b l u r ( 1 6 p x )   s a t u r a t e ( 1 3 0 % )   ! i m p o r t a n t ; 
 
         b a c k d r o p - f i l t e r :   b l u r ( 1 6 p x )   s a t u r a t e ( 1 3 0 % )   ! i m p o r t a n t ; 
 
         b o x - s i z i n g :   b o r d e r - b o x   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p o r t f o l i o - l o g o   { 
 
         d i s p l a y :   i n l i n e - f l e x   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
 
         g a p :   1 2 p x   ! i m p o r t a n t ; 
 
         m i n - w i d t h :   0   ! i m p o r t a n t ; 
 
         t e x t - d e c o r a t i o n :   n o n e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p o r t f o l i o - l o g o   i m g   { 
 
         h e i g h t :   5 0 p x   ! i m p o r t a n t ; 
 
         w i d t h :   a u t o   ! i m p o r t a n t ; 
 
         o b j e c t - f i t :   c o n t a i n   ! i m p o r t a n t ; 
 
         f l e x :   0   0   a u t o   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . l o g o - t e x t - g r o u p   { 
 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
         m i n - w i d t h :   0   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . l o g o - b r a n d - n a m e   { 
 
         c o l o r :   # 1 2 1 7 1 d   ! i m p o r t a n t ; 
 
         f o n t - s i z e :   c l a m p ( 1 . 2 4 r e m ,   2 v w ,   1 . 5 8 r e m )   ! i m p o r t a n t ; 
 
         f o n t - w e i g h t :   5 0 0   ! i m p o r t a n t ; 
 
         l e t t e r - s p a c i n g :   0 . 0 2 e m   ! i m p o r t a n t ; 
 
         l i n e - h e i g h t :   1   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . l o g o - s u b - t e x t   { 
 
         c o l o r :   r g b a ( 1 8 ,   2 3 ,   2 9 ,   0 . 5 8 )   ! i m p o r t a n t ; 
 
         m a r g i n - t o p :   4 p x   ! i m p o r t a n t ; 
 
         f o n t - s i z e :   0 . 4 8 r e m   ! i m p o r t a n t ; 
 
         f o n t - w e i g h t :   7 0 0   ! i m p o r t a n t ; 
 
         l e t t e r - s p a c i n g :   0 . 3 e m   ! i m p o r t a n t ; 
 
         l i n e - h e i g h t :   1   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b a c k - b t n   { 
 
         d i s p l a y :   i n l i n e - f l e x   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
 
         g a p :   8 p x   ! i m p o r t a n t ; 
 
         m i n - h e i g h t :   4 0 p x   ! i m p o r t a n t ; 
 
         p a d d i n g :   0   1 5 p x   ! i m p o r t a n t ; 
 
         c o l o r :   # f f f f f f   ! i m p o r t a n t ; 
 
         b a c k g r o u n d :   # 0 b 1 0 1 4   ! i m p o r t a n t ; 
 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 0 1 ,   1 6 8 ,   7 6 ,   0 . 2 4 )   ! i m p o r t a n t ; 
 
         b o r d e r - r a d i u s :   8 p x   ! i m p o r t a n t ; 
 
         b o x - s h a d o w :   0   1 0 p x   2 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 2 )   ! i m p o r t a n t ; 
 
         f o n t - s i z e :   0 . 7 2 r e m   ! i m p o r t a n t ; 
 
         f o n t - w e i g h t :   7 5 0   ! i m p o r t a n t ; 
 
         l e t t e r - s p a c i n g :   0 . 0 8 e m   ! i m p o r t a n t ; 
 
         l i n e - h e i g h t :   1   ! i m p o r t a n t ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e   ! i m p o r t a n t ; 
 
         t e x t - d e c o r a t i o n :   n o n e   ! i m p o r t a n t ; 
 
         w h i t e - s p a c e :   n o w r a p   ! i m p o r t a n t ; 
 
         t r a n s i t i o n :   t r a n s f o r m   0 . 2 s   e a s e ,   b a c k g r o u n d   0 . 2 s   e a s e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b a c k - b t n : h o v e r   { 
 
         c o l o r :   # f f f f f f   ! i m p o r t a n t ; 
 
         b a c k g r o u n d :   # 1 5 1 c 2 4   ! i m p o r t a n t ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 p x )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   9 9 2 p x )   { 
 
         # g s - n a v   . g s - h a m   { 
 
                 d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 
         } 
 
         # g s - n a v   . g s - l i n k s , 
 
         # g s - n a v   . g s - c t a - b t n   { 
 
                 d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
         } 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   9 9 1 p x )   { 
 
         # g s - n a v   . g s - l i n k s , 
 
         # g s - n a v   . g s - c t a - b t n   { 
 
                 d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 
         } 
 
 
 
         # g s - n a v   . g s - h a m   { 
 
                 d i s p l a y :   i n l i n e - f l e x   ! i m p o r t a n t ; 
 
         } 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   6 4 0 p x )   { 
 
         # g s - n a v   . g s - n a v - i n n e r , 
 
         # g s - n a v . s c r o l l e d   . g s - n a v - i n n e r   { 
 
                 h e i g h t :   7 2 p x   ! i m p o r t a n t ; 
 
                 p a d d i n g :   0   1 6 p x   ! i m p o r t a n t ; 
 
         } 
 
 
 
         # g s - n a v   . g s - l o g o   i m g , 
 
         # g s - n a v . s c r o l l e d   . g s - l o g o   i m g   { 
 
                 h e i g h t :   5 8 p x   ! i m p o r t a n t ; 
 
                 m a x - w i d t h :   1 8 0 p x   ! i m p o r t a n t ; 
 
         } 
 
 
 
         . g s - m o b - h e a d   { 
 
                 m i n - h e i g h t :   7 2 p x   ! i m p o r t a n t ; 
 
                 p a d d i n g :   1 2 p x   1 6 p x   ! i m p o r t a n t ; 
 
         } 
 
 
 
         . g s - m o b - l o g o   { 
 
                 h e i g h t :   4 6 p x   ! i m p o r t a n t ; 
 
         } 
 
 
 
         . p o r t f o l i o - h e a d e r   { 
 
                 m i n - h e i g h t :   7 2 p x   ! i m p o r t a n t ; 
 
                 p a d d i n g :   0   1 4 p x   ! i m p o r t a n t ; 
 
                 g a p :   1 0 p x   ! i m p o r t a n t ; 
 
         } 
 
 
 
         . p o r t f o l i o - l o g o   { 
 
                 g a p :   9 p x   ! i m p o r t a n t ; 
 
         } 
 
 
 
         . p o r t f o l i o - l o g o   i m g   { 
 
                 h e i g h t :   4 2 p x   ! i m p o r t a n t ; 
 
         } 
 
 
 
         . l o g o - b r a n d - n a m e   { 
 
                 f o n t - s i z e :   1 . 1 2 r e m   ! i m p o r t a n t ; 
 
         } 
 
 
 
         . l o g o - s u b - t e x t   { 
 
                 f o n t - s i z e :   0 . 4 2 r e m   ! i m p o r t a n t ; 
 
                 l e t t e r - s p a c i n g :   0 . 2 2 e m   ! i m p o r t a n t ; 
 
         } 
 
 
 
         . b a c k - b t n   { 
 
                 m i n - h e i g h t :   3 6 p x   ! i m p o r t a n t ; 
 
                 p a d d i n g :   0   1 1 p x   ! i m p o r t a n t ; 
 
                 g a p :   6 p x   ! i m p o r t a n t ; 
 
                 f o n t - s i z e :   0 . 6 2 r e m   ! i m p o r t a n t ; 
 
                 l e t t e r - s p a c i n g :   0 . 0 4 e m   ! i m p o r t a n t ; 
 
         } 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   3 9 0 p x )   { 
 
         . l o g o - s u b - t e x t   { 
 
                 d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 
         } 
 
 
 
         . p o r t f o l i o - l o g o   i m g   { 
 
                 h e i g h t :   3 8 p x   ! i m p o r t a n t ; 
 
         } 
 
 
 
         . l o g o - b r a n d - n a m e   { 
 
                 f o n t - s i z e :   1 . 0 2 r e m   ! i m p o r t a n t ; 
 
         } 
 
 
 
         . b a c k - b t n   { 
 
                 p a d d i n g :   0   9 p x   ! i m p o r t a n t ; 
 
         } 
 
 } 
 
 
 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
 
         # g s - n a v   * , 
 
         . p o r t f o l i o - h e a d e r   *   { 
 
                 t r a n s i t i o n :   n o n e   ! i m p o r t a n t ; 
 
                 a n i m a t i o n :   n o n e   ! i m p o r t a n t ; 
 
         } 
 
 } 
 
 
 
 / *   ? ? ? ? ? ?   G L O B A L   F I X :   R E M O V E   B O T T O M   W H I T E   G A P   ? ? ? ? ? ?   * / 
 
 h t m l   { 
 
         b a c k g r o u n d - c o l o r :   # 0 d 0 d 0 d   ! i m p o r t a n t ;   / *   M a t c h e s   F o o t e r   B a c k g r o u n d   * / 
 
 } 
 
 b o d y   { 
 
         m i n - h e i g h t :   1 0 0 v h ; 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
 } 
 
 m a i n ,   s e c t i o n : l a s t - o f - t y p e   { 
 
         f l e x :   1 ; 
 
 } 
 
 . p r e m i u m - f o o t e r   { 
 
         m a r g i n - t o p :   a u t o ; 
 
 } 
 
 
 
 / *   ? ? ? ? ? ?   F A B   ( S O C I A L   O R B )   S T Y L E S   ? ? ? ? ? ?   * / 
 
 . s o c i a l - o r b - w r a p   { 
 
         p o s i t i o n :   f i x e d ; 
 
         b o t t o m :   3 2 p x ; 
 
         r i g h t :   3 2 p x ; 
 
         z - i n d e x :   9 9 9 9 ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         c u r s o r :   g r a b ; 
 
         u s e r - s e l e c t :   n o n e ; 
 
         t o u c h - a c t i o n :   n o n e ; 
 
 } 
 
 
 
 . s o c i a l - o r b - w r a p . i s - d r a g g i n g   { 
 
         c u r s o r :   g r a b b i n g ; 
 
         t r a n s i t i o n :   n o n e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . s o c i a l - o r b - w r a p . i s - d r a g g i n g   . s o c i a l - o r b   { 
 
         a n i m a t i o n :   n o n e   ! i m p o r t a n t ; 
 
         t r a n s f o r m :   s c a l e ( 1 . 1 )   ! i m p o r t a n t ; 
 
         b o x - s h a d o w : 
 
                 0   0   0   3 p x   r g b a ( 1 9 7 , 1 6 0 , 8 9 , 0 . 4 ) , 
 
                 0   2 0 p x   5 0 p x   r g b a ( 0 , 0 , 0 , 0 . 6 ) , 
 
                 i n s e t   0   0   3 5 p x   r g b a ( 1 9 7 , 1 6 0 , 8 9 , 0 . 4 )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 / *   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   M a i n   O r b   B u t t o n   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   * / 
 
 . s o c i a l - o r b   { 
 
         w i d t h :   4 8 p x ; 
 
         h e i g h t :   4 8 p x ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         c u r s o r :   p o i n t e r ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         t r a n s i t i o n :   t r a n s f o r m   0 . 4 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,   0 . 8 8 5 ,   0 . 3 2 ,   1 . 2 7 5 ) ; 
 
         b a c k g r o u n d :   r a d i a l - g r a d i e n t ( c i r c l e   a t   3 0 %   3 0 % ,   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 5 )   0 % ,   # 0 5 0 b 1 6   1 0 0 % ) ; 
 
         b o x - s h a d o w :   
 
                 0   1 5 p x   4 5 p x   r g b a ( 0 , 0 , 0 , 0 . 7 ) , 
 
                 i n s e t   0   0   3 5 p x   r g b a ( 1 9 7 ,   1 6 0 ,   8 9 ,   0 . 3 ) ; 
 
         a n i m a t i o n :   o r b F l o a t   3 . 5 s   e a s e - i n - o u t   i n f i n i t e ; 
 
         o v e r f l o w :   v i s i b l e ; 
 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   c u b i c - b e z i e r ( 0 . 2 3 ,   1 ,   0 . 3 2 ,   1 ) ; 
 
         b o r d e r :   1 p x   s o l i d   r g b a ( 1 9 7 ,   1 6 0 ,   8 9 ,   0 . 2 ) ; 
 
         z - i n d e x :   5 ;   / *   E n s u r e   i t ' s   a b o v e   t h e   b a c k d r o p   b u t   b e l o w   t h e   l i n k s   * / 
 
 } 
 
 
 
 / *   P u l s i n g   G o l d e n   H a l o   * / 
 
 . s o c i a l - o r b : : a f t e r   { 
 
         c o n t e n t :   ' ' ; 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         i n s e t :   - 1 2 p x ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         b a c k g r o u n d :   r a d i a l - g r a d i e n t ( c i r c l e ,   r g b a ( 1 9 7 ,   1 6 0 ,   8 9 ,   0 . 2 5 )   0 % ,   t r a n s p a r e n t   7 0 % ) ; 
 
         a n i m a t i o n :   o r b H a l o P u l s e   2 s   e a s e - i n - o u t   i n f i n i t e ; 
 
         z - i n d e x :   - 1 ; 
 
 } 
 
 
 
 @ k e y f r a m e s   o r b H a l o P u l s e   { 
 
         0 % ,   1 0 0 %   {   t r a n s f o r m :   s c a l e ( 1 ) ;   o p a c i t y :   0 . 3 ;   } 
 
         5 0 %   {   t r a n s f o r m :   s c a l e ( 1 . 1 5 ) ;   o p a c i t y :   0 . 6 ;   } 
 
 } 
 
 
 
 / *   3 D   S p h e r e   C o n t a i n e r   w i t h   T i l t   * / 
 
 . o r b - 3 d - s p h e r e   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         i n s e t :   0 ; 
 
         t r a n s f o r m - s t y l e :   p r e s e r v e - 3 d ; 
 
         t r a n s f o r m :   r o t a t e X ( 2 0 d e g ) ; 
 
         a n i m a t i o n :   o r b S p i n 3 D   1 2 s   l i n e a r   i n f i n i t e ; 
 
 } 
 
 
 
 . o r b - c o r e   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   5 0 % ; 
 
         l e f t :   5 0 % ; 
 
         w i d t h :   2 8 p x ; 
 
         h e i g h t :   2 8 p x ; 
 
         m a r g i n :   - 1 4 p x ; 
 
         b a c k g r o u n d :   r a d i a l - g r a d i e n t ( c i r c l e   a t   3 0 %   3 0 % ,   r g b a ( 1 9 7 ,   1 6 0 ,   8 9 ,   0 . 9 )   0 % ,   # 8 a 6 d 3 b   1 0 0 % ) ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         b o x - s h a d o w :   
 
                 0   0   3 0 p x   r g b a ( 1 9 7 ,   1 6 0 ,   8 9 ,   0 . 6 ) , 
 
                 i n s e t   0   0   1 5 p x   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 4 ) ; 
 
         t r a n s f o r m :   t r a n s l a t e Z ( 0 ) ; 
 
         f i l t e r :   b l u r ( 0 . 5 p x ) ; 
 
 } 
 
 
 
 . o r b - t i l e   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   5 0 % ; 
 
         l e f t :   5 0 % ; 
 
         w i d t h :   1 1 p x ; 
 
         h e i g h t :   1 1 p x ; 
 
         m a r g i n :   - 7 p x ; 
 
         b o r d e r - r a d i u s :   6 p x ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         f o n t - s i z e :   0 . 4 5 r e m ; 
 
         c o l o r :   # f f f ; 
 
         b a c k f a c e - v i s i b i l i t y :   v i s i b l e ; 
 
         b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 4 ) ; 
 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 5 ) ; 
 
         t r a n s i t i o n :   t r a n s f o r m   0 . 4 s   e a s e ,   f i l t e r   0 . 3 s   e a s e ; 
 
 } 
 
 
 
 / *   H o v e r i n g   t i l e s   m a k e s   t h e m   g l o w   * / 
 
 . o r b - t i l e : h o v e r   { 
 
         f i l t e r :   b r i g h t n e s s ( 1 . 3 )   c o n t r a s t ( 1 . 1 ) ; 
 
         z - i n d e x :   1 0 ; 
 
         b o x - s h a d o w :   0   0   2 0 p x   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 4 ) ; 
 
         t r a n s f o r m :   s c a l e ( 1 . 1 5 )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 / *   P l a t f o r m   C o l o r s   w i t h   p r e m i u m   g r a d i e n t s   * / 
 
 . o r b - t i l e . w a   {   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 2 5 d 3 6 6 ,   # 1 2 8 c 7 e ) ;   } 
 
 . o r b - t i l e . i g   {   b a c k g r o u n d :   r a d i a l - g r a d i e n t ( c i r c l e   a t   3 0 %   1 0 7 % ,   # f d f 4 9 7   0 % ,   # f d f 4 9 7   5 % ,   # f d 5 9 4 9   4 5 % ,   # d 6 2 4 9 f   6 0 % ,   # 2 8 5 A E B   9 0 % ) ;   } 
 
 . o r b - t i l e . f b   {   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 1 8 7 7 f 2 ,   # 0 e 5 a 9 a ) ;   } 
 
 . o r b - t i l e . t w   {   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 1 d a 1 f 2 ,   # 0 d 8 b d 9 ) ;   } 
 
 . o r b - t i l e . l i   {   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 0 0 7 7 b 5 ,   # 0 0 5 5 8 2 ) ;   } 
 
 . o r b - t i l e . t g   {   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 0 0 8 8 c c ,   # 0 0 6 6 9 9 ) ;   } 
 
 . o r b - t i l e . y t   {   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f f 0 0 0 0 ,   # b 3 0 0 0 0 ) ;   } 
 
 . o r b - t i l e . s h a r e   {   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # c 5 a 0 5 9 ,   # 8 a 6 d 3 b ) ;   } 
 
 
 
 . o r b - c e n t e r - i c o n   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         f o n t - s i z e :   1 r e m ; 
 
         c o l o r :   # f f f ; 
 
         o p a c i t y :   0 . 8 ; 
 
         z - i n d e x :   1 ; 
 
 } 
 
 
 
 @ k e y f r a m e s   o r b S p i n 3 D   { 
 
         f r o m   {   t r a n s f o r m :   r o t a t e Y ( 0 )   r o t a t e X ( 2 0 d e g ) ;   } 
 
         t o   {   t r a n s f o r m :   r o t a t e Y ( 3 6 0 d e g )   r o t a t e X ( 2 0 d e g ) ;   } 
 
 } 
 
 
 
 / *   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   O r b   O p e n   S t a t e   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   * / 
 
 . s o c i a l - o r b - w r a p . i s - o p e n   . s o c i a l - o r b   { 
 
         t r a n s f o r m :   s c a l e ( 1 . 1 2 )   r o t a t e ( 1 3 5 d e g ) ; 
 
         a n i m a t i o n :   n o n e ; 
 
         b o x - s h a d o w : 
 
                 0   0   0   3 p x   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 8 ) , 
 
                 0   0   4 0 p x   r g b a ( 1 9 7 ,   1 6 0 ,   8 9 ,   0 . 5 5 ) , 
 
                 0   1 2 p x   4 0 p x   r g b a ( 0 , 0 , 0 , 0 . 5 ) ; 
 
 } 
 
 
 
 . s o c i a l - o r b - w r a p . i s - o p e n   . s o c i a l - o r b : : a f t e r   { 
 
         a n i m a t i o n :   n o n e ; 
 
         b o r d e r - c o l o r :   r g b a ( 1 9 7 , 1 6 0 , 8 9 , 0 . 8 ) ; 
 
         i n s e t :   - 8 p x ; 
 
 } 
 
 
 
 / *   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   R a d i a l   E x p a n d e d   I c o n s   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   * / 
 
 . o r b - l i n k s   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         b o t t o m :   0 ; 
 
         r i g h t :   0 ; 
 
         w i d t h :   4 8 p x ; 
 
         h e i g h t :   4 8 p x ; 
 
         p o i n t e r - e v e n t s :   n o n e ; 
 
 } 
 
 
 
 . o r b - l i n k   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         b o t t o m :   5 0 % ; 
 
         r i g h t :   5 0 % ; 
 
         w i d t h :   4 0 p x ; 
 
         h e i g h t :   4 0 p x ; 
 
         b o r d e r - r a d i u s :   5 0 % ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         f o n t - s i z e :   1 . 1 5 r e m ; 
 
         c o l o r :   # f f f ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         o p a c i t y :   0 ; 
 
         t r a n s f o r m :   t r a n s l a t e ( 5 0 % ,   5 0 % )   t r a n s l a t e ( v a r ( - - t x ,   0 ) ,   v a r ( - - t y ,   0 ) )   s c a l e ( 0 ) ; 
 
         t r a n s i t i o n : 
 
                 o p a c i t y   0 . 3 5 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,   0 . 8 8 5 ,   0 . 3 2 ,   1 . 2 7 5 ) , 
 
                 t r a n s f o r m   0 . 4 5 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,   0 . 8 8 5 ,   0 . 3 2 ,   1 . 2 7 5 ) , 
 
                 b o x - s h a d o w   0 . 3 s   e a s e ; 
 
         p o i n t e r - e v e n t s :   n o n e ; 
 
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 3 ) ; 
 
         w i l l - c h a n g e :   t r a n s f o r m ,   o p a c i t y ; 
 
 } 
 
 
 
 / *   S p e c i f i c   p o s i t i o n s   v i a   v a r i a b l e s   * / 
 
 . o r b - l i n k : n t h - c h i l d ( 1 )   {   - - t x :   0 ;   - - t y :   - 7 0 p x ;   } 
 
 . o r b - l i n k : n t h - c h i l d ( 2 )   {   - - t x :   0 ;   - - t y :   - 1 2 5 p x ;   } 
 
 . o r b - l i n k : n t h - c h i l d ( 3 )   {   - - t x :   0 ;   - - t y :   - 1 8 0 p x ;   } 
 
 
 
 / *   O p e n   s t a t e   * / 
 
 . s o c i a l - o r b - w r a p . i s - o p e n   . o r b - l i n k s   { 
 
         p o i n t e r - e v e n t s :   n o n e ;   / *   L e t   c l i c k s   p a s s   t h r o u g h   t h e   c o n t a i n e r   t o   t h e   l i n k s   * / 
 
         z - i n d e x :   1 0 ; 
 
 } 
 
 
 
 . s o c i a l - o r b - w r a p . i s - o p e n   . o r b - l i n k   { 
 
         o p a c i t y :   1 ; 
 
         p o i n t e r - e v e n t s :   a u t o ; 
 
         t r a n s f o r m :   t r a n s l a t e ( 5 0 % ,   5 0 % )   t r a n s l a t e ( v a r ( - - t x ) ,   v a r ( - - t y ) )   s c a l e ( 1 ) ; 
 
         z - i n d e x :   1 5 ; 
 
 } 
 
 
 
 / *   E a c h   i c o n   c o l o r   * / 
 
 . o r b - l i n k . w a     {   b a c k g r o u n d :   # 2 5 d 3 6 6 ;   } 
 
 . o r b - l i n k . i g     {   b a c k g r o u n d :   r a d i a l - g r a d i e n t ( c i r c l e   a t   3 0 %   1 0 7 % ,   # f d f 4 9 7   0 % ,   # f d 5 9 4 9   4 5 % ,   # d 6 2 4 9 f   6 0 % ,   # 2 8 5 A E B   9 0 % ) ;   } 
 
 . o r b - l i n k . f b     {   b a c k g r o u n d :   # 1 8 7 7 f 2 ;   } 
 
 . o r b - l i n k . t g     {   b a c k g r o u n d :   # 0 0 8 8 c c ;   } 
 
 . o r b - l i n k . y t     {   b a c k g r o u n d :   # f f 0 0 0 0 ;   } 
 
 . o r b - l i n k . t w     {   b a c k g r o u n d :   # 1 d a 1 f 2 ;   } 
 
 . o r b - l i n k . l i     {   b a c k g r o u n d :   # 0 0 7 7 b 5 ;   } 
 
 
 
 . o r b - l i n k : h o v e r   { 
 
         t r a n s f o r m :   t r a n s l a t e ( 5 0 % ,   5 0 % )   t r a n s l a t e ( v a r ( - - t x ) ,   v a r ( - - t y ) )   s c a l e ( 1 . 2 )   ! i m p o r t a n t ; 
 
         b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 0 , 0 , 0 , 0 . 4 ) ; 
 
         f i l t e r :   b r i g h t n e s s ( 1 . 1 5 ) ; 
 
         z - i n d e x :   1 0 0 ;   / *   E n s u r e   h o v e r e d   l i n k   i s   a l w a y s   o n   t o p   * / 
 
 } 
 
 
 
 / *   T o o l t i p   l a b e l   * / 
 
 . o r b - l i n k   . o r b - t o o l t i p   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   5 0 % ; 
 
         r i g h t :   c a l c ( 1 0 0 %   +   1 4 p x ) ; 
 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ; 
 
         b a c k g r o u n d :   r g b a ( 1 0 , 2 5 , 4 7 , 0 . 9 2 ) ; 
 
         b a c k d r o p - f i l t e r :   b l u r ( 8 p x ) ; 
 
         c o l o r :   # f f f ; 
 
         f o n t - s i z e :   0 . 6 5 r e m ; 
 
         f o n t - w e i g h t :   7 0 0 ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         l e t t e r - s p a c i n g :   1 p x ; 
 
         p a d d i n g :   4 p x   1 0 p x ; 
 
         b o r d e r - r a d i u s :   2 0 p x ; 
 
         w h i t e - s p a c e :   n o w r a p ; 
 
         o p a c i t y :   0 ; 
 
         p o i n t e r - e v e n t s :   n o n e ; 
 
         t r a n s i t i o n :   o p a c i t y   0 . 2 s   e a s e ; 
 
         b o r d e r :   1 p x   s o l i d   r g b a ( 1 9 7 , 1 6 0 , 8 9 , 0 . 3 ) ; 
 
 } 
 
 
 
 . o r b - l i n k : h o v e r   . o r b - t o o l t i p   { 
 
         o p a c i t y :   1 ; 
 
 } 
 
 
 
 / *   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   B a c k d r o p   b l u r   o v e r l a y   ( c l i c k   t o   c l o s e )   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   * / 
 
 . o r b - b a c k d r o p   { 
 
         d i s p l a y :   n o n e ; 
 
         p o s i t i o n :   f i x e d ; 
 
         i n s e t :   0 ; 
 
         z - i n d e x :   1 ;   / *   L o w e r e d   s o   i t   d o e s n ' t   b l o c k   l i n k s   * / 
 
         c u r s o r :   d e f a u l t ; 
 
 } 
 
 
 
 . s o c i a l - o r b - w r a p . i s - o p e n   . o r b - b a c k d r o p   { 
 
         d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 / *   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   A n i m a t i o n s   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   * / 
 
 @ k e y f r a m e s   o r b F l o a t   { 
 
         0 %       {   t r a n s f o r m :   t r a n s l a t e Y ( 0 p x )   r o t a t e ( 0 d e g ) ;   } 
 
         3 3 %     {   t r a n s f o r m :   t r a n s l a t e Y ( - 8 p x )   r o t a t e ( 4 d e g ) ;   } 
 
         6 6 %     {   t r a n s f o r m :   t r a n s l a t e Y ( - 4 p x )   r o t a t e ( - 4 d e g ) ;   } 
 
         1 0 0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( 0 p x )   r o t a t e ( 0 d e g ) ;   } 
 
 } 
 
 
 
 @ k e y f r a m e s   o r b R i n g P u l s e   { 
 
         0 %       {   t r a n s f o r m :   s c a l e ( 1 ) ;       o p a c i t y :   0 . 7 ;   } 
 
         5 0 %     {   t r a n s f o r m :   s c a l e ( 1 . 2 5 ) ;   o p a c i t y :   0 ;   } 
 
         1 0 0 %   {   t r a n s f o r m :   s c a l e ( 1 ) ;       o p a c i t y :   0 ;   } 
 
 } 
 
 
 
 / *   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   R e s p o n s i v e   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   * / 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
 
         . s o c i a l - o r b - w r a p   { 
 
                 b o t t o m :   2 0 p x ; 
 
                 r i g h t :   2 0 p x ; 
 
         } 
 
         . s o c i a l - o r b   { 
 
                 w i d t h :   3 8 p x ; 
 
                 h e i g h t :   3 8 p x ; 
 
         } 
 
         . o r b - c o r e   { 
 
                 w i d t h :   2 4 p x ; 
 
                 h e i g h t :   2 4 p x ; 
 
                 m a r g i n :   - 1 2 p x ; 
 
         } 
 
         . o r b - l i n k   { 
 
                 w i d t h :   3 2 p x ; 
 
                 h e i g h t :   3 2 p x ; 
 
                 f o n t - s i z e :   0 . 8 5 r e m ; 
 
         } 
 
         . o r b - l i n k : n t h - c h i l d ( 1 )   {   - - t x :   0 ;   - - t y :   - 5 0 p x ;   } 
 
         . o r b - l i n k : n t h - c h i l d ( 2 )   {   - - t x :   0 ;   - - t y :   - 9 0 p x ;   } 
 
         . o r b - l i n k : n t h - c h i l d ( 3 )   {   - - t x :   0 ;   - - t y :   - 1 3 0 p x ;   } 
 
 } 
 
 
 
 / *   V E X   H E R O   &   I N T E R   T Y P O G R A P H Y   * / 
 
 
 
 : r o o t   { 
 
         - - f o n t - i n t e r :   ' I n t e r ' ,   s a n s - s e r i f ; 
 
 } 
 
 
 
 b o d y   { 
 
         f o n t - f a m i l y :   v a r ( - - f o n t - i n t e r ) ; 
 
         - w e b k i t - f o n t - s m o o t h i n g :   a n t i a l i a s e d ; 
 
         - m o z - o s x - f o n t - s m o o t h i n g :   g r a y s c a l e ; 
 
         b a c k g r o u n d - c o l o r :   # 0 0 0 ; 
 
         c o l o r :   # f f f ; 
 
 } 
 
 
 
 / *   L i q u i d   G l a s s   U t i l i t y   * / 
 
 . l i q u i d - g l a s s   { 
 
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 4 ) ; 
 
         b a c k g r o u n d - b l e n d - m o d e :   l u m i n o s i t y ; 
 
         b a c k d r o p - f i l t e r :   b l u r ( 4 p x ) ; 
 
         - w e b k i t - b a c k d r o p - f i l t e r :   b l u r ( 4 p x ) ; 
 
         b o r d e r :   n o n e ; 
 
         b o x - s h a d o w :   i n s e t   0   1 p x   1 p x   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         o v e r f l o w :   h i d d e n ; 
 
 } 
 
 
 
 . l i q u i d - g l a s s : : b e f o r e   { 
 
         c o n t e n t :   ' ' ; 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         i n s e t :   0 ; 
 
         b o r d e r - r a d i u s :   i n h e r i t ; 
 
         p a d d i n g :   1 . 4 p x ; 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 8 0 d e g , 
 
             r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 3 )   0 % ,   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 )   2 0 % , 
 
             r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 )   4 0 % ,   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 )   6 0 % , 
 
             r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 1 )   8 0 % ,   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 3 )   1 0 0 % ) ; 
 
         - w e b k i t - m a s k :   l i n e a r - g r a d i e n t ( # f f f   0   0 )   c o n t e n t - b o x ,   l i n e a r - g r a d i e n t ( # f f f   0   0 ) ; 
 
         - w e b k i t - m a s k - c o m p o s i t e :   x o r ; 
 
         m a s k - c o m p o s i t e :   e x c l u d e ; 
 
         p o i n t e r - e v e n t s :   n o n e ; 
 
 } 
 
 
 
 / *   V E X   H e a d e r   * / 
 
 . v e x - h e a d e r   { 
 
         p o s i t i o n :   f i x e d ; 
 
         t o p :   0 ; 
 
         l e f t :   0 ; 
 
         w i d t h :   1 0 0 % ; 
 
         z - i n d e x :   1 0 0 0 ; 
 
 } 
 
 
 
 . n a v b a r - w r a p p e r   { 
 
         w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . n a v - l i n k s - v e x   a   { 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         t r a n s i t i o n :   c o l o r   0 . 3 s   e a s e ; 
 
 } 
 
 
 
 / *   V E X   H e r o   S e c t i o n   * / 
 
 . h e r o - v e x   { 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   1 0 0 v h ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
 } 
 
 
 
 . h e r o - v i d e o - v e x   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         t o p :   0 ; 
 
         l e f t :   0 ; 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   1 0 0 % ; 
 
         o b j e c t - f i t :   c o v e r ; 
 
         z - i n d e x :   - 1 ; 
 
 } 
 
 
 
 . h e r o - c o n t a i n e r - v e x   { 
 
         f l e x :   1 ; 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         j u s t i f y - c o n t e n t :   f l e x - e n d ; 
 
 } 
 
 
 
 . v e x - a n i m a t e d - h e a d i n g   { 
 
         c o l o r :   # f f f ; 
 
         l i n e - h e i g h t :   1 . 1 ; 
 
         l e t t e r - s p a c i n g :   - 0 . 0 4 e m ; 
 
         f o n t - s i z e :   c l a m p ( 2 . 5 r e m ,   8 v w ,   5 r e m ) ;   / *   R e s p o n s i v e   t e x t   s i z e s   * / 
 
 } 
 
 
 
 / *   C h a r a c t e r   A n i m a t i o n   S t y l e s   * / 
 
 . v e x - c h a r   { 
 
         d i s p l a y :   i n l i n e - b l o c k ; 
 
         o p a c i t y :   0 ; 
 
         t r a n s f o r m :   t r a n s l a t e X ( - 1 8 p x ) ; 
 
         t r a n s i t i o n :   o p a c i t y   0 . 5 s   e a s e ,   t r a n s f o r m   0 . 5 s   e a s e ; 
 
 } 
 
 
 
 . v e x - c h a r . a n i m a t e   { 
 
         o p a c i t y :   1 ; 
 
         t r a n s f o r m :   t r a n s l a t e X ( 0 ) ; 
 
 } 
 
 
 
 / *   F a d e   I n   E l e m e n t s   * / 
 
 . f a d e - i n - e l e m e n t   { 
 
         o p a c i t y :   0 ; 
 
         t r a n s i t i o n :   o p a c i t y   1 s   e a s e ; 
 
 } 
 
 
 
 . f a d e - i n - e l e m e n t . a n i m a t e   { 
 
         o p a c i t y :   1 ; 
 
 } 
 
 
 
 / *   T a i l w i n d - l i k e   u t i l i t i e s   u s e d   i n   r e q u i r e m e n t s   * / 
 
 . p x - 6   {   p a d d i n g - l e f t :   1 . 5 r e m ;   p a d d i n g - r i g h t :   1 . 5 r e m ;   } 
 
 . p x - 8   {   p a d d i n g - l e f t :   2 r e m ;   p a d d i n g - r i g h t :   2 r e m ;   } 
 
 . p x - 4   {   p a d d i n g - l e f t :   1 r e m ;   p a d d i n g - r i g h t :   1 r e m ;   } 
 
 . p y - 2   {   p a d d i n g - t o p :   0 . 5 r e m ;   p a d d i n g - b o t t o m :   0 . 5 r e m ;   } 
 
 . p y - 3   {   p a d d i n g - t o p :   0 . 7 5 r e m ;   p a d d i n g - b o t t o m :   0 . 7 5 r e m ;   } 
 
 . p t - 6   {   p a d d i n g - t o p :   1 . 5 r e m ;   } 
 
 . p b - 1 2   {   p a d d i n g - b o t t o m :   3 r e m ;   } 
 
 . p b - 1 6   {   p a d d i n g - b o t t o m :   4 r e m ;   } 
 
 . m b - 4   {   m a r g i n - b o t t o m :   1 r e m ;   } 
 
 . m b - 5   {   m a r g i n - b o t t o m :   1 . 2 5 r e m ;   } 
 
 . m t - 1 2   {   m a r g i n - t o p :   3 r e m ;   } 
 
 . g a p - 4   {   g a p :   1 r e m ;   } 
 
 . g a p - 8   {   g a p :   2 r e m ;   } 
 
 . r o u n d e d - x l   {   b o r d e r - r a d i u s :   0 . 7 5 r e m ;   } 
 
 . r o u n d e d - l g   {   b o r d e r - r a d i u s :   0 . 5 r e m ;   } 
 
 . f l e x   {   d i s p l a y :   f l e x ;   } 
 
 . f l e x - c o l   {   f l e x - d i r e c t i o n :   c o l u m n ;   } 
 
 . f l e x - w r a p   {   f l e x - w r a p :   w r a p ;   } 
 
 . i t e m s - c e n t e r   {   a l i g n - i t e m s :   c e n t e r ;   } 
 
 . i t e m s - e n d   {   a l i g n - i t e m s :   f l e x - e n d ;   } 
 
 . j u s t i f y - b e t w e e n   {   j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;   } 
 
 . j u s t i f y - e n d   {   j u s t i f y - c o n t e n t :   f l e x - e n d ;   } 
 
 . t e x t - s m   {   f o n t - s i z e :   0 . 8 7 5 r e m ;   } 
 
 . t e x t - b a s e   {   f o n t - s i z e :   1 r e m ;   } 
 
 . t e x t - l g   {   f o n t - s i z e :   1 . 1 2 5 r e m ;   } 
 
 . t e x t - 2 x l   {   f o n t - s i z e :   1 . 5 r e m ;   } 
 
 . f o n t - n o r m a l   {   f o n t - w e i g h t :   4 0 0 ;   } 
 
 . f o n t - m e d i u m   {   f o n t - w e i g h t :   5 0 0 ;   } 
 
 . f o n t - s e m i b o l d   {   f o n t - w e i g h t :   6 0 0 ;   } 
 
 . f o n t - l i g h t   {   f o n t - w e i g h t :   3 0 0 ;   } 
 
 . t r a c k i n g - t i g h t   {   l e t t e r - s p a c i n g :   - 0 . 0 2 5 e m ;   } 
 
 . t e x t - w h i t e   {   c o l o r :   # f f f ;   } 
 
 . t e x t - b l a c k   {   c o l o r :   # 0 0 0 ;   } 
 
 . t e x t - w h i t e \ / 8 0   {   c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 8 ) ;   } 
 
 . t e x t - g r a y - 3 0 0   {   c o l o r :   # d 1 d 5 d b ;   } 
 
 . b g - w h i t e   {   b a c k g r o u n d - c o l o r :   # f f f ;   } 
 
 . b o r d e r   {   b o r d e r - w i d t h :   1 p x ;   b o r d e r - s t y l e :   s o l i d ;   } 
 
 . b o r d e r - w h i t e \ / 2 0   {   b o r d e r - c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ;   } 
 
 . t r a n s i t i o n - c o l o r s   {   t r a n s i t i o n - p r o p e r t y :   c o l o r ,   b a c k g r o u n d - c o l o r ;   t r a n s i t i o n - d u r a t i o n :   0 . 3 s ;   } 
 
 . t r a n s i t i o n - a l l   {   t r a n s i t i o n - p r o p e r t y :   a l l ;   t r a n s i t i o n - d u r a t i o n :   0 . 3 s ;   } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   7 6 8 p x )   { 
 
         . m d \ : p x - 1 2   {   p a d d i n g - l e f t :   3 r e m ;   p a d d i n g - r i g h t :   3 r e m ;   } 
 
         . m d \ : f l e x   {   d i s p l a y :   f l e x ;   } 
 
         . m d \ : t e x t - 5 x l   {   f o n t - s i z e :   3 r e m ;   } 
 
         . m d \ : t e x t - l g   {   f o n t - s i z e :   1 . 1 2 5 r e m ;   } 
 
         . m d \ : t e x t - x l   {   f o n t - s i z e :   1 . 2 5 r e m ;   } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   1 0 2 4 p x )   { 
 
         . l g \ : p x - 1 6   {   p a d d i n g - l e f t :   4 r e m ;   p a d d i n g - r i g h t :   4 r e m ;   } 
 
         . l g \ : p b - 1 6   {   p a d d i n g - b o t t o m :   4 r e m ;   } 
 
         . l g \ : g r i d   {   d i s p l a y :   g r i d ;   } 
 
         . l g \ : g r i d - c o l s - 2   {   g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   m i n m a x ( 0 ,   1 f r ) ) ;   } 
 
         . l g \ : i t e m s - e n d   {   a l i g n - i t e m s :   f l e x - e n d ;   } 
 
         . l g \ : j u s t i f y - e n d   {   j u s t i f y - c o n t e n t :   f l e x - e n d ;   } 
 
         . l g \ : t e x t - 6 x l   {   f o n t - s i z e :   3 . 7 5 r e m ;   } 
 
         . l g \ : t e x t - 2 x l   {   f o n t - s i z e :   1 . 5 r e m ;   } 
 
         . l g \ : m t - 0   {   m a r g i n - t o p :   0 ;   } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   1 2 8 0 p x )   { 
 
         . x l \ : t e x t - 7 x l   {   f o n t - s i z e :   4 . 5 r e m ;   } 
 
 } 
 
 
 
 . h i d d e n   {   d i s p l a y :   n o n e ;   } 
 
 
 
 
 
 
 
 / *   L O C A L   S T Y L E S   * / 
 
 
 
 / *   
 
         W H A T   W E   D O   P A G E   S T Y L E S 
 
         L u x u r y   l a y o u t s   i n s p i r e d   b y   p r e m i u m   h o s p i t a l i t y   b r a n d s . 
 
 * / 
 
 
 
 b o d y . w w d - p a g e   { 
 
         b a c k g r o u n d - c o l o r :   # f f f f f f   ! i m p o r t a n t ; 
 
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
 
 } 
 
 
 
 . w w d - h e r o   { 
 
         p a d d i n g :   1 8 0 p x   0   1 0 0 p x ; 
 
         b a c k g r o u n d :   # f f f f f f ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
 } 
 
 
 
 . w w d - h e r o   h 1   { 
 
         f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ; 
 
         f o n t - s i z e :   c l a m p ( 3 r e m ,   8 v w ,   5 r e m ) ; 
 
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
 
         m a r g i n - b o t t o m :   1 . 5 r e m ; 
 
         f o n t - w e i g h t :   4 0 0 ; 
 
 } 
 
 
 
 . w w d - h e r o   p   { 
 
         f o n t - s i z e :   1 . 2 r e m ; 
 
         c o l o r :   r g b a ( 1 0 ,   2 5 ,   4 7 ,   0 . 6 ) ; 
 
         m a x - w i d t h :   7 0 0 p x ; 
 
         m a r g i n :   0   a u t o ; 
 
         f o n t - w e i g h t :   3 0 0 ; 
 
         l e t t e r - s p a c i n g :   1 p x ; 
 
 } 
 
 
 
 / *   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   S E C T I O N   W R A P P E R   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   * / 
 
 . w w d - s e c t i o n   { 
 
         p a d d i n g :   6 0 p x   0 ; 
 
         o v e r f l o w :   h i d d e n ; 
 
 } 
 
 
 
 . w w d - c o n t a i n e r   { 
 
         m a x - w i d t h :   1 2 0 0 p x ; 
 
         m a r g i n :   0   a u t o ; 
 
         p a d d i n g :   0   4 r e m ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   4 r e m ; 
 
 } 
 
 
 
 . w w d - s e c t i o n : n t h - c h i l d ( e v e n )   . w w d - c o n t a i n e r   { 
 
         f l e x - d i r e c t i o n :   r o w - r e v e r s e ; 
 
 } 
 
 
 
 / *   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   I M A G E   B L O C K   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   * / 
 
 . w w d - i m a g e   { 
 
         f l e x :   1 . 1 ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         h e i g h t :   4 5 0 p x ; 
 
         o v e r f l o w :   h i d d e n ; 
 
 } 
 
 
 
 . w w d - i m a g e   i m g   { 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   1 0 0 % ; 
 
         o b j e c t - f i t :   c o v e r ; 
 
         t r a n s i t i o n :   t r a n s f o r m   1 . 5 s   c u b i c - b e z i e r ( 0 . 1 6 5 ,   0 . 8 4 ,   0 . 4 4 ,   1 ) ; 
 
 } 
 
 
 
 . w w d - i m a g e : h o v e r   i m g   { 
 
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ; 
 
 } 
 
 
 
 / *   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   C O N T E N T   B L O C K   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   * / 
 
 . w w d - c o n t e n t   { 
 
         f l e x :   1 ; 
 
 } 
 
 
 
 . w w d - b a d g e   { 
 
         f o n t - s i z e :   0 . 7 5 r e m ; 
 
         l e t t e r - s p a c i n g :   3 p x ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         c o l o r :   v a r ( - - a c c e n t - c o l o r ) ; 
 
         m a r g i n - b o t t o m :   1 . 5 r e m ; 
 
         d i s p l a y :   b l o c k ; 
 
         f o n t - w e i g h t :   6 0 0 ; 
 
 } 
 
 
 
 . w w d - c o n t e n t   h 2   { 
 
         f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ; 
 
         f o n t - s i z e :   c l a m p ( 1 . 8 r e m ,   3 . 5 v w ,   2 . 5 r e m ) ; 
 
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
 
         m a r g i n - b o t t o m :   2 r e m ; 
 
         l i n e - h e i g h t :   1 . 2 ; 
 
         f o n t - w e i g h t :   4 0 0 ; 
 
 } 
 
 
 
 . w w d - c o n t e n t   p   { 
 
         f o n t - s i z e :   1 . 0 5 r e m ; 
 
         l i n e - h e i g h t :   1 . 8 ; 
 
         c o l o r :   r g b a ( 1 0 ,   2 5 ,   4 7 ,   0 . 7 ) ; 
 
         m a r g i n - b o t t o m :   2 . 5 r e m ; 
 
         f o n t - w e i g h t :   3 0 0 ; 
 
 } 
 
 
 
 . b t n - w w d   { 
 
         d i s p l a y :   i n l i n e - b l o c k ; 
 
         p a d d i n g :   c l a m p ( 0 . 8 r e m ,   2 v w ,   1 . 2 r e m )   c l a m p ( 1 . 5 r e m ,   4 v w ,   3 r e m ) ; 
 
         b o r d e r :   1 p x   s o l i d   r g b a ( 1 0 ,   2 5 ,   4 7 ,   0 . 2 ) ; 
 
         t e x t - d e c o r a t i o n :   n o n e ; 
 
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
 
         f o n t - s i z e :   c l a m p ( 0 . 8 r e m ,   1 . 5 v w ,   1 r e m ) ; 
 
         l e t t e r - s p a c i n g :   2 p x ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         t r a n s i t i o n :   a l l   0 . 4 s   c u b i c - b e z i e r ( 0 . 1 6 5 ,   0 . 8 4 ,   0 . 4 4 ,   1 ) ; 
 
         t e x t - a l i g n :   c e n t e r ; 
 
 } 
 
 
 
 . b t n - w w d : h o v e r   { 
 
         b a c k g r o u n d :   v a r ( - - p r i m a r y - c o l o r ) ; 
 
         c o l o r :   # f f f f f f ; 
 
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
 
 } 
 
 
 
 / *   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   P R E M I U M   I N T E R I O R   S E C T I O N   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   * / 
 
 . w w d - s e c t i o n - - i n t e r i o r   { 
 
         b a c k g r o u n d :   # f f f f f f ; 
 
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
 
         p a d d i n g :   8 0 p x   0 ; 
 
 } 
 
 
 
 . w w d - s e c t i o n - - i n t e r i o r   . w w d - b a d g e   { 
 
         f o n t - f a m i l y :   ' C i n z e l ' ,   s e r i f ; 
 
         c o l o r :   # c 5 a 0 5 9 ; 
 
         l e t t e r - s p a c i n g :   6 p x ; 
 
         f o n t - w e i g h t :   5 0 0 ; 
 
 } 
 
 
 
 . w w d - s e c t i o n - - i n t e r i o r   h 2   { 
 
         f o n t - s i z e :   c l a m p ( 2 . 5 r e m ,   5 v w ,   4 r e m ) ; 
 
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
 
         m a r g i n - b o t t o m :   2 . 5 r e m ; 
 
         f o n t - w e i g h t :   4 0 0 ; 
 
         l i n e - h e i g h t :   1 . 1 ; 
 
 } 
 
 
 
 . w w d - s e c t i o n - - i n t e r i o r   p   { 
 
         c o l o r :   r g b a ( 1 0 ,   2 5 ,   4 7 ,   0 . 7 ) ; 
 
         f o n t - s i z e :   1 . 1 5 r e m ; 
 
         l i n e - h e i g h t :   2 ; 
 
         f o n t - f a m i l y :   ' O u t f i t ' ,   s a n s - s e r i f ; 
 
 } 
 
 
 
 . w w d - s e c t i o n - - i n t e r i o r   . b t n - w w d   { 
 
         b o r d e r - c o l o r :   # c 5 a 0 5 9 ; 
 
         c o l o r :   # c 5 a 0 5 9 ; 
 
         f o n t - f a m i l y :   ' C i n z e l ' ,   s e r i f ; 
 
         p a d d i n g :   1 . 2 r e m   3 . 5 r e m ; 
 
         b a c k g r o u n d :   t r a n s p a r e n t ; 
 
 } 
 
 
 
 . w w d - s e c t i o n - - i n t e r i o r   . b t n - w w d : h o v e r   { 
 
         b a c k g r o u n d :   # c 5 a 0 5 9 ; 
 
         c o l o r :   # 0 a 0 a 0 a ; 
 
         b o r d e r - c o l o r :   # c 5 a 0 5 9 ; 
 
 } 
 
 
 
 . w w d - s e c t i o n - - i n t e r i o r   . w w d - i m a g e   { 
 
         b o x - s h a d o w :   0   2 0 p x   4 0 p x   r g b a ( 0 , 0 , 0 , 0 . 1 ) ; 
 
         b o r d e r :   1 p x   s o l i d   r g b a ( 1 9 7 ,   1 6 0 ,   8 9 ,   0 . 2 ) ; 
 
 } 
 
 
 
 
 
 / *   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   P O R T F O L I O   G R I D   Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬ Ã ¢ â ¬  â  ¬   * / 
 
 . w w d - p o r t f o l i o   { 
 
         b a c k g r o u n d :   # f d f d f d ; 
 
         p a d d i n g :   1 2 0 p x   0 ; 
 
 } 
 
 
 
 . p o r t f o l i o - h e a d e r   { 
 
         t e x t - a l i g n :   c e n t e r ; 
 
         m a r g i n - b o t t o m :   5 r e m ; 
 
 } 
 
 
 
 . p o r t f o l i o - g r i d   { 
 
         d i s p l a y :   g r i d ; 
 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 3 ,   1 f r ) ; 
 
         g a p :   2 r e m ; 
 
         p a d d i n g :   0   4 r e m ; 
 
         m a x - w i d t h :   1 4 0 0 p x ; 
 
         m a r g i n :   0   a u t o ; 
 
 } 
 
 
 
 . p o r t f o l i o - i t e m   { 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         h e i g h t :   4 5 0 p x ; 
 
         o v e r f l o w :   h i d d e n ; 
 
         c u r s o r :   p o i n t e r ; 
 
 } 
 
 
 
 . p o r t f o l i o - i t e m   i m g   { 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   1 0 0 % ; 
 
         o b j e c t - f i t :   c o v e r ; 
 
         t r a n s i t i o n :   0 . 8 s ; 
 
 } 
 
 
 
 . p o r t f o l i o - o v e r l a y   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
         i n s e t :   0 ; 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   t o p ,   r g b a ( 1 0 ,   2 5 ,   4 7 ,   0 . 8 )   0 % ,   r g b a ( 1 0 ,   2 5 ,   4 7 ,   0 . 2 )   6 0 % ,   t r a n s p a r e n t   1 0 0 % ) ; 
 
         d i s p l a y :   f l e x ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         j u s t i f y - c o n t e n t :   f l e x - e n d ; 
 
         p a d d i n g :   2 . 5 r e m ; 
 
         o p a c i t y :   1 ;   / *   A l w a y s   v i s i b l e   * / 
 
         t r a n s i t i o n :   0 . 5 s ; 
 
 } 
 
 
 
 . p o r t f o l i o - i t e m : h o v e r   . p o r t f o l i o - o v e r l a y   { 
 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   t o p ,   r g b a ( 1 0 ,   2 5 ,   4 7 ,   0 . 9 5 )   0 % ,   r g b a ( 1 0 ,   2 5 ,   4 7 ,   0 . 4 )   1 0 0 % ) ; 
 
 } 
 
 
 
 . p o r t f o l i o - i t e m : h o v e r   i m g   { 
 
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ; 
 
 } 
 
 
 
 . p o r t f o l i o - o v e r l a y   h 3   { 
 
         c o l o r :   # f f f f f f ; 
 
         f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ; 
 
         f o n t - s i z e :   1 . 8 r e m ; 
 
         m a r g i n - b o t t o m :   0 . 5 r e m ; 
 
 } 
 
 
 
 . p o r t f o l i o - o v e r l a y   s p a n   { 
 
         c o l o r :   v a r ( - - a c c e n t - c o l o r ) ; 
 
         f o n t - s i z e :   0 . 8 r e m ; 
 
         l e t t e r - s p a c i n g :   2 p x ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
 } 
 
 
 
 / *   R e s p o n s i v e   * / 
 
 @ m e d i a   ( m a x - w i d t h :   1 0 2 4 p x )   { 
 
         . w w d - c o n t a i n e r   { 
 
                 f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
 
                 g a p :   3 r e m ; 
 
                 p a d d i n g :   0   2 r e m ; 
 
         } 
 
         . w w d - i m a g e   { 
 
                 w i d t h :   1 0 0 % ; 
 
                 h e i g h t :   4 0 0 p x ; 
 
         } 
 
         . p o r t f o l i o - g r i d   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ; 
 
                 p a d d i n g :   0   2 r e m ; 
 
         } 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
 
         . w w d - s e c t i o n   { 
 
                 p a d d i n g :   4 0 p x   0 ; 
 
         } 
 
 
 
         . w w d - s e c t i o n - - i n t e r i o r   { 
 
                 p a d d i n g :   5 0 p x   0 ; 
 
         } 
 
 
 
         . w w d - s e c t i o n - - i n t e r i o r   h 2   { 
 
                 f o n t - s i z e :   2 . 2 r e m ; 
 
                 m a r g i n - b o t t o m :   1 . 5 r e m ; 
 
         } 
 
 
 
         . w w d - s e c t i o n - - i n t e r i o r   p   { 
 
                 f o n t - s i z e :   1 r e m ; 
 
                 l i n e - h e i g h t :   1 . 6 ; 
 
                 m a r g i n - b o t t o m :   2 r e m ; 
 
         } 
 
 
 
         . w w d - c o n t e n t   { 
 
                 t e x t - a l i g n :   c e n t e r ; 
 
         } 
 
 
 
         . w w d - i m a g e   { 
 
                 h e i g h t :   3 0 0 p x ; 
 
         } 
 
 
 
         . p o r t f o l i o - g r i d   { 
 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
 
         } 
 
 
 
         . b t n - w w d   { 
 
                 w i d t h :   1 0 0 % ; 
 
                 d i s p l a y :   b l o c k ; 
 
                 p a d d i n g :   1 r e m ; 
 
                 t e x t - a l i g n :   c e n t e r ; 
 
         } 
 
 
 
         . w w d - s e c t i o n - - i n t e r i o r   . b t n - w w d   { 
 
                 p a d d i n g :   1 r e m ; 
 
         } 
 
 } 
 
 
 
 
 
 
 
 /* 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;
    }
}

/* PREMIUM WHATSAPP FLOATING ACTION BUTTON */
.fab-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 99999;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, background 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.fab-whatsapp::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    opacity: 0.4;
    transform: scale(1);
    animation: fabPulse 2.2s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
}

.fab-whatsapp:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #2ae771 0%, #149c8c 100%);
}

.fab-whatsapp:active {
    transform: scale(0.95) translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

@keyframes fabPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

#fab-whatsapp-btn {
    margin: 0 !important;
    padding: 0 !important;
}



