:root {
    --bg: #f3f7ff;
    --surface: #ffffff;
    --surface-2: #f5f8ff;
    --surface-alt: #ffffff;
    --surface-alt-2: #eef4ff;
    --charcoal: #0b3068;
    --stone: rgba(10, 43, 118, 0.1);
    --font-ui: Jost, sans-serif;;
    --font-display: "Cormorant Garamond", Jost, sans-serif;;
    --text: #fff;
    --muted: rgba(10, 56, 112, 0.68);
    --line: rgba(18, 95, 160, 0.14);
    --ink: rgba(10, 56, 112, 0.92);
    --muted-blue: rgba(10, 56, 112, 0.68);
    --muted-blue-2: rgba(23, 92, 176, 0.52);
    --border: rgba(18, 95, 160, 0.14);
    --border-strong: rgba(18, 95, 160, 0.20);
    --brand-rgb: 18 95 160;
    --brand-2-rgb: 10 56 112;
    --brand: rgb(var(--brand-rgb));
    --brand-2: rgb(var(--brand-2-rgb));
    --on-brand: #eef4ff;
    --on-dark-heading: rgba(255, 255, 255, 0.98);
    --on-dark-text: rgba(238, 244, 255, 0.82);
    --on-dark-muted: rgba(238, 244, 255, 0.68);
    --gold: #b8975a;
    --shadow: 0 18px 60px rgba(2, 12, 32, 0.10);
    --light-bg-1: #ffffff;
    --light-bg-2: #f5f8ff;
    --light-line: rgba(18, 95, 160, 0.12);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font-ui), "jost", "Segoe UI Emoji";
    color: var(--text);
    background:
        radial-gradient(1100px 650px at 12% -10%, rgb(var(--brand-rgb) / 0.10), transparent 60%),
        radial-gradient(900px 520px at 92% 0%, rgb(var(--brand-2-rgb) / 0.08), transparent 55%),
        var(--bg);
}

.section--divided {
    position: relative;
}

.section--divided::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(var(--brand-rgb) / 0.18), rgb(var(--brand-2-rgb) / 0.14), transparent);
}

.section--light {
    color: var(--text);
    background:
        radial-gradient(900px 520px at 12% 0%, rgb(var(--brand-rgb) / 0.06), transparent 62%),
        radial-gradient(900px 520px at 88% 25%, rgb(var(--brand-2-rgb) / 0.05), transparent 60%),
        linear-gradient(180deg, var(--light-bg-1), var(--light-bg-2));
}

.section--light.section--divided::before {
    background: linear-gradient(90deg, transparent, rgb(var(--brand-rgb) / 0.22), rgb(var(--brand-2-rgb) / 0.16), transparent);
}

.section--light {
    position: relative;
}

.section--light::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(231, 232, 234, 0.10), transparent);
    pointer-events: none;
}

.section--light::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.0), rgba(15, 23, 42, 0.06));
    pointer-events: none;
}




.section--light .seg-tabs,
.section--light .tab-panel,
.section--light .mini,
.section--light .cta,
.section--light .tab-media,
.section--light .tab-figure {
    box-shadow: var(--shadow);
}

.section--light .seg-tabs,
.section--light .tab-panel,
.section--light .mini,
.section--light .cta,
.section--light .tab-media,
.section--light .tab-figure {
    border-color: var(--line);
}

.section--light .seg-tabs {
    background: var(--muted-blue-2);
}

.section--light .seg-tab {
    color: var(--on-dark-muted);
}

.section--light .seg-tab:hover {
    background: rgba(15, 22, 32, 0.35);
    color: var(--text);
}

.section--light .seg-tab.is-active {
    color: var(--text);
    background:linear-gradient(135deg, var(--brand), var(--brand-2));
}

.section--light .tab-panel {
    background: var(--muted-blue-2);
}

.section--light .tab-panel__header {
    background: rgba(15, 22, 32, 0.32);
    border-bottom-color: var(--line);
}

.section--light .tab-media {
    background: rgba(15, 22, 32, 0.30);
}

.section--light .tab-meta {
    background: rgba(15, 22, 32, 0.30);
    border-top-color: var(--line);
    color: var(--muted);
}

.section--light .tab-arrow {
    border-color: var(--line);
    background: rgba(15, 22, 32, 0.35);
    color: var(--text);
}

.section--light .tab-arrow:hover {
    background: rgba(15, 22, 32, 0.55);
}

@media (prefers-reduced-motion: no-preference) {
    .tab-panel,
    .mini,
    .cta,
    .process__step {
        transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .tab-panel:hover,
    .mini:hover,
    .cta:hover,
    .process__step:hover {
        transform: translateY(-3px);
    }

    .tab-arrow {
        transition: transform 160ms ease, background 160ms ease;
    }

    .tab-arrow:hover {
        transform: translateY(-50%) scale(1.04);
    }
}

a { color: inherit; text-decoration: none; }

@keyframes runEdge {
    0% { opacity: 1; }
    100% { opacity: 1; }
}

@media (prefers-reduced-motion: no-preference) {
    .tab-panel,
    .mini,
    .cta,
    .process__step,
    .tab-media,
    .tab-figure,
    .feature {
        position: relative;
        isolation: isolate;
    }

    .tab-panel::before,
    .mini::before,
    .cta::before,
    .process__step::before,
    .tab-media::before,
    .tab-figure::before,
    .feature::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(
            90deg,
            rgb(var(--brand-2-rgb) / 0.10),
            rgb(var(--brand-rgb) / 0.75) 40%,
            rgb(var(--brand-rgb) / 0.75) 60%,
            rgb(var(--brand-2-rgb) / 0.10)
        );
        opacity: 0;
        z-index: 2;
        transition: opacity 160ms ease;
        filter: blur(0.2px);

        -webkit-mask: linear-gradient(180deg, transparent calc(100% - 3px), #000 calc(100% - 3px));
        mask: linear-gradient(180deg, transparent calc(100% - 3px), #000 calc(100% - 3px));
        pointer-events: none;
    }

    .tab-panel::after,
    .mini::after,
    .cta::after,
    .process__step::after,
    .tab-media::after,
    .tab-figure::after,
    .feature::after {
        content: '';
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: -18px;
        height: 46px;
        border-radius: 999px;
        background: radial-gradient(closest-side, rgb(var(--brand-rgb) / 0.26), transparent 70%);
        filter: blur(10px);
        opacity: 0;
        transform: translateY(6px);
        transition: opacity 220ms ease, transform 220ms ease;
        z-index: 1;
        pointer-events: none;
    }

    .tab-panel:hover::before,
    .mini:hover::before,
    .cta:hover::before,
    .process__step:hover::before,
    .tab-media:hover::before,
    .tab-figure:hover::before,
    .feature:hover::before {
        opacity: 1;
    }

    .tab-panel:hover::after,
    .mini:hover::after,
    .cta:hover::after,
    .process__step:hover::after,
    .tab-media:hover::after,
    .tab-figure:hover::after,
    .feature:hover::after {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

#collections .container {
    width: min(1344px, calc(100% - 40px));
}

.nav {
    background: rgba(255, 255, 255, 0.90);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 45px;
    gap: 10px;    
    transition: padding .35s ease, background .35s ease;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.nav.scrolled {
    padding: 10px 64px;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-strong);
    box-shadow: 0 18px 55px rgba(2, 12, 32, 0.10);
}

.nav-spacer {
    height: 64px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: .04em;
    white-space: nowrap;
    flex: 0 0 auto;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    color: var(--ink);
}

.nav-brand__mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.70);
    color: rgba(10, 56, 112, 0.85);
    overflow: hidden;
}

.nav-brand__logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nav-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.nav-brand__name {
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: .04em;
    font-weight: 500;
}

.nav-brand__sub {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: .10em;
    opacity: .72;
}

.nav-links {
    display: flex;
    font-family: var(--font-ui);
    font-style: normal;
    font-weight: 300;
    gap: clamp(16px, 2.2vw, 40px);
    list-style: none;
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    flex-wrap: nowrap;
    
}

.nav-toggle {
    display: none;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(232, 238, 247, 0.10);
    background: radial-gradient(120px 60px at 30% 20%, rgba(255, 255, 255, 0.06), transparent 55%),
        rgba(15, 22, 32, 0.28);
    padding: 0;
    border-radius: 18px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}

.nav-toggle__bar {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, .82);
    transform: translate(-50%, -50%);
    transition: transform .22s ease, opacity .18s ease, width .22s ease;
}

.nav-toggle__bar:nth-child(1) {
    transform: translate(-50%, calc(-50% - 7px));
}

.nav-toggle__bar:nth-child(2) {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.nav-toggle__bar:nth-child(3) {
    opacity: 1;
    transform: translate(-50%, calc(-50% + 7px));
}

.nav-menu {
    display: contents;
}

.nav-links a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted-blue);
    transition: color .2s;
}

.nav-links a:hover {
    color: rgba(10, 56, 112, 0.92);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.nav-call {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted-blue);
    transition: color .2s;
    white-space: nowrap;
}

.nav-call:hover {
    color: var(--ink);
}

.btn--gold {
    background: var(--brand);
    color: #ffffff;
    border-color: transparent;
    
    padding: 10px 18px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: 11px;
}

.btn--gold:hover {
    filter: brightness(1.04);
}

.nav-actions .btn {
    padding: 10px 40px;
   
}

@media (max-width: 700px) {
    .nav {
        padding: 14px 16px;
    }

    .nav.scrolled {
        padding: 10px 16px;
    }

    .nav-links {
        gap: 14px;
    }

    .nav-actions {
        gap: 8px;
    }

    .nav-actions .btn {
        padding: 9px 12px;
    }

    .nav-call {
        display: none;
    }
}

@media (max-width: 820px) {
    .nav {
        padding: 14px 16px;
        gap: 12px;
    }

    .nav.scrolled {
        padding: 10px 16px;
    }

    .nav-toggle {
        background: var(--brand);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;        
        color: #FFF;
    }

    .nav-menu {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: rgba(255, 255, 255, 0.96);
        border-bottom: 1px solid rgba(15, 23, 42, 0.10);
        padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
        box-shadow: 0 18px 55px rgba(2, 6, 23, 0.12);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-6px);
        pointer-events: none;
        transition: max-height .35s ease, opacity .25s ease, transform .25s ease;
    }

    .nav.nav-open .nav-menu {
        max-height: 70vh;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav.nav-open .nav-toggle__bar:nth-child(1) {
        width: 26px;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .nav.nav-open .nav-toggle__bar:nth-child(2) {
        opacity: 0;
    }

    .nav.nav-open .nav-toggle__bar:nth-child(3) {
        opacity: 1;
        width: 26px;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;
        padding: 6px 0 12px;
        letter-spacing: .18em;
    }

    .nav-links a {
        font-size: 12px;
        padding: 8px 4px;
    }

    .nav-call {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        padding: 8px 0 4px;
    }
}

@supports (padding: max(0px)) {
    .nav {
        padding-top: max(16px, env(safe-area-inset-top));
    }

    @media (max-width: 820px) {
        .nav {
            padding-top: max(14px, env(safe-area-inset-top));
        }

        .nav.scrolled {
            padding-top: max(10px, env(safe-area-inset-top));
        }
    }
}

@media (max-width: 820px) {
    .hero.hero--split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero.hero--split .hero-left {
        padding: 44px 18px 26px;
    }

    .hero.hero--split .hero-right {
        min-height: 320px;
    }

    .hero.hero--split .hero-img-main .photo-placeholder {
        width: calc(100% - 32px);
        height: 280px;
        margin: 16px;
    }

    .hero-split-highlights {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 18px;
        margin-top: 28px;
    }
}

.page-intro {
    padding: 22px 0 12px;
}

.page-intro__inner {
    display: flex;
    justify-content: center;
}

.page-intro__kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: rgba(232, 238, 247, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.3;
}

.page-intro__kicker::before {
    content: '';
    width: 64px;
    height: 1px;
    background: rgba(232, 238, 247, 0.38);
}

.page-intro__kicker::after {
    content: '';
    width: 64px;
    height: 1px;
    background: rgba(232, 238, 247, 0.38);
}

@media (max-width: 560px) {
    .page-intro__kicker {
        gap: 14px;
        letter-spacing: 0.20em;
        font-size: 11px;
    }

    .page-intro__kicker::before {
        width: 46px;
    }

    .page-intro__kicker::after {
        width: 46px;
    }
}

.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-badges {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 6;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.hero-badges__inner {
    pointer-events: auto;
    width: min(860px, calc(100% - 40px));
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(231, 232, 234, 0.14);
    background: linear-gradient(180deg, rgba(20, 23, 27, 0.72), rgba(9, 10, 10, 0.45));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    align-items: center;
    gap: 18px;
}

.hero-badges__item {
    text-align: center;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(231, 232, 234, 0.78);
    white-space: nowrap;
}

.hero-badges__sep {
    width: 1px;
    height: 18px;
    background: rgba(231, 232, 234, 0.18);
    justify-self: center;
}

@media (max-width: 700px) {
    .hero-badges {
        bottom: 12px;
    }

    .hero-badges__inner {
        grid-auto-flow: row;
        grid-auto-columns: auto;
        gap: 10px;
        padding: 12px 14px;
    }

    .hero-badges__sep {
        display: none;
    }
}

.scroll-hint {
    margin-top: 10px;
    position: absolute;
    left: 44px;
    bottom: 18px;
    z-index: 5;
    pointer-events: none;
    display: flex;
    flex-direction: row;
    align-items: flex-end;   
    gap: 12px;
    padding-bottom: 12px;
}

.scroll-hint-text {
    font-size: 8px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgb(var(--brand-2-rgb) / 0.8);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

@keyframes scrollPulse {
    0% { opacity: 0.18; transform: translateY(0); }
    50% { opacity: 0.72; transform: translateY(8px); }
    100% { opacity: 0.18; transform: translateY(0); }
}

.scroll-hint-line {
    width: 2px;
    height: 48px;
    position: relative;
    background: linear-gradient(
        rgb(var(--brand-rgb) / 0.65),
        rgb(var(--brand-2-rgb) / 0.25),
        transparent
    );
    animation: scrollPulse 3s ease infinite;
    filter: drop-shadow(0 0 10px rgb(var(--brand-rgb) / 0.25));
}

.scroll-hint-line::after {
    content: none;
}

@media (max-width: 700px) {
    .scroll-hint { display: none; }
}

.hero--simple {
    padding: 52px 0 64px;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.05);
}

.hero--fullimg .hero__bg {
    background: #0b0f14;
}

.hero--fullimg .hero__img {
    object-fit: contain;
    background: #0b0f14;
}

.hero--fullimg .hero__inner {
    padding: 54px 0 58px;
}

@media (max-width: 700px) {
    .hero--fullimg .hero__inner {
        padding: 38px 0 44px;
    }
}

.hero--fullimg .hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 420px at 18% 35%, rgb(var(--brand-rgb) / 0.16), transparent 60%),
        linear-gradient(90deg, rgba(11, 15, 20, 0.92) 0%, rgba(11, 15, 20, 0.60) 55%, rgba(11, 15, 20, 0.22) 100%),
        linear-gradient(180deg, rgba(11, 15, 20, 0.10), rgba(11, 15, 20, 0.88));
}

.hero--fullimg .hero__bg::after {
    background:
        radial-gradient(900px 420px at 18% 35%, rgb(var(--brand-rgb) / 0.12), transparent 65%),
        linear-gradient(90deg, rgba(11, 15, 20, 0.88) 0%, rgba(11, 15, 20, 0.55) 52%, rgba(11, 15, 20, 0.30) 100%),
        linear-gradient(180deg, rgba(11, 15, 20, 0.06), rgba(11, 15, 20, 0.80));
}

.hero--transparent .hero__bg::after {
    background: transparent;
}

.hero--overlaytext .hero__content {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
}

.hero--curved {
    border-bottom: 0;
}

.hero--curved .hero__bg {
    inset: 18px 18px 0;
    border-radius: 28px;
    overflow: hidden;
    border: 0;
    box-shadow: var(--shadow);
    height: calc(100vh - 92px);
}

.hero--curved .hero__inner {
    min-height: calc(100vh - 92px);
    display: flex;
    align-items: flex-end;
}

@media (max-width: 700px) {
    .hero--curved .hero__bg {
        inset: 12px 12px 0;
        border-radius: 22px;
        height: calc(100vh - 84px);
    }

    .hero--curved .hero__inner {
        min-height: calc(100vh - 84px);
    }
}

.hero--fullimg .hero__img {
    object-fit: cover;
}

.hero--curved .hero__img {
    object-fit: contain;
}

.hero--overlaytext .hero__title,
.hero--overlaytext .hero__subtitle,
.hero--overlaytext .eyebrow {
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
}

.hero--overlaytext .eyebrow {
    color: rgba(232, 238, 247, 0.82);
}

.hero__inner {
    position: relative;
    padding: 64px 0 72px;
}

@media (max-width: 700px) {
    .hero__inner {
        padding: 46px 0 56px;
    }
}

.hero__content {
    width: min(560px, 100%);
}

.hero.hero--split {
    position: relative;
    background:
        radial-gradient(900px 520px at 12% 0%, rgb(var(--brand-rgb) / 0.07), transparent 62%),
        radial-gradient(900px 520px at 88% 25%, rgb(var(--brand-2-rgb) / 0.06), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 255, 0.94));
    display: grid;
    grid-template-columns: 58% 42%;
    align-items: stretch;
    min-height: 480px;
    max-height: 840px;
    overflow: hidden;
}

@media (max-width: 980px) {
    .hero.hero--split {
        grid-template-columns: 1fr;
        min-height: auto;
        max-height: none;
    }
}

.hero.hero--split .hero-left {
    display: flex;
    flex-direction: column;   
    padding: 44px 72px;
    height: auto;
    align-self: stretch;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 5%;
    padding: 25px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    animation: fadeUp .7s .7s both;
}
.stat-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 300;
    color: rgba(15, 23, 42, 0.95);
    line-height: 1;
    margin-bottom: 5px;
}
.stat-num sup {
    font-size: 18px;
    color: var(--brand-2);
}
.stat-label {
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.48);
}

.hero.hero--split .hero-split-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: center;
}

.hero.hero--split .hero-split-cta {
    width: 100%;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 11px;
    padding: 14px 18px;
    border-radius: 2px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 244, 248, 0.78));
    box-shadow: 0 14px 40px rgba(2, 6, 23, 0.10);
}

.hero.hero--split .hero-split-cta.btn--primary {
    background: linear-gradient(180deg, rgb(var(--brand-rgb) / 0.95), rgb(var(--brand-2-rgb) / 0.88));
    color: rgba(255, 255, 255, 0.98);
    border-color: transparent;
}

.hero.hero--split .hero-split-cta.btn--ghost {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 244, 248, 0.78));
    color: rgba(10, 56, 112, 0.82);
}

.hero.hero--split .hero-split-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 55px rgba(2, 6, 23, 0.12);
}

.hero.hero--split .hero-split-highlights {
    margin-top: 18px;
    display: grid;
    margin-bottom: 10%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero.hero--split .hero-choose {
    margin-top: 18px;
    padding: 16px 16px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.76);
}

.hero.hero--split .hero-choose__title {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(10, 56, 112, 0.82);
}

.hero.hero--split .hero-choose__list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
}

.hero.hero--split .hero-choose__list li {
    position: relative;
    padding-left: 14px;
    color: var(--muted-blue);
    font-size: 13px;
    line-height: 1.4;
}

.hero.hero--split .hero-choose__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 6px;
    height: 6px;
    background: rgb(var(--brand-2-rgb));
    box-shadow: 0 0 16px rgba(184, 151, 90, .35);
}

.hero.hero--split .hero-choose__note {
    margin-top: 8px;
    color: var(--muted-blue);
    font-size: 13px;
    line-height: 1.55;
}

.hero.hero--split .hero-callout {
    margin-top: 10px;
    color: var(--muted-blue);
    font-size: 13px;
    line-height: 1.55;
}

.hero.hero--split .hero-callout--quote {
    font-style: italic;
    color: var(--muted-blue);
}

.hero.hero--split .hero-split-about {
    margin-top: 14px;
    padding: 14px 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.76);
}

.hero.hero--split .hero-split-about__lead {
    color: var(--muted-blue);
    font-size: 13px;
    line-height: 1.55;
}

.hero.hero--split .hero-split-about__points {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero.hero--split .hero-split-about__point {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted-blue-2);
}

.hero.hero--split .hero-split-about__sep {
    width: 14px;
    height: 1px;
    background: rgba(184, 151, 90, .45);
    box-shadow: 0 0 18px rgba(184, 151, 90, .25);
}

.hero.hero--split .hero-split-highlight {
    padding: 16px 16px;
    border: 1px solid var(--border);
    background:
        radial-gradient(400px 120px at 15% 0%, rgb(var(--brand-rgb) / 0.08), transparent 60%),
        radial-gradient(360px 140px at 95% 10%, rgb(var(--brand-2-rgb) / 0.06), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 244, 248, 0.78));
    color: var(--muted-blue);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    line-height: 1.35;
    box-shadow: 0 14px 44px rgba(2, 6, 23, 0.10);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.hero.hero--split .hero-split-highlight:hover {
    transform: translateY(-1px);
    border-color: rgba(184, 151, 90, .22);
    box-shadow: 0 18px 60px rgba(2, 6, 23, 0.12);
}

.hero.hero--split .hero-split-divider {
    margin-top: 18px;
    height: 1px;
    background: var(--border);
}

.hero.hero--split .hero-split-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    padding-top: 16px;
    align-items: start;
}

.hero.hero--split .hero-split-stat {
    text-align: left;
}

.hero.hero--split .hero-split-stat__value {
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: .01em;
    color: rgba(255, 255, 255, .92);
    line-height: 1.05;
}

.hero.hero--split .hero-split-stat__label {
    margin-top: 6px;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .58);
    line-height: 1.4;
}

@media (max-width: 980px) {
    .hero.hero--split .hero-left {
        padding: 58px 22px;
    }

    .hero.hero--split .hero-split-ctas {
        grid-template-columns: 1fr;
    }

    .hero.hero--split .hero-split-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .hero.hero--split .hero-split-highlights {
        grid-template-columns: 1fr;
    }

    .hero.hero--split .hero-choose__list {
        grid-template-columns: 1fr;
    }
}

.hero.hero--split .hero-right {
    display: flex;
    flex-direction: column;
    height: auto;
    align-self: stretch;
}

.hero.hero--split .hero-img-main {
    flex: 1;
    background: var(--muted-blue-2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero.hero--split .hero-img-main .grid-bg {
    position: absolute;
    inset: 0;
    background: var(--stone);
    background-image:
        linear-gradient(rgba(184, 151, 90, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 151, 90, .05) 1px, transparent 1px);
    background-size: 56px 56px;
}

.hero.hero--split .hero-img-main .photo-placeholder {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(184, 151, 90, .18);
    width: calc(100% - 72px);
    height: calc(100% - 72px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    gap: 10px;
    border-radius: 5px;
    overflow: hidden;
    background: rgba(11, 15, 20, 0.25);
}

.hero.hero--split .hero-img-main .photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-gallery__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .55s ease, transform 1.8s ease;
}

.hero-gallery__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 980px) {
    .hero-gallery {
        height: 320px;
    }
}

.split-hero {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 22px;
    align-items: center;
}

@media (max-width: 980px) {
    .split-hero {
        grid-template-columns: 1fr;
    }
}

.split-hero__left {
    min-width: 0;
}

.split-hero__copy {
    width: min(560px, 100%);
}

.split-hero__right {
    min-width: 0;
}

.split-hero__media {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(11, 15, 20, 0.35);
    box-shadow: var(--shadow);
}

.split-hero__img {
    width: 100%;
    height: min(420px, 52vh);
    object-fit: cover;
    display: block;
}

@media (max-width: 980px) {
    .split-hero__img {
        height: 320px;
    }
}

.hero--overlaytext .hero__content {
    max-width: 640px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    color: rgb(var(--brand-2-rgb) / 0.8);
    font-size: 13px;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.eyebrow::before,.eyebrow::after  {
    content: "";
    width: 44px;
    height: 1px;
    background: rgb(var(--brand-2-rgb));
    box-shadow:
        0 0 0 1px rgba(230, 228, 227, 0.12),
        0 0 18px rgba(37, 2, 69, 0.45);
    transform: translateY(1px);
}

@media (max-width: 560px) {
    .eyebrow {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        text-align: center;
    }

    .eyebrow::before,
    .eyebrow::after {
        width: auto;
    }
}

.hero__title {
    font-size: clamp(34px, 2.5vw, 52px);
    color:rgb(var(--brand-2-rgb) / 1);
    margin: 14px 0 0;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    font-style: italic;
}

.intro-serif {
    font-family: var(--font-display);
    font-weight: 500;
}

.intro-serif em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.hero--overlaytext .hero__title {
    font-size: clamp(40px, 4.4vw, 64px);
    letter-spacing: -0.03em;
    line-height: 1.02;
}

.hero__subtitle {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
}

.hero.hero--split .hero__subtitle {
    color:  rgba(15, 23, 42, 0.72)
}

.hero--overlaytext .hero__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(232, 238, 247, 0.82);
    max-width: 52ch;
}

.hero--overlaytext .hero__inner {
    padding-bottom: 54px;
}

.hero--overlaytext .hero__content {
    position: relative;
}

.hero-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background:
        radial-gradient(700px 220px at 18% 20%, rgb(var(--brand-rgb) / 0.14), transparent 60%),
        radial-gradient(700px 220px at 80% 0%, rgb(var(--brand-2-rgb) / 0.12), transparent 58%),
        linear-gradient(180deg, rgb(16 17 19 / 0.88), rgb(9 10 10 / 0.46));
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 22px 22px;
}

.hero-card .hero__title {
    margin-top: 14px;
}

.hero-card .hero__subtitle {
    margin-top: 12px;
}

@media (max-width: 700px) {
    .hero-card {
        padding: 18px 16px;
        border-radius: 18px;
    }
}

.hero--overlaytext .hero__content::before {
    content: '';
    position: absolute;
    inset: -18px -18px -18px -18px;
    background: radial-gradient(600px 240px at 20% 35%, rgb(var(--brand-rgb) / 0.20), transparent 70%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0));
    filter: blur(0px);
    z-index: -1;
    border-radius: 22px;
}

.hero--overlaytext .btn--ghost {
    background: rgba(11, 15, 20, 0.45);
    border-color: rgba(255, 255, 255, 0.22);
}

.hero__actions {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;   
    border: 1px solid var(--line);
    font-weight: 400;
}

.btn--primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    border-color: transparent;
}

.btn--ghost {
    background: rgba(15, 22, 32, 0.7);
}

.section {
    padding: 54px 0;
   
}

.section--alt {
    background: var(--muted-blue-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section__header {
    margin-bottom: 24px;
    text-align: center;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.section__title {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
}

.section__title::before {
    content: '';
    width: 74px;
    height: 1px;
    background: var(--brand);
}

.section__title::after {
    content: '';
    width: 74px;
    height: 1px;
    background: var(--brand);
}

.section__subtitle {
    margin: 8px 0 0;
    font-family: var(--font-ui);
    color: var(--muted);
    line-height: 1.6;
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
}
.section___title {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #fff;
}
.section___title::before,
.section___title::after {
    content: '';
    display: inline-block;
    width: 74px;
    height: 1px;
    background: #fff;
}
.section___subtitle {
    margin: 8px 0 0;
    font-family: var(--font-ui);
    color: #fff;
    line-height: 1.6;
    max-width: 62ch;   
    margin-left: auto;
    margin-right: auto;
}
.grid {
    display: grid;
    gap: 16px;
}

.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 980px) {
    .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    .grid--3 { grid-template-columns: 1fr; }
    .grid--4 { grid-template-columns: 1fr; }
}

.card {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(15, 22, 32, 0.55);
    box-shadow: var(--shadow);
}

.mini {
    border-radius: 18px;
    border: 1px solid rgba(231, 232, 234, 0.14);
    background: linear-gradient(180deg, rgba(20, 23, 27, 0.62), rgba(9, 10, 10, 0.40));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
    padding: 18px 18px 16px;
    min-height: 116px;
}

.mini__kicker {
    font-family: var(--font-ui);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 10px;
    color: var(--on-dark-muted);
}

.mini__title {
    font-family: var(--font-ui);
    margin-top: 8px;
    font-weight: 400;
    letter-spacing: -0.01em;
    font-size: 14px;
    color: var(--on-dark-heading);
}

.mini__text {
    font-family: var(--font-ui);
    margin-top: 8px;
    color: var(--on-dark-text);
    line-height: 1.55;
    font-size: 13px;
}

.cta {
    border-radius: 18px;
    border: 1px solid rgba(231, 232, 234, 0.14);
    background:rgb(var(--brand-rgb) / 1);


    padding: 18px 18px;
}

.cta__title,
.cta__text {
    font-family: var(--font-ui);
}

.btn {
    font-family: var(--font-ui);
}

.btn--solid {
    background: var(--brand);
    color: var(--text);
    border: 1px solid rgba(231, 232, 234, 0.22);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.btn--solid:hover {
    background: rgba(231, 232, 234, 0.98);
}

.card__media {
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 240ms ease;
}

.card:hover .card__media img {
    transform: scale(1.08);
}

.card__body {
    padding: 16px;
}

.card__title {
    font-weight: 700;
    letter-spacing: -0.01em;
}

.card__text {
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.5;
    font-size: 14px;
}

.tab-gallery {
    margin: 18px 0 26px;
}

.seg-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
    background: var(--muted-blue);
    box-shadow: 0 18px 55px rgba(2, 12, 32, 0.08);
}

@media (max-width: 720px) {
    .seg-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 18px;
    }
}

@media (max-width: 460px) {
    .seg-tabs {
        grid-template-columns: 1fr;
    }
}

.seg-tab {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 13px 12px;
    font-weight: 600;
    color: var(--muted-blue);
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: 11px;
    cursor: pointer;
    border-right: 1px solid var(--border);
}

.seg-tab:last-child {
    border-right: 0;
}

.seg-tab:hover {
    color: var(--ink);
    background: rgb(var(--brand-rgb) / 0.06);
}

.seg-tab.is-active {
    color: rgba(255, 255, 255, 0.98);
    background: linear-gradient(135deg, rgb(var(--brand-rgb) / 0.92), rgb(var(--brand-2-rgb) / 0.88));
}

.tab-panel {
    margin-top: 14px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background:
        radial-gradient(900px 420px at 18% 20%, rgb(var(--brand-rgb) / 0.10), transparent 60%),
        linear-gradient(180deg, rgba(238, 244, 255, 0.92), rgba(245, 248, 255, 0.92));
    box-shadow: 0 18px 60px rgba(2, 12, 32, 0.10);
    overflow: hidden;
}

.tab-panel.is-hidden {
    display: none;
}

.tab-panel__header {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(90deg, rgb(var(--brand-rgb) / 0.06), rgba(255, 255, 255, 0.76));
}

.tab-panel__title {
    color: var(--brand-2) !important;
    margin: 0;
    font-size: 20px;
    letter-spacing: -0.01em;
}

.tab-panel__desc {
    margin: 8px 0 0;
    color: var(--muted-blue);
    line-height: 1.6;
}

@media (max-width: 560px) {
    #quote.tab-panel {
        overflow: visible;
    }

    #quote .grid--3 {
        grid-template-columns: 1fr;
    }

    #quote .mini__kicker {
        color: var(--ink);
    }

    #quote input,
    #quote textarea {
        color: var(--ink);
        border-color: var(--border-strong);
        background: rgba(245, 248, 255, 0.95);
    }
}

.tab-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
    padding: 22px;
    align-items: center;
    background: linear-gradient(180deg, rgb(var(--brand-rgb) / 0.04), transparent 45%);
}

@media (max-width: 980px) {
    .tab-layout {
        grid-template-columns: 1fr;
    }
}

.tab-copy {
    padding: 2px 2px;
}

.tab-copy__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.3vw, 44px);
    letter-spacing: -0.02em;
    line-height: 1.04;
    font-weight: 600;
    color: var(--ink);
    position: relative;
    padding-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-copy__icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(231, 232, 234, 0.88);
    filter: drop-shadow(0 10px 18px rgb(0 0 0 / 0.35));
}

.tab-copy__icon svg {
    display: block;
}

.tab-copy__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 94px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgb(var(--brand-rgb) / 0.85), #FFF);
}

.tab-copy__desc {
    margin-top: 12px;
    color: var(--muted-blue);
    line-height: 1.7;
    font-size: 15px;
    max-width: 52ch;
}

.tab-media {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(245, 248, 255, 0.82));
    box-shadow: 0 18px 60px rgba(2, 12, 32, 0.10);
}

.tab-slides {
    display: flex;
    width: 100%;
    transition: transform 280ms ease;
}

.tab-slide {
    flex: 0 0 100%;
}

.tab-slide__img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

@media (max-width: 980px) {
    .tab-slide__img {
        height: 340px;
    }
}

@media (max-width: 560px) {
    .tab-slide__img {
        height: 260px;
    }
}

.tab-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(18, 95, 160, 0.22);
    background: rgba(255, 255, 255, 0.78);
    color: rgba(10, 56, 112, 0.92);
    font-size: 30px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 3;
}

.tab-arrow:hover {
    background: rgba(255, 255, 255, 0.92);
}

.tab-arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

.tab-arrow--left { left: 14px; }
.tab-arrow--right { right: 14px; }

.tab-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: linear-gradient(90deg, rgb(var(--brand-rgb) / 0.08), rgba(255, 255, 255, 0.70));
    border-top: 1px solid rgba(18, 95, 160, 0.14);
    color: var(--muted-blue);
    font-size: 12px;
}

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

@media (max-width: 980px) {
    .tab-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .tab-grid {
        grid-template-columns: 1fr;
    }
}

.tab-figure {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(11, 15, 20, 0.35);
}

.tab-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.tab-cap {
    padding: 10px 12px;
    color: rgba(232, 238, 247, 0.8);
    font-size: 13px;
    border-top: 1px solid var(--line);
    background: rgba(11, 15, 20, 0.35);
}

.tab-gallery__empty {
    padding: 16px;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 22, 32, 0.35);
}

.door-gallery {
    margin: 18px 0 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(15, 22, 32, 0.45);
    box-shadow: var(--shadow);
}

.door-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    background: rgba(11, 15, 20, 0.55);
    border-bottom: 1px solid var(--line);
}

@media (max-width: 720px) {
    .door-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.door-tab {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 14px 12px;
    color: var(--muted);
    font-weight: 700;
    letter-spacing: -0.01em;
    cursor: pointer;
    border-right: 1px solid var(--line);
}

.door-tab:nth-child(4),
.door-tab:nth-child(2n):last-child {
    border-right: 0;
}

.door-tab:hover {
    color: var(--text);
    background: rgba(15, 22, 32, 0.35);
}

.door-tab.is-active {
    color: var(--text);
    background: linear-gradient(135deg, rgb(var(--brand-rgb) / 0.20), rgb(var(--brand-2-rgb) / 0.12));
}

.door-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 20px;
    align-items: center;
}

.door-panel[hidden] {
    display: none !important;
}

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

.door-panel__title {
    margin: 0;
    font-size: 34px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

@media (max-width: 560px) {
    .door-panel__title {
        font-size: 28px;
    }
}

.door-panel__desc {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 16px;
}

.door-panel__meta {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    color: rgba(232, 238, 247, 0.8);
    font-size: 13px;
}

.door-panel__media {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(11, 15, 20, 0.35);
}

.door-panel__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.scroll-gallery {
    margin: 18px 0 30px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 18px;
    align-items: start;
}

@media (max-width: 980px) {
    .scroll-gallery {
        grid-template-columns: 1fr;
    }
}

.scroll-gallery__left {
    position: sticky;
    top: 86px;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(15, 22, 32, 0.45);
    box-shadow: var(--shadow);
}

@media (max-width: 980px) {
    .scroll-gallery__left {
        position: relative;
        top: auto;
    }
}

.scroll-gallery__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
    background: rgba(11, 15, 20, 0.55);
}

.scroll-gallery__tab {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 14px 12px;
    font-weight: 400;
    color: var(--muted);
    cursor: pointer;
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line);
}

.scroll-gallery__tab:nth-child(2n) {
    border-right: 0;
}

.scroll-gallery__tab.is-active {
    color: var(--text);
    background: linear-gradient(135deg, rgb(var(--brand-rgb) / 0.20), rgb(var(--brand-2-rgb) / 0.12));
}

.scroll-gallery__tab:hover {
    color: var(--text);
    background: rgba(15, 22, 32, 0.35);
}

.scroll-gallery__content {
    padding: 18px;
}

.scroll-gallery__content.is-hidden {
    display: none;
}

.scroll-gallery__title {
    margin: 0;
    font-size: 34px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

@media (max-width: 560px) {
    .scroll-gallery__title {
        font-size: 28px;
    }
}

.scroll-gallery__desc {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 16px;
}

.scroll-gallery__empty {
    padding: 18px;
    color: var(--muted);
}

.scroll-gallery__right {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 22, 32, 0.25);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.scroll-gallery__section {
    padding: 18px;
    border-top: 1px solid var(--line);
}

.scroll-gallery__section:first-child {
    border-top: 0;
}

.scroll-gallery__images {
    display: grid;
    gap: 14px;
}

.scroll-gallery__figure {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(11, 15, 20, 0.35);
}

.scroll-gallery__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.scroll-gallery__caption {
    padding: 10px 12px;
    color: rgba(232, 238, 247, 0.8);
    font-size: 13px;
    border-top: 1px solid var(--line);
    background: rgba(11, 15, 20, 0.35);
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    align-items: center;
    margin:2%
}

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

.split__media {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(15, 22, 32, 0.55);
    box-shadow: var(--shadow);
}

.media {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.feature-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.feature {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgb(var(--brand-2-rgb) / 1);
}

.feature__title {
    font-weight: 700;
}

.feature__text {
    margin-top: 6px;
    color: var(--text);
    line-height: 1.55;
    font-size: 14px;
}

.mini {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgb(var(--brand-rgb) / 1);
}

.mini__kicker {
    color: #eef4ff;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mini__title {
    margin-top: 8px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.mini__text {
    margin-top: 8px;
    color: #ffffff;
    line-height: 1.55;
    font-size: 14px;
}

.cta {
    margin-top: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgb(var(--brand-2-rgb) / 1);
}

@media (max-width: 700px) {
    .cta {
        flex-direction: column;
        align-items: stretch;
    }
}

.cta__title {
    margin: 0;
    font-size: 18px;
}

.cta__text {
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.55;
}

.footer {
    background: var(--charcoal);
    border-top: 1px solid var(--line);
    padding: 22px 0;
}

.footer__text {
    color: var(--muted);
    font-size: 14px;
}

.process {
    padding: 70px 0;
    border-top: 1px solid var(--line);
    background: var(--muted-blue-2);
      
}

.process__head {
    text-align: center;
    margin-bottom: 34px;
}

.process__kicker {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--on-dark-muted);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 10px;
}

.process__kicker::before,
.process__kicker::after {
    content: '';
    height: 1px;
    width: 110px;
    background: #fff
}

.process__title {
    margin: 14px 0 0;
    font-size: clamp(30px, 4.2vw, 52px);
    letter-spacing: -0.02em;
    line-height: 1.12;
}

.process__accent {
    color: var(--brand);
    font-style: italic;
    font-weight: 700;
}

.process__timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    padding-top: 20px;
}

.process__line {
    position: absolute;
    left: 2.5%;
    right: 2.5%;
    top: 35px;
    height: 1px;
    background: rgba(232, 238, 247, 0.18);
    z-index: 0;
    display: none;
}

.process__step {
    text-align: center;
    padding: 14px 12px 16px;
    position: relative;
    z-index: 1;
    border-radius: 16px;
    border: 1px solid rgba(3, 31, 87, 0.14);
    background: rgb(var(--brand-rgb) / 1)   ;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.process__step:not(:last-child)::after {
    display: none;
}

.process__dot {
    width: 54px;
    height: 54px;
    margin: 0 auto;
    color:#ffffff !important;
    border-radius: 999px;
    border: 1px solid rgb(var(--brand-rgb) / 0.34);    
    display: grid;
    place-items: center;
    font-weight: 400;
    font-size: 12px;
    background: rgba(11, 15, 20, 0.35);
}

.process__num {
    width: 54px;
    height: 54px;
    margin: 0 auto;
    border-radius: 999px;
    border: 1px solid rgb(var(--brand-rgb) / 0.34);
    color: rgb(var(--brand-rgb) / 0.78);
    display: grid;
    place-items: center;
    font-weight: 400;
    font-size: 12px;
    background: rgba(11, 15, 20, 0.35);
}

.process__label {
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 10px;
    color: var(--on-dark-muted);
}

.process__name {
    margin-top: 8px;
    font-weight: 400;
    letter-spacing: -0.01em;
    font-size: 14px;
    color: var(--on-dark-heading);
}

.process__desc {
    margin-top: 10px;
    color: var(--on-dark-text);
    font-size: 12px;
    line-height: 1.65;
    text-align: justify;
}

@media (max-width: 1100px) {
    .process__timeline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process__line {
        display: none;
    }

    .process__step {
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 16px 14px;
        background: rgba(15, 22, 32, 0.35);
        box-shadow: var(--shadow);
    }
}

@media (max-width: 640px) {
    .process__timeline {
        grid-template-columns: 1fr;
    }
}
