:root {
    --accent: #ff6b3d;
    --muted: rgba(255, 255, 255, 0.85);
    --dark-overlay: rgba(0, 0, 0, 0.45)
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

/* Header / Nav */
/* language selector */
.lang {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 50px; /* pill shape to match icon buttons */
    background: transparent; /* blend with header background */
    border: 1px solid rgba(255,255,255,0.2); /* same as header icons */
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}
.lang:hover {
    background: rgba(255,255,255,0.05);
}
.lang:active {
    background: rgba(255,255,255,0.1);
}
.lang .caret {
    transition: transform .2s;
    opacity: 0.85;
    font-size: 0.7em;
}
.lang.open .caret {
    transform: rotate(-180deg);
}
.caret{opacity:.85;margin-left:6px;transition:transform .2s;}
.lang-menu {
    position: fixed;
    right: 12px;
    top: 60px; /* positioned below header */
    background: #0A172E; /* same as header for seamless look */
    border: 1px solid rgba(255,255,255,0.1);
    padding: 4px 0;
    border-radius: 8px;
    min-width: 140px;
    display: none;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 100;
    max-height: 90vh;
    overflow: auto;
}
.lang-menu li{padding:8px 10px;color:rgba(255,255,255,0.95);cursor:pointer;border-radius:6px;white-space:nowrap;}
.lang-menu li:hover{background:rgba(255,255,255,0.02);}
.lang-menu.show{display:flex;}

/* Header / Nav */
.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: #0A172E;
    min-height: 72px;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.site-header.scrolled {
    background: #0A172E;
    backdrop-filter: none
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: var(--muted)
}

.brand .logo-mark {
    height: 34px;
    display: block;
    width: auto
}

.brand .name {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 700;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95)
}

/* hide original primary nav — header uses icons like the screenshot */
nav.primary {
    display: none
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px
        /* tighter spacing like reference image */
    ;
    overflow-x: visible;
    white-space: nowrap;
    padding-bottom: 4px;
}

/* icons have enough space; dropdown needs visible overflow */
.header-actions .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    background: transparent
}

.header-actions .icon svg {
    width: 18px;
    height: 18px
}

.header-actions .icon:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px
}

.mobile-menu {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.95);
    font-size: 22px;
    padding: 6px 8px;
    cursor: pointer
}

/* Sidebar + mobile nav */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 8, 23, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 70
}

.sidebar-overlay.show {
    opacity: 1;
    visibility: visible
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 40vw;
    max-width: 40vw;
    background: #0A172E;
    color: var(--muted);
    transform: translateX(-100%);
    transition: transform .36s cubic-bezier(.2, .9, .2, 1);
    z-index: 80;
    padding: 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 8px 0 40px rgba(2, 6, 23, .4);
    overflow-y: auto;
}

.mobile-nav.show {
    transform: translateX(0)
}

/* ensure sidebar doesn't show overflow when narrower */
@media (max-width:640px) {
    .mobile-nav {
        width: 80vw;
        max-width: 80vw
    }
}

.sidebar-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.95);
    font-size: 26px;
    align-self: flex-end;
    cursor: pointer;
    padding: 6px
}

.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px
}

.side-menu .nav-item a {
    padding: 12px 0;
    display: block
}

.side-menu .nav-item a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600
}

.side-menu .nav-item.active a {
    color: #79b2c9
}

.side-menu .has-sub a .caret {
    margin-left: 8px;
    opacity: .9
}

.cookie-pill {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: #fff;
    color: #071428;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(2, 6, 23, 0.08)
}

/* remove hero overlay so video is full-cover */
.hero-overlay {
    display: none !important
}

.btn-primary {
    background: var(--accent);
    color: #111;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer
}

/* Hero / slider */
.hero {
    position: relative;
    height: 100vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100vw;
    left: 0;
}

html,
body {
    overflow-x: hidden;
}

.slides {
    position: absolute;
    inset: 0
}

.slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    transition: opacity .8s ease;
    opacity: 0;
    pointer-events: none
}

.slide.active {
    opacity: 1;
    pointer-events: auto
}

.slide iframe,
.slide video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.6));
    z-index: 20
}

.hero-content {
    position: relative;
    z-index: 30;
    max-width: 920px;
    padding: 48px;
    left: 6%;
    transform: translateY(-6%);
}

.eyebrow {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px
}

.hero-title {
    font-size: clamp(34px, 7vw, 72px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 18px
}

.hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 620px;
    margin-bottom: 28px
}

.hero-actions {
    display: flex;
    gap: 14px
}

.ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--muted);
    cursor: pointer
}

.dots {
    display: none
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    opacity: .85
}

.dot.active {
    background: var(--accent);
    width: 12px;
    height: 12px
}

/* Sections layout */
.section {
    padding: 72px 36px;
    max-width: 1200px;
    margin: 0 auto
}

.section-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: rgba(2, 6, 23, 0.9)
}

/* Intro (user-provided) */
.intro {
    background: #0F3357;
    color: #fff;
    padding: 100px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.intro .container {
    max-width: 980px;
    margin: 0 auto
}

.intro .intro-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 18px
}

.intro p {
    font-size: 28px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 820px;
    margin: 0 auto
}

/* Services (custom image grid) */
.services {
    background: #F5F3E3;
    color: #0b2540
}

.services .section {
    padding: 100px 36px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: left
}

.services-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 48px;
    color: #0b2540
}

.services-title .services-subtitle {
    font-weight: 200;
    display: block;
    margin-top: -8px
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0
}

.service-item {
    position: relative;
    flex: 1 1 33.333%;
    min-width: 220px;
    overflow: hidden;
    height: 360px
}

.service-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.service-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap
}

.service-label span {
    font-weight: 900
}

.service-label.work-life {
    background: #4a8fa3;
    color: #fff
}

.service-label.travel-life {
    background: #0a172e;
    color: #fff
}

.service-label.home-life {
    background: #fff;
    color: #0a172e;
    border-top: 1px solid #ccc
}

@media (max-width:900px) {
    .service-item {
        flex: 1 1 100%;
        height: auto;
        max-height: none
    }

    .services-title {
        font-size: 34px
    }
}


/* Approach */
.approach {
    background: #F5F3E3;
    color: #0b2540;
    padding: 100px 36px
}

.approach-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: left
}

.approach-header h2 {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 800;
    margin: 0;
    color: #0b2540
}

.approach-link {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6)
}

.approach-link svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2
}

.approach-link:hover {
    background: rgba(0, 0, 0, 0.8)
}

.approach-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

/* left column with two paragraphs stacked in natural order */
.left-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1 1 28%;
    max-width: 320px
}

.approach-text.top-left {
    align-self: flex-start;
    margin-bottom: 24px
}

.approach-text.bottom-left {
    align-self: flex-start
}

.approach-text.right-mid {
    align-self: flex-start;
    flex: 1 1 28%;
    max-width: 320px
}

.approach-text {
    /* default for any stray text blocks */
    flex: 1 1 28%;
    max-width: 320px
}

/* ensure image always centered in row */
.approach-image {
    flex: 1 1 32%;
    display: flex;
    align-items: center;
    justify-content: center
}

.approach-image img {
    max-width: 100%;
    height: auto
}

.approach-text p {
    margin-bottom: 24px;
    line-height: 1.6
}

.approach-image {
    flex: 1 1 32%;
    position: relative
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block
}

.approach-image .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0a172e;
    color: #fff;
    text-align: center;
    padding: 16px;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase
}

/* keep earlier responsive rule but update for new layout */
@media (max-width:900px) {
    .approach-content {
        flex-direction: column
    }

    .approach-text {
        max-width: 100%
    }

    .approach-header h2 {
        font-size: 34px
    }
}

/* process image slow scroll/parallax */
#processImage {
    transition: transform 0.3s ease-out;
    will-change: transform
}

.approach-text {
    transition: filter 0.2s ease-out
}

.blur-text {
    filter: blur(4px)
}

/* stretch effect on items */
.approach-content>* {
    transition: transform 0.3s ease-out;
    will-change: transform
}

/* Clients */
.clients {
    padding: 48px 36px;
    background: #f7fafc
}

.client-logos {
    display: flex;
    gap: 16px;
    align-items: center;
    overflow: auto;
    padding: 12px 0
}

.client-logos .logo {
    min-width: 120px;
    height: 60px;
    background: linear-gradient(90deg, #e6eefb, #d1e8ff);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #0b2540;
    font-weight: 700
}

/* Insights */
.insights {
    background: #fff;
    padding: 72px 36px
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.insight-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(2, 6, 23, 0.06);
    overflow: hidden;
    border: 1px solid rgba(2, 6, 23, 0.04)
}

.insight-card .thumb {
    height: 160px;
    background: linear-gradient(135deg, #e9eef6, #cfe8ff)
}

.insight-card .body {
    padding: 16px
}

.insight-card h4 {
    margin-bottom: 8px
}

.insight-card p {
    color: rgba(2, 6, 23, 0.6);
    line-height: 1.5
}

/* Footer */
.site-footer {
    background: #071428;
    padding: 48px 36px;
    color: rgba(255, 255, 255, 0.85)
}

.site-footer .cols {
    display: flex;
    gap: 40px;
    flex-wrap: wrap
}

.site-footer h4 {
    color: #fff;
    margin-bottom: 8px
}

.site-footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none
}

.site-footer input {
    outline: none
}

/* Mobile */
@media (max-width:900px) {
    .hero-content {
        left: 6%;
        padding: 28px
    }

    .hero-title {
        font-size: 34px
    }

    .site-header {
        padding: 12px 20px
    }

    .service-grid,
    .approach-grid,
    .insights-grid {
        grid-template-columns: 1fr
    }

    .brand .name {
        display: none
    }

    .client-logos {
        gap: 10px
    }
}

/* scroll bar in fixed header */

@media (max-width:640px) {
    nav.primary {
        display: none
    }

    .mobile-menu {
        display: block
    }

    .hero {
        min-height: 520px
    }

    .intro {
        padding: 48px 20px
    }

    .site-footer {
        padding: 28px 20px
    }
}
