:root {
    --brand-primary: #5c813c;
    --brand-accent: #407c34;
    --brand-gold: #ad9e51;
    --brand-light: #e6eee4;
    --brand-cream: #ccc7ad;
    --brand-ink: #24301f;
    --brand-muted: #808080;
    --brand-dark: #10170f;
}

html {
    scroll-behavior: smooth;
}

body.page-brand {
    margin: 0;
    background: var(--brand-light);
    color: var(--brand-muted);
    font-family: "Rubik", "Segoe UI", Arial, sans-serif;
}

body.page-brand *,
body.page-brand *::before,
body.page-brand *::after {
    box-sizing: border-box;
}

body.page-brand a {
    color: inherit;
    text-decoration: none;
}

body.page-brand button {
    font-family: inherit;
}

[hidden] {
    display: none !important;
}

.brand-container {
    width: min(1140px, calc(100% - 32px));
    margin-inline: auto;
}

.brand-topbar {
    position: relative;
    z-index: 40;
    background: var(--brand-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.brand-topbar-inner {
    display: flex;
    min-height: 35px;
    align-items: center;
    gap: 18px;
}

.brand-topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.brand-header {
    position: absolute;
    top: 48px;
    right: 0;
    left: 0;
    z-index: 50;
    background: transparent;
    box-shadow: none;
    color: #fff;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.brand-header:hover,
.brand-header:focus-within {
    background: transparent;
    box-shadow: none;
}

.brand-header-inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    border: 0;
    border-radius: 18px;
    background: transparent;
    padding: 0;
    line-height: 0;
    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.18);
    transform: perspective(520px) rotateX(0.8deg);
    transform-origin: left center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.brand-logo:hover,
.brand-logo:focus-visible {
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.24);
    transform: perspective(520px) rotateX(0.8deg) translateY(-1px);
}

.brand-logo img {
    display: block;
    width: min(360px, 48vw);
    height: auto;
    filter:
        drop-shadow(0 1px 1px rgba(255, 255, 255, 0.2))
        drop-shadow(0 2px 3px rgba(0, 0, 0, 0.76))
        drop-shadow(0 7px 12px rgba(0, 0, 0, 0.52));
}

.brand-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.9px;
    text-transform: uppercase;
}

.brand-nav a,
.brand-nav button {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font: inherit;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.95),
        0 4px 14px rgba(0, 0, 0, 0.82);
    transition: color 0.2s ease;
}

.brand-nav a:hover,
.brand-nav button:hover {
    color: #d9e8cf;
}

.brand-menu-button {
    display: none;
    height: 42px;
    width: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
}

.brand-menu-button span,
.brand-menu-button span::before,
.brand-menu-button span::after {
    display: block;
    width: 19px;
    height: 2px;
    background: currentColor;
    content: "";
}

.brand-menu-button span::before {
    transform: translateY(-7px);
}

.brand-menu-button span::after {
    transform: translateY(5px);
}

.brand-mobile-menu {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
    border-radius: 8px;
    background: rgba(16, 23, 15, 0.96);
    padding: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.brand-mobile-menu a,
.brand-mobile-menu button {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    padding: 12px 6px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-align: left;
    text-transform: uppercase;
}

.brand-hero {
    position: relative;
    display: flex;
    min-height: 360px;
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    isolation: isolate;
    padding: 130px 0 76px;
}

.brand-hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: rgba(0, 0, 0, 0.29);
    content: "";
}

.brand-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.15));
    content: "";
}

.brand-hero-home {
    min-height: clamp(600px, 88vh, 760px);
}

.brand-hero-home::before {
    background: transparent;
}

.brand-hero-home::after {
    background: transparent;
}

.brand-hero-center {
    text-align: center;
}

.brand-hero-copy {
    max-width: 720px;
}

.brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(64, 124, 52, 0.72);
    padding: 8px 18px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.brand-hero-title {
    margin: 0;
    color: #fff;
    font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.04;
    text-transform: uppercase;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.9),
        0 5px 18px rgba(0, 0, 0, 0.74),
        0 12px 34px rgba(0, 0, 0, 0.5);
}

.brand-hero-text {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.92),
        0 4px 14px rgba(0, 0, 0, 0.7);
}

.brand-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.brand-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0 24px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.brand-button:hover {
    transform: translateY(-1px);
}

.brand-button-primary,
body.page-brand a.brand-button-primary,
body.page-brand button.brand-button-primary {
    background: var(--brand-primary);
    color: #fff;
}

.brand-button-primary:hover,
body.page-brand a.brand-button-primary:hover,
body.page-brand button.brand-button-primary:hover {
    background: var(--brand-accent);
    color: #fff;
}

.brand-button-ghost {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.brand-button-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.brand-section {
    padding: 70px 0;
}

.brand-section-light,
.section-light {
    background: var(--brand-light);
    color: var(--brand-muted);
}

.brand-section-white {
    background: #fff;
    color: var(--brand-muted);
}

.brand-section-dark,
.section-brand,
.section-brand-soft {
    background: var(--brand-primary);
    color: #fff;
}

.brand-section-cream {
    background: #eee9d6;
    color: var(--brand-ink);
}

.brand-kicker {
    margin: 0 0 18px;
    color: var(--brand-accent);
    font-family: "Outfit", "Rubik", sans-serif;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand-heading {
    margin: 0;
    color: var(--brand-accent);
    font-family: "Outfit", "Rubik", sans-serif;
    font-size: clamp(27px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.15;
}

.brand-copy {
    color: var(--brand-muted);
    font-size: 15px;
    line-height: 1.8;
}

.brand-copy p {
    margin: 0 0 18px;
}

.brand-grid {
    display: grid;
    gap: 28px;
}

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

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

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

.brand-card {
    border-radius: 38px;
    background: linear-gradient(180deg, #f7f7f7 0%, #fff 100%);
    color: var(--brand-muted);
    box-shadow: 0 16px 40px rgba(16, 23, 15, 0.04);
}

.brand-card-pad {
    padding: 34px;
}

.brand-card-center {
    text-align: center;
}

.brand-card-icon {
    display: block;
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    object-fit: contain;
}

.brand-card h3,
.brand-card h4 {
    margin: 0;
    color: var(--brand-accent);
    font-family: "Outfit", "Rubik", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.brand-card p {
    margin: 16px 0 0;
    font-size: 15px;
    line-height: 1.65;
}

.brand-service-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
}

.brand-service-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.brand-service-card .brand-card-pad {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.brand-service-card .brand-button {
    align-self: flex-start;
    margin-top: auto;
}

.brand-service-tag {
    margin: 0 0 10px !important;
    color: var(--brand-accent);
    font-size: 12px !important;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.brand-button-outline {
    border-color: var(--brand-primary);
    background: transparent;
    color: var(--brand-primary);
}

.brand-button-outline:hover {
    background: var(--brand-primary);
    color: #fff;
}

.brand-band {
    position: relative;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 84px 0;
    isolation: isolate;
}

.brand-band::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.24);
    content: "";
}

.brand-band-environment::before {
    background: rgba(0, 0, 0, 0.24);
}

.brand-band-environment h2,
.brand-band-environment p {
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.brand-band h2 {
    margin: 0 0 22px;
    color: #fff;
    font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.brand-band p {
    max-width: 850px;
    margin: 0 0 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.85;
}

.brand-footer,
.footer-brand {
    background: var(--brand-cream);
    color: var(--brand-muted);
}

.brand-footer-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    padding: 46px 0 36px;
}

.brand-footer-logo {
    width: min(300px, 80vw);
    height: auto;
}

.brand-footer h3 {
    margin: 0 0 18px;
    color: var(--brand-primary);
    font-family: "Outfit", "Rubik", sans-serif;
    font-size: 21px;
    font-weight: 700;
}

.brand-footer a {
    display: block;
    margin: 0 0 10px;
    color: #4f5b45;
    font-size: 15px;
}

.brand-footer p {
    margin: 0;
    color: #4f5b45;
    font-size: 15px;
    line-height: 1.7;
}

.brand-footer-bottom {
    border-top: 1px solid rgba(36, 48, 31, 0.16);
    padding: 16px 0;
    color: #4f5b45;
    font-size: 13px;
    text-align: center;
}

.brand-footer-bottom a {
    display: inline;
    margin: 0;
    color: #304825;
    font-weight: 600;
}

.brand-legal-hero {
    background:
        linear-gradient(90deg, rgba(16, 23, 15, 0.88), rgba(16, 23, 15, 0.56)),
        url("../finance/hero-01.webp") center / cover no-repeat;
    color: #fff;
    padding: 190px 0 86px;
}

.brand-legal-hero h1 {
    max-width: 860px;
    margin: 10px 0 18px;
    font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
    font-size: clamp(42px, 7vw, 82px);
    font-weight: 700;
    line-height: 0.98;
    text-transform: uppercase;
}

.brand-legal-hero p {
    max-width: 720px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.7;
}

.brand-legal-hero span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 600;
}

.brand-legal-section {
    background: #f7f8f3;
    padding: 64px 0;
}

.brand-legal-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}

.brand-legal-aside {
    position: sticky;
    top: 24px;
    border-left: 4px solid var(--brand-gold);
    background: #fff;
    padding: 24px;
    box-shadow: 0 18px 45px rgba(36, 48, 31, 0.08);
}

.brand-legal-aside strong {
    display: block;
    margin-bottom: 10px;
    color: var(--brand-ink);
    font-size: 17px;
}

.brand-legal-aside p {
    margin: 0 0 18px;
    color: #5f6b58;
    font-size: 14px;
    line-height: 1.6;
}

.brand-legal-aside a {
    display: block;
    margin-top: 10px;
    color: var(--brand-primary);
    font-weight: 700;
}

.brand-legal-content {
    background: #fff;
    padding: clamp(28px, 5vw, 54px);
    box-shadow: 0 18px 45px rgba(36, 48, 31, 0.08);
}

.brand-legal-content h2 {
    margin: 0 0 12px;
    color: var(--brand-ink);
    font-family: "Outfit", "Rubik", sans-serif;
    font-size: 24px;
    line-height: 1.25;
}

.brand-legal-content h2:not(:first-child) {
    margin-top: 34px;
}

.brand-legal-content p,
.brand-legal-content li {
    color: #4f5b45;
    font-size: 16px;
    line-height: 1.78;
}

.brand-legal-content p {
    margin: 0 0 16px;
}

.brand-legal-content ul {
    margin: 0 0 18px;
    padding-left: 22px;
}

.brand-legal-content a {
    color: var(--brand-primary);
    font-weight: 700;
}

.brand-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.brand-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
}

.brand-modal-panel {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    max-height: 88vh;
    overflow: auto;
    border-radius: 28px;
    background: #fff;
    padding: 30px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.brand-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid #dfe7d7;
    border-radius: 999px;
    background: #fff;
    color: var(--brand-primary);
}

.brand-form {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.brand-form label {
    display: grid;
    gap: 7px;
    color: var(--brand-accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.brand-form input,
.brand-form textarea {
    width: 100%;
    border: 1px solid #dbe5d3;
    border-radius: 14px;
    background: #f8fbf4;
    padding: 13px 14px;
    color: var(--brand-ink);
    font: inherit;
    outline: none;
}

.brand-form textarea {
    min-height: 120px;
    resize: vertical;
}

.brand-form input:focus,
.brand-form textarea:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(92, 129, 60, 0.14);
}

.brand-hero-service,
.brand-project-hero {
    min-height: 600px;
}

.service-intro,
.project-index-heading {
    max-width: 820px;
    margin-bottom: 42px;
}

.service-intro .brand-copy,
.project-index-heading .brand-copy {
    margin-top: 18px;
}

.service-visual-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: 28px;
    align-items: stretch;
}

.service-visual-layout--reverse {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
}

.service-visual-media {
    min-height: 100%;
    overflow: hidden;
    border-radius: 38px;
    box-shadow: 0 18px 48px rgba(16, 23, 15, 0.12);
}

.service-visual-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.service-card-grid {
    display: grid;
    gap: 22px;
}

.service-card-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-visual-layout--reverse .service-visual-media {
    order: 2;
}

.brand-back-link {
    display: inline-flex;
    margin-bottom: 24px;
    color: #dbe8cf;
    font-size: 14px;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.brand-back-link:hover {
    color: #fff;
}

.brand-project-kicker {
    margin: 0 0 16px;
    color: #b8d69f;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.project-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 54px;
    align-items: start;
}

.project-detail-content {
    min-width: 0;
    color: #43543c;
    font-size: 17px;
    line-height: 1.75;
}

.project-detail-content > *:first-child {
    margin-top: 0;
}

.project-detail-content h2,
.project-detail-content h3,
.project-detail-content h4 {
    color: var(--brand-ink);
    font-family: "Outfit", "Rubik", sans-serif;
    line-height: 1.2;
}

.project-detail-content h2 {
    margin: 42px 0 18px;
    font-size: clamp(28px, 4vw, 42px);
}

.project-detail-content h3 {
    margin: 34px 0 14px;
    font-size: clamp(22px, 3vw, 30px);
}

.project-detail-content p {
    margin: 0 0 20px;
}

.project-detail-content figure,
.project-detail-content .wp-block-gallery {
    margin: 28px 0;
}

.project-detail-content figure img,
.project-detail-content > img,
.project-detail-content .wp-block-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.project-detail-content .wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.project-detail-content .wp-block-gallery figure {
    margin: 0;
}

.project-detail-content .wp-block-gallery img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
}

.project-contact-card {
    position: sticky;
    top: 24px;
    border: 1px solid #cfdcc5;
    border-radius: 28px;
    background: #e8f0e3;
    padding: 28px;
    box-shadow: 0 16px 38px rgba(36, 48, 31, 0.08);
}

.project-contact-card .brand-kicker {
    margin-bottom: 14px;
    font-size: 15px;
    letter-spacing: 3px;
}

.project-contact-card h2 {
    margin: 0 0 14px;
    color: var(--brand-ink);
    font-family: "Outfit", "Rubik", sans-serif;
    font-size: 24px;
    line-height: 1.3;
}

.project-contact-card p {
    margin: 0 0 22px;
    color: #5f6f56;
    font-size: 15px;
    line-height: 1.65;
}

.project-whatsapp-link {
    display: block;
    margin-top: 16px;
    color: var(--brand-accent) !important;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.project-related {
    border-top: 1px solid rgba(36, 48, 31, 0.1);
}

.bambu-landing-hero {
    position: relative;
    display: flex;
    min-height: 720px;
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    color: #fff;
    isolation: isolate;
    padding: 170px 0 90px;
}

.bambu-landing-hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(12, 24, 10, 0.92), rgba(12, 24, 10, 0.42), rgba(12, 24, 10, 0.12));
    content: "";
}

.bambu-hero-content {
    margin-left: max(16px, calc((100% - 1140px) / 2));
}

.bambu-hero-content h1 {
    max-width: 830px;
    margin: 0;
    color: #fff;
    font-family: "Oswald", "Arial Narrow", sans-serif;
    font-size: clamp(50px, 7vw, 92px);
    line-height: 0.98;
    text-transform: uppercase;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
}

.bambu-hero-content h1 span {
    color: #c9dc9f;
}

.bambu-hero-content > p {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.75;
}

.bambu-split,
.bambu-faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 70px;
    align-items: start;
}

.bambu-section-heading {
    max-width: 840px;
    margin-bottom: 42px;
}

.bambu-section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.bambu-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.bambu-process-card {
    overflow: hidden;
    border-radius: 30px;
    background: #f5f8f1;
    box-shadow: 0 16px 40px rgba(16, 23, 15, 0.08);
}

.bambu-process-card > img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.bambu-process-card > div {
    padding: 28px;
}

.bambu-process-card span {
    color: var(--brand-gold);
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.bambu-process-card h3 {
    margin: 10px 0;
    color: var(--brand-ink);
    font-family: "Outfit", sans-serif;
    font-size: 24px;
}

.bambu-process-card p {
    margin: 0;
    color: #5d6f54;
    line-height: 1.65;
}

.bambu-dark-section {
    background: var(--brand-dark);
    color: #fff;
}

.bambu-dark-section .brand-heading {
    color: #fff;
}

.bambu-dark-section .brand-kicker {
    color: #b9cf9c;
}

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

.bambu-gallery img {
    width: 100%;
    height: 330px;
    border-radius: 24px;
    object-fit: cover;
}

.bambu-client-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.bambu-client-logo {
    display: grid;
    min-height: 118px;
    place-items: center;
    border: 1px solid #e0e8da;
    border-radius: 22px;
    background: #fff;
    padding: 18px;
}

.bambu-client-logo img {
    max-width: 100%;
    max-height: 74px;
    object-fit: contain;
}

.bambu-faq-list {
    display: grid;
    gap: 12px;
}

.bambu-faq-list details {
    border: 1px solid #d5dfcd;
    border-radius: 18px;
    background: #fff;
    padding: 20px 22px;
}

.bambu-faq-list summary {
    color: var(--brand-ink);
    cursor: pointer;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.bambu-faq-list p {
    margin: 14px 0 0;
    color: #5d6f54;
    line-height: 1.65;
}

.bambu-final-cta {
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    color: #fff;
    isolation: isolate;
    padding: 100px 0;
    text-align: center;
}

.bambu-final-cta::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(12, 24, 10, 0.82);
    content: "";
}

.bambu-final-cta .brand-kicker {
    color: #c9dc9f;
}

.bambu-final-cta h2 {
    max-width: 840px;
    margin: 0 auto 30px;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.08;
    text-transform: uppercase;
}

.bambu-privacy-note {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}

.bambu-privacy-note a {
    display: inline;
    color: #fff !important;
    text-decoration: underline !important;
}

@media (min-width: 1025px) {
    .brand-hero[style*="hero-nosotros-tree"],
    .brand-band {
        background-attachment: fixed;
    }
}

@media (max-width: 900px) {
    .brand-nav {
        display: none;
    }

    .brand-menu-button {
        display: flex;
    }

    .brand-grid-2,
    .brand-grid-3,
    .brand-grid-4,
    .brand-footer-main,
    .brand-legal-layout {
        grid-template-columns: 1fr;
    }

    .brand-legal-aside {
        position: static;
    }

    .service-visual-layout,
    .service-visual-layout--reverse,
    .project-detail-layout {
        grid-template-columns: 1fr;
    }

    .service-visual-layout--reverse .service-visual-media {
        order: 0;
    }

    .service-card-grid--2 {
        grid-template-columns: 1fr;
    }

    .service-visual-media img {
        min-height: 320px;
    }

    .project-contact-card {
        position: static;
    }

    .bambu-split,
    .bambu-faq-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bambu-process-grid {
        grid-template-columns: 1fr;
    }

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

    .brand-header-inner {
        min-height: 92px;
    }

    .brand-hero {
        min-height: 310px;
        padding: 115px 0 54px;
    }

    .brand-hero-home {
        min-height: 620px;
    }

    .brand-hero-service,
    .brand-project-hero {
        min-height: 520px;
    }
}

@media (max-width: 560px) {
    .brand-container,
    .brand-mobile-menu {
        width: min(100% - 22px, 1140px);
    }

    .brand-topbar-inner {
        min-height: 42px;
        flex-wrap: wrap;
        gap: 6px 14px;
        padding: 6px 0;
        font-size: 12px;
    }

    .brand-header {
        top: 54px;
    }

    .brand-logo,
    .brand-logo:hover,
    .brand-logo:focus-visible {
        transform: none;
    }

    .brand-logo img {
        width: min(282px, 68vw);
    }

    .brand-hero-title {
        font-size: 38px;
    }

    .brand-section {
        padding: 52px 0;
    }

    .brand-legal-hero {
        padding: 150px 0 62px;
    }

    .brand-legal-section {
        padding: 38px 0;
    }

    .brand-legal-content h2 {
        font-size: 21px;
    }

    .brand-card-pad {
        padding: 28px;
    }

    .brand-actions,
    .brand-button {
        width: 100%;
    }

    .project-detail-content .wp-block-gallery {
        grid-template-columns: 1fr;
    }

    .bambu-landing-hero {
        min-height: 660px;
        padding: 150px 0 70px;
    }

    .bambu-hero-content {
        margin-inline: auto;
    }

    .bambu-gallery {
        grid-template-columns: 1fr;
    }

    .bambu-gallery img {
        height: 260px;
    }

    .bambu-client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
