:root {
    --totm-bg: #f6f1e8;
    --totm-panel: #fffaf3;
    --totm-ink: #1f1a16;
    --totm-muted: #786b5c;
    --totm-line: #d8cbbb;
    --totm-gold: #9c7a3e;
    --totm-shadow: rgba(40, 28, 18, .14);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--totm-ink);
    background:
        radial-gradient(circle at top left, rgba(156, 122, 62, .14), transparent 34rem),
        linear-gradient(180deg, #fbf8f2, var(--totm-bg));
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.showroom-shell,
.article-shell {
    width: min(1180px, calc(100vw - 32px));
    margin: 0 auto;
    padding: 56px 0 72px;
}

.article-shell {
    width: min(920px, calc(100vw - 32px));
}

.showroom-header,
.article-header {
    margin-bottom: 38px;
}

.showroom-kicker,
.card-eyebrow {
    display: block;
    margin: 0 0 12px;
    color: var(--totm-gold);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

h1 {
    margin: 0;
    font-size: clamp(2.7rem, 7vw, 6.5rem);
    line-height: .92;
    letter-spacing: -.05em;
}

.showroom-lede,
.month-intro,
.showroom-card p {
    color: var(--totm-muted);
    line-height: 1.65;
}

.showroom-lede {
    max-width: 720px;
    margin: 22px 0 0;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.month-intro {
    max-width: 760px;
    margin-top: 26px;
    font-size: 1.02rem;
}

.showroom-grid {
    display: grid;
    gap: 22px;
}

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

.showroom-card {
    position: relative;
    display: flex;
    min-height: 420px;
    flex-direction: column;
    padding: 18px;
    color: inherit;
    text-decoration: none;
    background: rgba(255, 250, 243, .84);
    border: 1px solid rgba(216, 203, 187, .9);
    box-shadow: 0 18px 50px var(--totm-shadow);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.showroom-card:hover {
    transform: translateY(-4px);
    border-color: rgba(156, 122, 62, .55);
    box-shadow: 0 24px 68px rgba(40, 28, 18, .18);
}

.showroom-card img,
.image-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-bottom: 20px;
    object-fit: cover;
    background:
        linear-gradient(135deg, rgba(156, 122, 62, .22), rgba(255, 250, 243, .88)),
        repeating-linear-gradient(45deg, rgba(31, 26, 22, .04) 0 1px, transparent 1px 12px);
}

.showroom-card h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2.4vw, 2.35rem);
    line-height: 1.05;
    letter-spacing: -.03em;
}

.featured-card {
    background: linear-gradient(180deg, rgba(255, 250, 243, .96), rgba(246, 241, 232, .94));
    border-color: rgba(156, 122, 62, .48);
}

.featured-card::after {
    content: "";
    position: absolute;
    inset: 9px;
    border: 1px solid rgba(156, 122, 62, .22);
    pointer-events: none;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--totm-muted);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 42px;
    color: var(--totm-muted);
}

.pager a {
    padding: 11px 16px;
    border: 1px solid var(--totm-line);
    border-radius: 999px;
    color: var(--totm-ink);
    text-decoration: none;
    background: rgba(255, 250, 243, .75);
}

.showroom-article {
    background: rgba(255, 250, 243, .78);
    border: 1px solid rgba(216, 203, 187, .9);
    box-shadow: 0 24px 70px var(--totm-shadow);
}

.article-header {
    padding: clamp(28px, 6vw, 58px) clamp(24px, 6vw, 70px) 24px;
}

.article-image {
    margin: 0;
    padding: 0 clamp(24px, 6vw, 70px);
}

.article-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.article-body {
    padding: clamp(28px, 6vw, 58px) clamp(24px, 6vw, 70px) clamp(36px, 7vw, 78px);
    color: #2a231e;
    font-size: clamp(1.05rem, 1.7vw, 1.18rem);
    line-height: 1.85;
}

.article-body p {
    margin: 0 0 1.45rem;
}

@media (max-width: 900px) {
    .showroom-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .showroom-shell,
    .article-shell {
        width: min(100% - 24px, 480px);
        padding-top: 32px;
    }

    .showroom-grid-3 {
        grid-template-columns: 1fr;
    }

    .showroom-card {
        min-height: 0;
    }

    .pager {
        flex-wrap: wrap;
    }
}
.back-home-button {
    display: inline-flex;
    align-items: center;
    gap: .5rem;

    padding: 10px 16px;

    border: 1px solid rgba(30, 22, 18, .12);

    background: rgba(255,255,255,.68);

    color: #5d4a3a;

    text-decoration: none;

    font-size: .72rem;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;

    backdrop-filter: blur(10px);

    box-shadow:
        0 10px 28px rgba(40, 28, 18, .08);

    transition:
        transform .18s ease,
        background .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.back-home-button:hover {
    transform: translateY(-2px);

    background: rgba(255,255,255,.9);

    border-color: rgba(156,122,62,.25);

    box-shadow:
        0 14px 36px rgba(40, 28, 18, .12);

    color: #1f1a16;
}
.topic-toolbar {
    margin-bottom: 22px;
}
.company-card {
    grid-column: span 2;

    min-height: 520px;

    background:
        linear-gradient(180deg, rgba(255,250,243,.98), rgba(246,241,232,.94));
}

.company-card h2 {
    font-size: clamp(2rem, 4vw, 4rem);
}

.object-card {
    display: flex;
    flex-direction: column;
}

.showroom-grid {
    --feature-image-height: 420px;
}

.company-card img {
    height: var(--feature-image-height);

    object-fit: cover;
}

.object-card img {
    height: var(--feature-image-height);

    /* object-fit: contain; */

    padding: 24px;

    background:
        radial-gradient(circle at center,
        #fffdf8 0%,
        #f4ede1 100%);
}

.company-card img,
.object-card img {
    width: 100%;
}

.company-card::before {
    content: "Featured Company";

    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 2;

    padding: 7px 10px;

    background: rgba(156,122,62,.92);

    color: #fffaf3;

    font-size: .62rem;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;

    box-shadow:
        0 6px 18px rgba(60,40,20,.18);
}

.object-card::before {
    content: "Featured Object";

    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 2;

    padding: 7px 10px;

    background: rgba(31,26,22,.74);

    color: #fffaf3;

    font-size: .62rem;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.company-card::before,
.object-card::before {
    min-width: 148px;

    text-align: center;
}

@media (max-width: 900px) {
    .company-card {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .company-card {
        grid-column: auto;
        min-height: 0;
    }

    .company-card img {
        aspect-ratio: 4 / 3;
    }
}
.card-content {
    display: block;
}

.bv-topic-section {
    background: linear-gradient(to right, #d7b47d, #faefe0, #d7b47d);
    color: var(--brand-blue);
    overflow: visible;
}

.bv-topic-header {
    max-width: 820px;
}

.bv-topic-kicker,
.bv-topic-card-label,
.bv-topic-back-link {
    font-family: var(--font-body);
    color: var(--brand-blue);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.bv-topic-title {
    font-family: var(--font-heading);
    color: var(--brand-blue);
}

.bv-topic-lede,
.bv-topic-intro {
    max-width: 720px;
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

.bv-topic-back-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .4em;
    margin-bottom: 2rem;
    position: sticky;
    top: var(--nav-height);
    z-index: 10;
    padding: .85rem 1rem;
    background-color: hsla(35, 72%, 93%, .5);
    backdrop-filter: blur(10px) saturate(115%);
    -webkit-backdrop-filter: blur(10px) saturate(115%);
    border: 1px solid rgba(0, 40, 81, .25);
    border-radius: .75rem;
    box-shadow: 0 6px 16px rgba(31, 26, 22, .08);
}

.bv-topic-back-link a {
    color: var(--brand-blue);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .18s ease;
}

.bv-topic-back-link a:hover {
    border-bottom-color: currentColor;
}

.bv-topic-back-link .bv-topic-breadcrumb-sep {
    opacity: .5;
}

.bv-topic-back-link .bv-topic-breadcrumb-current {
    opacity: .65;
}

.bv-topic-card {
    position: relative;
    overflow: hidden;
    color: var(--brand-blue);
}

.bv-topic-card:hover {
    color: var(--brand-blue);
    transform: translateY(-4px);
}

.bv-topic-card-img {
    width: 100%;
    display: block;
}

.bv-topic-card-feature .bv-topic-card-img {
    height: 420px;
}

.bv-topic-card .card-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    text-align: center;
}

.bv-topic-card:not(.bv-topic-card-feature) .card-title {
    font-size: clamp(1.7rem, 2.4vw, 2.4rem);
}

.bv-topic-feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    padding: .45rem .7rem;
    color: var(--off-gold);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bv-topic-feature-badge-company {
    background: rgba(156,122,62,.92);
}

.bv-topic-feature-badge-object {
    background: rgba(10,26,48,.82);
}

.bv-topic-feature-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    padding: .45rem .7rem;
    color: var(--off-gold);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bv-topic-feature-badge-company {
    background: rgba(156,122,62,.92);
}

.bv-topic-feature-badge-object {
    background: rgba(10,26,48,.82);
}

.bv-topic-article {
    max-width: 980px;
}

.bv-topic-article-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.bv-topic-article-image {
    margin: 0;
}

.bv-topic-article-image-frame {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid rgba(0, 40, 81, .15);
    border-radius: 1rem;

    background:
        radial-gradient(
            circle at center,
            #f8f3ea 0%,
            #e7dcc7 100%
        );
}

.bv-topic-article-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bv-topic-article-body {
    max-width: 760px;
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

@media (max-width: 991px) {
    .bv-topic-card-feature .bv-topic-card-img {
        height: 320px;
    }
}

@media (max-width: 575px) {
    .bv-topic-card-img,
    .bv-topic-card-feature .bv-topic-card-img {
        height: 260px;
    }
}
.bv-topic-btn {
    background: var(--brand-blue);
    border: 1px solid rgba(215,180,125,.35);
    color: var(--off-gold);
    letter-spacing: .04em;
    transition:
        transform .18s ease,
        background .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.bv-topic-btn:hover {
    background: #0c3b72;
    border-color: rgba(215,180,125,.7);
    color: var(--off-gold);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(10,26,48,.22);
}

.bv-topic-btn {
    --bs-btn-color: var(--off-gold);
    --bs-btn-hover-color: var(--off-gold);

    background: var(--brand-blue);
    border: 1px solid rgba(215,180,125,.35);
    color: var(--off-gold);
    letter-spacing: .04em;

    transition:
        transform .18s ease,
        background .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}
/* Default cards */
.bv-topic-card-img-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background:
        radial-gradient(circle at center,
            #f8f3ea 0%,
            #e7dcc7 100%);
}

/* Featured cards */
.bv-topic-card-feature .bv-topic-card-img-frame {
    aspect-ratio: 5 / 4;
}

.bv-topic-card-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* No height overrides needed anymore */
@media (max-width:991px) {
    .bv-topic-card-feature .bv-topic-card-img-frame {
        aspect-ratio: 5 / 4;
    }
}

@media (max-width:575px) {

    .bv-topic-card-img-frame,
    .bv-topic-card-feature .bv-topic-card-img-frame {
        aspect-ratio: 4 / 3;
    }
}

.bv-topic-related-portrait {
    display: grid;
    grid-template-columns: minmax(180px, 280px) 1fr;
    max-width: 860px;
    margin-top: clamp(3rem, 7vw, 5rem);
    overflow: hidden;
    border: 1px solid rgba(0,40,81,.16);
    border-radius: 1rem;
    background: var(--off-gold);
    color: var(--brand-blue);
    box-shadow: 0 18px 45px rgba(10,26,48,.16);
}
.bv-topic-related-portrait-image { min-height: 250px; overflow: hidden; }
.bv-topic-related-portrait-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.bv-topic-related-portrait-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(1.5rem, 4vw, 2.75rem); }
.bv-topic-related-portrait-content h2 { margin-bottom: .75rem; text-align: left; font-size: clamp(1.5rem, 3vw, 2.25rem); }
.bv-topic-related-portrait-content .btn { align-self: flex-start; margin-top: .5rem; }
.bv-topic-related-kicker { margin-bottom: .5rem; color: #765719; font-size: .72rem !important; font-weight: 700 !important; letter-spacing: .15em; text-transform: uppercase; }
.bv-topic-portrait-available { display: inline-flex; align-self: flex-start; margin-bottom: .75rem; padding: .35rem .6rem; border-radius: 999px; background: rgba(156,122,62,.16); color: #765719; font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
@media (max-width: 767px) { .bv-topic-related-portrait { grid-template-columns: 1fr; } .bv-topic-related-portrait-image { min-height: 220px; aspect-ratio: 4 / 3; } }

