/* Shared Technisch Bouwadvies header */
.tba-site-header,
.tba-site-header * {
    box-sizing: border-box;
}

.tba-site-header {
    --tba-accent: #b3944d;
    --tba-accent-light: #d3bb7a;
    --tba-ink: #0f0f0f;
    --tba-paper: #fafafa;
    --tba-muted: #6f6f6f;
    position: relative;
    z-index: 1200;
    font-family: "Inter", Arial, sans-serif;
}

/* The shared header replaces legacy page-specific navigation without
   deleting it, so existing page scripts keep running safely. */
body > .tba-site-header ~ #navbar,
body > .tba-site-header ~ #mobile-nav {
    display: none !important;
}

body > .tba-site-header ~ .skip-link {
    display: none !important;
}

.tba-skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1400;
    padding: 0.8rem 1rem;
    color: #fff;
    background: var(--tba-ink);
    border: 2px solid var(--tba-accent);
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    transform: translateY(calc(-100% - 1rem));
    transition: transform 0.2s ease;
}

.tba-skip-link:focus {
    transform: translateY(0);
}

#tba-site-nav {
    position: fixed !important;
    top: 12px !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    width: min(calc(100% - 24px), 1440px) !important;
    height: 64px !important;
    margin: 0 !important;
    padding: 0 0.7rem 0 0.65rem !important;
    display: flex !important;
    align-items: center !important;
    gap: clamp(0.9rem, 1.6vw, 1.5rem) !important;
    z-index: 1200 !important;
    background: rgba(250, 250, 250, 0.94) !important;
    border: 1px solid rgba(15, 15, 15, 0.08) !important;
    border-radius: 4px !important;
    box-shadow: 0 10px 34px rgba(15, 15, 15, 0.08) !important;
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    transform: translateX(-50%);
    will-change: transform;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

#tba-site-nav.tba-nav-hidden {
    transform: translate(-50%, calc(-100% - 24px));
}

.tba-nav-shell {
    width: min(100%, 1440px);
    height: 64px;
    margin: 0 auto;
    padding: 0 0.7rem 0 0.65rem;
    display: flex;
    align-items: center;
    gap: clamp(0.9rem, 1.6vw, 1.5rem);
    background: rgba(250, 250, 250, 0.92);
    border: 1px solid rgba(15, 15, 15, 0.08);
    border-radius: 4px;
    box-shadow: 0 10px 34px rgba(15, 15, 15, 0.06);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

#tba-site-nav.tba-scrolled {
    background: rgba(250, 250, 250, 0.985) !important;
    border-color: rgba(15, 15, 15, 0.12) !important;
    box-shadow: 0 14px 38px rgba(15, 15, 15, 0.1) !important;
}

.tba-brand,
.tba-mobile-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    flex: 0 0 auto;
    color: var(--tba-ink);
    text-decoration: none;
}

.tba-brand-mark {
    width: 42px;
    height: 42px;
    display: block;
    flex: 0 0 auto;
    color: var(--tba-accent);
}

.tba-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    line-height: 1;
}

.tba-brand-kicker,
.tba-brand-name {
    display: block;
    white-space: nowrap;
}

.tba-brand-kicker {
    color: var(--tba-accent);
    font-size: 0.58rem;
    font-weight: 750;
    letter-spacing: 0.24em;
}

.tba-brand-name {
    color: var(--tba-ink);
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.035em;
}

.tba-nav-links {
    height: 100%;
    margin: 0 0 0 auto !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    gap: clamp(1rem, 1.65vw, 1.75rem) !important;
    list-style: none !important;
}

.tba-nav-links > li {
    position: relative;
    height: 100%;
    margin: 0 !important;
    display: flex;
    align-items: center;
}

.tba-nav-link,
.tba-services-trigger {
    position: relative;
    margin: 0;
    padding: 0.45rem 0 !important;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--tba-ink) !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    text-transform: none !important;
    font: inherit;
    font-size: 0.78rem !important;
    font-weight: 650 !important;
    letter-spacing: 0.025em !important;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
}

.tba-services-trigger svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s ease;
}

.tba-nav-link::after,
.tba-services-trigger::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--tba-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.tba-nav-link:hover::after,
.tba-nav-link:focus-visible::after,
.tba-nav-link.is-current::after,
.tba-services-trigger:hover::after,
.tba-services-trigger:focus-visible::after,
.tba-services-trigger.is-current::after,
.tba-services-item.is-open .tba-services-trigger::after {
    transform: scaleX(1);
    transform-origin: left;
}

.tba-services-item.is-open .tba-services-trigger svg {
    transform: rotate(180deg);
}

.tba-dropdown {
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    width: min(840px, calc(100vw - 3rem));
    padding-top: 0.8rem;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.25s;
}

.tba-services-item.is-open .tba-dropdown,
.tba-services-item:hover .tba-dropdown,
.tba-services-item:focus-within .tba-dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.tba-dropdown-inner {
    min-height: 386px;
    padding: 0.55rem;
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 0;
    background: rgba(16, 16, 16, 0.985);
    border: 1px solid rgba(179, 148, 77, 0.24);
    border-radius: 4px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.tba-dropdown-label {
    display: block;
    margin: 0 0 0.65rem;
    color: var(--tba-accent-light);
    font-size: 0.62rem;
    font-weight: 750;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tba-service-categories {
    padding: 0.45rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.tba-service-category {
    width: 100%;
    min-height: 78px;
    margin: 0;
    padding: 0.85rem 0.9rem !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.72) !important;
    background: transparent !important;
    border: 0 !important;
    border-left: 2px solid transparent !important;
    border-radius: 2px !important;
    box-shadow: none !important;
    text-align: left;
    font: inherit;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease !important;
}

.tba-service-category > span,
.tba-service-category strong,
.tba-service-category small {
    display: block;
}

.tba-service-category strong {
    color: inherit;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.3;
}

.tba-service-category small {
    margin-top: 0.28rem;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.63rem;
    font-weight: 520;
    letter-spacing: 0.02em;
}

.tba-service-category svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.32);
    transition: transform 0.2s ease, color 0.2s ease;
}

.tba-service-category:hover,
.tba-service-category:focus-visible,
.tba-service-category.is-active {
    color: #fff !important;
    background: rgba(179, 148, 77, 0.1) !important;
    border-left-color: var(--tba-accent) !important;
    outline: none;
}

.tba-service-category.is-active small,
.tba-service-category.is-active svg {
    color: var(--tba-accent-light);
}

.tba-service-category.is-active svg {
    transform: translateX(2px);
}

.tba-service-panels {
    min-width: 0;
}

.tba-service-panel {
    min-width: 0;
    height: 100%;
    padding: 1rem 1.15rem 1.1rem;
}

.tba-service-panel[hidden] {
    display: none;
}

.tba-service-panel.is-active {
    animation: tba-panel-enter 0.24s ease both;
}

.tba-service-panel-head {
    margin-bottom: 0.8rem;
    padding: 0.25rem 0.25rem 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.tba-service-panel-head .tba-dropdown-label {
    margin-bottom: 0.35rem;
}

.tba-service-panel-head p {
    max-width: 480px;
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.69rem;
    line-height: 1.55;
}

.tba-service-panel-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.28rem 0.45rem;
}

.tba-dropdown .tba-service-option {
    min-width: 0;
    min-height: 62px;
    padding: 0.68rem 0.75rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.22rem;
    border: 1px solid transparent;
}

.tba-service-option strong,
.tba-service-option span {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
}

.tba-service-option strong {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.73rem;
    font-weight: 680;
    line-height: 1.25;
}

.tba-service-option span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.61rem;
    font-weight: 480;
    line-height: 1.35;
}

.tba-dropdown .tba-service-option:hover,
.tba-dropdown .tba-service-option:focus-visible,
.tba-dropdown .tba-service-option[aria-current="page"] {
    border-color: rgba(179, 148, 77, 0.22);
    background: rgba(179, 148, 77, 0.09);
}

.tba-dropdown .tba-service-option:hover span,
.tba-dropdown .tba-service-option:focus-visible span,
.tba-dropdown .tba-service-option[aria-current="page"] span {
    color: rgba(255, 255, 255, 0.62);
}

@keyframes tba-panel-enter {
    from { opacity: 0; transform: translateX(5px); }
    to { opacity: 1; transform: translateX(0); }
}

.tba-dropdown-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.15rem 0.55rem;
}

.tba-dropdown-column:last-child .tba-dropdown-links {
    grid-template-columns: 1fr;
}

.tba-dropdown a {
    padding: 0.62rem 0.7rem !important;
    color: rgba(255, 255, 255, 0.78) !important;
    border-radius: 2px;
    text-decoration: none !important;
    font-size: 0.74rem !important;
    font-weight: 550 !important;
    line-height: 1.35;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.tba-dropdown a:hover,
.tba-dropdown a:focus-visible,
.tba-dropdown a[aria-current="page"] {
    color: #fff !important;
    background: rgba(179, 148, 77, 0.11);
    transform: translateX(2px);
}

.tba-nav-actions,
.tba-mobile-controls {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex: 0 0 auto;
}

.tba-call,
.tba-mobile-call,
.tba-menu-toggle,
.tba-menu-close {
    height: 42px;
    min-width: 42px;
    padding: 0 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: var(--tba-ink) !important;
    background: rgba(255, 255, 255, 0.65) !important;
    border: 1px solid rgba(15, 15, 15, 0.12) !important;
    border-radius: 3px !important;
    box-shadow: none !important;
    text-decoration: none !important;
    font: inherit;
    font-size: 0.73rem !important;
    font-weight: 650 !important;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease !important;
}

.tba-call:hover,
.tba-call:focus-visible,
.tba-mobile-call:hover,
.tba-mobile-call:focus-visible,
.tba-menu-toggle:hover,
.tba-menu-toggle:focus-visible {
    color: var(--tba-accent) !important;
    border-color: var(--tba-accent) !important;
}

.tba-call svg,
.tba-mobile-call svg,
.tba-menu-toggle svg,
.tba-menu-close svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.tba-nav-cta,
.tba-mobile-cta {
    min-height: 42px;
    padding: 0 1.15rem !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--tba-ink) !important;
    background: linear-gradient(115deg, #9d7b35, #e3ca82 46%, #b3944d 78%, #e7d18f) !important;
    background-size: 180% 100% !important;
    border: 0 !important;
    border-radius: 3px !important;
    box-shadow: none !important;
    text-decoration: none !important;
    text-transform: none !important;
    font: inherit;
    font-size: 0.74rem !important;
    font-weight: 750 !important;
    letter-spacing: 0.015em !important;
    line-height: 1.2;
    white-space: nowrap;
    transition: background-position 0.3s ease, transform 0.2s ease !important;
}

.tba-nav-cta:hover,
.tba-nav-cta:focus-visible,
.tba-mobile-cta:hover,
.tba-mobile-cta:focus-visible {
    background-position: 100% 0 !important;
    transform: translateY(-1px);
}

.tba-mobile-controls {
    display: none;
    margin-left: auto;
}

.tba-mobile-call,
.tba-menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0 !important;
}

.tba-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1220;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: opacity 0.3s ease, visibility 0.3s;
}

.tba-menu-backdrop.is-open {
    visibility: visible;
    opacity: 1;
}

.tba-mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1230;
    width: min(100%, 440px);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    color: #fff;
    background: #101010;
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.24);
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(0.76, 0, 0.24, 1), visibility 0.42s;
}

.tba-mobile-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(rgba(179, 148, 77, 0.035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(179, 148, 77, 0.035) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

.tba-mobile-panel.is-open {
    visibility: visible;
    transform: translateX(0);
}

.tba-mobile-header {
    min-height: 76px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tba-mobile-brand {
    color: #fff;
}

.tba-mobile-brand .tba-brand-mark {
    width: 38px;
    height: 38px;
}

.tba-mobile-brand .tba-brand-name {
    color: #fff;
    font-size: 0.9rem;
}

.tba-mobile-brand .tba-brand-kicker {
    color: var(--tba-accent-light);
    font-size: 0.54rem;
}

.tba-menu-close {
    width: 44px;
    height: 44px;
    padding: 0 !important;
    color: #fff !important;
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
}

.tba-mobile-content {
    padding: 0.8rem 1.25rem 2rem;
    position: relative;
    z-index: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.tba-mobile-link,
.tba-mobile-summary {
    width: 100%;
    min-height: 48px;
    margin: 0;
    padding: 0.8rem 0.25rem !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.9) !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    text-transform: none !important;
    font: inherit;
    font-size: 1rem !important;
    font-weight: 620 !important;
    letter-spacing: 0 !important;
    line-height: 1.35;
}

.tba-mobile-link.is-current {
    color: var(--tba-accent-light) !important;
}

.tba-mobile-services > summary {
    cursor: pointer;
    list-style: none;
}

.tba-mobile-services > summary::-webkit-details-marker {
    display: none;
}

.tba-mobile-summary svg {
    width: 17px;
    height: 17px;
    transition: transform 0.2s ease;
}

.tba-mobile-services[open] .tba-mobile-summary svg {
    transform: rotate(180deg);
}

.tba-mobile-service-list {
    padding: 0.5rem 0 0.8rem 0.85rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.15rem 0.45rem;
    border-left: 1px solid var(--tba-accent);
}

.tba-mobile-service-list a {
    padding: 0.58rem 0.45rem !important;
    color: rgba(255, 255, 255, 0.66) !important;
    text-decoration: none !important;
    font-size: 0.75rem !important;
    font-weight: 520 !important;
    line-height: 1.35;
}

.tba-mobile-service-list a:hover,
.tba-mobile-service-list a:focus-visible,
.tba-mobile-service-list a[aria-current="page"] {
    color: #fff !important;
    background: rgba(179, 148, 77, 0.09);
}

.tba-mobile-secondary {
    margin-top: 0.9rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.4rem;
}

.tba-mobile-secondary a {
    padding: 0.68rem 0.25rem !important;
    color: rgba(255, 255, 255, 0.58) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    text-decoration: none !important;
    font-size: 0.68rem !important;
    font-weight: 550 !important;
}

.tba-mobile-cta {
    width: 100%;
    min-height: 50px;
    margin-top: 1rem;
}

.tba-mobile-contact {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 1rem;
}

.tba-mobile-contact a {
    color: rgba(255, 255, 255, 0.62) !important;
    text-decoration: none !important;
    font-size: 0.74rem !important;
}

body.tba-menu-open {
    overflow: hidden !important;
}

/* Shared price clarification for non-city service pages. */
.tba-price-scope {
    width: min(100%, 1040px);
    margin: 2rem auto;
    padding: 1.25rem 1.4rem;
    color: #24231f;
    background: #f4f1ea;
    border-left: 3px solid #b3944d;
    font-family: "Inter", Arial, sans-serif;
    text-align: left;
}

.tba-price-scope strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.92rem;
}

.tba-price-scope p {
    margin: 0;
    color: #66625a;
    font-size: 0.82rem;
    line-height: 1.65;
}

.tba-price-scope a {
    display: inline-flex;
    margin-top: 0.7rem;
    color: #735b26 !important;
    font-size: 0.78rem;
    font-weight: 750;
    text-decoration: none !important;
}

.price-value .tba-price-in-vat {
    display: block;
    margin-top: 0.45rem;
    color: #716d65;
    font-family: "Inter", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 550;
    letter-spacing: 0;
    line-height: 1.35;
}

.hero-right-badge .tba-hero-price-in-vat {
    display: block;
    margin-top: 0.3rem;
    color: inherit;
    font-size: 0.66rem;
    font-weight: 500;
    opacity: 0.72;
}

.prijs-sub .prijs-secondary {
    display: block;
    margin-top: 0.25rem;
    color: inherit;
    font-size: 0.76em;
    opacity: 0.75;
}

.prijs-amount.prijs-amount-text {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.modal-price small {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.42em;
    font-weight: 550;
}

.modal-scope-note {
    margin: 1rem 0 0;
    padding: 0.85rem 1rem;
    color: #66625a;
    background: #f4f1ea;
    border-left: 3px solid #b3944d;
    font-size: 0.78rem;
    line-height: 1.55;
}

/* Reusable text replacement for the three legal-page footer logos. */
.tba-footer-wordmark {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #fff;
    text-decoration: none;
}

.tba-footer-wordmark .tba-brand-mark {
    width: 40px;
    height: 40px;
}

.tba-footer-wordmark .tba-brand-name {
    color: #fff;
}

@media (max-width: 1240px) {
    .tba-call span {
        display: none;
    }

    .tba-call {
        width: 42px;
        padding: 0 !important;
    }
}

@media (max-width: 1120px) {
    #tba-site-nav {
        top: 8px !important;
        width: calc(100% - 24px) !important;
        height: 56px !important;
        padding: 0 0.35rem 0 0.45rem !important;
        gap: 0.45rem !important;
    }

    .tba-nav-shell {
        height: 56px;
        padding: 0 0.35rem 0 0.45rem;
        gap: 0.45rem;
    }

    .tba-nav-links,
    .tba-nav-actions {
        display: none !important;
    }

    .tba-mobile-controls {
        display: flex;
    }

    .tba-brand {
        margin-right: auto;
        gap: 0.55rem;
    }

    .tba-brand-mark {
        width: 38px;
        height: 38px;
    }

    .tba-brand-kicker {
        font-size: 0.52rem;
    }

    .tba-brand-name {
        font-size: 0.88rem;
    }
}

.tba-visualisation-upsell {
    position: relative;
    z-index: 1;
    padding: clamp(4.5rem, 8vw, 8rem) 4vw;
    color: #f8f5ed;
    background: #1a1a18;
}

.tba-visualisation-upsell-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
}

.tba-visualisation-upsell-label {
    display: block;
    margin-bottom: 1rem;
    color: #c4a35a;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.tba-visualisation-upsell h2 {
    margin: 0 0 1.25rem;
    color: inherit;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 600;
    line-height: 1.08;
}

.tba-visualisation-upsell p {
    max-width: 590px;
    margin: 0;
    color: rgba(248, 245, 237, 0.68);
    font-size: 1rem;
    line-height: 1.75;
}

.tba-visualisation-upsell-copy > a {
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
    margin-top: 1.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #c4a35a;
    color: #f8f5ed;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.tba-visualisation-upsell-images {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
    align-items: end;
}

.tba-visualisation-upsell-images img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.tba-visualisation-upsell-images:not(.is-single) img:last-child {
    transform: translateY(1.5rem);
}

.tba-visualisation-upsell-images.is-single {
    grid-template-columns: minmax(0, 1fr);
}

.tba-visualisation-upsell-images.is-single img {
    aspect-ratio: 3 / 2;
}

@media (max-width: 850px) {
    .tba-visualisation-upsell-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .tba-visualisation-upsell-images {
        grid-template-columns: 1fr;
    }

    .tba-visualisation-upsell-images:not(.is-single) img:last-child {
        display: none;
    }
}

@media (max-width: 380px) {
    .tba-brand-mark {
        width: 35px;
        height: 35px;
    }

    .tba-brand-kicker {
        font-size: 0.48rem;
    }

    .tba-brand-name {
        font-size: 0.78rem;
    }

    .tba-mobile-secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .tba-service-panel {
        animation-duration: 0.01ms !important;
    }

    #tba-site-nav,
    .tba-dropdown,
    .tba-menu-backdrop,
    .tba-mobile-panel,
    .tba-mobile-summary svg,
    .tba-service-panel,
    .tba-service-category svg,
    .tba-skip-link {
        transition-duration: 0.01ms !important;
    }
}
