/* A.B. Financials — shared styles */
:root {
    --green: #043034;
    --green-2: #065a60;
    --green-3: #0a6066;
    --cream: #FAF7F0;
    --cream-2: #FFFBEF;
    --gold: #D8AE5E;
    --gold-2: #c49a4a;
    --ink: #1d2424;
    --muted: #6b6f6f;

    --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
    --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

    --maxw: 1280px;
    --gutter: clamp(20px, 4vw, 56px);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: var(--green);
    text-decoration: none;
}

a:hover {
    color: var(--gold-2);
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.08;
    margin: 0;
    color: var(--green);
    text-wrap: balance;
}

h1 {
    font-size: clamp(48px, 7vw, 96px);
}

h2 {
    font-size: clamp(36px, 4.6vw, 60px);
}

h3 {
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 500;
}

h4 {
    font-size: 20px;
}

p {
    text-wrap: pretty;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ---------- Eyebrow / kicker ---------- */
.kicker {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-2);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.kicker::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--green);
    color: var(--cream-2);
    border-color: var(--green);
}

.btn-primary:hover {
    background: var(--green-2);
    color: var(--gold);
    border-color: var(--green-2);
}

.btn-gold {
    background: var(--gold);
    color: var(--green);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-2);
    color: var(--green);
    border-color: var(--gold-2);
}

.btn-ghost {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}

.btn-ghost:hover {
    background: var(--green);
    color: var(--cream-2);
}

.btn-link {
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--green);
    border-bottom: 1px solid var(--gold);
    border-radius: 0;
    padding-bottom: 2px;
}

.btn-link:hover {
    color: var(--gold-2);
}

.btn .arr {
    transition: transform 0.2s ease;
}

.btn:hover .arr {
    transform: translateX(4px);
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--green);
    border-bottom: 1px solid rgba(216, 174, 94, 0.18);
}

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    gap: 32px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--cream-2);
    min-width: 0;
    flex-shrink: 0;
}

.logo-mark {
    width: 44px;
    height: 44px;
    position: relative;
    flex-shrink: 0;
}

.logo-mark--custom {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: none;
}

.logo-mark svg {
    width: 100%;
    height: 100%;
    display: block;
}

.logo-mark--custom .custom-logo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 52px;
    line-height: 1;
    transform: translateY(1px);
}

.logo-name {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--cream-2);
}

.logo-tag {
    font-size: 9.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
    font-weight: 500;
}

.menu-toggle {
    display: none;
}

.mobile-menu-brand {
    display: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu .menu-item {
    position: relative;
    margin: 0;
}

.nav-menu .menu-item > a {
    position: relative;
    display: block;
    padding: 10px 16px;
    color: var(--cream-2);
    font-size: 13.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-menu .menu-item > a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a {
    color: var(--gold);
}

.nav-menu .current-menu-item > a::after,
.nav-menu .current-menu-ancestor > a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 1px;
    background: var(--gold);
}

.nav-menu .menu-item-has-children > a::before {
    content: "▾";
    margin-left: 6px;
    font-size: 10px;
    opacity: 0.6;
    float: right;
    transform: translateY(1px);
}

.nav-menu .sub-menu {
    list-style: none;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 8px;
    background: var(--green);
    border: 1px solid rgba(216, 174, 94, 0.25);
    min-width: 220px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.35);
    z-index: 70;
}

.nav-menu .menu-item-has-children:hover > .sub-menu,
.nav-menu .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu a {
    display: block;
    padding: 12px 16px;
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--cream-2);
    border-bottom: 1px solid rgba(216, 174, 94, 0.15);
}

.nav-menu .sub-menu li:last-child a {
    border-bottom: 0;
}

.nav-menu .sub-menu a:hover {
    color: var(--gold);
    background: rgba(216, 174, 94, 0.08);
}

.nav-item {
    position: relative;
    padding: 10px 16px;
    color: var(--cream-2);
    font-size: 13.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-item:hover {
    color: var(--gold);
}

.nav-item.active {
    color: var(--gold);
}

.nav-item.active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 1px;
    background: var(--gold);
}

.nav-item.has-drop::after {
    content: "▾";
    margin-left: 6px;
    font-size: 10px;
    opacity: 0.6;
}

.nav-item.has-drop {
    position: relative;
}

.nav-drop {
    position: absolute;
    top: 100%;
    left: 8px;
    background: var(--green);
    border: 1px solid rgba(216, 174, 94, 0.25);
    min-width: 220px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.35);
}

.nav-item.has-drop:hover .nav-drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-drop a {
    display: block;
    padding: 12px 16px;
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--cream-2);
    border-bottom: 1px solid rgba(216, 174, 94, 0.15);
}

.nav-drop a:last-child {
    border-bottom: 0;
}

.nav-drop a:hover {
    color: var(--gold);
    background: rgba(216, 174, 94, 0.08);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    font-size: 13px;
    color: var(--cream-2);
    font-variant-numeric: tabular-nums;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.header-phone .dot {
    width: 6px;
    height: 6px;
    background: #6FCF7E;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(111, 207, 126, 0.18);
}

/* ---------- Corner frame (hoeklijnen) ---------- */
.frame {
    position: relative;
}

.frame::before,
.frame::after,
.frame > .frame-tl,
.frame > .frame-br {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    border: 1px solid var(--gold);
    pointer-events: none;
}

.frame::before {
    top: 0;
    left: 0;
    border-right: 0;
    border-bottom: 0;
}

.frame::after {
    bottom: 0;
    right: 0;
    border-left: 0;
    border-top: 0;
}

.frame > .frame-tl {
    top: 0;
    right: 0;
    border-left: 0;
    border-bottom: 0;
}

.frame > .frame-br {
    bottom: 0;
    left: 0;
    border-right: 0;
    border-top: 0;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--green);
    color: var(--gold);
    padding: 80px 0 0;
    margin-top: 120px;
    position: relative;
    overflow: hidden;
}

.site-footer .wrap {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.4fr;
    gap: 64px;
    padding-bottom: 64px;
}

.footer h4 {
    color: var(--cream-2);
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 24px;
    opacity: 0.7;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--gold);
}

.footer-contact .ico {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.footer-contact a {
    color: var(--gold);
}

.footer-contact a:hover {
    color: var(--cream-2);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.footer-links a {
    color: var(--gold);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: "—";
    color: rgba(216, 174, 94, 0.4);
}

.footer-links a:hover {
    color: var(--cream-2);
}

.footer-about p {
    color: rgba(255, 251, 239, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 24px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(216, 174, 94, 0.4);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--green);
    border-color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(216, 174, 94, 0.18);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: rgba(216, 174, 94, 0.7);
    letter-spacing: 0.04em;
}

.footer-bottom .stair {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    margin-left: 8px;
}

.footer-bottom .stair i {
    display: block;
    width: 4px;
    background: var(--gold);
    opacity: 0.6;
}

.footer-bottom .stair i:nth-child(1) {
    height: 4px;
}

.footer-bottom .stair i:nth-child(2) {
    height: 8px;
}

.footer-bottom .stair i:nth-child(3) {
    height: 12px;
}

.footer-watermark {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: min(420px, 42vw);
    opacity: 0.12;
    pointer-events: none;
    user-select: none;
}

.footer-watermark__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ---------- WhatsApp floating ---------- */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 60;
    background: #25D366;
    color: white;
    border-radius: 999px;
    padding: 14px 20px 14px 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid var(--gold);
    box-shadow: 0 16px 32px -10px rgba(4, 48, 52, 0.25);
    transition: transform 0.2s ease;
}

.wa-float:hover {
    transform: scale(1.04);
    color: white;
}

.wa-float svg {
    width: 22px;
    height: 22px;
}

/* ---------- Section heading ---------- */
.section-head {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 56px;
}

.section-head .lead {
    font-size: 16px;
    color: var(--muted);
    max-width: 56ch;
    margin: 0;
}

@media (max-width: 880px) {
    .section-head {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ---------- Utility ---------- */
.rule {
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    border: 0;
    margin: 0;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11.5px;
    letter-spacing: 0.06em;
    background: rgba(216, 174, 94, 0.12);
    color: var(--gold-2);
    border: 1px solid rgba(216, 174, 94, 0.3);
    font-weight: 500;
}

.tag.green {
    background: rgba(4, 48, 52, 0.06);
    color: var(--green);
    border-color: rgba(4, 48, 52, 0.15);
}

/* ---------- Image placeholder ---------- */
.img-ph {
    background: repeating-linear-gradient(135deg,
    rgba(4, 48, 52, 0.04) 0 12px,
    rgba(4, 48, 52, 0.08) 12px 13px);
    border: 1px solid rgba(4, 48, 52, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(4, 48, 52, 0.5);
    position: relative;
}

.img-ph::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(4, 48, 52, 0.15);
}

/* ---------- Header responsive ---------- */
@media (max-width: 1180px) {
    .header-phone {
        display: none;
    }

    .nav-item {
        padding: 10px 12px;
        font-size: 12.5px;
    }
}

@media (max-width: 980px) {
    body.abf-menu-open {
        overflow: hidden;
    }

    .site-header {
        z-index: 120;
    }

    .site-header::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.42);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        z-index: 125;
    }

    .site-header.is-menu-open::before {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-header .wrap {
        height: 72px;
        gap: 18px;
    }

    .logo {
        min-width: 0;
    }

    .logo-name,
    .logo-tag {
        white-space: nowrap;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-left: auto;
        min-height: 42px;
        padding: 0 13px 0 15px;
        border: 1px solid rgba(216, 174, 94, 0.5);
        border-radius: 2px;
        background: rgba(255, 251, 239, 0.04);
        color: var(--cream-2);
        font-family: var(--mono);
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.14em;
        line-height: 1;
        text-transform: uppercase;
        cursor: pointer;
        transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .menu-toggle:hover,
    .menu-toggle:focus-visible {
        border-color: var(--gold);
        background: rgba(216, 174, 94, 0.12);
        color: var(--gold);
        outline: none;
    }

    .menu-toggle__icon {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 20px;
        height: 20px;
    }

    .menu-toggle__icon span {
        display: block;
        width: 20px;
        height: 1px;
        background: currentColor;
        transform-origin: center;
        transition: transform 0.2s ease;
    }

    .site-header.is-menu-open .menu-toggle__icon span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .site-header.is-menu-open .menu-toggle__icon span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: min(86vw, 390px);
        height: 100vh;
        max-height: none;
        overflow: auto;
        padding: 28px 24px 28px;
        background: var(--green);
        border-right: 1px solid rgba(216, 174, 94, 0.42);
        box-shadow: 28px 0 70px -34px rgba(0, 0, 0, 0.85);
        opacity: 1;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(-100%);
        transition: transform 0.24s ease, visibility 0.24s ease;
        z-index: 130;
    }

    .site-header.is-menu-open .nav {
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .mobile-menu-brand {
        display: block;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(216, 174, 94, 0.24);
    }

    .mobile-menu-brand__logo {
        pointer-events: none;
    }

    .mobile-menu-brand .logo {
        gap: 16px;
    }

    .mobile-menu-brand .logo-mark--custom {
        width: 64px;
        height: 64px;
    }

    .mobile-menu-brand .logo-text {
        min-height: 64px;
    }

    .mobile-menu-brand .logo-name {
        font-size: 27px;
    }

    .mobile-menu-brand .logo-tag {
        margin-top: 6px;
        font-size: 10px;
        letter-spacing: 0.24em;
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-menu .menu-item {
        width: 100%;
    }

    .nav-menu .menu-item > a,
    .nav-item {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid rgba(216, 174, 94, 0.17);
        color: var(--cream-2);
        font-size: 13px;
        letter-spacing: 0.1em;
    }

    .nav-menu .current-menu-item > a::after,
    .nav-menu .current-menu-ancestor > a::after,
    .nav-item.active::after {
        left: 0;
        right: 0;
        bottom: -1px;
    }

    .nav-menu .menu-item-has-children > a::before,
    .nav-item.has-drop::after {
        color: var(--gold);
        opacity: 0.85;
    }

    .nav-menu .sub-menu,
    .nav-drop {
        position: static;
        min-width: 0;
        margin: 6px 0 12px;
        padding: 4px 12px;
        border: 1px solid rgba(216, 174, 94, 0.18);
        background: rgba(255, 251, 239, 0.05);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-menu .sub-menu a,
    .nav-drop a {
        padding: 10px 4px;
        color: rgba(255, 251, 239, 0.82);
    }

    .nav-menu .sub-menu a:hover,
    .nav-drop a:hover {
        color: var(--gold);
        background: transparent;
    }
}

@media (max-width: 520px) {
    .logo-mark {
        width: 38px;
        height: 38px;
    }

    .logo-mark--custom {
        width: 38px;
        height: 38px;
        max-width: none;
    }

    .logo-mark--custom .custom-logo {
        max-width: none;
        max-height: none;
    }

    .logo-text {
        min-height: 38px;
        transform: translateY(0);
    }

    .logo-name {
        font-size: 18px;
    }

    .logo-tag {
        font-size: 8px;
        letter-spacing: 0.18em;
    }

    .mobile-menu-brand .logo-mark--custom {
        width: 56px;
        height: 56px;
    }

    .mobile-menu-brand .logo-text {
        min-height: 56px;
    }

    .mobile-menu-brand .logo-name {
        font-size: 23px;
    }

    .mobile-menu-brand .logo-tag {
        margin-top: 5px;
        font-size: 9px;
        letter-spacing: 0.2em;
    }

    .menu-toggle__label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .menu-toggle {
        width: 42px;
        justify-content: center;
        padding: 0;
    }

    .nav {
        width: min(90vw, 360px);
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 880px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .footer-watermark {
        right: 0;
        bottom: 0;
        width: min(280px, 72vw);
        opacity: 0.1;
    }
}
