/* ============================================================================
   T&B Custom Clean — multi-page components
   Loaded on public pages in addition to style.css.
   ========================================================================== */

/* Active nav state */
.nav-links a.is-active { color: var(--sage-deep); }
.nav-links a.is-active::after { width: 100%; }

/* ---- Sub-page hero banner ---- */
.page-hero { padding: 150px 0 64px; text-align: center; background: var(--cream-2);
    border-bottom: 1px solid var(--line-soft); position: relative; }
.page-hero .eyebrow { display: block; margin-bottom: 14px; }
.page-hero-title { font-size: clamp(2.6rem, 5.5vw, 4.6rem); }
.page-hero-sub { max-width: 60ch; margin: 18px auto 0; }
.breadcrumb { display: flex; gap: 10px; justify-content: center; align-items: center;
    font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 22px; }
.breadcrumb a { color: var(--ink-faint); }
.breadcrumb a:hover { color: var(--sage-deep); }
.page-hero--image { color: var(--cream); background-size: cover; background-position: center;
    border-bottom: 0; padding: 184px 0 84px; }
.page-hero--image .eyebrow,
.page-hero--image .breadcrumb,
.page-hero--image .breadcrumb a { color: rgba(250,246,238,.78); }
.page-hero--image .page-hero-title { color: var(--cream); }
.page-hero--image .page-hero-sub { color: rgba(250,246,238,.88); }
.page-hero--image .script-accent { color: var(--sage-soft); }

/* ---- Shared CTA band ---- */
.cta-band { background: var(--olive); color: var(--cream); text-align: center;
    border-radius: 26px; padding: clamp(40px, 6vw, 76px); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; right: -90px; top: -70px; width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(182,192,168,.2), transparent 65%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band .script { color: var(--sage-soft); font-size: 2.2rem; }
.cta-band h2 { color: var(--cream); margin: 6px 0 16px; }
.cta-band p { color: rgba(250,246,238,.85); max-width: 52ch; margin: 0 auto 30px; }

/* ---- Watch Us Work — vertical video reels ---- */
.reels-feature { display: grid; grid-template-columns: 360px 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.vframe { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lift);
    aspect-ratio: 9 / 16; background: var(--olive-ink); width: 100%; max-width: 360px; cursor: pointer; }
.vframe video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vframe .vbadge { position: absolute; left: 18px; bottom: 18px; z-index: 2; color: var(--cream);
    display: flex; align-items: center; gap: 12px; }
.vframe .vbadge .play { width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(250,246,238,.6);
    display: grid; place-items: center; background: rgba(250,246,238,.14); backdrop-filter: blur(6px); }
.vframe .vbadge .play svg { width: 16px; height: 16px; margin-left: 2px; }

.reel-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 22px; }
.vcard { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 9 / 16;
    box-shadow: var(--shadow-soft); background: var(--olive-ink); cursor: pointer;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.vcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.vcard video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vcard::after { content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(44,49,42,.15) 0%, transparent 35%, transparent 55%, rgba(44,49,42,.72)); pointer-events: none; }
.vcard .vlabel { position: absolute; left: 16px; right: 16px; bottom: 15px; z-index: 2; color: var(--cream); }
.vcard .vlabel .cat { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage-soft); display: block; margin-bottom: 3px; }
.vcard .vlabel .ttl { font-family: var(--serif); font-size: 1.18rem; line-height: 1.15; }
.vcard .vplay { position: absolute; top: 13px; right: 13px; z-index: 2; width: 36px; height: 36px; border-radius: 50%;
    background: rgba(250,246,238,.9); color: var(--olive-ink); display: grid; place-items: center; }
.vcard .vplay svg { width: 15px; height: 15px; margin-left: 2px; }
.vcard .vsound { position: absolute; top: 13px; left: 13px; z-index: 2; font-size: .58rem; letter-spacing: .12em;
    text-transform: uppercase; color: var(--cream); background: rgba(44,49,42,.55); backdrop-filter: blur(4px);
    padding: 5px 9px; border-radius: 999px; }

/* Video lightbox (plays with sound + controls) */
.vlightbox { position: fixed; inset: 0; z-index: 1100; display: none; background: rgba(28, 31, 24, .96);
    backdrop-filter: blur(8px); place-items: center; padding: clamp(16px, 4vw, 48px); }
.vlightbox.open { display: grid; animation: lbfade .35s var(--ease); }
.vlightbox video { max-height: 86vh; max-width: 92vw; border-radius: 14px; background: #000;
    box-shadow: 0 40px 80px -30px rgba(0,0,0,.75); }
.vlightbox .lb-close { position: absolute; top: 18px; right: 22px; z-index: 3; background: none; border: 0;
    color: var(--cream); font-size: 2.4rem; line-height: 1; width: 48px; height: 48px; border-radius: 50%; transition: .3s; }
.vlightbox .lb-close:hover { background: rgba(250,246,238,.12); }

/* ---- Process steps (services) ---- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 12px; }
.pstep { position: relative; padding-top: 26px; }
.pstep .pnum { font-family: var(--serif); font-size: 3rem; color: var(--sage-soft); line-height: 1; }
.pstep h3 { font-size: 1.35rem; margin: 12px 0 8px; }
.pstep p { font-size: .94rem; }
.pstep::before { content: ""; position: absolute; top: 0; left: 0; width: 44px; height: 1px; background: var(--sage); }

/* ---- Pricing tiers ---- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.tier { background: var(--cream); border: 1px solid var(--line-soft); border-radius: 20px; padding: 34px 30px;
    display: flex; flex-direction: column; box-shadow: var(--shadow-soft); }
.tier.featured { background: var(--olive); color: var(--cream); border-color: var(--olive); transform: translateY(-10px); }
.tier .tier-name { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage-deep); }
.tier.featured .tier-name { color: var(--sage-soft); }
.tier .tier-price { font-family: var(--serif); font-size: 2.8rem; color: var(--olive-ink); margin: 10px 0 4px; }
.tier.featured .tier-price { color: var(--cream); }
.tier .tier-price span { font-family: var(--sans); font-size: .9rem; color: var(--ink-faint); }
.tier.featured .tier-price span { color: rgba(250,246,238,.7); }
.tier .tier-desc { color: var(--ink-soft); font-size: .92rem; padding-bottom: 18px; border-bottom: 1px solid var(--line-soft); margin-bottom: 18px; }
.tier.featured .tier-desc { color: rgba(250,246,238,.82); border-color: rgba(250,246,238,.18); }
.tier ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; flex: 1; }
.tier li { display: flex; gap: 11px; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); }
.tier.featured li { color: rgba(250,246,238,.9); }
.tier li svg { width: 18px; height: 18px; color: var(--sage-deep); flex: none; margin-top: 2px; }
.tier.featured li svg { color: var(--sage-soft); }
.tier .tier-tag { display: inline-block; align-self: flex-start; font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
    background: var(--sage-soft); color: var(--olive-ink); padding: 4px 11px; border-radius: 999px; margin-bottom: 14px; }
.tier .btn { width: 100%; justify-content: center; }

/* ---- Values / feature grid ---- */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; }
.value { padding: 28px; background: var(--cream); border: 1px solid var(--line-soft); border-radius: 18px; box-shadow: var(--shadow-soft); }
.value .ic { width: 46px; height: 46px; border-radius: 12px; background: #e8ecdf; color: var(--sage-deep);
    display: grid; place-items: center; margin-bottom: 16px; }
.value .ic svg { width: 22px; height: 22px; }
.value h3 { font-size: 1.3rem; margin-bottom: 8px; }
.value p { font-size: .93rem; }

/* ---- Story split (about) ---- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.story-grid .frame { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lift); aspect-ratio: 4/5; }
.story-grid .frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Team / member profiles (alternating) ---- */
.team { display: grid; gap: clamp(64px, 9vw, 128px); }
.member { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(34px, 5vw, 80px); align-items: center; }
.member:nth-child(even) .member-photo { order: 2; }
.member-photo .frame { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lift); aspect-ratio: 4/5; position: relative; }
.member-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.member-photo .cap { margin-top: 16px; display: flex; align-items: baseline; gap: 12px; }
.member-photo .cap .nm { font-family: var(--script); font-size: 2rem; color: var(--olive-ink); line-height: 1; }
.member-photo .cap .rl { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage-deep); }
.member-body h2 { margin: 12px 0 18px; }
.member-body > p { color: var(--ink-soft); }
.member-body > p + p { margin-top: 15px; }
.member-body .about-quote { margin-top: 22px; font-size: 1.45rem; }
@media (max-width: 860px) {
    .member { grid-template-columns: 1fr; gap: 26px; }
    .member:nth-child(even) .member-photo { order: 0; }
    .member-photo { max-width: 400px; }
}

/* ---- FAQ accordions (contact) ---- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 4px; font-family: var(--serif); font-size: 1.3rem;
    color: var(--olive-ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-weight: 300; font-size: 1.6rem; color: var(--sage-deep); transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 4px 20px; color: var(--ink-soft); max-width: 64ch; }

/* "See all" home section footer link */
.section-foot { text-align: center; margin-top: 48px; }

/* Service rows are now links with a subtle "Learn more" cue */
.svc { text-decoration: none; color: inherit; }
.svc-more { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
    font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-deep);
    opacity: .75; transition: gap .35s var(--ease), opacity .35s var(--ease); }
.svc:hover .svc-more, .svc:focus-visible .svc-more { opacity: 1; gap: 13px; }

/* ---- Service detail page ---- */
.svc-overview-media { position: relative; }
.svc-overview-media .frame { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lift); aspect-ratio: 4/5; }
.svc-overview-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.svc-fig-tag { position: absolute; bottom: 26px; right: -20px; z-index: 3; background: var(--olive); color: var(--cream);
    padding: 14px 20px; border-radius: 12px; box-shadow: var(--shadow-soft); max-width: 210px; }
.svc-fig-tag .script { color: var(--sage-soft); font-size: 1.7rem; display: block; line-height: 1; }
.svc-fig-tag span.t { font-size: .82rem; color: rgba(250,246,238,.85); }

/* "What's included" cards */
.includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 920px; margin: 44px auto 0; }
.include-card { display: flex; gap: 16px; align-items: center; background: var(--cream); border: 1px solid var(--line-soft);
    border-radius: 14px; padding: 17px 20px; box-shadow: 0 16px 36px -32px rgba(56,66,46,.5);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.include-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.include-card .chk { width: 40px; height: 40px; border-radius: 50%; background: #e8ecdf; color: var(--sage-deep);
    display: grid; place-items: center; flex: none; }
.include-card .chk svg { width: 21px; height: 21px; }
.include-card .txt { font-size: 1rem; color: var(--ink); line-height: 1.4; }

/* Cinematic "result" band */
.svc-result { position: relative; padding: clamp(86px, 13vw, 168px) 0; text-align: center; color: var(--cream);
    background-size: cover; background-position: center; background-attachment: fixed; overflow: clip; }
.svc-result .eyebrow.flourish { color: var(--sage-soft); }
.svc-result .eyebrow.flourish::before, .svc-result .eyebrow.flourish::after { background: var(--sage-soft); }
.svc-result-line { font-family: var(--serif); font-weight: 500; color: var(--cream);
    font-size: clamp(2rem, 4.8vw, 3.7rem); line-height: 1.16; max-width: 20ch; margin: 22px auto 0; letter-spacing: -.005em; }
@media (max-width: 760px) { .svc-result { background-attachment: scroll; } }
@media (max-width: 700px) { .includes-grid { grid-template-columns: 1fr; } .svc-fig-tag { right: 12px; bottom: 14px; } }

/* "Explore other services" links on a detail page */
.other-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 50px; max-width: 900px; margin: 0 auto; }
.other-svc { display: flex; align-items: center; justify-content: space-between; gap: 20px;
    padding: 20px 6px; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--olive-ink);
    font-family: var(--serif); font-size: 1.3rem; transition: padding .35s var(--ease), color .3s; }
.other-svc .arr { color: var(--sage); transition: transform .35s var(--ease); }
.other-svc:hover { padding-inline: 16px; color: var(--sage-deep); }
.other-svc:hover .arr { transform: translateX(7px); }
@media (max-width: 640px) { .other-services { grid-template-columns: 1fr; } }

@media (max-width: 980px) {
    .reels-feature { grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .reels-feature .vframe { margin-inline: auto; }
    .process { grid-template-columns: repeat(2, 1fr); }
    .pricing { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
    .tier.featured { transform: none; }
    .story-grid { grid-template-columns: 1fr; }
    .story-grid .frame { max-width: 460px; margin-inline: auto; order: -1; }
}
@media (max-width: 560px) {
    .process { grid-template-columns: 1fr; }
    .page-hero { padding: 128px 0 50px; }
}
