:root {
    --brand: #00377C;
    --brand-dark: #022a5f;
    --brand-soft: #dce6f8;
    --brand-soft-2: #eef4ff;
    --text: #183240;
    --text-soft: #61727b;
    --heading-soft: #324b57;
    --bg: #ffffff;
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(0,0,0,.18);
    --max: 1320px;
    --nav-h: 92px;
    --radius: 24px;
    --transition: all .3s ease;
    --hero-duration: 4500ms;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img, video { display: block; width: 100%; }
button { font: inherit; }

.container {
    width: min(var(--max), calc(100% - 64px));
    margin: 0 auto;
}

.site-top-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand);
    z-index: 1200;
}

/* ─── NAVBAR ─────────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 4px;
    left: 0;
    width: 100%;
    z-index: 1100;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.nav-shell {
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.nav-logo {
    flex: 0 0 150px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.nav-logo img {
    width: 110px;
    height: auto;
    object-fit: contain;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
    margin-right: 18px;
}

.nav-link,
.dropdown-toggle {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .01em;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition);
}

.nav-link:hover,
.dropdown-toggle:hover { color: #dfe9ff; }

.navbar.scrolled .nav-link,
.navbar.scrolled .dropdown-toggle { color: #253b47; }

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .dropdown-toggle:hover { color: var(--brand); }

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 160px;
}

.nav-book-tour {
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.92);
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-book-tour:hover { background: #fff; color: var(--brand); }

.navbar.scrolled .nav-book-tour {
    color: var(--brand);
    border-color: rgba(0,55,124,.35);
    background: var(--brand-soft-2);
}

.navbar.scrolled .nav-book-tour:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

/* ─── DROPDOWN ───────────────────────────────────────────────────────────── */
.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    min-width: 230px;
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 24px 50px rgba(0,0,0,.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: #213846;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: var(--brand-soft-2);
    color: var(--brand);
}

/* ─── MOBILE NAV ─────────────────────────────────────────────────────────── */
.nav-toggle {
    display: none;
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 3;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.nav-toggle span {
    position: absolute;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: var(--transition);
}

.nav-toggle span:nth-child(1) { transform: translateY(-7px); }
.nav-toggle span:nth-child(2) { transform: translateY(0); }
.nav-toggle span:nth-child(3) { transform: translateY(7px); }

.navbar.scrolled .nav-toggle {
    background: var(--brand-soft-2);
    color: var(--brand);
}

.navbar.menu-open .nav-toggle span:nth-child(1) { transform: rotate(45deg); }
.navbar.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.navbar.menu-open .nav-toggle span:nth-child(3) { transform: rotate(-45deg); }

.mobile-nav { display: none; }
.mobile-submenu { display: none; }
.mobile-submenu.open { display: block; }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--nav-h) + 4px);
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.56) 0%, rgba(0,0,0,.30) 36%, rgba(0,0,0,.12) 63%, rgba(0,0,0,.22) 100%),
        linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.18) 30%, rgba(0,0,0,.36) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - var(--nav-h) - 4px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    align-items: end;
    gap: 48px;
    padding-top: 24px;
    padding-bottom: 56px;
}

.hero-copy {
    max-width: 900px;
    padding-bottom: 110px;
}

.hero-copy h1 {
    color: #fff;
    font-size: clamp(72px, 8.5vw, 122px);
    line-height: .9;
    font-weight: 300;
    letter-spacing: -.065em;
    margin-bottom: 24px;
}

.hero-copy p {
    max-width: 880px;
    color: #fff;
    font-size: clamp(17px, 1.35vw, 21px);
    line-height: 1.62;
    font-weight: 400;
}

/* ─── HERO CARD ──────────────────────────────────────────────────────────── */
.hero-card-zone {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
    padding-bottom: 8px;
}

.hero-card-stack {
    position: relative;
    width: min(100%, 386px);
    flex: 0 1 386px;
}

.hero-card-shadow {
    position: absolute;
    top: 16px;
    left: -18px;
    width: 100%;
    height: 100%;
    border-radius: 26px;
    background: rgba(255,255,255,.82);
    z-index: 1;
}

.hero-card {
    position: relative;
    z-index: 2;
    width: 100%;
    background: #f7f7f7;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(0,0,0,.18);
}

.hero-card-media {
    width: 100%;
    height: clamp(210px, 24vw, 250px);
    padding: 18px 18px 0 18px;
    overflow: hidden;
}

.hero-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.hero-card-body { padding: 18px 20px 20px; }

.hero-card-body h3 {
    font-size: clamp(17px, 1.45vw, 19px);
    line-height: 1.34;
    font-weight: 500;
    color: #111;
    letter-spacing: -.01em;
    min-height: 96px;
    margin-bottom: 16px;
}

.hero-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-dot {
    position: relative;
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: #b8c4d8;
    overflow: hidden;
    flex: 0 0 auto;
}

.hero-dot.active {
    width: 78px;
    background: #c7d5ee;
}

.hero-dot-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0%;
    height: 100%;
    background: var(--brand);
    border-radius: 999px;
}

.hero-dot.active .hero-dot-fill {
    animation: heroProgress var(--hero-duration) linear forwards;
}

@keyframes heroProgress {
    from { width: 0%; }
    to   { width: 100%; }
}

.hero-card-arrow {
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 64px;
    transition: all .3s ease;
}

.hero-card-arrow:hover {
    background: var(--brand);
    color: #fff;
}

.hero-side-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 78px;
    border: none;
    background: none;
    color: #fff;
    font-size: 78px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .98;
}

.hero-side-arrow-left  { left:  calc(50% - 250px); }
.hero-side-arrow-right { right: calc(50% - 250px); }

/* ─── SECTIONS ───────────────────────────────────────────────────────────── */
.section {
    padding: 0 0 96px;
}

.light-section {
    background: var(--bg);
    position: relative;
}

.hero + .section {
    padding-top: 0;
    margin-top: 0;
}

/* ─── DOT PATTERNS ───────────────────────────────────────────────────────── */
.dots-right-only {
    position: relative;
    overflow: hidden;
}

.dots-right-only::before { display: none !important; }

.dots-right-only::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 50%;
    background-image: radial-gradient(rgba(200,203,206,.95) 1.7px, transparent 1.7px);
    background-size: 34px 34px;
    background-position: right top;
    pointer-events: none;
    z-index: 0;
}

.dots-sides-only {
    position: relative;
    overflow: hidden;
}

.dots-sides-only::before,
.dots-sides-only::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 220px;
    background-image: radial-gradient(rgba(200,203,206,.95) 1.7px, transparent 1.7px);
    background-size: 34px 34px;
    background-position: center top;
    pointer-events: none;
    z-index: 0;
}

.dots-sides-only::before { left: 0; }
.dots-sides-only::after  { right: 0; }

.dots-left-only {
    position: relative;
    overflow: hidden;
}

.dots-left-only::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: 50%;
    background-image: radial-gradient(rgba(200,203,206,.95) 1.7px, transparent 1.7px);
    background-size: 34px 34px;
    background-position: left top;
    pointer-events: none;
    z-index: 0;
}

.dots-left-only::after { display: none !important; }

@media (max-width: 991px) {
    .dots-right-only::after,
    .dots-sides-only::before,
    .dots-sides-only::after,
    .dots-left-only::before,
    .dots-left-only::after {
        display: none !important;
    }
}

/* ─── SPLIT FEATURE LAYOUT ───────────────────────────────────────────────── */
.split-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
    position: relative;
}

.split-feature.reverse {
    grid-template-columns: .98fr 1.02fr;
}

.feature-text {
    position: relative;
    z-index: 2;
    padding-top: 96px;
}

.feature-text h2 {
    font-size: clamp(40px, 4.3vw, 62px);
    line-height: 1.08;
    font-weight: 400;
    color: var(--heading-soft);
    letter-spacing: -.03em;
    margin-bottom: 30px;
    max-width: 650px;
}

.feature-text p {
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.85;
    color: var(--text-soft);
    margin-bottom: 24px;
    max-width: 650px;
    font-weight: 400;
}

.feature-media {
    position: relative;
    z-index: 2;
    min-height: 100%;
    height: 100%;
    padding-top: 78px;
    display: flex;
    align-items: flex-start;
}

.feature-media img {
    position: relative;
    width: 100%;
    height: 680px;
    object-fit: cover;
    border-radius: 18px;
    z-index: 2;
    margin-top: 0;
}

/* ─── SERVICES PAGE LAYOUT ──────────────────────────────────────────────── */
/* On desktop, split-feature is a 2-col grid.
   service-header + feature-media + service-body all live in column 1 (right).
   The actual image column is .feature-media in col 1 of the grid. */
.services-section .split-feature {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    align-items: start;
}

.services-section .split-feature .feature-media {
    grid-column: 1;
    grid-row: 1 / 3;
}

.services-section .split-feature .service-header {
    grid-column: 2;
    grid-row: 1;
    padding-top: 96px;
}

.services-section .split-feature .service-body {
    grid-column: 2;
    grid-row: 2;
    padding-top: 20px;
}

.services-section .split-feature .service-header .service-category { margin-bottom: 12px; }

.services-section .split-feature .service-header h2 {
    font-size: clamp(40px, 4.3vw, 62px);
    line-height: 1.08;
    font-weight: 400;
    color: var(--heading-soft);
    letter-spacing: -.03em;
    margin-bottom: 0;
    max-width: 650px;
}

.services-section .split-feature .service-body p {
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.85;
    color: var(--text-soft);
    max-width: 650px;
    font-weight: 400;
}

/* ─── FEATURE LINK BUTTON ────────────────────────────────────────────────── */
.feature-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 10px 26px 10px 10px;
    border-radius: 999px;
    color: var(--brand);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    background: transparent;
    transition: background-color .35s ease, color .35s ease;
    overflow: hidden;
}

.feature-link .circle {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: background-color .35s ease, color .35s ease;
}

.feature-link .label {
    display: inline-block;
    color: inherit;
    transition: color .35s ease;
}

.feature-link .arrow-default {
    display: inline-block;
    font-size: 36px;
    line-height: 1;
    transition: opacity .22s ease, transform .35s ease;
}

.feature-link .arrow-hover {
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%) translateX(-18px);
    opacity: 0;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    transition: opacity .25s ease, transform .35s ease;
}

.feature-link:hover { background: var(--brand); color: #fff; }
.feature-link:hover .arrow-default { opacity: 0; transform: translateX(10px); }
.feature-link:hover .arrow-hover { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ─── OVERLAY BANNER ─────────────────────────────────────────────────────── */
.overlay-banner {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0b1318;
}

.overlay-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
}

.overlay-banner .container {
    position: relative;
    z-index: 2;
    padding-bottom: 52px;
}

.overlay-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
}

.overlay-banner h2 {
    color: #fff;
    font-size: clamp(52px, 6vw, 84px);
    line-height: .98;
    font-weight: 300;
    letter-spacing: -.04em;
}

.overlay-banner p {
    color: #fff;
    font-size: 20px;
    line-height: 1.65;
    max-width: 740px;
}

.overlay-banner .feature-link { color: #fff; margin-top: 28px; }
.overlay-banner .feature-link .circle { background: var(--brand); color: #fff; }
.overlay-banner .feature-link:hover { background: var(--brand); color: #fff; }

/* ─── CENTERED STATEMENT ─────────────────────────────────────────────────── */
.centered-statement {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: left;
    padding-top: 96px;
    padding-left: 72px;
    padding-right: 72px;
}

.centered-statement h2 {
    text-align: center;
    font-size: clamp(54px, 5vw, 76px);
    color: var(--heading-soft);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -.04em;
    margin-bottom: 38px;
}

.centered-statement p {
    font-size: 20px;
    line-height: 1.75;
    color: #4a626d;
    margin-bottom: 28px;
    text-align: left;
}

.centered-statement .feature-link {
    justify-content: flex-start;
    margin-top: 18px;
}

.work-section {
    padding-top: 1px !important;
    padding-bottom: 62px;
}

/* ─── FEATURED PROJECTS SLIDER ───────────────────────────────────────────── */
.featured-projects-section {
    padding: 10px 0 90px;
    background: var(--bg);
}

.projects-head { margin-bottom: 40px; }

.projects-head h2 {
    font-size: clamp(48px, 5vw, 64px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -.04em;
    color: var(--heading-soft);
}

.fp-slider-wrap {
    padding-left: max(32px, calc((100vw - min(1320px, calc(100vw - 64px))) / 2));
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    padding-bottom: 8px;
}

.fp-slider-wrap::-webkit-scrollbar { display: none; }
.fp-slider-wrap.dragging { cursor: grabbing; }

.fp-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding-right: max(32px, calc((100vw - min(1320px, calc(100vw - 64px))) / 2));
    align-items: stretch;
}

.fp-scroll-track {
    height: 5px;
    background: transparent;
    border-radius: 999px;
    margin-top: 12px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.fp-scroll-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--brand);
    border-radius: 999px;
    width: 0;
    min-width: 0;
    opacity: 0;
    transition: width .15s ease, left .15s ease, opacity .3s ease;
}

/* ─── PROJECT CARD ───────────────────────────────────────────────────────── */
.fp-card {
    position: relative;
    flex: 0 0 340px;
    height: 580px;
    border-radius: 16px;
    overflow: hidden;
    background: #1a2e3b;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.fp-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.fp-card:hover img { transform: scale(1.05); }

.fp-card-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a3a5c, #0c1b2e);
}

.fp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.18) 40%, rgba(0,0,0,.75) 100%);
    z-index: 1;
    transition: background .35s ease;
}

.fp-card:hover .fp-card-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.30) 40%, rgba(0,0,0,.85) 100%);
}

.fp-card-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding-right: 60px;
}

.fp-card-location {
    font-size: 11px;
    font-weight: 700;
    color: #f0c53a;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.fp-card-title {
    color: #fff;
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: -.01em;
    margin: 0;
}

.fp-card-desc {
    color: rgba(255,255,255,.82);
    font-size: 13.5px;
    line-height: 1.65;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height .4s ease, opacity .35s ease, margin-top .3s ease;
}

.fp-card:hover .fp-card-desc {
    max-height: 100px;
    opacity: 1;
    margin-top: 10px;
}

.fp-card-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: background .25s ease, transform .25s ease;
}

.fp-card:hover .fp-card-arrow {
    background: var(--brand-dark);
    transform: translate(2px, -2px);
}

/* ─── SLIDER PAGER ───────────────────────────────────────────────────────── */
.fp-pager {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 20px;
}

.fp-pager-btn {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--brand);
    cursor: pointer;
    font-size: 15px;
    font-family: inherit;
    line-height: 1;
    padding: 0;
    transition: background .2s ease, color .2s ease;
    flex-shrink: 0;
}

.fp-pager-btn:hover { background: var(--brand); color: #fff; }

.fp-pager-btn:disabled { opacity: .3; cursor: not-allowed; }
.fp-pager-btn:disabled:hover { background: transparent; color: var(--brand); }

.fp-pager-text {
    font-size: 14px;
    color: var(--brand);
    font-weight: 600;
    min-width: 90px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── HISTORY SECTION ────────────────────────────────────────────────────── */
.history-section {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #f4f4f1;
}

.history-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) 120px minmax(420px, 560px);
    gap: 48px;
    align-items: start;
}

.history-copy {
    padding-top: 8px;
    max-width: 690px;
}

.history-copy h2 {
    font-size: clamp(62px, 6vw, 90px);
    line-height: .95;
    font-weight: 400;
    letter-spacing: -.05em;
    color: #314b57;
    margin-bottom: 34px;
}

.history-copy p {
    font-size: 19px;
    line-height: 1.75;
    color: #4f6671;
    margin-bottom: 24px;
    max-width: 640px;
}

.history-years { padding-top: 110px; }

.history-years ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.history-years li {
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    font-weight: 600;
    color: #a1aab3;
    cursor: pointer;
    transition: all .25s ease;
    width: max-content;
}

.history-years li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b7bec6;
    transition: all .25s ease;
}

.history-years li:hover { color: #334d58; }

.history-years li.active {
    background: #00377C;
    color: #fff;
    border-radius: 999px;
    padding: 12px 18px 12px 36px;
}

.history-years li.active::before {
    left: 16px;
    background: #fff;
}

.history-highlight {
    position: relative;
    min-height: 760px;
    border-radius: 18px;
    overflow: hidden;
    background: #11202b;
}

.history-highlight img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history-highlight::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.18) 28%, rgba(0,0,0,.66) 100%);
    z-index: 1;
}

.history-highlight-content {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 34px;
    z-index: 2;
}

.history-highlight-label {
    color: #f0c53a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.history-highlight h3 {
    color: #fff;
    font-size: 52px;
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -.03em;
    margin-bottom: 14px;
}

.history-highlight p {
    color: rgba(255,255,255,.92);
    font-size: 18px;
    line-height: 1.6;
    max-width: 88%;
}

.history-card-arrow {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 3;
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 50%;
    background: #00377C;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s ease;
}

.history-card-arrow:hover { background: #022a5f; transform: translateY(-2px); }

.history-back {
    margin-top: 34px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: #00377C;
    font-size: 18px;
    font-weight: 700;
    border-radius: 999px;
    transition: all .3s ease;
}

.history-back .circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #00377C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.history-back:hover { opacity: .9; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer {
    background: linear-gradient(135deg, #0d2e46 0%, #123a56 100%);
    color: #eef5fb;
    padding: 42px 0 24px;
    border-top: 1px solid rgba(255,255,255,.10);
}

.footer .container {
    width: min(1320px, calc(100% - 64px));
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.05fr 1.35fr;
    gap: 56px;
    align-items: start;
}

.footer-brand-block {
    max-width: 390px;
    padding-top: 0;
    margin-top: -6px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
}

.footer-logo img {
    width: 165px;
    height: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: .08em;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
}

.footer-logo-text span { color: #bcd6ff; }
.footer-logo-text:hover { opacity: .85; }

.footer-tagline {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255,255,255,.90);
    margin-bottom: 14px;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--brand);
    font-size: 15px;
    font-weight: 700;
    transition: all .3s ease;
}

.footer-cta:hover { background: var(--brand-soft-2); color: var(--brand); }

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 16px;
    color: rgba(255,255,255,.88);
    margin-bottom: 14px;
    transition: color .3s ease;
    line-height: 1.6;
}

.footer-col a:hover { color: #ffffff; }

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,.16);
    margin: 30px 0 20px;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.footer-copy { font-size: 14px; color: rgba(255,255,255,.78); justify-self: start; }

.footer-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 14px;
    color: rgba(255,255,255,.82);
    text-align: center;
    justify-self: center;
}

.socials {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
    justify-self: end;
}

.socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.96);
    color: #1b4f7a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 700;
    transition: all .3s ease;
}

.socials a:hover { background: #00377C; color: #ffffff; transform: translateY(-2px); }

/* ─── PROJECT DETAIL ─────────────────────────────────────────────────────── */
.project-detail-hero { min-height: 78vh; }

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-gallery-item { border-radius: 16px; overflow: hidden; }

.project-gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.project-highlight { padding: 60px 0; background: var(--bg); }

.project-highlight .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.project-highlight-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
}

.project-highlight-text p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-soft);
    margin-bottom: 0;
}

.project-highlight-images {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}

.project-highlight-images img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
}

/* ─── SERVICE CATEGORY LABEL ─────────────────────────────────────────────── */
.service-category {
    color: #f5c400 !important;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.history-section .service-category { color: #f0c53a !important; }

/* ─── ABOUT US ───────────────────────────────────────────────────────────── */
.stats-band { background: var(--brand); padding: 56px 0; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }

.stat-number {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    color: #fff;
    letter-spacing: -.04em;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,.78);
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* ─── VALUES ─────────────────────────────────────────────────────────────── */
.values-section { padding: 96px 0; background: #f4f4f1; }
.values-head { margin-bottom: 52px; }

.values-head h2 {
    font-size: clamp(42px, 4.5vw, 64px);
    font-weight: 400;
    color: var(--heading-soft);
    letter-spacing: -.04em;
    line-height: 1;
    margin-top: 12px;
}

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

.value-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid rgba(0,0,0,.06);
    transition: box-shadow .3s ease, transform .3s ease;
}

.value-card:hover { box-shadow: 0 16px 40px rgba(0,55,124,.10); transform: translateY(-4px); }

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--brand-soft-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-card h3 { font-size: 20px; font-weight: 600; color: var(--heading-soft); letter-spacing: -.01em; }
.value-card p { font-size: 15px; line-height: 1.75; color: var(--text-soft); margin: 0; }

/* ─── CERTIFICATIONS ─────────────────────────────────────────────────────── */
.cert-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.5;
}

.cert-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    flex-shrink: 0;
    margin-top: 6px;
}

/* ─── MANAGEMENT TEAM PAGE ───────────────────────────────────────────────── */
.team-intro-section {
    padding: 96px 0 80px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.team-intro-section::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: calc(400px + ((100vw - min(1320px, calc(100vw - 64px))) / 2) + 32px);
    background-image: radial-gradient(rgba(200,203,206,.95) 1.7px, transparent 1.7px);
    background-size: 34px 34px;
    background-position: right top;
    pointer-events: none;
    z-index: 0;
}

.team-intro-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.team-intro-copy .service-category { margin-bottom: 12px; }

.team-intro-copy h2 {
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    color: var(--heading-soft);
    letter-spacing: -.04em;
    line-height: 1.06;
    margin-bottom: 28px;
}

.team-intro-copy p {
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.85;
    color: var(--text-soft);
    margin-bottom: 20px;
}

.team-intro-stats {
    background: var(--brand);
    border-radius: 24px;
    padding: 44px 38px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 2;
}

.team-stat { padding: 28px 0; text-align: center; }

.team-stat-num {
    display: block;
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 300;
    color: #fff;
    letter-spacing: -.05em;
    line-height: 1;
    margin-bottom: 10px;
}

.team-stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,.72);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 500;
    line-height: 1.4;
}

.team-stat-divider { height: 1px; background: rgba(255,255,255,.18); }

.team-section { padding: 96px 0; background: var(--bg); position: relative; }
.team-section-alt { background: #f4f4f1; }
.team-section-head { margin-bottom: 56px; }

.team-section-head h2 {
    font-size: clamp(40px, 4.5vw, 62px);
    font-weight: 400;
    color: var(--heading-soft);
    letter-spacing: -.04em;
    line-height: 1;
    margin-top: 12px;
}

/* ─── DIRECTORS ──────────────────────────────────────────────────────────── */
.directors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.director-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.07);
    transition: box-shadow .3s ease, transform .3s ease;
}

.director-card:hover { box-shadow: 0 20px 50px rgba(0,55,124,.12); transform: translateY(-4px); }
.director-card-inner { display: flex; }

.director-photo-wrap {
    width: 200px;
    min-width: 200px;
    background: var(--brand-soft);
    position: relative;
    overflow: hidden;
    align-self: stretch;
}

.director-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    position: absolute;
    inset: 0;
}

.director-info {
    padding: 32px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.director-badge {
    display: inline-flex;
    align-items: center;
    background: var(--brand-soft-2);
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    width: fit-content;
}

.director-info h3 {
    font-size: clamp(17px, 1.5vw, 21px);
    font-weight: 600;
    color: var(--heading-soft);
    letter-spacing: -.02em;
    line-height: 1.2;
    margin: 0;
}

.director-title { font-size: 13px; color: var(--brand); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin: 0; }
.director-bio { font-size: 14px; line-height: 1.78; color: var(--text-soft); margin: 0; }

.director-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.director-tags span { font-size: 12px; font-weight: 600; color: var(--heading-soft); background: #f0f3f8; padding: 4px 12px; border-radius: 999px; }

/* ─── ADVISORS ───────────────────────────────────────────────────────────── */
.advisors-section { padding: 96px 0; background: var(--bg); }
.advisors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.advisor-card {
    border: 1.5px solid #ececec;
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}

.advisor-card:hover { box-shadow: 0 20px 50px rgba(0,55,124,.12); transform: translateY(-4px); }

.advisor-icon { width: 58px; height: 58px; border-radius: 14px; background: var(--brand-soft-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.advisor-info h3 { font-size: 18px; font-weight: 600; color: var(--heading-soft); margin: 0 0 6px; letter-spacing: -.01em; }
.advisor-role { font-size: 12px; color: var(--brand); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 12px; }
.advisor-info p:last-child { font-size: 14px; line-height: 1.72; color: var(--text-soft); margin: 0; }

/* ─── OUR TEAM PAGE ──────────────────────────────────────────────────────── */
.ot-intro-section { padding: 96px 0 80px; background: var(--bg); }
.ot-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.ot-intro-copy .service-category { margin-bottom: 12px; }

.ot-intro-copy h2 {
    font-size: clamp(36px, 3.8vw, 54px);
    font-weight: 400;
    color: var(--heading-soft);
    letter-spacing: -.04em;
    line-height: 1.08;
    margin-bottom: 26px;
}

.ot-intro-copy p { font-size: clamp(15px, 1.05vw, 17px); line-height: 1.85; color: var(--text-soft); margin-bottom: 18px; }

.ot-disciplines { padding-top: 8px; }
.ot-disciplines-label { font-size: 12px; font-weight: 700; letter-spacing: .14em; color: var(--text-soft); text-transform: uppercase; margin-bottom: 22px; }
.ot-discipline-list { display: flex; flex-direction: column; gap: 0; }

.ot-disc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #edf0f4;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

.ot-disc-item:first-child { border-top: 1px solid #edf0f4; }
.ot-disc-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--brand-soft-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.ot-team-section { padding: 96px 0; background: #f4f4f1; }
.ot-section-head { margin-bottom: 52px; }

.ot-section-head h2 {
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    color: var(--heading-soft);
    letter-spacing: -.04em;
    line-height: 1;
    margin-top: 12px;
}

.ot-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.ot-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    transition: box-shadow .3s ease, transform .3s ease;
}

.ot-card:hover { box-shadow: 0 20px 50px rgba(0,55,124,.12); transform: translateY(-4px); }

.ot-card-photo {
    position: relative;
    background: linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 100%);
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 4;
}

.ot-card-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }

.ot-card-photo-fallback {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    font-weight: 300;
    color: rgba(255,255,255,.45);
    letter-spacing: .1em;
}

.ot-card-accent {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f0c53a 0%, rgba(240,197,58,0) 100%);
    z-index: 2;
}

.ot-card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 6px; }
.ot-card-desc { font-size: 13px; line-height: 1.65; color: var(--text-soft); margin: 6px 0 0; }
.ot-card-body h3 { font-size: clamp(14px, 1.1vw, 16px); font-weight: 600; color: var(--heading-soft); letter-spacing: -.01em; line-height: 1.3; margin: 0; }
.ot-card-role { font-size: 11px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .06em; margin: 0; line-height: 1.5; }

.ot-values-band { background: var(--brand); padding: 60px 0; }
.ot-values-grid { display: flex; align-items: center; justify-content: space-between; gap: 0; }
.ot-value { flex: 1; text-align: center; padding: 0 24px; }
.ot-value-num { display: block; font-size: clamp(38px, 4vw, 58px); font-weight: 300; color: #fff; letter-spacing: -.05em; line-height: 1; margin-bottom: 10px; }
.ot-value-label { display: block; font-size: 12px; color: rgba(255,255,255,.68); text-transform: uppercase; letter-spacing: .1em; font-weight: 500; line-height: 1.4; }
.ot-value-divider { width: 1px; height: 60px; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* ─── CONTACT US PAGE ────────────────────────────────────────────────────── */
.ct-main-section { padding: 96px 0 80px; background: var(--bg); }
.ct-main-grid { display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: start; }

.ct-form-col .service-category { margin-bottom: 12px; }
.ct-form-col h2 { font-size: clamp(36px, 3.8vw, 52px); font-weight: 400; color: var(--heading-soft); letter-spacing: -.04em; line-height: 1.06; margin-bottom: 16px; }
.ct-form-intro { font-size: 16px; line-height: 1.7; color: var(--text-soft); margin-bottom: 40px; }

.ct-alert { padding: 14px 20px; border-radius: 12px; font-size: 15px; font-weight: 500; margin-bottom: 28px; border: 1.5px solid; }
.ct-alert-success { background: #edfaf3; color: #1a7f4b; border-color: #6fcfa0; }
.ct-alert-error   { background: #fef2f2; color: #b91c1c; border-color: #fca5a5; }

.ct-form { display: flex; flex-direction: column; gap: 22px; }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ct-field-group { display: flex; flex-direction: column; gap: 8px; }
.ct-field-group label { font-size: 13px; font-weight: 600; color: var(--heading-soft); letter-spacing: .02em; }
.ct-required { color: var(--brand); }

.ct-field-group input,
.ct-field-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #d8dfe8;
    border-radius: 12px;
    font-size: 15px;
    color: var(--text);
    background: #fafbfd;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
    outline: none;
    font-family: inherit;
    resize: none;
}

.ct-field-group input::placeholder,
.ct-field-group textarea::placeholder { color: #aab3bc; }

.ct-field-group input:focus,
.ct-field-group textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,55,124,.10); background: #fff; }

.ct-select-wrap { position: relative; }

.ct-select-wrap select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #d8dfe8;
    border-radius: 12px;
    font-size: 15px;
    color: var(--text);
    background: #fafbfd;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
    font-family: inherit;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.ct-select-wrap select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,55,124,.10); background: #fff; }
.ct-select-arrow { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); pointer-events: none; display: flex; align-items: center; }

.ct-checkbox-group { margin-top: 4px; }
.ct-checkbox-label { display: flex; align-items: flex-start; gap: 14px; cursor: pointer; }
.ct-checkbox-label input[type="checkbox"] { display: none; }

.ct-checkbox-box {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1.5px solid #d8dfe8;
    border-radius: 6px;
    background: #fafbfd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    margin-top: 1px;
}

.ct-checkbox-label input[type="checkbox"]:checked + .ct-checkbox-box { background: var(--brand); border-color: var(--brand); }
.ct-checkbox-label input[type="checkbox"]:checked + .ct-checkbox-box::after { content: ""; display: block; width: 5px; height: 7px; border: 2px solid #fff; border-top: none; border-left: none; transform: rotate(45deg) translateY(-1px); }
.ct-checkbox-text { font-size: 13px; color: var(--text-soft); line-height: 1.6; }

.ct-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 18px 28px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
    width: 100%;
    font-family: inherit;
}

.ct-submit-btn:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,55,124,.22); }
.ct-submit-arrow { font-size: 22px; transition: transform .3s ease; }
.ct-submit-btn:hover .ct-submit-arrow { transform: translateX(5px); }

.ct-details-col { display: flex; flex-direction: column; gap: 24px; position: sticky; top: calc(var(--nav-h) + 24px); }

.ct-info-card { background: var(--brand); border-radius: 24px; padding: 36px 32px; color: #fff; }
.ct-info-card .service-category { color: #f0c53a !important; margin-bottom: 10px; }
.ct-info-card h3 { font-size: clamp(22px, 2vw, 28px); font-weight: 400; color: #fff; letter-spacing: -.03em; line-height: 1.2; margin-bottom: 30px; }
.ct-info-list { display: flex; flex-direction: column; gap: 0; }
.ct-info-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.ct-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.ct-info-item:first-child { padding-top: 0; }
.ct-info-icon { width: 42px; height: 42px; min-width: 42px; border-radius: 12px; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; }
.ct-info-icon svg path, .ct-info-icon svg circle, .ct-info-icon svg rect { stroke: #fff; }
.ct-info-content { display: flex; flex-direction: column; gap: 4px; }
.ct-info-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .12em; margin: 0; }
.ct-info-value { font-size: 14px; color: rgba(255,255,255,.92); line-height: 1.6; margin: 0; }
.ct-info-link { font-size: 14px; color: rgba(255,255,255,.92); text-decoration: none; transition: color .2s ease; display: block; margin: 0; }
.ct-info-link:hover { color: #f0c53a; }

.ct-reg-card { background: #f4f4f1; border-radius: 16px; padding: 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.ct-reg-label { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: .12em; text-transform: uppercase; margin: 0; }
.ct-reg-value { font-size: 14px; color: var(--heading-soft); line-height: 1.65; font-weight: 500; margin: 0; }

.ct-quick-links { display: flex; flex-direction: column; gap: 12px; }
.ct-quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ct-quick-item { display: flex; align-items: center; gap: 10px; padding: 13px 16px; background: #fff; border: 1.5px solid rgba(0,55,124,.1); border-radius: 12px; font-size: 13px; font-weight: 600; color: var(--heading-soft); text-decoration: none; transition: all .25s ease; }
.ct-quick-item:hover { border-color: var(--brand); background: var(--brand-soft-2); color: var(--brand); }
.ct-quick-arrow { color: var(--brand); font-size: 16px; transition: transform .25s ease; }
.ct-quick-item:hover .ct-quick-arrow { transform: translateX(3px); }

.ct-consent-error { font-size: 13px; color: #b91c1c; background: #fef2f2; border: 1.5px solid #fca5a5; border-radius: 8px; padding: 10px 14px; margin-top: 10px; display: block; }

.ct-cert-strip { background: #f4f4f1; padding: 36px 0; border-top: 1px solid #e8ecf0; }
.ct-cert-label { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.ct-cert-items { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 0; }
.ct-cert-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--heading-soft); }
.ct-cert-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }
.ct-cert-sep { color: #c5cdd5; font-size: 18px; padding: 0 14px; line-height: 1; }

.ct-map-section { background: var(--bg); padding-bottom: 0; }
.ct-map-head { padding-top: 80px; padding-bottom: 40px; }
.ct-map-head .service-category { margin-bottom: 12px; }
.ct-map-head h2 { font-size: clamp(36px, 3.8vw, 52px); font-weight: 400; color: var(--heading-soft); letter-spacing: -.04em; line-height: 1; margin-bottom: 14px; }
.ct-map-head p { font-size: 16px; color: var(--text-soft); line-height: 1.7; max-width: 560px; }
.ct-map-wrap { position: relative; overflow: hidden; }
.ct-map-wrap iframe { display: block; filter: grayscale(15%); }
.ct-map-overlay { position: absolute; bottom: 28px; left: 28px; background: #fff; border-radius: 16px; padding: 16px 20px; display: flex; align-items: center; gap: 14px; box-shadow: 0 8px 28px rgba(0,0,0,.14); max-width: 300px; }
.ct-map-pin { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: var(--brand-soft-2); display: flex; align-items: center; justify-content: center; }
.ct-map-overlay-name { font-size: 14px; font-weight: 700; color: var(--heading-soft); margin: 0 0 4px; line-height: 1.3; }
.ct-map-overlay-addr { font-size: 12px; color: var(--text-soft); margin: 0; line-height: 1.4; }

/* ─── BOOK TOUR PAGE ─────────────────────────────────────────────────────── */
.bt-expect-section { padding: 96px 0 80px; background: var(--bg); }
.bt-expect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.bt-expect-copy .service-category { margin-bottom: 12px; }
.bt-expect-copy h2 { font-size: clamp(36px, 3.8vw, 52px); font-weight: 400; color: var(--heading-soft); letter-spacing: -.04em; line-height: 1.08; margin-bottom: 24px; }
.bt-expect-copy p { font-size: clamp(15px, 1.05vw, 17px); line-height: 1.85; color: var(--text-soft); margin-bottom: 16px; }

.bt-expect-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.bt-expect-card { background: #f4f4f1; border-radius: 18px; padding: 26px 24px; display: flex; flex-direction: column; gap: 10px; transition: box-shadow .3s ease, transform .3s ease; }
.bt-expect-card:hover { box-shadow: 0 12px 32px rgba(0,55,124,.10); transform: translateY(-3px); }
.bt-expect-num { font-size: 13px; font-weight: 700; color: #f0c53a; letter-spacing: .1em; }
.bt-expect-card h3 { font-size: 16px; font-weight: 600; color: var(--heading-soft); letter-spacing: -.01em; line-height: 1.3; margin: 0; }
.bt-expect-card p { font-size: 13.5px; line-height: 1.72; color: var(--text-soft); margin: 0; }

.bt-form-section { padding: 0 0 96px; background: var(--bg); }
.bt-form-grid { display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: start; }
.bt-form-col .service-category { margin-bottom: 12px; }
.bt-form-col h2 { font-size: clamp(34px, 3.5vw, 48px); font-weight: 400; color: var(--heading-soft); letter-spacing: -.04em; line-height: 1.08; margin-bottom: 14px; }
.bt-form-intro { font-size: 15px; line-height: 1.75; color: var(--text-soft); margin-bottom: 36px; }

.bt-alert { padding: 14px 20px; border-radius: 12px; font-size: 15px; font-weight: 500; margin-bottom: 28px; border: 1.5px solid; }
.bt-alert-success { background: #edfaf3; color: #1a7f4b; border-color: #6fcfa0; }
.bt-alert-error   { background: #fef2f2; color: #b91c1c; border-color: #fca5a5; }

.bt-form-section-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1.5px solid var(--brand-soft-2); }

.bt-form { display: flex; flex-direction: column; gap: 20px; }
.bt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.bt-field-group { display: flex; flex-direction: column; gap: 8px; }
.bt-field-group label { font-size: 13px; font-weight: 600; color: var(--heading-soft); letter-spacing: .02em; }
.bt-required { color: var(--brand); }

.bt-field-group input,
.bt-field-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #d8dfe8;
    border-radius: 12px;
    font-size: 14px;
    color: var(--text);
    background: #fafbfd;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
    outline: none;
    font-family: inherit;
    resize: none;
}

.bt-field-group input::placeholder,
.bt-field-group textarea::placeholder { color: #aab3bc; }
.bt-field-group input:focus, .bt-field-group textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,55,124,.10); background: #fff; }
.bt-field-group input[type="date"] { color: var(--text); cursor: pointer; }
.bt-field-group input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.5; cursor: pointer; }

.bt-select-wrap { position: relative; }
.bt-select-wrap select { width: 100%; padding: 13px 16px; border: 1.5px solid #d8dfe8; border-radius: 12px; font-size: 14px; color: var(--text); background: #fafbfd; appearance: none; -webkit-appearance: none; cursor: pointer; outline: none; font-family: inherit; transition: border-color .25s ease, box-shadow .25s ease; }
.bt-select-wrap select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,55,124,.10); background: #fff; }
.bt-select-arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; display: flex; align-items: center; }

.bt-checkbox-group { margin-top: 6px; }
.bt-checkbox-label { display: flex; align-items: flex-start; gap: 14px; cursor: pointer; }
.bt-checkbox-label input[type="checkbox"] { display: none; }
.bt-checkbox-box { width: 20px; height: 20px; min-width: 20px; border: 1.5px solid #d8dfe8; border-radius: 6px; background: #fafbfd; display: flex; align-items: center; justify-content: center; transition: all .2s ease; margin-top: 1px; }
.bt-checkbox-label input[type="checkbox"]:checked + .bt-checkbox-box { background: var(--brand); border-color: var(--brand); }
.bt-checkbox-label input[type="checkbox"]:checked + .bt-checkbox-box::after { content: ""; display: block; width: 5px; height: 9px; border: 2px solid #fff; border-top: none; border-left: none; transform: rotate(45deg) translateY(-1px); }
.bt-checkbox-text { font-size: 13px; color: var(--text-soft); line-height: 1.6; }

.bt-submit-btn { display: flex; align-items: center; justify-content: center; padding: 18px 28px; background: var(--brand); color: #fff; border: none; border-radius: 14px; font-size: 16px; font-weight: 600; cursor: pointer; transition: background .3s ease, transform .3s ease, box-shadow .3s ease; width: 100%; font-family: inherit; letter-spacing: .02em; }
.bt-submit-btn:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,55,124,.22); }
.bt-consent-error { font-size: 13px; color: #b91c1c; background: #fef2f2; border: 1.5px solid #fca5a5; border-radius: 8px; padding: 10px 14px; margin-top: 8px; display: block; }

.bt-info-col { display: flex; flex-direction: column; gap: 24px; position: sticky; top: calc(var(--nav-h) + 24px); }
.bt-info-card { background: var(--brand); border-radius: 24px; padding: 32px 28px; color: #fff; }
.bt-info-card h3 { font-size: 22px; font-weight: 400; color: #fff; letter-spacing: -.02em; margin-bottom: 26px; margin-top: 8px; }
.bt-info-list { display: flex; flex-direction: column; gap: 0; }
.bt-info-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.bt-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.bt-info-item:first-child { padding-top: 0; }
.bt-info-icon { width: 38px; height: 38px; min-width: 38px; border-radius: 10px; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bt-info-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em; margin: 0 0 4px; }
.bt-info-value { font-size: 13.5px; color: rgba(255,255,255,.88); line-height: 1.6; margin: 0; }

.bt-alt-contact { background: #f4f4f1; border-radius: 16px; padding: 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.bt-alt-label { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: .12em; text-transform: uppercase; margin: 0; }
.bt-alt-text { font-size: 13px; color: var(--text-soft); line-height: 1.5; margin: 0; }
.bt-alt-phones { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.bt-alt-phone { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--brand); text-decoration: none; transition: color .2s ease; }
.bt-alt-phone:hover { color: var(--brand-dark); }

.bt-projects-teaser { padding: 80px 0 96px; background: #f4f4f1; position: relative; overflow: hidden; }
.bt-projects-teaser::before { content: ""; position: absolute; top: 0; bottom: 0; right: 0; width: max(calc((100vw - min(1320px, calc(100vw - 64px))) / 2 + 460px), 80px); background-image: radial-gradient(rgba(200,203,206,.95) 1.7px, transparent 1.7px); background-size: 34px 34px; background-position: right top; pointer-events: none; z-index: 0; }
.bt-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.bt-teaser-grid .service-category { margin-bottom: 12px; }
.bt-teaser-grid h2 { font-size: clamp(34px, 3.5vw, 48px); font-weight: 400; color: var(--heading-soft); letter-spacing: -.04em; line-height: 1.08; margin-bottom: 18px; }
.bt-teaser-grid p { font-size: 15px; line-height: 1.8; color: var(--text-soft); margin-bottom: 0; }
.bt-teaser-stats { display: flex; flex-direction: column; gap: 0; background: var(--brand); border-radius: 20px; padding: 12px 0; overflow: hidden; }
.bt-teaser-stat { padding: 28px 36px; border-bottom: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; gap: 8px; }
.bt-teaser-stat:last-child { border-bottom: none; }
.bt-teaser-num { font-size: clamp(38px, 4vw, 52px); font-weight: 300; color: #fff; letter-spacing: -.05em; line-height: 1; }
.bt-teaser-label { font-size: 12px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .1em; font-weight: 500; }



/* ─── PROJECTS PAGE ──────────────────────────────────────────────────────── */
.projects-page { padding: 72px 0 96px; background: var(--bg); }

/* Status nav tabs */
.projects-status-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 32px;
    border-bottom: 2px solid #e8ecf2;
    padding-bottom: 0;
}

.status-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-soft);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color .2s ease, border-color .2s ease;
    white-space: nowrap;
}

.status-nav-btn:hover { color: var(--brand); }

.status-nav-btn.active {
    color: var(--brand);
    border-bottom-color: var(--brand);
}

.status-nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f0c53a;
    flex-shrink: 0;
    animation: badgePulse 1.8s ease-in-out infinite;
}

.status-nav-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    background: #eef0f5;
    color: var(--text-soft);
}

.status-nav-btn.active .status-nav-count {
    background: var(--brand-soft-2);
    color: var(--brand);
}

/* Active filter indicator */
.projects-filter-active {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding: 10px 16px;
    background: var(--brand-soft-2);
    border-radius: 10px;
    font-size: 13px;
    color: var(--heading-soft);
}

.projects-filter-active a {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    margin-left: auto;
}

/* View all link in section head */
.section-view-all {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .2s ease;
}

.section-view-all:hover { opacity: .75; }

/* Filter bar */
.projects-filter-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 52px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8ecf2;
}

.projects-filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-right: 4px;
    white-space: nowrap;
}

.filter-divider {
    width: 1px;
    height: 28px;
    background: #dde2ea;
    flex-shrink: 0;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1.5px solid #dde2ea;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-soft);
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-soft-2);
}

.filter-btn.active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.filter-btn .filter-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    opacity: .7;
    flex-shrink: 0;
}

.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(255,255,255,.25);
    color: inherit;
}

.filter-btn:not(.active) .filter-count {
    background: #eef0f5;
    color: var(--text-soft);
}

/* Projects section heading */
.projects-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.projects-section-head h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    color: var(--heading-soft);
    letter-spacing: -.03em;
    line-height: 1;
}

.projects-section-head .section-count {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-soft);
    white-space: nowrap;
}

/* Projects grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Project card */
.project-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #12202b;
    display: block;
    text-decoration: none;
    aspect-ratio: 4 / 5;
    transition: transform .35s ease, box-shadow .35s ease;
}

.project-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,.22); }

.project-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .6s ease;
}

.project-card:hover img { transform: scale(1.05); }

.project-card-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a3a5c, #0c1b2e);
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0,0,0,.04) 0%,
        rgba(0,0,0,.15) 35%,
        rgba(0,0,0,.72) 100%
    );
    z-index: 1;
    transition: background .35s ease;
}

.project-card:hover .project-card-overlay {
    background: linear-gradient(180deg,
        rgba(0,0,0,.10) 0%,
        rgba(0,0,0,.25) 35%,
        rgba(0,0,0,.82) 100%
    );
}

.project-card-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
}

.project-card-top {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.project-status-badge.ongoing {
    background: rgba(240,197,58,.18);
    color: #f0c53a;
    border: 1px solid rgba(240,197,58,.35);
}

.project-status-badge.completed {
    background: rgba(255,255,255,.14);
    color: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.22);
}

.project-status-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.project-status-badge.ongoing .badge-dot {
    animation: badgePulse 1.8s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}

.project-card-cat {
    font-size: 10px;
    font-weight: 700;
    color: #f0c53a;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.project-card-title {
    color: #fff;
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: -.01em;
    margin: 0 0 10px;
}

.project-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.project-card-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255,255,255,.7);
    font-weight: 500;
}

.project-card-arrow {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background .25s ease, transform .25s ease;
    opacity: 0;
    transform: translateY(8px);
}

.project-card:hover .project-card-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* Empty state */
.projects-empty {
    text-align: center;
    padding: 80px 24px;
    color: var(--text-soft);
}

.projects-empty h3 {
    font-size: 22px;
    font-weight: 400;
    color: var(--heading-soft);
    margin-bottom: 12px;
}

.projects-empty p { font-size: 16px; line-height: 1.7; }

/* Status section divider */
.projects-status-block { margin-bottom: 72px; }
.projects-status-block:last-child { margin-bottom: 0; }

/* ─── PROJECT DETAIL PAGE ────────────────────────────────────────────────── */
.pd-hero {
    position: relative;
    height: 72vh;
    min-height: 480px;
    max-height: 780px;
    overflow: hidden;
    background: #0b1318;
}

.pd-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pd-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0,0,0,.20) 0%,
        rgba(0,0,0,.12) 40%,
        rgba(0,0,0,.68) 100%
    );
}

.pd-hero-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a3a5c, #0c1b2e);
}

.pd-hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding-bottom: 48px;
}

.pd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pd-breadcrumb a,
.pd-breadcrumb span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: color .2s ease;
}

.pd-breadcrumb a:hover { color: #fff; }
.pd-breadcrumb .sep { color: rgba(255,255,255,.35); }
.pd-breadcrumb .current { color: rgba(255,255,255,.9); }

.pd-hero-cat {
    font-size: 11px;
    font-weight: 700;
    color: #f0c53a;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.pd-hero h1 {
    color: #fff;
    font-size: clamp(32px, 5vw, 68px);
    line-height: 1.02;
    font-weight: 300;
    letter-spacing: -.04em;
    max-width: 900px;
    margin-bottom: 20px;
}

.pd-hero-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Detail body */
.pd-body { padding: 72px 0 96px; }

.pd-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
}

/* Left — description + gallery */
.pd-description {
    font-size: clamp(16px, 1.1vw, 18px);
    line-height: 1.85;
    color: var(--text-soft);
    margin-bottom: 52px;
}

.pd-gallery-head {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 20px;
}

.pd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.pd-gallery-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.pd-gallery-item {
    border-radius: 14px;
    overflow: hidden;
    background: #edf0f4;
    aspect-ratio: 4 / 3;
}

.pd-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}

.pd-gallery-item:hover img { transform: scale(1.04); }

/* Right — info sidebar */
.pd-sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 24px);
}

.pd-info-card {
    background: #f4f4f1;
    border-radius: 20px;
    padding: 32px 28px;
    margin-bottom: 20px;
}

.pd-info-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--heading-soft);
    letter-spacing: .02em;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .14em;
}

.pd-info-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid #e4e8ee;
}

.pd-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.pd-info-row:first-of-type { padding-top: 0; }

.pd-info-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: .12em;
}

.pd-info-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-soft);
    line-height: 1.4;
}

/* Status inside sidebar */
.pd-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
}

.pd-status-pill.ongoing {
    background: rgba(240,197,58,.14);
    color: #b8900e;
}

.pd-status-pill.completed {
    background: rgba(0,55,124,.08);
    color: var(--brand);
}

.pd-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

/* Related projects */
.pd-related { padding: 72px 0 96px; background: #f4f4f1; }

.pd-related-head { margin-bottom: 36px; }

.pd-related-head h2 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    color: var(--heading-soft);
    letter-spacing: -.03em;
}

.pd-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ─── PROJECTS PAGE RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-layout { grid-template-columns: 1fr 300px; gap: 48px; }
    .pd-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .projects-page { padding: 48px 0 72px; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .projects-status-nav { gap: 0; margin-bottom: 24px; }
    .status-nav-btn { padding: 10px 14px; font-size: 13px; }
    .projects-filter-bar { gap: 8px; margin-bottom: 36px; }
    .pd-layout { grid-template-columns: 1fr; gap: 0; }
    .pd-sidebar { position: static; margin-top: 48px; }
    .pd-body { padding: 48px 0 72px; }
    .pd-hero { height: 56vh; min-height: 360px; }
    .pd-related-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .pd-related { padding: 52px 0 72px; }
    .pd-gallery-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .projects-grid { grid-template-columns: 1fr; gap: 16px; }
    .project-card { aspect-ratio: 3 / 4; }
    .projects-filter-bar { gap: 6px; margin-bottom: 28px; }
    .filter-btn { padding: 7px 13px; font-size: 12px; }
    .filter-divider { display: none; }
    .status-nav-btn { padding: 8px 12px; font-size: 12px; }
    .projects-filter-active { flex-wrap: wrap; }
    .pd-hero { height: 50vh; min-height: 320px; }
    .pd-hero h1 { font-size: clamp(26px, 8vw, 42px); }
    .pd-hero-content { padding-bottom: 32px; }
    .pd-body { padding: 36px 0 60px; }
    .pd-gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .pd-gallery-grid.cols-3 { grid-template-columns: 1fr 1fr; }
    .pd-info-card { padding: 24px 20px; }
    .pd-related-grid { grid-template-columns: 1fr; }
    .pd-related { padding: 40px 0 60px; }
    .project-card-arrow { opacity: 1; transform: translateY(0); }
    .projects-section-head { flex-direction: column; gap: 4px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── 1200px ──────────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(300px, 360px); gap: 34px; }
    .hero-copy { padding-bottom: 34px; }
    .hero-copy h1 { font-size: clamp(64px, 9vw, 96px); }
    .hero-card-stack { width: min(100%, 350px); flex-basis: 350px; }
    .hero-side-arrow-left  { left:  calc(50% - 228px); }
    .hero-side-arrow-right { right: calc(50% - 228px); }
    .feature-media img { height: 580px; }
    .history-grid { grid-template-columns: 1fr 100px minmax(360px, 480px); gap: 32px; }
    .history-highlight { min-height: 680px; }
    .history-highlight h3 { font-size: 44px; }
    .ct-main-grid { grid-template-columns: 1fr 380px; gap: 56px; }
    .bt-form-grid { grid-template-columns: 1fr 360px; gap: 56px; }
    .ot-team-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .directors-grid { grid-template-columns: 1fr; }
    .team-intro-section::after { display: none; }
}

/* ─── 1100px ──────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .team-intro-grid { grid-template-columns: 1fr; gap: 48px; }
    .team-intro-stats { flex-direction: row; justify-content: space-around; flex-wrap: wrap; padding: 32px 24px; }
    .team-stat { flex: 1; min-width: 140px; }
    .team-stat-divider { display: none; }
}

/* ─── 991px ───────────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .container { width: min(var(--max), calc(100% - 36px)); }

    .nav-center, .nav-actions { display: none; }
    .nav-toggle { display: flex; }

    .mobile-nav {
        display: block;
        position: fixed;
        top: calc(var(--nav-h) + 4px);
        left: 0;
        width: 100%;
        background: rgba(255,255,255,.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 18px 40px rgba(0,0,0,.12);
        padding: 18px;
        transform: translateY(-14px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 1090;
    }

    .navbar.menu-open .mobile-nav { transform: translateY(0); opacity: 1; visibility: visible; }

    .mobile-nav a,
    .mobile-nav button { display: block; width: 100%; text-align: left; padding: 14px 0; border: none; background: none; color: #203846; font-size: 15px; font-weight: 600; }
    .mobile-nav .mobile-submenu { padding-left: 14px; }
    .mobile-nav .mobile-submenu a { font-size: 14px; font-weight: 500; color: #4c6470; padding: 10px 0; }

    .hero { min-height: auto; }
    .hero-inner { grid-template-columns: 1fr; gap: 26px; min-height: auto; padding-top: 98px; padding-bottom: 34px; }
    .hero-copy { padding-bottom: 0; max-width: 100%; }
    .hero-copy h1 { font-size: clamp(54px, 14vw, 82px); margin-bottom: 22px; }
    .hero-copy p { max-width: 100%; font-size: 16px; }
    .hero-card-zone { justify-content: flex-start; min-height: auto; padding-bottom: 0; }
    .hero-card-stack { width: min(100%, 360px); flex-basis: auto; }
    .hero-card-shadow { top: 12px; left: -12px; }
    .hero-side-arrow { display: none; }

    .split-feature,
    .split-feature.reverse,
    .overlay-banner-grid,
    .history-grid,
    .footer-bottom { grid-template-columns: 1fr; }

    /* Text first, image second on all split-feature sections on mobile */
    .split-feature { display: flex; flex-direction: column; }
    .split-feature .feature-text { order: 1; padding-top: 32px; }
    .split-feature .feature-media { order: 2; padding-top: 0; }
    .split-feature .feature-text + .feature-text { padding-top: 0; }

    .feature-media { min-height: auto; height: auto; padding-top: 0; }
    .feature-media { width: 100%; }
    .feature-media img { height: 260px; width: 100%; margin-top: 8px; border-radius: 14px; object-fit: cover; }

    .dots-sides-only::before,
    .dots-sides-only::after { width: 120px; background-size: 24px 24px; }

    .overlay-banner { min-height: 560px; }

    .history-years { padding-top: 0; }
    .history-years ul { flex-direction: row; flex-wrap: wrap; gap: 8px; }
    .history-years li { padding-left: 16px; font-size: 14px; }
    .history-years li.active { padding: 8px 16px 8px 28px; }
    .history-years li.active::before { left: 12px; }
    .history-highlight { min-height: 520px; }

    .fp-slider-wrap { padding-left: 18px; }
    .fp-card { flex: 0 0 300px; height: 440px; }

    .footer-main { grid-template-columns: 1fr; gap: 34px; }
    .footer-brand-block { max-width: 100%; margin-top: 0; }
    .footer-links-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .footer-copy { justify-self: start; }
    .footer-meta { justify-self: start; justify-content: flex-start; flex-wrap: wrap; text-align: left; }
    .socials { justify-self: start; justify-content: flex-start; }

    .project-gallery-grid { grid-template-columns: repeat(2, 1fr); }

    /* Services page mobile layout:
       category + title → full-width image → paragraph → button */
    .services-section {
        padding-bottom: 24px !important;
    }
    .services-section .split-feature {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    /* image slots between header and body via order */
    .services-section .split-feature .service-header { order: 1; }
    .services-section .split-feature .feature-media {
        order: 2;
        padding-top: 16px;
        width: 100%;
        margin-left: 0;
    }
    .services-section .split-feature .feature-media img {
        height: 260px;
        border-radius: 14px;
        margin: 0;
        width: 100%;
    }
    .services-section .split-feature .service-body { order: 3; padding-top: 20px; }

    /* Project highlight — paragraph → images → button */
    .project-highlight { padding: 28px 0; }
    .project-highlight .container {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .project-highlight-left { order: 1; flex-direction: column; gap: 16px; }
    .project-highlight-images { order: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .project-highlight-images img { height: 160px; }

    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .advisors-grid { grid-template-columns: 1fr; gap: 18px; }
    .advisors-section { padding: 72px 0; }

    .ot-intro-grid { grid-template-columns: 1fr; gap: 48px; }
    .ot-intro-section { padding: 72px 0 60px; }
    .ot-team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .ot-team-section { padding: 72px 0; }
    .ot-values-grid { flex-wrap: wrap; gap: 32px; justify-content: center; }
    .ot-value { flex: 0 0 40%; }
    .ot-value-divider { display: none; }
    .ot-values-band { padding: 48px 0; }

    .ct-main-grid { grid-template-columns: 1fr; gap: 52px; }
    .ct-details-col { position: static; }
    .ct-main-section { padding: 72px 0 60px; }

    .bt-expect-grid { grid-template-columns: 1fr; gap: 48px; }
    .bt-expect-section { padding: 72px 0 60px; }
    .bt-form-grid { grid-template-columns: 1fr; gap: 52px; }
    .bt-form-section { padding: 0 0 72px; }
    .bt-info-col { position: static; }
    .bt-projects-teaser::before { display: none; }
    .bt-teaser-grid { grid-template-columns: 1fr; gap: 40px; }
    .bt-teaser-stats { flex-direction: row; padding: 0; }
    .bt-teaser-stat { flex: 1; border-bottom: none; border-right: 1px solid rgba(255,255,255,.12); padding: 24px 20px; }
    .bt-teaser-stat:last-child { border-right: none; }
    .bt-projects-teaser { padding: 60px 0 72px; }

    .ct-cert-sep { display: none; }
    .ct-cert-items { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ─── 768px ───────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-shell { height: var(--nav-h); gap: 12px; }
    .nav-logo { flex: 0 0 auto; }
    .nav-logo img { width: 92px; }

    .feature-text h2,
    .projects-head h2,
    .history-copy h2,
    .centered-statement h2 { font-size: 38px; line-height: 1.08; }

    .feature-text p,
    .overlay-banner p,
    .history-copy p,
    .project-content p { font-size: 16px; }

    .centered-statement { max-width: 100%; padding-left: 0; padding-right: 0; }
    .feature-link { font-size: 17px; }
    .feature-link .circle, .history-back .circle { width: 50px; height: 50px; flex-basis: 50px; }

    .footer { padding-top: 56px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ─── 640px ───────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    :root { --nav-h: 82px; }

    .container { width: min(var(--max), calc(100% - 24px)); }

    .hero-inner { padding-top: 88px; padding-bottom: 24px; }
    .hero-copy h1 { font-size: clamp(46px, 15vw, 68px); margin-bottom: 18px; }
    .hero-copy p { font-size: 16px; line-height: 1.6; }
    .hero-card-stack { width: 100%; max-width: 100%; }
    .hero-card-shadow { top: 10px; left: -10px; }
    .hero-card-media { height: 160px; padding: 14px 14px 0 14px; }
    .hero-card-media img { border-radius: 16px; }
    .hero-card-body { padding: 16px; }
    .hero-card-body h3 { min-height: auto; font-size: 16px; margin-bottom: 12px; }
    .hero-dot { width: 10px; height: 10px; }
    .hero-dot.active { width: 58px; }
    .hero-card-arrow { width: 58px; height: 58px; flex-basis: 58px; font-size: 28px; }

    .section { padding: 0 0 72px; }
    .feature-text { padding-top: 28px; margin-top: 0; }
    .feature-media img { height: 220px; margin-top: 8px; border-radius: 12px; }

    .dots-sides-only::before,
    .dots-sides-only::after { width: 88px; background-size: 20px 20px; }

    .centered-statement { padding-top: 72px; }

    .featured-projects-section { padding: 80px 0 70px; }
    .fp-slider-wrap { padding-left: 12px; }
    .fp-card { flex: 0 0 calc(100vw - 48px); height: 420px; }
    .fp-card:hover .fp-card-desc { max-height: 80px; }

    .history-copy h2 { font-size: 46px; }
    .history-copy p { font-size: 16px; }
    .history-years ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .history-years li { padding-left: 0; text-align: center; font-size: 13px; width: 100%; }
    .history-years li::before { display: none; }
    .history-years li.active { padding: 8px 12px; border-radius: 999px; text-align: center; }
    .history-years li.active::before { display: none; }
    .history-highlight { min-height: 460px; }
    .history-highlight-content { left: 20px; right: 20px; bottom: 20px; }
    .history-highlight h3 { font-size: 34px; }
    .history-highlight p { font-size: 15px; max-width: 100%; }
    .history-card-arrow { width: 52px; height: 52px; font-size: 24px; }

    .footer { padding: 38px 0 22px; }
    .footer .container { width: min(1320px, calc(100% - 24px)); }
    .footer-logo img { width: 145px; }
    .footer-tagline { font-size: 15px; margin-bottom: 12px; }
    .footer-links-grid { grid-template-columns: 1fr; gap: 22px; }
    .footer-col h4 { margin-bottom: 12px; }
    .footer-col a { font-size: 15px; margin-bottom: 10px; }
    .footer-meta { flex-direction: column; align-items: flex-start; gap: 6px; }
    .socials a { width: 40px; height: 40px; font-size: 18px; }

    .project-gallery-grid { grid-template-columns: 1fr; }
    .project-gallery-item img { height: 240px; }
    .project-highlight-images { grid-template-columns: 1fr 1fr; grid-template-rows: unset; }
    .project-highlight-images img { height: 160px; }
    .services-section .split-feature .feature-media img { height: 200px; border-radius: 14px; }
    .project-highlight { padding: 24px 0; }
    .project-highlight-images { grid-template-columns: 1fr 1fr; gap: 10px; }
    .project-highlight-images img { height: 130px; }

    .values-grid { grid-template-columns: 1fr; gap: 18px; }
    .values-section { padding: 72px 0; }
    .stats-grid { grid-template-columns: 1fr; gap: 20px; }

    .team-intro-section { padding: 72px 0 60px; }
    .team-intro-stats { flex-direction: column; }
    .team-stat-divider { display: block; }

    .ot-team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .ot-card-photo { aspect-ratio: 4 / 5; }
    .ot-value { flex: 0 0 100%; }

    .director-card-inner { flex-direction: column; }
    .director-photo-wrap { width: 100%; min-width: unset; height: 200px; }
    .director-info { padding: 24px 20px; }

    .ct-form-row { grid-template-columns: 1fr; }
    .bt-form-row { grid-template-columns: 1fr; }
    .bt-expect-cards { grid-template-columns: 1fr; }
    .bt-teaser-stats { flex-direction: column; }
    .bt-teaser-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
    .bt-teaser-stat:last-child { border-bottom: none; }

    .ot-values-band { padding: 48px 0; }
}

/* ─── 480px ───────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .ot-value { flex: 0 0 100%; }
}

/* ─── 580px ───────────────────────────────────────────────────────────────── */
@media (max-width: 580px) {
    .bt-teaser-stats { flex-direction: column; }
    .bt-teaser-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
    .bt-teaser-stat:last-child { border-bottom: none; }
}