/* =====================================================
   NAVIGATION
===================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;

    color: var(--color-white);

    transition:
        background var(--transition),
        backdrop-filter var(--transition),
        transform var(--transition);
}

.site-header.scrolled {
    background: rgba(7, 17, 15, .82);
    backdrop-filter: blur(18px);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 88px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;
}

.brand-symbol {
    display: grid;
    place-items: center;

    width: 40px;
    height: 40px;

    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-text strong {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.brand-text small {
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .2em;
    opacity: .55;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;

    margin-left: auto;
    margin-right: 40px;
}

.nav-links a {
    position: relative;

    color: rgba(255, 255, 255, .72);

    font-size: 12px;
    font-weight: 600;

    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--color-white);

    transition: width var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-login {
    color: var(--color-white);

    font-size: 12px;
    font-weight: 700;
}

.icon-button {
    position: relative;

    width: 38px;
    height: 38px;

    background: transparent;
    color: white;
}

.search-button span,
.search-button span::after {
    position: absolute;
    display: block;
}

.search-button span {
    width: 13px;
    height: 13px;

    top: 10px;
    left: 10px;

    border: 1.5px solid currentColor;
    border-radius: 50%;
}

.search-button span::after {
    content: "";

    width: 7px;
    height: 1.5px;

    right: -5px;
    bottom: -3px;

    background: currentColor;

    transform: rotate(45deg);
}

.menu-toggle {
    display: none;

    flex-direction: column;
    justify-content: center;
    gap: 6px;

    width: 42px;
    height: 42px;

    padding: 10px;

    background: transparent;
    color: white;
}

.menu-toggle span {
    width: 100%;
    height: 1px;

    background: currentColor;

    transition: transform var(--transition-fast);
}


/* =====================================================
   SEARCH OVERLAY
===================================================== */

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;

    display: grid;
    place-items: center;

    padding: 30px;

    background: rgba(7, 17, 15, .97);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity var(--transition),
        visibility var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: min(900px, 100%);
}

.search-container h2 {
    max-width: 700px;

    margin-bottom: 50px;

    color: white;
}

.search-close {
    position: absolute;
    top: 35px;
    right: 45px;

    width: 50px;
    height: 50px;

    background: transparent;
    color: white;

    font-size: 40px;
    font-weight: 200;
}

.search-input-wrapper {
    border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.search-input-wrapper input {
    width: 100%;

    padding: 20px 0;

    outline: none;
    border: 0;

    background: transparent;
    color: white;

    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: -.04em;
}

.search-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, .25);
}

.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;

    margin-top: 25px;

    color: rgba(255, 255, 255, .45);

    font-size: 12px;
}

.search-suggestions button {
    padding: 8px 14px;

    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 30px;

    background: transparent;
    color: rgba(255, 255, 255, .7);

    transition: background var(--transition-fast);
}

.search-suggestions button:hover {
    background: rgba(255, 255, 255, .1);
}


/* =====================================================
   SECTION HEADER
===================================================== */

.section-header {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;

    align-items: end;

    margin-bottom: 80px;
}

.section-header h2 {
    margin-bottom: 0;
}

.section-header h2 span {
    color: var(--color-muted);
}

.section-header > p {
    margin-bottom: 5px;
    font-size: 15px;
}


/* =====================================================
   SERVICE CARDS
===================================================== */

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;

    background: var(--color-border);
}

.service-card {
    position: relative;

    min-height: 560px;
    padding: 45px;

    overflow: hidden;

    background: var(--color-surface);

    transition:
        background var(--transition),
        color var(--transition);
}

.service-card:hover {
    background: var(--color-ink);
    color: white;
}

.service-card-large {
    grid-column: span 2;
    min-height: 620px;
}

.service-number {
    color: var(--color-muted);

    font-size: 11px;
    font-weight: 700;
}

.service-content {
    position: relative;
    z-index: 2;

    max-width: 480px;

    margin-top: 90px;
}

.service-content h3 {
    margin-bottom: 25px;
}

.service-content p:not(.eyebrow) {
    max-width: 390px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-top: 30px;

    font-size: 12px;
    font-weight: 700;
}

.service-link span {
    font-size: 18px;

    transition: transform var(--transition-fast);
}

.service-link:hover span {
    transform: translate(4px, -4px);
}


/* =====================================================
   PRIVATE BANKING
===================================================== */

.private-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;

    align-items: center;
}

.private-visual {
    min-height: 700px;
}

.private-image-placeholder {
    position: relative;

    width: 100%;
    height: 100%;
    min-height: 700px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 60% 35%,
            rgba(183, 215, 194, .35),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #17251f,
            #33483d 50%,
            #0a1210
        );
}

.private-image-placeholder::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            125deg,
            transparent 35%,
            rgba(255,255,255,.08) 36%,
            transparent 37%
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 48px,
            rgba(255,255,255,.025) 49px,
            transparent 50px
        );
}

.private-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(7,17,15,.9),
            transparent 60%
        );
}

.private-location {
    position: absolute;
    top: 30px;
    right: 30px;

    display: flex;
    gap: 10px;

    color: rgba(255,255,255,.6);

    font-size: 9px;
    letter-spacing: .15em;
}

.private-label {
    position: absolute;
    left: 40px;
    bottom: 40px;

    color: white;

    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 500;
    letter-spacing: -.08em;
    line-height: .8;
}

.private-label small {
    display: block;

    margin-top: 15px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .25em;
}

.private-copy h2 {
    max-width: 650px;
}

.private-copy h2 em,
.sustainability-copy h2 em {
    color: var(--color-muted);
    font-style: normal;
}

.private-copy > p:not(.eyebrow) {
    max-width: 520px;

    margin: 35px 0;
}

.feature-list {
    margin: 0 0 45px;
    padding: 0;

    list-style: none;

    border-top: 1px solid var(--color-border);
}

.feature-list li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 15px;

    padding: 18px 0;

    border-bottom: 1px solid var(--color-border);

    font-size: 13px;
    font-weight: 600;
}

.feature-list span {
    color: var(--color-muted);

    font-size: 10px;
}


/* =====================================================
   IMPACT CARDS
===================================================== */

.sustainability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;

    align-items: center;
}

.sustainability-copy h2 {
    max-width: 650px;
}

.sustainability-copy > p:not(.eyebrow) {
    max-width: 450px;

    margin: 35px 0;
}

.sustainability-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.impact-card {
    min-height: 320px;

    padding: 35px;

    background: var(--color-surface-alt);
}

.impact-icon {
    display: block;

    margin-bottom: 80px;

    font-size: 25px;
}

.impact-card strong {
    display: block;

    margin-bottom: 12px;

    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 500;
    letter-spacing: -.07em;
    line-height: 1;
}

.impact-card p {
    margin: 0;

    font-size: 12px;
}


/* =====================================================
   CTA
===================================================== */

.cta-panel {
    position: relative;

    min-height: 600px;

    display: flex;
    align-items: center;

    padding: 90px;

    overflow: hidden;

    background: var(--color-ink);
    color: white;
}

.cta-content {
    position: relative;
    z-index: 2;

    max-width: 650px;
}

.cta-content h2 span {
    display: block;

    color: var(--color-accent);
}

.cta-content > p:not(.eyebrow) {
    max-width: 450px;

    margin: 35px 0;

    color: rgba(255,255,255,.6);
}

.cta-orbit {
    position: absolute;

    width: 700px;
    height: 700px;

    right: -180px;
    top: -100px;

    border: 1px solid rgba(183,215,194,.2);
    border-radius: 50%;
}

.cta-orbit::before {
    content: "";

    position: absolute;

    inset: 80px;

    border: 1px solid rgba(183,215,194,.12);
    border-radius: 50%;
}

.cta-orbit-two {
    width: 450px;
    height: 450px;

    right: -50px;
    top: 25px;

    border-color: rgba(183,215,194,.12);
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    padding: 100px 0 35px;

    background: var(--color-ink);
    color: white;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 50px;

    padding-bottom: 100px;
}

.footer-brand p {
    max-width: 250px;

    margin-top: 25px;

    color: rgba(255,255,255,.45);

    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    margin: 0 0 15px;

    color: white;

    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-column a {
    width: fit-content;

    color: rgba(255,255,255,.45);

    font-size: 12px;

    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.1);

    color: rgba(255,255,255,.3);

    font-size: 10px;
    letter-spacing: .03em;
}