/* =========================================================
   GLOBAL / BASE
   ========================================================= */

html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    color: #f5f5f5;
    background-color: #050509;
    line-height: 1.5;
}


/* Basic link + focus handling */
a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid #f1d39a;
    outline-offset: 2px;
}

/* Layout helpers */

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    scroll-margin-top: 96px;
}

.section-title {
    font-size: 2rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 32px;
    color: #eae7df;
}

/* When you jump to sections via #anchors, keep them visible below fixed header */
.section[id] {
    scroll-margin-top: 80px;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */

/* HEADER */

html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    color: #f5f5f5;
    background-color: #050509;
    line-height: 1.5;
}

/* Basic link + focus handling */
a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid #f1d39a;
    outline-offset: 2px;
}

/* HEADER CONTAINER */

.site-header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(5, 5, 9, 0.95), transparent);
    backdrop-filter: blur(12px);
}

.site-header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo a {
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #f5f1e8;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

/* RESET LIST STYLES FOR NAV */


.main-nav ul,
.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* BASE NAV */

.main-nav {
    display: flex;
    align-items: center;
}

/* links in nav (desktop defaults) */
.main-nav a {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.75;
    text-decoration: none;
}

.main-nav a:hover {
    opacity: 1;
}

.desktop-nav-list {
    display: none;
}

.mobile-nav-list {
    display: none; /* important: hide by default */
}

.nav-toggle {
    display: none; /* shown only via media queries */
}

/* HAMBURGER TOGGLE */

.nav-toggle {
    display: none; /* shown only on mobile via media query */
    background: none;
    border: none;
    padding: 0 4px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 18px;
    position: relative;
    z-index: 150;
}

/* three lines are absolutely positioned inside the button */
.nav-toggle-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: #f5f1e8;
    transition: transform 0.2s ease,
    opacity 0.2s ease,
    top 0.2s ease,
    bottom 0.2s ease;
}

/* top, middle, bottom lines */
.nav-toggle-line:nth-child(1) {
    top: 0;
}

.nav-toggle-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle-line:nth-child(3) {
    bottom: 0;
}

/* burger → X animation */
.nav-toggle.is-open .nav-toggle-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/* =============== LANGUAGE SWITCHER =============== */

/* Base styles */
.lang-switcher {
    font-size: 0.85rem;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    cursor: pointer;
    font: inherit;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.lang-icon {
    font-size: 1rem;
    line-height: 1;
}

.lang-current-label {
    white-space: nowrap;
}

.lang-caret {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Desktop dropdown – sits under the header, not sticky */
/* ----- DESKTOP LANG BAR (under sticky header) ----- */

.lang-bar-desktop {
    display: none; /* hidden on mobile by default */
}

@media (min-width: 1024px) {
    .site-header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
    }

    /* show horizontal nav */
    .desktop-nav-list {
        display: flex;
        gap: 2rem;
    }

    /* hide mobile nav + hamburger */
    .mobile-nav-list {
        display: none;
    }

    .nav-toggle {
        display: none;
    }

    /* desktop language switcher inline on right */
    .lang-switcher-desktop {
        display: flex;
        align-items: center;
        position: relative;
        margin-left: 2rem;
    }

    .lang-switcher-mobile {
        display: none;
    }

    .lang-switcher-desktop .lang-toggle {
        padding: 6px 14px;
        font-size: 0.8rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        background: rgba(5, 5, 9, 0.75);
        border-radius: 999px;
        border: 1px solid rgba(243, 210, 150, 0.45);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
    }

    .lang-menu {
        position: absolute;
        top: 120%;
        right: 0;
        min-width: 140px;
        background: rgba(5, 5, 9, 0.95);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        padding: 6px 0;
        display: none;
        z-index: 9999;
    }

    .lang-menu.open {
        display: block;
    }
}

/* mobile: keep your existing .lang-switcher-mobile, hide desktop bar */
@media (max-width: 1023px) {

    /* Container inside the mobile menu */
    .lang-switcher-mobile {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    /* Make the trigger look like a nav item */
    .lang-switcher-mobile .lang-toggle {
        width: 100%;
        background: transparent;
        padding: 8px 0;
        border: none;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.85rem;
        color: #fff;
        opacity: 0.85;
    }

    .lang-switcher-mobile .lang-toggle:hover {
        opacity: 1;
    }

    .lang-switcher-mobile .lang-icon {
        font-size: 0.9rem;
        margin-right: 6px;
    }

    /* Submenu container */
    .lang-mobile-options {
        margin-top: 6px;
        padding-left: 12px;
        border-left: 1px solid rgba(255, 255, 255, 0.15);
        display: none;
        flex-direction: column;
        gap: 8px;
    }

    .lang-mobile-options.open {
        display: flex;
    }

    /* Submenu language items */
    .lang-mobile-options .lang-option,
    .lang-mobile-options .lang-option--active {
        font-size: 0.85rem;
        color: #fff;
        opacity: 0.8;
        padding: 5px 0;
    }

    .lang-mobile-options .lang-option:hover {
        opacity: 1;
    }
}


@media (max-width: 1023px) {
    .lang-switcher-mobile .lang-toggle {
        width: 100%;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.05);

        /* ↓ Make it smaller */
        padding: 6px 10px; /* reduced padding */
        font-size: 0.8rem; /* smaller text */
        border-radius: 6px; /* slightly smaller corners */
    }

    /* Optional: reduce globe icon size */
    .lang-switcher-mobile .lang-icon {
        font-size: 0.85rem;
    }
}

/* =========================================================
   NAV – DESKTOP & MOBILE
   ========================================================= */

/* base header layout */
.site-header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(5, 5, 9, 0.95), transparent);
    backdrop-filter: blur(12px);
}

.site-header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.desktop-nav-list,
.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* default: desktop-style */
.desktop-nav-list {
    display: flex;
    gap: 2rem;
}

.mobile-nav-list {
    display: none;
}

.main-nav a {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.75;
}

.main-nav a:hover {
    opacity: 1;
}

/* lang switchers: base */
.lang-switcher-desktop {
    display: flex;
    align-items: center;
    position: relative;
}

.lang-switcher-mobile {
    display: none;
}

/* language toggle base style */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    cursor: pointer;
    font: inherit;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.lang-menu {
    position: absolute;
    top: 120%;
    right: 0;
    min-width: 130px;
    background: rgba(15, 15, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 6px 0;
    display: none;
    z-index: 9999;
}

.lang-menu.open {
    display: block;
}

/* hamburger base */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0 4px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 18px;
    position: relative;
    z-index: 150;
}

.nav-toggle-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: #f5f1e8;
    transition: transform 0.2s ease,
    opacity 0.2s ease,
    top 0.2s ease,
    bottom 0.2s ease;
}

.nav-toggle-line:nth-child(1) {
    top: 0;
}

.nav-toggle-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle-line:nth-child(3) {
    bottom: 0;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/* -------- DESKTOP (>= 1024px) -------- */
@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }

    .desktop-nav-list {
        display: flex;
    }

    .mobile-nav-list {
        display: none;
    }

    .lang-switcher-desktop {
        display: flex;
    }

    .lang-switcher-mobile {
        display: none;
    }
}

/* -------- TABLET + MOBILE (< 1024px) -------- */
@media (max-width: 1023px) {
    .site-header-inner {
        padding-inline: 16px;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
    }

    .desktop-nav-list {
        display: none;
    }

    .mobile-nav-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .main-nav {
        position: fixed;
        top: 64px;
        left: 16px;
        right: 16px;
        background: rgba(5, 5, 9, 0.98);
        border-radius: 14px;
        padding: 16px 18px 18px;
        display: none;
        flex-direction: column;
        border: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 40;
    }

    .main-nav.is-open {
        display: flex;
    }

    .lang-switcher-desktop {
        display: none;
    }

    .lang-switcher-mobile {
        display: block;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .lang-switcher-mobile .lang-toggle {
        width: 100%;
        justify-content: space-between;
        background: transparent;
        padding: 8px 0;
        border: none;
        border-radius: 0;
        font-size: 0.85rem;
        opacity: 0.85;
    }

    .lang-mobile-options {
        margin-top: 6px;
        padding-left: 12px;
        border-left: 1px solid rgba(255, 255, 255, 0.15);
        display: none;
        flex-direction: column;
        gap: 8px;
    }

    .lang-mobile-options.open {
        display: flex;
    }
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    height: 90vh;
    min-height: 540px;
    color: #f9f5ec;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 64px; /* header space */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    filter: saturate(1.1) contrast(1.1) brightness(0.9);
}

/* Darken the photo so text always reads clearly */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.85)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.95));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 0 24px;
    text-align: left;
}

.hero-title {
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 520px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 28px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.1s ease,
    box-shadow 0.2s ease;
    background: transparent;
    color: #f5f1e8;
}

.btn-primary {
    background: linear-gradient(120deg, #e5c18b, #f0e3c5);
    color: #141114;
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.btn-ghost {
    background: transparent;
    color: #f5f1e8;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
}

/* =========================================
   CONCEPT SECTION – ULTRA STYLE
   ========================================= */

.section-concept {
    position: relative;
    padding: 140px 0;
    background: radial-gradient(circle at top left, #141422, #070711 52%, #050509 100%);
    overflow: hidden;
}

/* glowing orb you already have – keep or tweak */
.section-concept::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(243, 210, 150, 0.18), transparent 60%);
    opacity: 0.9;
    pointer-events: none;
}

/* animated diagonal light sweep */
.section-concept::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: linear-gradient(
            120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.05) 45%,
            rgba(255, 255, 255, 0.09) 50%,
            rgba(255, 255, 255, 0.05) 55%,
            transparent 100%
    );
    mix-blend-mode: screen;
    opacity: 0.25;
    transform: translateX(-20%);
    animation: conceptSweep 14s linear infinite;
    pointer-events: none;
}

@keyframes conceptSweep {
    0% {
        transform: translateX(-35%);
    }
    100% {
        transform: translateX(35%);
    }
}

/* subtle grain layer */
.section-concept .container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.concept-layout {
    position: relative;
    padding: 80px 40px;
    border-radius: 24px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 3.2fr) minmax(0, 2.3fr);
    gap: 56px;
    align-items: flex-start;
    overflow: hidden;
    z-index: 1;
}

/* SOFT EDGE FADE */
.concept-layout::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;

    background: radial-gradient(
            circle at center,
            rgba(0, 0, 0, 0) 55%,
            rgba(0, 0, 0, 0.25) 85%,
            rgba(0, 0, 0, 0.45) 100%
    );

    mix-blend-mode: soft-light; /* elegant blend */
    opacity: 0.2;
}

/* OPTIONAL: subtle outer glow */
.concept-layout::after {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: inherit;
    pointer-events: none;

    background: radial-gradient(
            circle,
            rgba(255, 235, 200, 0.06),
            rgba(0, 0, 0, 0)
    );
    filter: blur(30px);
}

.concept-main {
    position: relative;
    z-index: 2;
}

.section-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 220, 177, 0.85);
    margin-bottom: 6px;
}

.concept-meta-line {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(191, 185, 171, 0.8);
    margin-bottom: 22px;
}

/* rail + copy layout */

.concept-rail-wrap {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 18px;
}

.concept-rail {
    position: relative;
    width: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.concept-rail-line {
    flex: 1;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(
            to bottom,
            rgba(243, 210, 150, 0.0),
            rgba(243, 210, 150, 0.4),
            rgba(243, 210, 150, 0.0)
    );
    box-shadow: 0 0 18px rgba(243, 210, 150, 0.45);
}

.concept-rail-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(243, 210, 150, 0.7);
    background: radial-gradient(circle, rgba(243, 210, 150, 0.9), rgba(20, 16, 20, 1));
    box-shadow: 0 0 12px rgba(243, 210, 150, 0.9);
}

.concept-rail-dot--top {
    margin-bottom: 10px;
}

.concept-rail-dot--bottom {
    margin-top: 10px;
}

.concept-copy-wrap {
    max-width: 720px;
}

/* title + body */

.concept-title {
    font-size: 2.2rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #f5f1e8;
}

.concept-body p {
    line-height: 1.85;
    color: #d8d3c6;
    margin: 0 0 14px;
    font-size: 0.98rem;
}


.concept-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

/* chips row */

.concept-chip {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 6px 13px;
    border-radius: 999px;
    border: 1px solid rgba(243, 210, 150, 0.45);
    background: radial-gradient(circle at top left,
    rgba(243, 210, 150, 0.18),
    rgba(16, 13, 25, 0.95)
    );
    color: #f5ecdb;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.65);
}

/* glassy “At a glance” card */
.concept-aside {
    display: flex;
    flex-direction: column;
    justify-content: center; /* centers entire column vertically */
    align-items: center; /* centers each card horizontally */
    gap: 24px; /* even spacing between cards */
    height: 100%; /* so it can actually center itself */
}

.concept-card {
    position: relative;
    border-radius: 24px;
    padding: 22px 26px 20px;
    width: 280px;
    max-width: 100%;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), rgba(9, 9, 20, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.85),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    transform: translateY(0);
    transition: transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.concept-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(243, 210, 150, 0.24);
    opacity: 0.8;
    pointer-events: none;
    mix-blend-mode: screen;
}

.concept-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.9),
    0 0 36px rgba(243, 210, 150, 0.40);
    border-color: rgba(255, 255, 255, 0.18);
}

.concept-card-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.20em;
    color: #f5f1e8;
    margin-bottom: 12px;
}

.concept-card-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 0.92rem;
    color: #cbc4b5;
}

.concept-card-list li {
    margin-bottom: 6px;
}

/* ---------- Responsive tweaks ---------- */

@media (max-width: 900px) {
    .concept-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .concept-rail-wrap {
        grid-template-columns: minmax(0, 1fr);
    }

    .concept-rail {
        display: none; /* keep mobile clean */
    }

    .concept-title {
        font-size: 1.8rem;
        letter-spacing: 0.14em;
    }
}

@media (max-width: 600px) {
    .concept-body p {
        font-size: 0.95rem;
    }

    .concept-meta-line {
        letter-spacing: 0.16em;
    }
}


/* =========================================================
   EXPERIENCES
   ========================================================= */

.section-experiences {
    background: #050509;
}

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

.experience-card {
    background: radial-gradient(circle at top left, #181820, #090910);
    border-radius: 18px;
    padding: 22px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.experience-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #f3eee4;
}

.experience-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #c7c0b1;
}

/* Hover / tap feedback */
.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    border-color: rgba(243, 212, 154, 0.5);
    background: radial-gradient(circle at top left, #1f1f2b, #090910);
}

/* =========================================================
   HIGHLIGHT / EVENTS STRIP
   ========================================================= */

.section-highlight {
    background: #070712;
}

.highlight-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 32px;
    align-items: flex-start;
}

.highlight-copy h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.highlight-copy p {
    color: #d6cfbf;
    line-height: 1.7;
    max-width: 620px;
}

.highlight-copy .btn {
    margin-top: 16px;
}

.highlight-meta {
    display: grid;
    gap: 14px;
}

.meta-card {
    background: radial-gradient(circle at top left, #191825, #090910);
    border-radius: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    color: #cbc4b5;
    transition: transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.meta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 24px rgba(243, 210, 150, 0.20); /* warm gold glow */
    border-color: rgba(243, 210, 150, 0.45);
    background: radial-gradient(circle at top left,
    rgba(255, 255, 255, 0.14),
    rgba(12, 12, 18, 0.96));
}

.meta-card h3 {
    margin-bottom: 6px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* =========================================================
   SAPPHIRE LOUNGE
   ========================================================= */

.section-sapphire {
    background: #070713;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sapphire-inner {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 3fr);
    gap: 32px;
    align-items: flex-start;
}

.sapphire-copy .section-title {
    margin-bottom: 14px;
}

.sapphire-intro p {
    color: #d6cfbf;
    line-height: 1.7;
    max-width: 540px;
}

.sapphire-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.sapphire-card {
    background: radial-gradient(circle at top left, #1b1930, #0a0814);
    border-radius: 16px;
    padding: 16px 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.93rem;
    color: #c9c2b3;
    transition: transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.sapphire-card h3 {
    font-size: 0.98rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
    color: #f3eee4;
}

.sapphire-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.6);
    border-color: rgba(109, 176, 255, 0.7); /* subtle 'sapphire' accent */
    background: radial-gradient(circle at top left, #252446, #090713);
}

@media (max-width: 900px) {
    .sapphire-inner {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   VISIT
   ========================================================= */

.section-visit {
    background: #050509;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.visit-inner {
    display: grid;
    grid-template-columns: minmax(0, 2.5fr) minmax(0, 3fr);
    gap: 32px;
    align-items: center;
}

.visit-text {
    max-width: 520px;
    color: #d6cfbf;
    line-height: 1.7;
    margin: 0;
}

.visit-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.visit-card {
    background: radial-gradient(circle at top left, #181820, #090910);
    border-radius: 16px;
    padding: 18px 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    color: #c7c0b1;
}

.visit-card h3 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
    color: #f3eee4;
    transition: transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.visit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.60),
    0 0 26px rgba(243, 210, 150, 0.25);
    border-color: rgba(243, 210, 150, 0.45);
    background: radial-gradient(circle at top left,
    rgba(255, 255, 255, 0.12),
    rgba(10, 10, 16, 0.98));
}

@media (max-width: 900px) {
    .visit-inner {
        grid-template-columns: 1fr;
    }

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

/* =========================================================
   SOCIAL / EVENTS
   ========================================================= */

.section-social {
    background: #050509;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.social-carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 8px 4px 4px;
    scroll-snap-type: x mandatory;
}

.social-carousel::-webkit-scrollbar {
    height: 6px;
}

.social-carousel::-webkit-scrollbar-track {
    background: #080812;
}

.social-carousel::-webkit-scrollbar-thumb {
    background: #262430;
    border-radius: 999px;
}

.social-card {
    min-width: 260px;
    max-width: 320px;
    padding: 12px 14px 16px;
    border-radius: 18px;
    scroll-snap-align: start;
    background: radial-gradient(circle at top left, #181824, #050509);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-card-media {
    border-radius: 14px;
    overflow: hidden;
    background: radial-gradient(circle at center, #232334, #050509);
}

.social-card-media img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.social-card-placeholder {
    padding: 24px 18px;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 241, 232, 0.72);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.social-card-url {
    font-size: 0.7rem;
    opacity: 0.5;
    word-break: break-all;
}

.social-card-body h3 {
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 2px 0 4px;
    color: #f5f1e8;
}

.social-card-body p {
    font-size: 0.9rem;
    color: #c7c0b1;
    line-height: 1.5;
}

.social-card-link {
    margin-top: 6px;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.8;
}

.social-card-link:hover {
    opacity: 1;
}

/* =========================================================
   GALLERY / CAROUSEL
   ========================================================= */

.section-gallery {
    background: #050509;
}

.gallery-carousel {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding-top: 8px;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.carousel-item {
    min-width: 100%;
    margin: 0;
    position: relative;
    cursor: zoom-in;
}

.carousel-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Arrows */

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: radial-gradient(circle at top left, #201c30, #08050c);
    color: #f5f1e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
    transition: background 0.2s ease,
    border-color 0.2s ease,
    transform 0.1s ease,
    box-shadow 0.2s ease;
}

.carousel-arrow--prev {
    left: -18px;
}

.carousel-arrow--next {
    right: -18px;
}

.carousel-arrow:hover {
    background: radial-gradient(circle at top left, #2a223e, #0b0712);
    border-color: rgba(243, 212, 154, 0.9);
    transform: translateY(-50%) translateY(-1px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7);
}

/* Hide arrows if only one slide */

.gallery-carousel[data-gallery-single="true"] .carousel-arrow {
    display: none;
}

/* Lightbox */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(3, 3, 8, 0.9);
    display: none; /* toggled via JS */
    align-items: center;
    justify-content: center;
    z-index: 90;
    backdrop-filter: blur(8px);
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 18px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(10, 8, 16, 0.9);
    color: #f5f1e8;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Mobile tweaks */

@media (max-width: 768px) {
    .gallery-carousel {
        max-width: 100%;
    }

    .carousel-arrow--prev {
        left: 4px;
    }

    .carousel-arrow--next {
        right: 4px;
    }

    .lightbox-close {
        top: -36px;
    }
}


.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    padding: 0;
    cursor: pointer;
    opacity: 0.6;
    transition: background 0.2s ease,
    transform 0.15s ease,
    opacity 0.2s ease,
    border-color 0.2s ease;
}

.carousel-dot.is-active {
    background: #f3d69f;
    border-color: #f3d69f;
    opacity: 1;
    transform: scale(1.25);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #050509;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 0 40px;
    font-size: 0.85rem;
    color: #a9a396;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-column h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 4px;
}

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

/* Medium screens */
@media (max-width: 1024px) {
    .section {
        padding: 64px 0;
    }

    .site-header-inner {
        padding-inline: 16px;
    }

    .hero-title {
        letter-spacing: 0.14em;
    }
}

/* Tablets / small laptops */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 520px;
        padding: 96px 0 60px;
    }

    .hero-content {
        text-align: left;
        padding-inline: 20px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 260px;
    }

    .split,
    .highlight-inner {
        grid-template-columns: 1fr;
    }
}

/* Phones */
@media (max-width: 480px) {

    .section {
        padding: 56px 0;
    }

    .hero-title {
        font-size: 2.1rem;
        letter-spacing: 0.12em;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        max-width: none;
    }

    .card-grid {
        gap: 14px;
    }

    .gallery-strip {
        grid-auto-columns: 70%;
    }
}

/* ===== DESKTOP LANGUAGE BAR REFINEMENT ===== */
@media (min-width: 768px) {

    /* sit just under the sticky header, with tighter spacing */
    .lang-bar-desktop {
        margin-top: 56px; /* was 64; tighten gap */
        padding: 0;
    }

    .lang-bar-inner {
        max-width: 1120px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;

        /* pick ONE of these depending on what feels best: */
        justify-content: flex-end; /* right-aligned under menu */
        /* justify-content: center; */ /* <- use this instead if you want it centered */
    }

    /* make the desktop pill smaller and more on-brand */
    .lang-switcher-desktop .lang-toggle {
        padding: 6px 14px; /* smaller pill */
        font-size: 0.8rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;

        background: rgba(5, 5, 9, 0.75);
        border-radius: 999px;
        border: 1px solid rgba(243, 210, 150, 0.45);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
        opacity: 0.9;
    }

    .lang-switcher-desktop .lang-toggle:hover {
        background: rgba(243, 210, 150, 0.16);
        border-color: rgba(243, 210, 150, 0.75);
        opacity: 1;
    }

    .lang-switcher-desktop .lang-icon {
        font-size: 0.9rem;
        margin-right: 4px;
    }

    .lang-switcher-desktop .lang-caret {
        font-size: 0.7rem;
        opacity: 0.8;
    }

    /* tighten the hero offset so the gap between nav / lang / hero looks deliberate */
    .hero {
        padding-top: 32px; /* was 64px – we already compensated with the lang bar */
    }
}

@media (min-width: 1024px) {
    .site-header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* show horizontal nav */
    .desktop-nav-list {
        display: flex;
        gap: 2rem;
    }

    /* hide hamburger */
    .nav-toggle {
        display: none;
    }

    /* show desktop lang switcher */
    .lang-switcher-desktop {
        display: flex;
        margin-left: 2rem;
        position: relative;
    }

    /* matches nav link sizing */
    .lang-toggle {
        padding: 6px 12px;
        font-size: 0.85rem;
        letter-spacing: 0.05em;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .lang-menu {
        position: absolute;
        top: 120%;
        right: 0;
        min-width: 140px;
        background: rgba(5, 5, 9, 0.95);
        border-radius: 10px;
        display: none;
    }

    .lang-menu.open {
        display: block;
    }
}

/* Each language on its own row in the dropdown */
.lang-menu .lang-option,
.lang-menu .lang-option--active {
    display: block; /* full row */
    padding: 6px 10px;
    white-space: nowrap; /* don't wrap the label */
    font-size: 0.85rem;
    cursor: pointer;
}

.lang-menu .lang-option:hover {
    background: rgba(255, 255, 255, 0.06);
}




