/* ==========================================================================
   Bollebos – Team Building landing page
   Editorial / brochure stijl (cream + serif + italic gouden accenten)
   ========================================================================== */

:root {
    --tb-cream:        #f5f0e8;
    --tb-cream-deep:   #ede5d4;
    --tb-cream-rule:   #d4cab3;
    --tb-ink:          #1a1a1a;
    --tb-muted:        #6b6457;
    --tb-olive:        #a39660;
    --tb-olive-deep:   #8a7e4f;
    --tb-green-dark:   #074e37;
    --tb-white:        #ffffff;

    --tb-serif:        'Fraunces', 'Playfair Display', Georgia, 'Times New Roman', serif;
    --tb-sans:         'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- base ---------- */

.bb-tb-page {
    background: var(--tb-cream);
    color: var(--tb-ink);
    font-family: var(--tb-sans);
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
}
.bb-tb-page * { box-sizing: border-box; }

.bb-tb-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

.bb-tb-page a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: color .2s ease;
}
.bb-tb-page a:hover {
    color: var(--tb-olive-deep);
}

/* ---------- helpers ---------- */

.bb-tb-eyebrow {
    display: block;
    font-family: var(--tb-sans);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--tb-olive);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.bb-tb-h2 {
    font-family: var(--tb-serif);
    font-weight: 400;
    font-size: clamp(2.6rem, 5.5vw, 5.2rem);
    line-height: 1;
    letter-spacing: -0.015em;
    color: var(--tb-ink);
    margin: 0 0 28px;
}
.bb-tb-h2 em {
    font-style: italic;
    color: var(--tb-olive);
    font-weight: 400;
}
.bb-tb-h2--center { text-align: center; }

.bb-tb-lead {
    font-family: var(--tb-serif);
    font-style: italic;
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    line-height: 1.45;
    color: var(--tb-ink);
    margin: 0 0 28px;
    max-width: 32ch;
}

.bb-tb-prose {
    max-width: 50ch;
}
.bb-tb-prose p {
    margin: 0 0 1.1em;
    color: var(--tb-ink);
    font-size: 1.02rem;
    line-height: 1.75;
}
.bb-tb-prose p:last-child { margin-bottom: 0; }

/* ---------- chapter rule (top of section) ---------- */

.bb-tb-page-rule {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px solid var(--tb-cream-rule);
    padding: 28px clamp(28px, 6vw, 80px) 16px;
    font-family: var(--tb-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--tb-muted);
}
.bb-tb-page-rule--light {
    color: rgba(255,255,255,0.85);
    border-bottom-color: rgba(255,255,255,0.25);
}
.bb-tb-page-num {
    font-family: var(--tb-serif);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

/* ---------- section frame ---------- */

.bb-tb-section {
    padding-bottom: clamp(72px, 9vw, 140px);
}
.bb-tb-section + .bb-tb-section { /* keep rules visible */ }

/* ============================================================
   COVER
   ============================================================ */

.bb-tb-cover {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    background-size: cover;
    background-position: center;
    color: var(--tb-white);
    padding: 0 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bb-tb-cover-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 35%, rgba(0,0,0,0.55) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.bb-tb-cover .bb-tb-page-rule {
    position: relative;
    z-index: 2;
    margin: 0;
}

.bb-tb-cover-inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vw, 80px) clamp(28px, 6vw, 80px);
    max-width: 900px;
}

.bb-tb-rule-mini {
    display: block;
    width: 90px;
    height: 1px;
    background: rgba(255,255,255,0.85);
    margin: 0 0 36px;
}

.bb-tb-cover-title {
    font-family: var(--tb-serif);
    font-weight: 400;
    font-size: clamp(3.2rem, 9vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.025em;
    color: var(--tb-white);
    margin: 0 0 42px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.bb-tb-cover-title em {
    font-style: italic;
    color: #d8c98a;
    font-weight: 400;
}

.bb-tb-cover-lead {
    font-family: var(--tb-serif);
    font-style: italic;
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.55;
    color: rgba(255,255,255,0.95);
    margin: 0;
    max-width: 36ch;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.bb-tb-page-foot {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 18px clamp(28px, 6vw, 80px) 32px;
    font-family: var(--tb-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}

/* ============================================================
   SPLIT (foto links / tekst rechts)
   ============================================================ */

.bb-tb-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(40px, 6vw, 90px);
    align-items: start;
    padding: clamp(40px, 6vw, 80px) clamp(28px, 6vw, 80px) 0;
    max-width: 1500px;
    margin: 0 auto;
}

.bb-tb-split-media {
    position: relative;
    aspect-ratio: 3 / 4.2;
    overflow: hidden;
    background: var(--tb-cream-deep);
}
.bb-tb-split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bb-tb-split-body {
    padding-top: 8px;
}

/* fact grid — onder de tekst */
.bb-tb-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(24px, 4vw, 60px);
    row-gap: 28px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--tb-cream-rule);
}
.bb-tb-fact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.bb-tb-fact-label {
    font-family: var(--tb-sans);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--tb-olive);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.bb-tb-fact-value {
    font-family: var(--tb-serif);
    font-size: 1.1rem;
    color: var(--tb-ink);
    line-height: 1.35;
}

/* ============================================================
   STORY (verhaal + tijdlijn)
   ============================================================ */

.bb-tb-story-head {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: clamp(40px, 6vw, 90px);
    align-items: start;
    padding: clamp(40px, 6vw, 80px) clamp(28px, 6vw, 80px) 0;
    max-width: 1500px;
    margin: 0 auto;
}
.bb-tb-story-photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--tb-cream-deep);
}
.bb-tb-story-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bb-tb-timeline {
    max-width: 1500px;
    margin: clamp(48px, 6vw, 80px) auto 0;
    padding: 0 clamp(28px, 6vw, 80px);
}
.bb-tb-tl-row {
    display: grid;
    grid-template-columns: 130px 160px minmax(0, 1fr);
    gap: clamp(20px, 3vw, 50px);
    padding: 24px 0;
    border-top: 1px solid var(--tb-cream-rule);
    align-items: baseline;
}
.bb-tb-tl-row:last-child {
    border-bottom: 1px solid var(--tb-cream-rule);
}
.bb-tb-tl-year {
    font-family: var(--tb-serif);
    font-size: 1.85rem;
    font-weight: 400;
    color: var(--tb-ink);
    line-height: 1;
    letter-spacing: -0.01em;
}
.bb-tb-tl-label {
    font-family: var(--tb-sans);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--tb-olive);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    line-height: 1.5;
}
.bb-tb-tl-body {
    font-family: var(--tb-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--tb-ink);
}
.bb-tb-tl-body strong {
    font-weight: 700;
}

/* ============================================================
   QUOTE (vol-bleed)
   ============================================================ */

.bb-tb-quote {
    position: relative;
    min-height: 92vh;
    min-height: 92svh;
    color: var(--tb-white);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.bb-tb-quote-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.bb-tb-quote-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(1.12) saturate(1.05);
}
.bb-tb-quote-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.0) 40%, rgba(0,0,0,0.4) 75%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
}
.bb-tb-quote-inner {
    position: relative;
    z-index: 2;
    padding: clamp(40px, 6vw, 80px) clamp(28px, 6vw, 80px);
    max-width: 820px;
}
.bb-tb-quote-marks {
    display: block;
    font-family: var(--tb-serif);
    font-style: italic;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #d8c98a;
    line-height: 0.6;
    margin-bottom: 24px;
}
.bb-tb-quote-text {
    font-family: var(--tb-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    line-height: 1.25;
    color: var(--tb-white);
    margin: 0 0 22px;
    text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.bb-tb-quote-cite {
    display: block;
    font-family: var(--tb-sans);
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #d8c98a;
}

/* ============================================================
   PRICE LIST (op "Met je team" sectie)
   ============================================================ */

.bb-tb-pricelist {
    margin: 48px 0 36px;
    padding: 36px 0 12px;
    border-top: 1px solid var(--tb-cream-rule);
}
.bb-tb-pl-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    padding: 14px 0;
    border-bottom: 1px solid var(--tb-cream-rule);
    align-items: baseline;
}
.bb-tb-pl-row dt {
    font-family: var(--tb-sans);
    font-size: 0.9rem;
    color: var(--tb-muted);
    margin: 0;
}
.bb-tb-pl-row dd {
    margin: 0;
    font-family: var(--tb-serif);
    font-size: 1.12rem;
    color: var(--tb-ink);
    text-align: right;
}

/* ============================================================
   CTA button
   ============================================================ */

.bb-tb-cta {
    display: inline-block;
    background: var(--tb-green-dark);
    color: var(--tb-white) !important;
    font-family: var(--tb-sans);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: none;
    padding: 16px 32px;
    border: none !important;
    border-bottom: none !important;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
    cursor: pointer;
}
.bb-tb-cta:hover {
    background: #053b29;
    color: var(--tb-white) !important;
    transform: translateY(-1px);
}
.bb-tb-cta--lg {
    padding: 22px 48px;
    font-size: 1.05rem;
}

/* ============================================================
   LEAD FORM (Contact Form 7) — brochure styled
   ============================================================ */

.bb-tb-leadform {
    background: var(--tb-cream-deep);
    padding-bottom: clamp(72px, 9vw, 120px);
}
.bb-tb-leadform-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(40px, 6vw, 90px);
    align-items: start;
    padding: clamp(40px, 6vw, 80px) clamp(28px, 6vw, 80px) 0;
    max-width: 1500px;
    margin: 0 auto;
}
.bb-tb-leadform-head .bb-tb-lead { max-width: 36ch; }
.bb-tb-pricelist--compact { margin-top: 28px; padding-top: 24px; }
.bb-tb-pricelist--compact .bb-tb-pl-row { padding: 10px 0; }
.bb-tb-pricelist--compact dt { font-size: 0.8rem; }
.bb-tb-pricelist--compact dd { font-size: 1rem; }

.bb-tb-leadform-body {
    background: var(--tb-cream);
    padding: clamp(28px, 4vw, 48px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

/* --- Contact Form 7 overrides (binnen .bb-tb-leadform-body) --- */
.bb-tb-leadform-body .wpcf7 { font-family: var(--tb-sans); }
.bb-tb-leadform-body .wpcf7 p { margin: 0 0 18px; }

.bb-tb-leadform-body label {
    display: block;
    font-family: var(--tb-sans);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--tb-olive);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.bb-tb-leadform-body input[type="text"],
.bb-tb-leadform-body input[type="email"],
.bb-tb-leadform-body input[type="tel"],
.bb-tb-leadform-body input[type="url"],
.bb-tb-leadform-body input[type="number"],
.bb-tb-leadform-body input[type="date"],
.bb-tb-leadform-body select,
.bb-tb-leadform-body textarea {
    width: 100%;
    font-family: var(--tb-serif);
    font-size: 1.05rem;
    color: var(--tb-ink);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--tb-cream-rule);
    border-radius: 0;
    padding: 10px 0 12px;
    line-height: 1.4;
    transition: border-color .2s ease;
    box-shadow: none;
}
.bb-tb-leadform-body textarea {
    min-height: 130px;
    resize: vertical;
    padding: 14px 0;
}
.bb-tb-leadform-body input:focus,
.bb-tb-leadform-body select:focus,
.bb-tb-leadform-body textarea:focus {
    outline: none;
    border-bottom-color: var(--tb-olive);
}
.bb-tb-leadform-body input::placeholder,
.bb-tb-leadform-body textarea::placeholder {
    color: var(--tb-muted);
    opacity: 0.55;
    font-style: italic;
}

.bb-tb-leadform-body input[type="checkbox"],
.bb-tb-leadform-body input[type="radio"] {
    accent-color: var(--tb-green-dark);
    margin-right: 8px;
}

.bb-tb-leadform-body .wpcf7-list-item {
    display: inline-block;
    margin: 0 16px 0 0;
}
.bb-tb-leadform-body .wpcf7-list-item label {
    display: inline;
    font-family: var(--tb-serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--tb-ink);
    letter-spacing: 0;
    text-transform: none;
}

.bb-tb-leadform-body .wpcf7-submit,
.bb-tb-leadform-body input[type="submit"] {
    margin-top: 12px;
    display: inline-block;
    width: auto;
    /* Parent thb-app.css forceert line-height:40px + height:40px op input[type=submit];
       override met natural sizing zodat padding daadwerkelijk ruimte geeft */
    height: auto;
    min-height: 0;
    line-height: 1.3;
    background: var(--tb-green-dark);
    color: var(--tb-white);
    font-family: var(--tb-sans);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: none;
    padding: 18px 36px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
    -webkit-appearance: none;
    appearance: none;
}
.bb-tb-leadform-body .wpcf7-submit:hover,
.bb-tb-leadform-body input[type="submit"]:hover {
    background: #053b29;
    transform: translateY(-1px);
}

.bb-tb-leadform-body .wpcf7-not-valid-tip {
    font-family: var(--tb-sans);
    font-size: 0.78rem;
    color: #b3361c;
    margin-top: 6px;
    font-style: normal;
}
/* Default: CF7 rendert wpcf7-response-output altijd; pas tonen als er een bericht in zit */
.bb-tb-leadform-body .wpcf7-response-output {
    display: none;
    font-family: var(--tb-sans);
    font-size: 0.92rem;
    margin: 20px 0 0;
    padding: 14px 18px;
    border: 1px solid var(--tb-cream-rule);
    background: var(--tb-cream);
    border-radius: 0;
}
/* CF7 zet aria-hidden="false" + form-status (sent/invalid/spam/aborted) bij melding */
.bb-tb-leadform-body .wpcf7 form.sent .wpcf7-response-output,
.bb-tb-leadform-body .wpcf7 form.invalid .wpcf7-response-output,
.bb-tb-leadform-body .wpcf7 form.spam .wpcf7-response-output,
.bb-tb-leadform-body .wpcf7 form.failed .wpcf7-response-output,
.bb-tb-leadform-body .wpcf7 form.aborted .wpcf7-response-output,
.bb-tb-leadform-body .wpcf7-response-output[aria-hidden="false"] {
    display: block;
}
.bb-tb-leadform-body .wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--tb-olive);
    color: var(--tb-ink);
}
.bb-tb-leadform-body .wpcf7-spinner { display: none; }

@media (max-width: 1100px) {
    .bb-tb-leadform-inner { grid-template-columns: minmax(0, 1fr); }
}

/* ============================================================
   GALLERY (asymmetric magazine grid)
   ============================================================ */

.bb-tb-gallery-head {
    padding: clamp(40px, 6vw, 80px) clamp(28px, 6vw, 80px) 56px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.bb-tb-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 110px;
    gap: 14px;
    padding: 0 clamp(28px, 6vw, 80px);
    max-width: 1700px;
    margin: 0 auto;
}
.bb-tb-gallery-item {
    margin: 0;
    overflow: hidden;
    background: var(--tb-cream-deep);
}
.bb-tb-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.bb-tb-gallery-item:hover img {
    transform: scale(1.04);
}

/* asymmetric placements — 12 col grid, 110px rows */
.bb-tb-gallery-item--0  { grid-column: span 5; grid-row: span 4; }
.bb-tb-gallery-item--1  { grid-column: span 4; grid-row: span 3; }
.bb-tb-gallery-item--2  { grid-column: span 3; grid-row: span 4; }
.bb-tb-gallery-item--3  { grid-column: span 3; grid-row: span 3; }
.bb-tb-gallery-item--4  { grid-column: span 4; grid-row: span 4; }
.bb-tb-gallery-item--5  { grid-column: span 5; grid-row: span 3; }
.bb-tb-gallery-item--6  { grid-column: span 4; grid-row: span 3; }
.bb-tb-gallery-item--7  { grid-column: span 3; grid-row: span 4; }
.bb-tb-gallery-item--8  { grid-column: span 5; grid-row: span 3; }
.bb-tb-gallery-item--9  { grid-column: span 4; grid-row: span 4; }
.bb-tb-gallery-item--10 { grid-column: span 3; grid-row: span 3; }
.bb-tb-gallery-item--11 { grid-column: span 5; grid-row: span 4; }

/* ============================================================
   FAQ
   ============================================================ */

.bb-tb-faq {
    background: var(--tb-cream-deep);
    padding-top: clamp(72px, 9vw, 120px);
    padding-bottom: clamp(72px, 9vw, 120px);
}
.bb-tb-faq-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(40px, 5vw, 70px);
    padding: 0 clamp(28px, 6vw, 80px);
}
.bb-tb-faq-list {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 clamp(28px, 6vw, 80px);
}
.bb-tb-faq-item {
    border-top: 1px solid var(--tb-cream-rule);
    padding: 18px 0;
}
.bb-tb-faq-item:last-child {
    border-bottom: 1px solid var(--tb-cream-rule);
}
.bb-tb-faq-item summary {
    cursor: pointer;
    list-style: none;
    font-family: var(--tb-serif);
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    color: var(--tb-ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 6px 0;
    transition: color .2s ease;
}
.bb-tb-faq-item summary::-webkit-details-marker { display: none; }
.bb-tb-faq-item summary::after {
    content: "+";
    font-family: var(--tb-serif);
    font-size: 1.6rem;
    line-height: 1;
    color: var(--tb-olive);
    transition: transform .2s ease;
}
.bb-tb-faq-item[open] summary { color: var(--tb-olive-deep); }
.bb-tb-faq-item[open] summary::after {
    content: "−";
}
.bb-tb-faq-item p {
    margin: 14px 0 6px;
    color: var(--tb-ink);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 65ch;
}

/* ============================================================
   FOOTER CTA
   ============================================================ */

.bb-tb-footer {
    padding: clamp(60px, 7vw, 100px) clamp(28px, 6vw, 80px) clamp(80px, 9vw, 140px);
    background: var(--tb-cream);
    max-width: 1500px;
    margin: 0 auto;
}
.bb-tb-footer-rule {
    height: 1px;
    background: var(--tb-cream-rule);
    margin-bottom: 56px;
}
.bb-tb-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 5vw, 80px);
    margin-bottom: clamp(48px, 6vw, 80px);
}
.bb-tb-footer-col {
    color: var(--tb-ink);
}
.bb-tb-footer-label {
    display: block;
    font-family: var(--tb-sans);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--tb-olive);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.bb-tb-footer-col p {
    font-family: var(--tb-serif);
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--tb-ink);
    margin: 0;
}
.bb-tb-footer-col a {
    border-bottom: 1px solid transparent;
}
.bb-tb-footer-col a:hover {
    border-bottom-color: var(--tb-olive);
}
.bb-tb-footer-cta {
    text-align: center;
    padding-top: clamp(20px, 3vw, 40px);
}

/* ============================================================
   ROUWPLEK — specifieke uitbreidingen (deelt bb-tb-* basis)
   ============================================================ */

/* --- split, omgekeerde volgorde (foto rechts) --- */
.bb-tb-split--reverse .bb-tb-split-media { order: 2; }
.bb-tb-split--reverse .bb-tb-split-body  { order: 1; }

/* --- cover CTA-rij --- */
.bb-rp-cover-cta {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    align-items: center;
}
.bb-rp-cover-link {
    font-family: var(--tb-sans);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.92);
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 4px;
}
.bb-rp-cover-link:hover { color: #d8c98a; border-bottom-color: #d8c98a; }

/* --- outline variant van CTA --- */
.bb-tb-cta--outline {
    background: transparent;
    color: var(--tb-green-dark) !important;
    border: 1px solid var(--tb-green-dark) !important;
}
.bb-tb-cta--outline:hover {
    background: var(--tb-green-dark);
    color: var(--tb-white) !important;
}

/* --- emotionele tussensectie (gecentreerd, geen foto) --- */
.bb-rp-emotion { padding-top: clamp(40px, 6vw, 90px); }
.bb-rp-emotion-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 80px) clamp(28px, 6vw, 80px) 0;
    text-align: center;
}
.bb-rp-emotion-inner .bb-tb-eyebrow { display: inline-block; }
.bb-rp-lead-center {
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.bb-rp-emotion-prose {
    max-width: 56ch;
    margin: 12px auto 0;
}
.bb-rp-emotion-prose p {
    font-family: var(--tb-sans);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--tb-ink);
    margin: 0 0 1.3em;
}
.bb-rp-emotion-prose p:last-child { margin-bottom: 0; }

/* --- Het ontwerp: conceptschets prominent --- */
.bb-rp-design-head {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 80px) clamp(28px, 6vw, 80px) 0;
    text-align: center;
}
.bb-rp-design-sketch {
    max-width: 1200px;
    margin: clamp(40px, 5vw, 64px) auto 0;
    padding: 0 clamp(28px, 6vw, 80px);
}
.bb-rp-design-sketch img {
    width: 100%;
    height: auto;
    display: block;
    background: var(--tb-cream-deep);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.bb-rp-design-sketch figcaption {
    margin-top: 18px;
    font-family: var(--tb-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--tb-olive);
    text-align: center;
}
.bb-rp-design-body {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: clamp(40px, 6vw, 90px);
    max-width: 1200px;
    margin: clamp(48px, 6vw, 80px) auto 0;
    padding: 0 clamp(28px, 6vw, 80px);
    align-items: start;
}
.bb-rp-design-prose p {
    font-family: var(--tb-sans);
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--tb-ink);
    margin: 0 0 1.1em;
    max-width: 50ch;
}
.bb-rp-design-prose p:last-child { margin-bottom: 0; }
.bb-rp-design-body .bb-rp-features { margin-top: 0; }

@media (max-width: 1100px) {
    .bb-rp-design-body { grid-template-columns: minmax(0, 1fr); }
}

/* --- feature-lijst in monument-sectie --- */
.bb-rp-features {
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
    border-top: 1px solid var(--tb-cream-rule);
}
.bb-rp-features li {
    padding: 18px 0;
    border-bottom: 1px solid var(--tb-cream-rule);
    font-family: var(--tb-sans);
    font-size: 1rem;
    color: var(--tb-ink);
    line-height: 1.5;
}
.bb-rp-features li span {
    font-family: var(--tb-serif);
    font-size: 1.1rem;
    color: var(--tb-ink);
    display: inline-block;
    margin-right: 10px;
}
.bb-rp-features li span::after {
    content: " · ";
    color: var(--tb-olive);
}

/* --- Cera partner-sectie --- */
.bb-rp-partner {
    background: var(--tb-cream-deep);
    padding-bottom: clamp(72px, 9vw, 120px);
}
.bb-rp-partner-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.2fr);
    gap: clamp(40px, 6vw, 90px);
    padding: clamp(40px, 6vw, 80px) clamp(28px, 6vw, 80px) 0;
    max-width: 1500px;
    margin: 0 auto;
    align-items: start;
}
.bb-rp-partner-amount {
    background: var(--tb-cream);
    padding: clamp(36px, 4vw, 56px);
    text-align: center;
    border-top: 3px solid var(--tb-olive);
    position: sticky;
    top: 100px;
}
.bb-rp-partner-label {
    display: block;
    font-family: var(--tb-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--tb-olive);
    margin-bottom: 18px;
}
.bb-rp-partner-value {
    display: block;
    font-family: var(--tb-serif);
    font-size: clamp(3.8rem, 6vw, 5.5rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--tb-ink);
    margin-bottom: 14px;
}
.bb-rp-partner-symbol {
    font-size: 0.55em;
    color: var(--tb-olive);
    vertical-align: 0.22em;
    margin-right: 4px;
}
.bb-rp-partner-source {
    display: block;
    font-family: var(--tb-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--tb-muted);
}
.bb-rp-partner-source strong {
    font-style: normal;
    color: var(--tb-ink);
    letter-spacing: 0.02em;
}
.bb-rp-partner-facts { margin-top: 36px; }

@media (max-width: 1100px) {
    .bb-rp-partner-inner { grid-template-columns: minmax(0, 1fr); }
    .bb-rp-partner-amount { position: static; max-width: 480px; margin: 0 auto; }
}

/* --- "Voor wie" — inclusiviteit lijst --- */
.bb-rp-forwhom {
    background: var(--tb-cream-deep);
}
.bb-rp-forwhom-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    gap: clamp(40px, 6vw, 90px);
    padding: clamp(40px, 6vw, 80px) clamp(28px, 6vw, 80px) 0;
    max-width: 1500px;
    margin: 0 auto;
    align-items: start;
}
.bb-rp-forwhom-head .bb-tb-lead { max-width: 32ch; }
.bb-rp-forwhom-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--tb-cream-rule);
}
.bb-rp-forwhom-list li {
    padding: 22px 0;
    border-bottom: 1px solid var(--tb-cream-rule);
    font-family: var(--tb-sans);
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--tb-ink);
}
.bb-rp-forwhom-list strong {
    font-family: var(--tb-serif);
    font-weight: 400;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--tb-olive-deep);
    display: inline;
    margin-right: 6px;
}
@media (max-width: 1100px) {
    .bb-rp-forwhom-inner { grid-template-columns: minmax(0, 1fr); }
}

/* --- "Twee manieren" — dual card grid --- */
.bb-rp-ways {
    background: var(--tb-cream-deep);
    padding-bottom: clamp(72px, 9vw, 120px);
}
.bb-rp-ways-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(40px, 5vw, 70px);
    padding: 0 clamp(28px, 6vw, 80px);
}
.bb-rp-ways-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 40px);
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(28px, 6vw, 80px);
}
.bb-rp-way {
    background: var(--tb-cream);
    padding: clamp(32px, 4vw, 56px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    border-top: 3px solid var(--tb-olive);
}
.bb-rp-way-num {
    font-family: var(--tb-serif);
    font-size: 0.9rem;
    color: var(--tb-olive);
    letter-spacing: 0.1em;
}
.bb-rp-way-title {
    font-family: var(--tb-serif);
    font-weight: 400;
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--tb-ink);
    margin: 0;
}
.bb-rp-way-title em { font-style: italic; color: var(--tb-olive); font-weight: 400; }
.bb-rp-way-lead {
    font-family: var(--tb-serif);
    font-style: italic;
    font-size: 1.12rem;
    line-height: 1.45;
    color: var(--tb-ink);
    margin: 4px 0 0;
}
.bb-rp-way-body {
    font-family: var(--tb-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--tb-ink);
    margin: 0;
}
.bb-rp-way .bb-tb-cta { align-self: flex-start; margin-top: 12px; }

/* --- Tiers (boomcadeau-bedragen) --- */
.bb-rp-tiers { padding-bottom: clamp(72px, 9vw, 120px); }
.bb-rp-tiers-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(40px, 5vw, 70px);
    padding: clamp(40px, 6vw, 80px) clamp(28px, 6vw, 80px) 0;
}
.bb-rp-tier-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 2.5vw, 32px);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(28px, 6vw, 80px);
}
.bb-rp-tier-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1300px;
}
.bb-rp-tier--bosje {
    grid-column: 1 / -1;
    flex-direction: row;
    overflow: hidden;
    padding: 0;
    gap: 0;
}
.bb-rp-bosje-media {
    flex: 0 0 50%;
    background: var(--tb-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}
.bb-rp-bosje-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bb-rp-bosje-body {
    flex: 1 1 50%;
    padding: clamp(32px, 3.5vw, 56px);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.bb-rp-tier {
    background: var(--tb-cream);
    padding: clamp(28px, 3vw, 44px);
    border: 1px solid var(--tb-cream-rule);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .2s ease, border-color .2s ease;
}
.bb-rp-tier:hover {
    transform: translateY(-4px);
    border-color: var(--tb-olive);
}
.bb-rp-tier--featured {
    background: var(--tb-cream-deep);
    border-color: var(--tb-olive);
    position: relative;
}
.bb-rp-tier-amount {
    font-family: var(--tb-serif);
    font-weight: 400;
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--tb-ink);
}
.bb-rp-tier-symbol {
    font-size: 0.6em;
    color: var(--tb-olive);
    margin-right: 4px;
    vertical-align: 0.18em;
}
.bb-rp-tier-title {
    font-family: var(--tb-serif);
    font-weight: 400;
    font-size: 1.45rem;
    line-height: 1.1;
    margin: 4px 0 0;
    color: var(--tb-ink);
}
.bb-rp-tier-title em { font-style: italic; color: var(--tb-olive); }
.bb-rp-tier p {
    font-family: var(--tb-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--tb-ink);
    margin: 0;
}
.bb-rp-tier-note {
    margin-top: auto;
    padding-top: 12px;
    font-family: var(--tb-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--tb-olive);
}
.bb-rp-tiers-cta {
    text-align: center;
    margin-top: clamp(40px, 5vw, 64px);
    padding: 0 clamp(28px, 6vw, 80px);
}

/* --- Campagne-progress sectie --- */
.bb-rp-progress {
    background: var(--tb-ink);
    color: var(--tb-white);
    padding-bottom: clamp(72px, 9vw, 120px);
}
.bb-rp-progress .bb-tb-page-rule {
    border-bottom-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
}
.bb-rp-progress-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: clamp(40px, 6vw, 90px);
    padding: clamp(48px, 6vw, 80px) clamp(28px, 6vw, 80px) 0;
    max-width: 1500px;
    margin: 0 auto;
    align-items: start;
}
.bb-rp-progress-head .bb-tb-eyebrow { color: #d8c98a; }
.bb-rp-progress-head .bb-tb-h2 { color: var(--tb-white); }
.bb-rp-progress-head .bb-tb-h2 em { color: #d8c98a; }
.bb-rp-progress-head .bb-tb-lead {
    color: rgba(255,255,255,0.85);
    max-width: 36ch;
}
.bb-rp-progress-head .bb-tb-lead strong {
    color: #d8c98a;
    font-style: normal;
}

.bb-rp-progress-body { padding-top: 12px; }
.bb-rp-progress-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.bb-rp-stat { display: flex; flex-direction: column; gap: 6px; }
.bb-rp-stat-label {
    font-family: var(--tb-sans);
    font-size: 0.7rem;
    font-weight: 600;
    color: #d8c98a;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.bb-rp-stat-value {
    font-family: var(--tb-serif);
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    color: var(--tb-white);
    line-height: 1;
    letter-spacing: -0.01em;
}

.bb-rp-progress-bar {
    margin-top: 32px;
    height: 8px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
    border-radius: 0;
}
.bb-rp-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--tb-olive) 0%, #d8c98a 100%);
    transition: width .8s cubic-bezier(.22,.61,.36,1);
}
.bb-rp-progress-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    font-family: var(--tb-sans);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.05em;
}
.bb-rp-progress-cta {
    margin-top: 36px;
}
.bb-rp-progress-cta .bb-tb-cta {
    background: #d8c98a;
    color: var(--tb-ink) !important;
}
.bb-rp-progress-cta .bb-tb-cta:hover {
    background: var(--tb-white);
    color: var(--tb-ink) !important;
}

/* ============================================================
   ROUWPLEK — RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
    .bb-rp-ways-grid { grid-template-columns: minmax(0, 1fr); }
    .bb-rp-tier-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; }
    .bb-rp-tier-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; }
    .bb-rp-tier--bosje { grid-column: 1 / -1; flex-direction: column; }
    .bb-rp-bosje-media { flex: 0 0 auto; min-height: 280px; max-height: 380px; }
    .bb-rp-progress-inner { grid-template-columns: minmax(0, 1fr); }
    .bb-tb-split--reverse .bb-tb-split-media { order: 0; }
    .bb-tb-split--reverse .bb-tb-split-body  { order: 0; }
}

@media (max-width: 720px) {
    .bb-rp-tier-grid { grid-template-columns: minmax(0, 1fr); }
    .bb-rp-tier-grid--three { grid-template-columns: minmax(0, 1fr); }
    .bb-rp-tier--bosje { flex-direction: column; }
    .bb-rp-progress-stats { grid-template-columns: minmax(0, 1fr); gap: 18px; }
    .bb-rp-progress-meta { flex-direction: column; gap: 6px; }
    .bb-rp-cover-cta { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
    .bb-tb-split { grid-template-columns: minmax(0, 1fr); }
    .bb-tb-story-head { grid-template-columns: minmax(0, 1fr); }
    .bb-tb-story-photo { aspect-ratio: 4 / 3; max-height: 420px; }
    .bb-tb-split-media { aspect-ratio: 4 / 3; max-height: 480px; }
    .bb-tb-tl-row {
        grid-template-columns: 100px 1fr;
        grid-template-areas:
            "year label"
            "body body";
    }
    .bb-tb-tl-year { grid-area: year; }
    .bb-tb-tl-label { grid-area: label; }
    .bb-tb-tl-body  { grid-area: body; padding-top: 6px; }

    /* gallery: simpler 6-col grid */
    .bb-tb-gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 100px; }
    .bb-tb-gallery-item--0,
    .bb-tb-gallery-item--4,
    .bb-tb-gallery-item--8,
    .bb-tb-gallery-item--11 { grid-column: span 3; grid-row: span 3; }
    .bb-tb-gallery-item--1,
    .bb-tb-gallery-item--2,
    .bb-tb-gallery-item--3,
    .bb-tb-gallery-item--5,
    .bb-tb-gallery-item--6,
    .bb-tb-gallery-item--7,
    .bb-tb-gallery-item--9,
    .bb-tb-gallery-item--10 { grid-column: span 3; grid-row: span 2; }
}

@media (max-width: 720px) {
    .bb-tb-page { font-size: 16px; }

    .bb-tb-page-rule { padding: 18px 22px 12px; font-size: 0.65rem; }
    .bb-tb-page-foot { padding: 14px 22px 22px; font-size: 0.62rem; }

    .bb-tb-cover { min-height: 92vh; }
    .bb-tb-cover-overlay {
        background:
            linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 35%, rgba(0,0,0,0.7) 100%);
    }

    .bb-tb-h2 { font-size: clamp(2.4rem, 11vw, 3.4rem); }

    .bb-tb-facts { grid-template-columns: 1fr; row-gap: 22px; }
    .bb-tb-pl-row { grid-template-columns: 1fr 1fr; }

    .bb-tb-footer-grid { grid-template-columns: 1fr; }
    .bb-tb-footer-grid .bb-tb-footer-col {
        padding-bottom: 24px;
        border-bottom: 1px solid var(--tb-cream-rule);
    }
    .bb-tb-footer-grid .bb-tb-footer-col:last-child { border-bottom: none; }

    .bb-tb-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
    .bb-tb-gallery-item,
    .bb-tb-gallery-item--0,
    .bb-tb-gallery-item--1,
    .bb-tb-gallery-item--2,
    .bb-tb-gallery-item--3,
    .bb-tb-gallery-item--4,
    .bb-tb-gallery-item--5,
    .bb-tb-gallery-item--6,
    .bb-tb-gallery-item--7,
    .bb-tb-gallery-item--8,
    .bb-tb-gallery-item--9,
    .bb-tb-gallery-item--10,
    .bb-tb-gallery-item--11 {
        grid-column: span 1;
        grid-row: span 2;
    }
}
