:root {
    --cxb-bg: #f6f1ea;
    --cxb-paper: #fffaf5;
    --cxb-panel: #efe3d4;
    --cxb-ink: #211816;
    --cxb-muted: #5f554c;
    --cxb-line: rgba(33, 25, 22, 0.16);
    --cxb-accent: #9e633d;
    --cxb-accent-soft: #d8b08b;
    --cxb-shadow: 0 22px 56px rgba(42, 24, 18, 0.07);
    --cxb-radius: 24px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--cxb-ink);
    background:
        radial-gradient(circle at top left, rgba(158, 99, 61, 0.07), transparent 24%),
        linear-gradient(180deg, #faf6f0 0%, #f3ece3 100%);
    font-family: "Georgia", "Times New Roman", serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.cxb-header-inner,
.cxb-home-section,
.cxb-generic-section,
.cxb-footer-grid,
.cxb-footer-bottom {
    width: 100%;
    margin: 0;
    padding-inline: 40px;
}

.cxb-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 245, 238, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--cxb-line);
}

.cxb-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.cxb-site-title {
    font-size: 28px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cxb-site-tagline {
    margin: 6px 0 0;
    color: var(--cxb-muted);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.cxb-menu,
.cxb-footer-menu,
.cxb-mobile-menu,
.cxb-social-list,
.cxb-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cxb-menu {
    display: flex;
    gap: 24px;
}

.cxb-menu a,
.cxb-footer-menu a,
.cxb-mobile-menu a,
.cxb-social-list a {
    position: relative;
    display: inline-block;
    padding: 6px 0;
    color: var(--cxb-muted);
}

.cxb-menu a::after,
.cxb-footer-menu a::after,
.cxb-social-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--cxb-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

.cxb-menu a:hover,
.cxb-footer-menu a:hover,
.cxb-social-list a:hover {
    color: var(--cxb-ink);
}

.cxb-menu a:hover::after,
.cxb-footer-menu a:hover::after,
.cxb-social-list a:hover::after {
    transform: scaleX(1);
}

.cxb-mobile-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--cxb-line);
    border-radius: 50%;
    background: var(--cxb-paper);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.cxb-mobile-toggle span {
    width: 18px;
    height: 2px;
    background: var(--cxb-ink);
}

.cxb-mobile-panel {
    display: none;
    width: 100%;
    margin: 0 0 18px;
    padding-inline: 40px;
}

.cxb-mobile-panel.is-open {
    display: block;
}

.cxb-mobile-menu {
    display: grid;
    gap: 12px;
    padding-bottom: 16px;
}

.cxb-site-main {
    overflow: hidden;
}

.cxb-home-composition {
    padding-bottom: 56px;
}

.cxb-home-section,
.cxb-generic-section {
    padding: 64px 0;
}

.cxb-home-section:not(.cxb-hero) {
    position: relative;
}

.cxb-home-section:not(.cxb-hero)::before {
    content: "";
    position: absolute;
    inset: 16px 20px;
    background: rgba(255, 251, 246, 0.82);
    border: 1px solid rgba(33, 25, 22, 0.08);
    border-radius: 32px;
    z-index: -1;
}

.cxb-hero {
    min-height: calc(100vh - 82px);
    position: relative;
    display: grid;
    align-items: center;
    color: #f7f2eb;
}

.cxb-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--cxb-bg-image, none);
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.cxb-hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(18, 13, 12, 0.9), rgba(44, 29, 24, 0.74)),
        radial-gradient(circle at 15% 20%, rgba(215, 176, 142, 0.2), transparent 28%);
}

.cxb-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    max-width: none;
    padding: 88px 52px;
}

.cxb-kicker {
    margin: 0 0 16px;
    color: var(--cxb-accent);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-size: 12px;
}

.cxb-hero h1,
.cxb-section-heading h2,
.cxb-section-heading h1,
.cxb-page-hero-copy h1,
.cxb-biography-copy h1 {
    margin: 0;
    font-size: var(--cxb-title-size, 54px);
    line-height: 1.02;
    color: var(--cxb-title-color, var(--cxb-ink));
}

.cxb-hero h1 {
    color: var(--cxb-title-color, #fff7ef);
    max-width: 720px;
}

.cxb-hero-subtitle,
.cxb-section-subtitle,
.cxb-rich-text,
.cxb-card-excerpt,
.cxb-show-content p,
.cxb-contact-row,
.cxb-entry-content,
.cxb-archive-description {
    color: var(--cxb-text-color, var(--cxb-muted));
    font-size: var(--cxb-text-size, 17px);
    line-height: 1.85;
}

.cxb-hero-subtitle {
    max-width: 660px;
    color: rgba(247, 242, 235, 0.82);
}

.cxb-hero-actions,
.cxb-footer-bottom,
.cxb-show-item,
.cxb-link-pills {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cxb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.cxb-button:hover {
    transform: translateY(-2px);
}

.cxb-button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--cxb-accent), #7f4d2f);
    box-shadow: 0 14px 32px rgba(126, 77, 47, 0.22);
}

.cxb-button-ghost {
    color: var(--cxb-ink);
    border-color: var(--cxb-line);
    background: rgba(255, 255, 255, 0.6);
}

.cxb-section-heading {
    max-width: 760px;
    margin-bottom: 32px;
}

.cxb-section-heading,
.cxb-card-grid,
.cxb-feature-grid,
.cxb-domain-grid,
.cxb-journal-list,
.cxb-mosaic-grid,
.cxb-show-list,
.cxb-split-section,
.cxb-page-hero,
.cxb-biography-hero,
.cxb-contact-page-grid,
.cxb-page-content,
.cxb-biography-content,
.cxb-single-content,
.cxb-entry-meta {
    max-width: 1360px;
    margin-inline: auto;
}

.cxb-card-grid,
.cxb-feature-grid,
.cxb-domain-grid,
.cxb-journal-list,
.cxb-mosaic-grid,
.cxb-gallery-grid {
    display: grid;
    gap: 24px;
}

.cxb-music-list {
    display: grid;
    gap: 22px;
    max-width: 1360px;
    margin: 0 auto;
}

.cxb-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
    justify-content: center;
}

.cxb-archive-search {
    max-width: 1360px;
    margin: 0 auto 24px;
}

.cxb-search-input {
    width: min(100%, 460px);
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid var(--cxb-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--cxb-ink);
    box-shadow: var(--cxb-shadow);
}

.cxb-search-input:focus {
    outline: none;
    border-color: rgba(158, 99, 61, 0.42);
    box-shadow: 0 0 0 4px rgba(158, 99, 61, 0.12);
}

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

.cxb-domain-grid {
    grid-template-columns: repeat(2, minmax(280px, 420px));
    justify-content: center;
}

.cxb-journal-list {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
}

.cxb-mosaic-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 180px;
}

.cxb-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.cxb-card,
.cxb-journal-card,
.cxb-show-item,
.cxb-contact-panel,
.cxb-single-content,
.cxb-entry-meta,
.cxb-contact-card,
.cxb-biography-content,
.cxb-page-content {
    background: var(--cxb-paper);
    border: 1px solid var(--cxb-line);
    border-radius: var(--cxb-radius);
    box-shadow: var(--cxb-shadow);
}

.cxb-music-row {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 26px 28px;
    background: var(--cxb-paper);
    border: 1px solid var(--cxb-line);
    border-radius: 28px;
    box-shadow: var(--cxb-shadow);
}

.cxb-music-row-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.cxb-music-cover {
    display: block;
    width: 100%;
    max-width: 260px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 26px;
    background: var(--cxb-panel);
    box-shadow: 0 18px 40px rgba(42, 24, 18, 0.08);
}

.cxb-music-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.cxb-music-row:hover .cxb-music-cover img {
    transform: scale(1.03);
}

.cxb-music-row-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    gap: 18px;
}

.cxb-music-row-top .cxb-card-title {
    margin-top: 12px;
    margin-bottom: 14px;
    font-size: 34px;
}

.cxb-music-row-bottom {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(33, 25, 22, 0.08);
}

.cxb-music-row-embed {
    display: grid;
    gap: 14px;
    margin-top: 2px;
}

.cxb-music-row-embed-item {
    display: grid;
    gap: 8px;
}

.cxb-music-row-embed-label {
    margin: 0;
    color: var(--cxb-accent);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cxb-embed-frame-compact {
    background: rgba(248, 241, 233, 0.95);
}

.cxb-embed-frame-compact iframe {
    min-height: 168px;
}

.cxb-link-pills-inline {
    justify-content: flex-start;
    flex-wrap: wrap;
}

.cxb-card,
.cxb-journal-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cxb-card:hover,
.cxb-journal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(42, 24, 18, 0.12);
}

.cxb-card-media {
    display: block;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    background: var(--cxb-panel);
}

.cxb-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.42s ease;
}

.cxb-card:hover .cxb-card-media img {
    transform: scale(1.04);
}

.cxb-card-body,
.cxb-journal-card,
.cxb-single-content {
    padding: 24px;
}

.cxb-feature-card:first-child {
    grid-column: span 2;
}

.cxb-feature-card:first-child .cxb-card-media {
    aspect-ratio: 16 / 9;
}

.cxb-domain-card {
    min-height: 0;
    display: grid;
    align-items: stretch;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.26), rgba(255,255,255,0.9)),
        radial-gradient(circle at top right, rgba(158, 99, 61, 0.12), transparent 30%);
}

.cxb-domain-card .cxb-card-media {
    aspect-ratio: 16 / 9;
}

.cxb-domain-card .cxb-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.cxb-domain-card .cxb-button {
    margin-top: auto;
}

.cxb-card-meta {
    color: var(--cxb-accent);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cxb-card-title,
.cxb-journal-card h3 {
    margin: 10px 0 12px;
    font-size: 28px;
    line-height: 1.1;
}

.cxb-split-section,
.cxb-biography-hero,
.cxb-contact-page-grid,
.cxb-page-hero {
    display: grid;
    grid-template-columns: minmax(340px, 520px) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.cxb-split-media img,
.cxb-biography-media img,
.cxb-page-hero-media img,
.cxb-placeholder-panel,
.cxb-contact-panel {
    width: 100%;
    min-height: 400px;
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--cxb-radius);
    box-shadow: var(--cxb-shadow);
}

.cxb-placeholder-panel,
.cxb-contact-panel {
    background:
        linear-gradient(145deg, rgba(158, 99, 61, 0.18), transparent 45%),
        linear-gradient(180deg, #f0e5d7, #e8dbcd);
    border: 1px solid var(--cxb-line);
}

.cxb-contact-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.cxb-contact-list,
.cxb-social-list {
    display: grid;
    gap: 12px;
}

.cxb-contact-list li {
    padding: 16px 18px;
    border-bottom: 1px solid var(--cxb-line);
}

.cxb-mosaic-card {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--cxb-shadow);
    background: var(--cxb-panel);
}

.cxb-mosaic-card.is-tall {
    grid-row: span 2;
}

.cxb-mosaic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.cxb-mosaic-card:hover img {
    transform: scale(1.05);
}

.cxb-show-list {
    display: grid;
    gap: 18px;
}

.cxb-show-item {
    justify-content: space-between;
    padding: 26px;
}

.cxb-show-date {
    min-width: 180px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cxb-accent);
}

.cxb-empty-state {
    padding: 28px;
    border: 1px dashed var(--cxb-line);
    border-radius: 20px;
    background: rgba(255,255,255,0.65);
}

.cxb-archive-shell,
.cxb-single-shell,
.cxb-page-shell,
.cxb-biography-page,
.cxb-gallery-page,
.cxb-contact-page {
    padding-top: 120px;
}

.cxb-page-hero,
.cxb-biography-hero {
    margin-bottom: 30px;
}

.cxb-page-content,
.cxb-biography-content,
.cxb-contact-card {
    padding: 28px;
}

.cxb-contact-page-copy,
.cxb-contact-page-panel {
    display: grid;
    gap: 24px;
}

.cxb-contact-image-card {
    padding: 0;
    overflow: hidden;
}

.cxb-contact-image-card img {
    width: 100%;
    min-height: 260px;
    max-height: 360px;
    object-fit: cover;
}

.cxb-entry-content > * + * {
    margin-top: 18px;
}

.cxb-featured-image {
    overflow: hidden;
    border-radius: var(--cxb-radius);
    margin-bottom: 28px;
    max-width: 960px;
}

.cxb-entry-meta {
    display: grid;
    gap: 12px;
    padding: 20px;
}

.cxb-entry-meta-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
}

.cxb-entry-meta dt {
    color: var(--cxb-accent);
}

.cxb-detail-block {
    margin-top: 28px;
    padding: 22px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--cxb-line);
}

.cxb-detail-block h3 {
    margin-top: 0;
    margin-bottom: 14px;
}

.cxb-music-player-showcase {
    display: grid;
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    max-width: 1360px;
    margin: 0 auto 28px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 245, 239, 0.88));
    border: 1px solid var(--cxb-line);
    box-shadow: var(--cxb-shadow);
}

.cxb-music-player-showcase .cxb-kicker {
    margin-bottom: 12px;
}

.cxb-music-player-copy h3 {
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.1;
}

.cxb-music-player-copy p:last-child {
    margin-bottom: 0;
    color: var(--cxb-muted);
}

.cxb-platform-embed-block {
    display: grid;
    gap: 18px;
}

.cxb-platform-embed-header p {
    margin: 10px 0 0;
    color: var(--cxb-muted);
}

.cxb-platform-tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cxb-platform-tab {
    padding: 10px 16px;
    border: 1px solid var(--cxb-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--cxb-ink);
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.cxb-platform-tab:hover,
.cxb-platform-tab.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--cxb-accent), #7f4d2f);
    border-color: transparent;
}

.cxb-platform-panels {
    display: grid;
}

.cxb-platform-panel {
    display: none;
    gap: 16px;
}

.cxb-platform-panel.is-active {
    display: grid;
}

.cxb-platform-panel-actions {
    display: flex;
    justify-content: flex-end;
}

.cxb-embed-frame {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--cxb-line);
    background: #f6efe6;
}

.cxb-embed-frame iframe,
.cxb-embed-frame audio,
.cxb-embed-frame video {
    display: block;
    width: 100%;
}

.cxb-music-player-frame iframe {
    min-height: 188px;
}

.cxb-credit-list {
    display: grid;
    gap: 12px;
}

.cxb-credit-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid var(--cxb-line);
}

.cxb-credit-row:first-child {
    border-top: 0;
    padding-top: 0;
}

.cxb-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 24px auto 0;
}

.cxb-editorial-grid.is-two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cxb-editorial-stack {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

.cxb-info-card,
.cxb-timeline-card {
    background: rgba(255, 252, 247, 0.92);
    border: 1px solid rgba(33, 25, 22, 0.1);
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--cxb-shadow);
}

.cxb-info-card h3,
.cxb-timeline-card h3 {
    margin: 0 0 12px;
    font-size: clamp(22px, 1.1rem + 0.5vw, 30px);
    line-height: 1.15;
}

.cxb-info-card p,
.cxb-timeline-card p {
    color: rgba(44, 35, 31, 0.78);
}

.cxb-info-list,
.cxb-timeline-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.cxb-info-list li {
    position: relative;
    margin-top: 12px;
    padding-left: 18px;
    color: rgba(33, 25, 22, 0.86);
    line-height: 1.75;
}

.cxb-info-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cxb-accent);
    box-shadow: 0 0 0 5px rgba(158, 99, 61, 0.12);
}

.cxb-timeline-list {
    display: grid;
    gap: 18px;
}

.cxb-timeline-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    align-items: start;
    padding-top: 18px;
    border-top: 1px solid rgba(33, 25, 22, 0.08);
}

.cxb-timeline-row:first-child {
    padding-top: 0;
    border-top: 0;
}

.cxb-timeline-row strong {
    color: var(--cxb-accent);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cxb-timeline-row p {
    margin: 0;
    line-height: 1.8;
}

.cxb-page-fallback-note {
    margin-top: 14px;
    color: rgba(44, 35, 31, 0.64);
    font-size: 14px;
    letter-spacing: 0.02em;
}

.cxb-archive-intro,
.cxb-show-placeholder {
    margin-top: 24px;
}

.cxb-site-footer {
    margin-top: 72px;
    padding: 48px 0 24px;
    background: #e8ddd0;
    border-top: 1px solid var(--cxb-line);
}

.cxb-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 26px;
}

.cxb-footer-bottom {
    justify-content: space-between;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--cxb-line);
}

.cxb-footer-menu {
    display: flex;
    gap: 18px;
}

.cxb-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.cxb-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .cxb-feature-grid,
    .cxb-domain-grid,
    .cxb-journal-list,
    .cxb-editorial-grid,
    .cxb-editorial-grid.is-two-column,
    .cxb-footer-grid,
    .cxb-split-section,
    .cxb-biography-hero,
    .cxb-contact-page-grid,
    .cxb-page-hero,
    .cxb-music-row,
    .cxb-music-player-showcase {
        grid-template-columns: 1fr;
    }

    .cxb-feature-card:first-child {
        grid-column: auto;
    }

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

    .cxb-music-row-content {
        min-height: 0;
    }

    .cxb-music-cover {
        max-width: 320px;
    }
}

@media (max-width: 960px) {
    .cxb-main-nav {
        display: none;
    }

    .cxb-mobile-toggle {
        display: inline-flex;
    }

    .cxb-show-item,
    .cxb-footer-bottom,
    .cxb-footer-menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .cxb-show-date {
        min-width: auto;
    }

    .cxb-hero {
        min-height: auto;
    }

    .cxb-hero-inner {
        padding: 72px 32px;
    }
}

@media (max-width: 640px) {
    .cxb-header-inner,
    .cxb-home-section,
    .cxb-generic-section,
    .cxb-footer-grid,
    .cxb-footer-bottom {
        padding-inline: 24px;
    }

    .cxb-home-section,
    .cxb-generic-section {
        padding: 52px 0;
    }

    .cxb-home-section:not(.cxb-hero)::before {
        inset: 12px;
    }

    .cxb-hero-inner {
        padding: 64px 24px;
    }

    .cxb-hero h1,
    .cxb-section-heading h2,
    .cxb-section-heading h1,
    .cxb-page-hero-copy h1,
    .cxb-biography-copy h1 {
        font-size: clamp(32px, 10vw, var(--cxb-title-size, 54px));
    }

    .cxb-hero-actions,
    .cxb-link-pills,
    .cxb-platform-tab-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .cxb-button {
        width: 100%;
    }

    .cxb-entry-meta-row,
    .cxb-credit-row,
    .cxb-timeline-row {
        grid-template-columns: 1fr;
    }

    .cxb-mosaic-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .cxb-card-grid,
    .cxb-domain-grid,
    .cxb-journal-list {
        grid-template-columns: 1fr;
    }

    .cxb-music-row {
        padding: 22px;
    }

    .cxb-music-row-top .cxb-card-title {
        font-size: 28px;
    }
}

.cxb-music-single {
    max-width: 1180px;
    margin: 0 auto;
    padding: 42px clamp(24px, 4vw, 48px);
}

.cxb-music-single .cxb-section-heading {
    max-width: 860px;
    margin: 0 auto 30px;
    text-align: center;
}

.cxb-music-single .cxb-kicker,
.cxb-music-single .cxb-section-subtitle {
    text-align: center;
}

.cxb-music-single .cxb-featured-image {
    max-width: 460px;
    margin: 0 auto 34px;
    border-radius: 30px;
    box-shadow: 0 24px 58px rgba(42, 24, 18, 0.12);
}

.cxb-music-single .cxb-featured-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.cxb-music-single .cxb-entry-content {
    display: grid;
    gap: 26px;
    justify-items: center;
}

.cxb-music-single .cxb-entry-content > * {
    width: min(100%, 940px);
}

.cxb-music-single .cxb-entry-meta {
    max-width: 760px;
    margin: 0 auto;
}

.cxb-music-single .cxb-platform-embed-block,
.cxb-music-single .cxb-link-pills,
.cxb-music-single .cxb-detail-block,
.cxb-music-single .cxb-gallery-grid,
.cxb-music-single .cxb-editorial-grid,
.cxb-music-single .cxb-editorial-stack {
    margin-inline: auto;
}

.cxb-music-single .cxb-platform-embed-header,
.cxb-music-single .cxb-platform-embed-header p {
    text-align: center;
}

.cxb-music-single .cxb-platform-tab-list,
.cxb-music-single .cxb-link-pills,
.cxb-music-single .cxb-platform-panel-actions {
    justify-content: center;
}

.cxb-music-single .cxb-credit-list {
    max-width: 760px;
    margin: 0 auto;
}

.cxb-music-single .cxb-detail-block {
    padding: 28px;
}

.cxb-music-single .cxb-entry-content > h2,
.cxb-music-single .cxb-entry-content > h3,
.cxb-music-single .cxb-entry-content > p,
.cxb-music-single .cxb-entry-content > ul,
.cxb-music-single .cxb-entry-content > ol,
.cxb-music-single .cxb-entry-content > blockquote {
    max-width: 760px;
    margin-inline: auto;
}

@media (max-width: 1080px) {
    .cxb-music-single {
        padding-inline: 28px;
    }

    .cxb-music-single .cxb-featured-image {
        max-width: 400px;
    }
}

@media (max-width: 640px) {
    .cxb-music-single {
        padding: 28px 20px;
    }

    .cxb-music-single .cxb-featured-image {
        max-width: 100%;
        margin-bottom: 28px;
    }

    .cxb-music-single .cxb-detail-block {
        padding: 22px;
    }
}

@media (min-width: 961px) {
    .cxb-header-inner {
        display: grid;
        grid-template-columns: minmax(280px, 1fr) auto minmax(72px, 1fr);
        align-items: center;
        column-gap: 34px;
    }

    .cxb-branding {
        justify-self: end;
        display: grid;
        justify-items: start;
        margin-right: 32px;
    }

    .cxb-logo-wrap,
    .cxb-site-title {
        transform: translateX(22px);
    }

    .cxb-site-tagline {
        margin-left: 24px;
    }

    .cxb-main-nav {
        justify-self: center;
    }

    .cxb-menu {
        justify-content: center;
        gap: 30px;
    }

    .cxb-mobile-toggle {
        justify-self: end;
    }
}

.cxb-home-section:not(.cxb-hero)::before {
    display: none;
}

.cxb-home-section > * {
    position: relative;
    z-index: 1;
}

.cxb-home-section.cxb-split-section {
    position: relative;
    gap: clamp(24px, 3vw, 36px);
    grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
    align-items: center;
    padding: clamp(28px, 3.2vw, 40px) 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.cxb-home-section.cxb-split-section::before {
    display: none;
}

.cxb-home-section.cxb-split-section > * {
    min-width: 0;
}

.cxb-home-section.cxb-split-section .cxb-section-heading {
    max-width: min(720px, 100%);
    margin-bottom: 24px;
}

.cxb-home-section.cxb-split-section .cxb-section-heading h2,
.cxb-home-section.cxb-split-section .cxb-section-heading h1 {
    font-size: clamp(40px, 4.5vw, 58px);
    line-height: 1.04;
    overflow-wrap: anywhere;
}

.cxb-home-section.cxb-split-section .cxb-section-subtitle,
.cxb-home-section.cxb-split-section .cxb-rich-text,
.cxb-home-section.cxb-contact-section .cxb-contact-list,
.cxb-home-section.cxb-contact-section .cxb-social-list {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.cxb-home-section.cxb-split-section .cxb-split-media {
    width: 100%;
    max-width: 430px;
    justify-self: center;
    overflow: hidden;
    border-radius: var(--cxb-radius);
    align-self: stretch;
}

.cxb-home-section.cxb-split-section .cxb-split-media img {
    width: 100%;
    min-height: clamp(320px, 34vw, 430px);
    max-height: 430px;
    object-fit: cover;
    box-shadow: none;
}

.cxb-home-section.cxb-contact-section .cxb-split-media {
    max-width: 410px;
}

.cxb-home-section.cxb-contact-section .cxb-contact-list li {
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 960px) {
    .cxb-home-section.cxb-split-section {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .cxb-home-section.cxb-split-section .cxb-split-media {
        max-width: min(460px, 100%);
    }
}

@media (max-width: 640px) {
    .cxb-home-section:not(.cxb-hero)::before {
        display: none;
    }

    .cxb-home-section.cxb-split-section .cxb-section-heading h2,
    .cxb-home-section.cxb-split-section .cxb-section-heading h1 {
        font-size: clamp(32px, 10vw, 46px);
    }

    .cxb-home-section.cxb-split-section {
        padding: 22px 0;
    }
}

@media (min-width: 961px) {
    .cxb-hero-inner {
        padding: 97px 184px;
    }

    .cxb-hero-inner > .cxb-kicker,
    .cxb-hero-inner > h1,
    .cxb-hero-inner > .cxb-hero-subtitle {
        margin-left: 34px;
    }

    .cxb-hero h1 {
        color: #fff8f0;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    }

    .cxb-hero-subtitle {
        color: rgba(235, 225, 208, 0.94);
        text-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }

    .cxb-hero .cxb-kicker {
        color: #e1b179;
    }

    .cxb-video-section .cxb-domain-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: stretch;
    }
}
