:root {
    --ink: #180f12;
    --paper: #fff0c6;
    --sun: #ffd21f;
    --tomato: #f03b25;
    --teal: #007f79;
    --rose: #ff4f73;
    --plum: #611936;
    --night: #0f1215;
    --white: #fffaf0;
    --display-font: Impact, "Arial Black", Haettenschweiler, "Arial Narrow Bold", sans-serif;
    --text-font: "Trebuchet MS", "Segoe UI", sans-serif;
    --shadow: 10px 10px 0 rgba(24, 15, 18, 0.95);
    --section-x: clamp(20px, 6vw, 86px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 116px;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(24, 15, 18, 0.06) 1px, transparent 1px),
        linear-gradient(var(--paper), #ffd85a 45%, #fff8df);
    background-size: 28px 28px, auto;
    font-family: var(--text-font);
    font-size: 17px;
    line-height: 1.55;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    opacity: 0.22;
    background-image:
        repeating-linear-gradient(0deg, transparent 0 5px, rgba(24, 15, 18, 0.12) 6px),
        radial-gradient(circle at 20% 20%, rgba(240, 59, 37, 0.35), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(0, 127, 121, 0.3), transparent 30%);
}

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

img {
    display: block;
    width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px var(--section-x);
    color: var(--white);
    background: rgba(15, 18, 21, 0.9);
    border-bottom: 4px solid var(--sun);
    backdrop-filter: blur(14px);
}

.maintenance-topbar {
    justify-content: space-between;
}

.maintenance-badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px 8px;
    color: var(--ink);
    background: var(--sun);
    border: 3px solid var(--ink);
    box-shadow: 5px 5px 0 var(--tomato);
    font-family: var(--display-font);
    font-size: 0.92rem;
    line-height: 1;
    text-transform: uppercase;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--display-font);
    font-size: clamp(1.1rem, 2vw, 1.42rem);
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--ink);
    background: var(--sun);
    border: 3px solid var(--white);
    box-shadow: 4px 4px 0 var(--tomato);
    transform: rotate(-5deg);
}

.brand-logo {
    display: block;
    width: auto;
    max-width: min(190px, 28vw);
    max-height: 52px;
    object-fit: contain;
    filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, 0.35));
}

.brand-has-logo .brand-text {
    font-size: clamp(0.98rem, 1.6vw, 1.22rem);
    letter-spacing: 0.02em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display-font);
    text-transform: uppercase;
}

.site-header-suffix {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
}

.site-nav a {
    padding: 9px 13px;
    border: 2px solid transparent;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.site-nav a:hover {
    color: var(--ink);
    background: var(--sun);
    border-color: var(--sun);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 42px;
    padding: 8px;
    border: 2px solid var(--sun);
    background: transparent;
}

.nav-toggle span {
    display: block;
    height: 3px;
    margin: 5px 0;
    background: var(--sun);
}

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: end;
    padding: 142px var(--section-x) 62px;
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
}

.maintenance-hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 430px);
    align-items: start;
    gap: clamp(22px, 4vw, 56px);
    padding-top: 126px;
    padding-bottom: 48px;
}

.maintenance-hero .hero-content {
    max-width: 100%;
    transform: none;
}

.maintenance-hero h1 {
    max-width: 14ch;
    font-size: clamp(2.8rem, 6vw, 6rem);
    line-height: 0.86;
}

.maintenance-hero .hero-copy {
    max-width: 44ch;
    color: rgba(53, 33, 42, 0.94);
    text-shadow: none;
}

.maintenance-hero .hero-actions {
    margin-top: 30px;
}

.maintenance-panel {
    align-self: start;
}

.maintenance-panel .contact-info-card {
    margin-top: 0;
}

.community-body {
    background:
        linear-gradient(180deg, rgba(255, 216, 96, 0.18), rgba(255, 216, 96, 0.02)),
        var(--paper);
}

.community-body .site-header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.community-body .site-header .brand-text {
    display: none;
}

.community-body .site-header .brand {
    flex: 0 0 auto;
    margin-right: auto;
}

.community-body .site-header .nav-toggle {
    margin-left: auto;
}

.community-body .site-header .site-nav {
    position: absolute;
    top: calc(100% + 4px);
    right: var(--section-x);
    left: auto;
    display: none;
    width: min(320px, calc(100vw - (var(--section-x) * 2)));
    flex-direction: column;
    align-items: stretch;
    padding: 18px 16px;
    background: var(--night);
    border-bottom: 4px solid var(--sun);
}

.community-body .site-header .site-nav.is-open {
    display: flex;
}

.community-body .site-header .site-nav a {
    border-color: rgba(255, 210, 31, 0.35);
}

.community-body .site-header .brand-text {
    text-align: center;
}

.community-body .site-header .site-header-suffix {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.community-body .site-header .community-header-title {
    color: var(--white);
    font-family: var(--display-font);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1;
    text-transform: uppercase;
}

.community-top-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

.community-top-links a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 14px;
    color: var(--paper);
    text-decoration: none;
    background: rgba(17, 12, 15, 0.88);
    border: 2px solid var(--sun);
    font-family: var(--display-font);
    font-size: 0.92rem;
    text-transform: uppercase;
    box-shadow: 4px 4px 0 var(--tomato);
}

.community-hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 420px);
    align-items: start;
    gap: clamp(22px, 4vw, 56px);
    padding-top: 126px;
    padding-bottom: 56px;
}

.community-hero .hero-content {
    max-width: 100%;
    transform: none;
}

.community-hero h1 {
    max-width: 12ch;
    font-size: clamp(3.4rem, 8vw, 8rem);
    line-height: 0.82;
}

.community-hero .hero-copy {
    max-width: 48ch;
}

.community-panel {
    align-self: start;
}

.community-login-card {
    display: grid;
    gap: 14px;
    padding: clamp(22px, 3vw, 34px);
    background: rgba(255, 249, 232, 0.95);
    border: 5px solid var(--ink);
    box-shadow: 12px 12px 0 var(--tomato);
    color: var(--ink);
}

.community-login-card h2,
.community-block h2 {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 0.92;
}

.community-login-card p,
.community-block p,
.community-empty {
    margin: 0;
    color: rgba(53, 33, 42, 0.96);
    font-size: 1.06rem;
    line-height: 1.55;
    font-weight: 700;
}

.community-login-form input {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    color: var(--ink);
    background: var(--paper);
    border: 3px solid var(--ink);
    box-shadow: 5px 5px 0 var(--tomato);
    font: inherit;
}

.community-login-form label {
    margin-top: 4px;
    font-family: var(--display-font);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.community-login-form .btn,
.community-login-card .btn {
    width: 100%;
}

.community-quick-actions {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

.community-push-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    margin-top: 4px;
    color: var(--ink);
    background: rgba(255, 247, 224, 0.95);
    border: 3px solid rgba(24, 15, 18, 0.18);
}

.community-push-card h3 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 0.95;
}

.community-push-card p {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.5;
}

.community-push-card .btn {
    width: 100%;
    transform: translate(0, 0) scale(1);
    transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
}

.community-push-card .btn:active {
    transform: translate(5px, 5px) scale(0.96);
    box-shadow: 1px 1px 0 var(--ink);
    filter: brightness(0.96);
}

.community-push-status {
    color: rgba(53, 33, 42, 0.8);
    font-size: 0.88rem;
    font-weight: 700;
}

.community-app-bar {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 0 var(--section-x) clamp(24px, 4vw, 36px);
    padding: 12px;
    position: sticky;
    bottom: 14px;
    z-index: 18;
    background: rgba(255, 249, 232, 0.98);
    border: 4px solid var(--ink);
    box-shadow: 10px 10px 0 rgba(240, 59, 37, 0.26);
}

.community-app-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 14px;
    color: var(--paper);
    background: var(--ink);
    border: 0;
    box-shadow: 4px 4px 0 var(--tomato);
    font-family: var(--display-font);
    font-size: 0.92rem;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.community-app-link:hover,
.community-app-link:focus-visible {
    background: var(--sun);
    color: var(--ink);
}

.community-shell {
    display: grid;
    gap: 22px;
    padding: 126px var(--section-x) 72px;
}

.community-shell-card {
    display: grid;
    gap: 16px;
    padding: clamp(18px, 3vw, 30px);
    color: var(--ink);
    background: rgba(255, 249, 232, 0.96);
    border: 5px solid var(--ink);
    box-shadow: 10px 10px 0 var(--teal);
}

.community-shell-card-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.community-profile-heading {
    display: grid;
    gap: 0;
    justify-items: start;
    text-align: right;
}

.community-password-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    background: rgba(255, 249, 232, 0.96);
    border: 2px solid rgba(31, 21, 24, 0.16);
}

.community-password-card-head {
    justify-content: flex-start;
}

.community-password-card-head h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.community-profile-heading h2 {
    margin: 0;
}

.community-profile-heading p {
    margin: 0;
    color: rgba(53, 33, 42, 0.82);
    font-family: var(--display-font);
    font-size: clamp(0.9rem, 1.6vw, 1.1rem);
    line-height: 1;
    text-transform: uppercase;
}

.community-shell-card h1,
.community-shell-card h2 {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.community-shell-card h1 {
    max-width: 100%;
    white-space: nowrap;
    text-shadow: none;
    color: var(--ink);
    font-size: clamp(1.8rem, 3vw, 2.9rem);
    letter-spacing: -0.02em;
    overflow: hidden;
    text-overflow: ellipsis;
}

.community-shell-empty {
    margin: 0;
    color: rgba(53, 33, 42, 0.92);
    font-weight: 700;
}

.community-closed-show-list {
    display: grid;
    gap: 10px;
}

.community-closed-show-item {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--paper);
    border: 2px solid rgba(31, 21, 24, 0.16);
}

.community-closed-show-item strong {
    font-family: var(--display-font);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1;
    white-space: nowrap;
}

.community-closed-show-item span {
    font-weight: 800;
    white-space: nowrap;
}

.community-closed-show-item small {
    min-width: 0;
    color: rgba(53, 33, 42, 0.88);
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.community-push-shell {
    gap: 12px;
}

.community-push-shell p {
    margin: 0;
    color: rgba(53, 33, 42, 0.96);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.55;
}

.community-push-shell-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.community-push-shell-actions .btn {
    width: fit-content;
}

.community-chat-shell {
    gap: 14px;
}

.community-chat-list {
    display: grid;
    gap: 10px;
    max-height: clamp(280px, 42vh, 520px);
    padding-right: 4px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.community-chat-list::-webkit-scrollbar {
    width: 10px;
}

.community-chat-list::-webkit-scrollbar-track {
    background: rgba(31, 21, 24, 0.08);
}

.community-chat-list::-webkit-scrollbar-thumb {
    background: var(--ink);
    border: 2px solid var(--paper);
}

.community-chat-empty {
    padding: 12px 14px;
    background: var(--paper);
    border: 2px solid rgba(31, 21, 24, 0.16);
    font-weight: 700;
}

.community-chat-message {
    display: grid;
    gap: 4px;
    padding: 10px 10px;
    background: var(--paper);
    border: 2px solid rgba(31, 21, 24, 0.16);
}

.community-chat-message.is-own {
    background: #fff7df;
}

.community-chat-message.is-system {
    background: #8df4a8;
}

.community-chat-message-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 0;
}

.community-chat-message-head strong {
    font-family: var(--display-font);
    text-transform: uppercase;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.community-chat-message-separator {
    color: rgba(53, 33, 42, 0.7);
    font-weight: 800;
    flex: 0 0 auto;
}

.community-chat-message-head time {
    color: rgba(53, 33, 42, 0.8);
    font-size: 0.88rem;
    font-weight: 800;
    white-space: nowrap;
    flex: 0 0 auto;
}

.community-chat-message p {
    margin: 0;
    color: #352126;
    font-weight: 700;
    line-height: 1.5;
}

.community-chat-compose {
    display: grid;
    gap: 10px;
}

.community-chat-compose textarea {
    width: 100%;
    min-height: 52px;
    padding: 10px 10px;
    color: var(--ink);
    background: #fffdf5;
    border: 3px solid var(--ink);
    font: inherit;
    font-weight: 700;
    resize: vertical;
}

.community-chat-actions {
    display: flex;
    justify-content: flex-end;
}

.community-chat-actions .btn {
    width: fit-content;
}

.community-profile-grid {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.community-profile-media {
    display: grid;
    gap: 12px;
    justify-items: center;
}

.community-profile-photo {
    margin: 0;
    width: min(100%, 70%);
    overflow: hidden;
    background: var(--ink);
    border: 4px solid var(--ink);
    box-shadow: 8px 8px 0 var(--tomato);
}

.community-profile-photo img,
.community-profile-photo div {
    display: grid;
    width: 100%;
    aspect-ratio: 1 / 1;
    place-items: center;
    object-fit: cover;
    color: var(--white);
    font-family: var(--display-font);
    font-size: clamp(3rem, 8vw, 5rem);
    background: linear-gradient(135deg, rgba(0, 127, 121, 0.55), rgba(96, 25, 54, 0.62));
}

.community-profile-upload,
.community-profile-remove {
    display: grid;
    gap: 10px;
}

.community-profile-upload label {
    font-family: var(--display-font);
    text-transform: uppercase;
}

.community-profile-upload input {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    color: var(--ink);
    background: #fffdf5;
    border: 3px solid var(--ink);
    font: inherit;
    font-weight: 700;
}

.community-password-form {
    display: grid;
    gap: 10px;
}

.community-password-form label {
    font-family: var(--display-font);
    text-transform: uppercase;
}

.community-password-form input {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    color: var(--ink);
    background: #fffdf5;
    border: 3px solid var(--ink);
    font: inherit;
    font-weight: 700;
}

.community-password-form small {
    color: #8d170e;
    font-weight: 800;
}

.community-install-button {
    width: 100%;
}

.hero .btn[data-install-app] {
    appearance: none;
}

.community-alert {
    padding: 12px 14px;
    border: 2px solid var(--ink);
    font-size: 0.98rem;
    font-weight: 700;
}

.community-alert-error {
    color: #fff;
    background: #d94a38;
}

.community-alert-success {
    color: var(--ink);
    background: #bff0c2;
}

.community-user-box {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    background: rgba(255, 245, 217, 0.9);
    border: 2px solid rgba(31, 21, 24, 0.18);
}

.community-user-box strong {
    font-family: var(--display-font);
    font-size: 1.4rem;
    text-transform: uppercase;
}

.community-user-box small {
    font-size: 0.95rem;
    font-weight: 700;
}

.community-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 28px);
    padding: 0 var(--section-x) 72px;
}

.community-block {
    display: grid;
    gap: 14px;
    padding: clamp(22px, 3vw, 32px);
    background: rgba(255, 249, 232, 0.88);
    border: 5px solid var(--ink);
    box-shadow: 10px 10px 0 var(--teal);
}

.community-show-list {
    display: grid;
    gap: 12px;
}

.community-show-item {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    background: var(--paper);
    border: 2px solid rgba(31, 21, 24, 0.16);
}

.community-show-item strong {
    font-family: var(--display-font);
    font-size: 1.45rem;
    text-transform: uppercase;
}

.community-show-item span,
.community-show-item small {
    font-weight: 700;
}

.community-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.community-bullets li,
.community-bullets span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 10px;
    color: var(--ink);
    background: var(--sun);
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 var(--tomato);
    font-family: var(--display-font);
    font-size: 0.95rem;
    text-transform: uppercase;
}

.community-bullets {
    padding-left: 0;
    list-style: none;
}

.password-setup-page {
    min-height: 100vh;
    align-items: start;
    padding-top: 140px;
    padding-bottom: 60px;
}

.password-setup-page .hero-content {
    max-width: 100%;
    transform: none;
}

.password-setup-page .hero-copy {
    max-width: 52ch;
}

.password-setup-alert {
    margin: 18px 0 0;
    padding: 14px 16px;
    color: var(--ink);
    background: #fff7df;
    border: 3px solid rgba(24, 15, 18, 0.18);
    box-shadow: 4px 4px 0 var(--sun);
    font-weight: 800;
    line-height: 1.5;
}

.password-setup-form {
    display: grid;
    gap: 12px;
    max-width: 560px;
    margin-top: 22px;
}

.password-setup-form label {
    margin-top: 6px;
    color: var(--ink);
    font-family: var(--display-font);
    font-size: 1.5rem;
    text-transform: uppercase;
}

.password-setup-form input {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    color: var(--ink);
    background: var(--white);
    border: 4px solid var(--ink);
    font-family: var(--body-font);
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 4px 4px 0 var(--tomato);
}

.password-setup-form small {
    color: rgba(53, 33, 42, 0.88);
    font-weight: 700;
    line-height: 1.45;
}

.password-setup-form .btn {
    justify-content: center;
    width: fit-content;
    margin-top: 6px;
}

.agenda-hero {
    position: relative;
    min-height: 62vh;
    display: grid;
    align-items: end;
    padding: 142px var(--section-x) 62px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(15, 18, 21, 0.96), rgba(15, 18, 21, 0.54)),
        url("https://images.unsplash.com/photo-1504805572947-34fad45aed93?auto=format&fit=crop&w=1800&q=85") center / cover;
    border-bottom: 5px solid var(--sun);
    isolation: isolate;
}

.agenda-hero h1 {
    max-width: 8ch;
}

.booking-hero {
    position: relative;
    min-height: 88vh;
    display: grid;
    align-items: end;
    padding: 142px var(--section-x) 70px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(15, 18, 21, 0.97), rgba(15, 18, 21, 0.62) 52%, rgba(240, 59, 37, 0.2)),
        linear-gradient(0deg, rgba(15, 18, 21, 0.88), transparent 58%),
        url("https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?auto=format&fit=crop&w=1800&q=85") center / cover;
    border-bottom: 5px solid var(--sun);
    isolation: isolate;
}

.booking-hero-content {
    max-width: 980px;
}

.booking-hero h1 {
    max-width: 9ch;
    font-size: clamp(4.4rem, 12vw, 11.4rem);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgb(15 18 21 / var(--hero-overlay-left, 0.60)), rgb(15 18 21 / var(--hero-overlay-center, 0.34)) 45%, rgb(97 25 54 / var(--hero-overlay-accent, 0.20))),
        linear-gradient(0deg, rgb(15 18 21 / var(--hero-overlay-bottom, 0.52)), transparent 50%),
        var(--hero-image, url("https://images.unsplash.com/photo-1506157786151-b8491531f063?auto=format&fit=crop&w=1800&q=85")) center / cover;
}

.hero::after {
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 34%;
    content: "";
    background: linear-gradient(transparent, rgb(15 18 21 / var(--hero-overlay-after, 0.38)));
}

.hero-content {
    max-width: 900px;
    transform: translateY(-10px);
}

.stamp,
.section-kicker {
    display: inline-block;
    margin: 0 0 16px;
    padding: 9px 15px 8px;
    color: var(--ink);
    background: var(--sun);
    border: 3px solid var(--ink);
    box-shadow: 5px 5px 0 var(--tomato);
    font-family: var(--display-font);
    font-size: 0.98rem;
    line-height: 1;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--display-font);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1 {
    max-width: 10ch;
    font-size: clamp(5.6rem, 17vw, 14.7rem);
    line-height: 0.76;
    text-shadow: 7px 7px 0 var(--tomato), 13px 13px 0 var(--teal), 18px 18px 0 rgba(0, 0, 0, 0.35);
}

.hero-copy {
    max-width: 660px;
    margin: 34px 0 30px;
    color: #fff7d9;
    font-size: clamp(1.12rem, 1.8vw, 1.42rem);
    font-weight: 700;
    line-height: 1.48;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    position: relative;
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px 13px;
    border: 3px solid var(--ink);
    box-shadow: 6px 6px 0 var(--ink);
    font-family: var(--display-font);
    font-size: 1.03rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.btn::after {
    content: "→";
    font-size: 1.2rem;
    line-height: 1;
    transform: translateY(-1px);
    transition: transform 160ms ease;
}

.btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 var(--ink);
}

.btn:hover::after {
    transform: translate(4px, -1px);
}

.btn:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible,
.newsletter-form input:focus-visible,
.budget-form input:focus-visible,
.budget-form textarea:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 3px;
}

.btn-primary {
    color: var(--ink);
    background: var(--sun);
}

.btn-primary:hover {
    background: #ffe56b;
}

.btn-secondary {
    color: var(--white);
    background: var(--plum);
    border-color: var(--sun);
    box-shadow: 6px 6px 0 var(--sun);
}

.btn-secondary:hover {
    color: var(--ink);
    background: var(--white);
    box-shadow: 4px 4px 0 var(--sun);
}

.btn-whatsapp {
    color: var(--ink);
    background: #25d366;
    border-color: var(--ink);
    box-shadow: 6px 6px 0 var(--sun);
}

.btn-whatsapp:hover {
    background: #7ff0a8;
    box-shadow: 4px 4px 0 var(--sun);
}

.poster-card {
    position: absolute;
    right: clamp(18px, 6vw, 80px);
    bottom: 50px;
    width: min(315px, 35vw);
    min-height: 218px;
    padding: 34px 26px 26px;
    color: var(--ink);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 28%),
        repeating-linear-gradient(-8deg, rgba(255, 255, 255, 0.16) 0 8px, transparent 8px 17px),
        var(--rose);
    border: 5px solid var(--ink);
    box-shadow: 12px 12px 0 var(--sun), 20px 20px 0 rgba(24, 15, 18, 0.86);
    transform: rotate(2.5deg);
}

.agenda-featured {
    color: var(--ink);
    background:
        linear-gradient(135deg, rgba(240, 59, 37, 0.12), transparent 30%),
        var(--paper);
}

.featured-show-grid {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: clamp(34px, 6vw, 84px);
    align-items: center;
}

.featured-show-grid .poster-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    transform: rotate(-2deg);
}

.poster-card-featured {
    min-height: 250px;
}

.featured-show-copy {
    max-width: 780px;
}

.featured-show-copy h3 {
    margin-bottom: 20px;
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: 0.86;
}

.featured-show-copy p {
    max-width: 720px;
    margin: 0 0 16px;
    color: #28191d;
    font-size: clamp(1.08rem, 1.6vw, 1.34rem);
    font-weight: 700;
    line-height: 1.6;
}

.agenda-list-section {
    padding-top: clamp(72px, 9vw, 112px);
}

.booking-intro {
    background:
        linear-gradient(135deg, rgba(240, 59, 37, 0.12), transparent 30%),
        var(--paper);
}

.booking-events {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(255, 210, 31, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 90% 0%, rgba(0, 127, 121, 0.46), transparent 30%),
        var(--night);
    background-size: 30px 30px, auto, auto;
}

.event-grid,
.differential-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 28px);
}

.event-card {
    min-height: 210px;
    padding: 24px;
    color: var(--ink);
    background: var(--sun);
    border: 5px solid var(--ink);
    box-shadow: 9px 9px 0 var(--tomato);
    transform: rotate(-1deg);
}

.event-card:nth-child(even) {
    background: var(--rose);
    transform: rotate(1deg);
}

.event-card span {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-bottom: 26px;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    font-family: var(--display-font);
}

.event-card h3,
.differential-card h3 {
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    line-height: 0.95;
}

.booking-differentials {
    background:
        linear-gradient(115deg, rgba(0, 127, 121, 0.15), transparent 34%),
        var(--paper);
}

.differential-card {
    min-height: 260px;
    padding: 26px;
    background: var(--white);
    border: 5px solid var(--ink);
    box-shadow: 9px 9px 0 var(--teal);
}

.differential-card p {
    margin: 18px 0 0;
    color: #28191d;
    font-weight: 700;
    line-height: 1.62;
}

.booking-cta {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: start;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(255, 210, 31, 0.18), transparent 30%),
        var(--plum);
    border-top: 5px solid var(--ink);
}

.booking-cta h2 {
    max-width: 900px;
    font-size: clamp(3rem, 7.2vw, 7.2rem);
    line-height: 0.86;
}

.booking-cta p {
    max-width: 720px;
    margin: 24px 0 0;
    color: #fff7d9;
    font-size: clamp(1.06rem, 1.5vw, 1.28rem);
    font-weight: 700;
}

.btn-cta-large {
    width: fit-content;
    margin-top: 28px;
    min-height: 76px;
    text-align: center;
}

.booking-intro .btn-primary,
.booking-events .btn-primary,
.booking-differentials .btn-primary,
.split-section .btn-primary {
    margin-top: 22px;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    display: inline-grid;
    width: 64px;
    height: 64px;
    place-items: center;
    color: var(--white);
    background: var(--teal);
    border: 5px solid var(--ink);
    border-radius: 18px;
    box-shadow: 8px 8px 0 var(--tomato);
    opacity: 0;
    transform: translateY(18px) scale(0.95);
    pointer-events: none;
    transition:
        opacity 0.28s ease,
        transform 0.28s ease,
        background-color 0.28s ease,
        box-shadow 0.28s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
    background: var(--sun);
    color: var(--ink);
    box-shadow: 10px 10px 0 var(--tomato);
}

.back-to-top span {
    font-family: var(--display-font);
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-1px);
}

.budget-form {
    padding: clamp(22px, 4vw, 34px);
    color: var(--ink);
    background: var(--white);
    border: 5px solid var(--ink);
    box-shadow: 10px 10px 0 var(--sun), 17px 17px 0 rgba(24, 15, 18, 0.95);
}

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

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--display-font);
    line-height: 1;
    text-transform: uppercase;
}

.form-field input,
.form-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    color: var(--ink);
    background: #fffdf5;
    border: 3px solid var(--ink);
    font: inherit;
    font-weight: 700;
    resize: vertical;
    transition: box-shadow 160ms ease, border-color 160ms ease;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--tomato);
    box-shadow: 4px 4px 0 var(--sun);
}

.form-field small {
    display: block;
    margin-top: 7px;
    color: #8d170e;
    font-weight: 800;
}

.form-alert {
    margin-bottom: 20px;
    padding: 14px 16px;
    border: 3px solid var(--ink);
    font-weight: 800;
}

.form-alert-success {
    background: #8df4a8;
}

.form-alert-error {
    color: var(--white);
    background: var(--tomato);
}

.empty-state {
    max-width: 760px;
    padding: clamp(24px, 4vw, 38px);
    background: var(--white);
    border: 5px solid var(--ink);
    box-shadow: 10px 10px 0 var(--tomato), 17px 17px 0 var(--ink);
}

.empty-state h3 {
    margin-bottom: 14px;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 0.92;
}

.empty-state p {
    margin: 0 0 24px;
    color: #28191d;
    font-weight: 700;
}

.poster-card::before {
    position: absolute;
    top: -22px;
    left: 22px;
    padding: 8px 12px 7px;
    color: var(--white);
    background: var(--tomato);
    border: 3px solid var(--ink);
    content: "AO VIVO";
    font-family: var(--display-font);
    font-size: 1.12rem;
    line-height: 1;
    text-transform: uppercase;
    transform: rotate(-5deg);
}

.poster-card span,
.poster-card small {
    display: block;
    font-family: var(--display-font);
    line-height: 1.05;
    text-transform: uppercase;
}

.poster-card span {
    color: var(--white);
    text-shadow: 2px 2px 0 var(--ink);
}

.poster-card strong {
    display: block;
    margin: 10px 0 12px;
    font-family: var(--display-font);
    font-size: clamp(4.2rem, 7vw, 5.8rem);
    line-height: 0.82;
}

.poster-card small {
    padding-top: 12px;
    border-top: 3px solid rgba(24, 15, 18, 0.68);
    font-size: 1.02rem;
}

.marquee {
    overflow: hidden;
    color: var(--ink);
    background: var(--sun);
    border-block: 5px solid var(--ink);
}

.marquee div {
    display: flex;
    width: max-content;
    animation: marquee 24s linear infinite;
}

.marquee span {
    padding: 16px 28px 15px;
    font-family: var(--display-font);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    text-transform: uppercase;
}

.section {
    padding: clamp(74px, 10vw, 128px) var(--section-x);
}

.install-helper-section {
    background:
        linear-gradient(135deg, rgba(240, 59, 37, 0.08), transparent 30%),
        var(--paper);
}

.install-helper-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: clamp(24px, 3vw, 34px);
    background: rgba(255, 255, 255, 0.72);
    border: 4px solid var(--ink);
    box-shadow: 12px 12px 0 var(--tomato);
}

.install-helper-card h2 {
    margin: 10px 0 12px;
    font-size: clamp(2.2rem, 6vw, 4.4rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.install-helper-card p {
    margin: 0;
    max-width: 58ch;
    color: #28191d;
    font-size: clamp(1.02rem, 1.45vw, 1.2rem);
    font-weight: 650;
    line-height: 1.7;
}

.install-helper-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.split-section {
    background:
        linear-gradient(135deg, rgba(240, 59, 37, 0.11), transparent 28%),
        var(--paper);
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(290px, 0.95fr);
    gap: clamp(30px, 6vw, 78px);
    align-items: center;
}

.split-grid h2,
.section-heading h2,
.contact-section h2 {
    font-size: clamp(3rem, 8vw, 7.4rem);
    line-height: 0.86;
}

.split-grid p,
.contact-section p {
    margin: 0 0 18px;
    color: #28191d;
    font-size: clamp(1.04rem, 1.45vw, 1.22rem);
    font-weight: 650;
    line-height: 1.72;
}

.banner-strip-section {
    padding-top: clamp(46px, 6vw, 72px);
    padding-bottom: clamp(46px, 6vw, 72px);
    color: var(--ink);
    background: var(--sun);
    border-block: 5px solid var(--ink);
}

.banner-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: clamp(18px, 2.4vw, 28px);
}

.banner-strip-grid figure,
.site-card-media-grid figure,
.public-gallery-grid figure {
    margin: 0;
    overflow: hidden;
    background: var(--ink);
    border: 5px solid var(--ink);
    box-shadow: 8px 8px 0 var(--tomato);
}

.banner-strip-grid img {
    height: clamp(190px, 25vw, 330px);
    object-fit: cover;
}

.banner-strip-grid figcaption,
.site-card-media-grid figcaption,
.public-gallery-grid figcaption {
    padding: 13px 15px;
    color: var(--white);
    background: var(--ink);
    border-top: 4px solid var(--sun);
    font-family: var(--display-font);
    line-height: 1;
    text-transform: uppercase;
}

.site-card-media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 28px);
    margin-top: clamp(38px, 6vw, 74px);
}

.site-card-media-grid figure:nth-child(even) {
    transform: translateY(20px) rotate(1.5deg);
}

.site-card-media-grid img {
    height: clamp(220px, 28vw, 380px);
    object-fit: cover;
    filter: saturate(1.2) contrast(1.06);
}

.agenda-section {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(255, 210, 31, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 10% 0%, rgba(240, 59, 37, 0.32), transparent 28%),
        var(--night);
    background-size: 30px 30px, auto, auto;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(32px, 5vw, 52px);
}

.show-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 28px);
}

.show-card {
    min-height: 300px;
    padding: 26px;
    color: var(--ink);
    background: var(--white);
    border: 5px solid var(--sun);
    box-shadow: 9px 9px 0 var(--tomato);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.show-card:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow: 12px 14px 0 var(--tomato);
}

.show-card time {
    display: inline-block;
    margin-bottom: 36px;
    padding: 9px 13px 8px;
    color: var(--white);
    background: var(--teal);
    border: 3px solid var(--ink);
    font-family: var(--display-font);
    line-height: 1;
}

.show-card h3 {
    margin-bottom: 16px;
    font-size: clamp(2.25rem, 3.4vw, 3rem);
    line-height: 0.95;
}

.show-card p {
    min-height: 48px;
    margin: 0 0 20px;
    color: #322126;
    font-weight: 700;
    line-height: 1.35;
}

.show-card span {
    display: inline-block;
    padding: 5px 10px;
    color: var(--white);
    background: var(--ink);
    font-family: var(--display-font);
    font-size: 1.4rem;
    line-height: 1;
}

.gallery-section {
    background:
        linear-gradient(180deg, rgba(255, 210, 31, 0.13), transparent 42%),
        var(--teal);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr;
    gap: clamp(16px, 2vw, 24px);
}

.gallery-grid figure {
    min-height: 390px;
    margin: 0;
    overflow: hidden;
    background: var(--ink);
    border: 5px solid var(--ink);
    box-shadow: 8px 8px 0 var(--sun);
}

.gallery-grid figure:nth-child(2) {
    transform: translateY(28px) rotate(2deg);
}

.gallery-grid figure:nth-child(3) {
    transform: rotate(-2deg);
}

.gallery-grid img {
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    filter: saturate(1.22) contrast(1.08);
    transition: transform 220ms ease, filter 220ms ease;
}

.gallery-grid figure:hover img {
    transform: scale(1.04);
    filter: saturate(1.35) contrast(1.12);
}

.public-gallery-hero {
    background:
        linear-gradient(90deg, rgba(15, 18, 21, 0.96), rgba(15, 18, 21, 0.56)),
        url("https://images.unsplash.com/photo-1521337581100-8ca9a73a5f79?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.public-gallery-section {
    background:
        radial-gradient(circle at 88% 0%, rgba(255, 79, 115, 0.2), transparent 32%),
        var(--teal);
}

.public-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
    gap: clamp(18px, 2.2vw, 30px);
}

.public-gallery-grid figure:nth-child(3n + 2) {
    transform: translateY(18px) rotate(1.3deg);
}

.public-gallery-grid figure:nth-child(3n) {
    transform: rotate(-1.2deg);
}

.public-gallery-grid img {
    height: clamp(260px, 30vw, 440px);
    object-fit: cover;
    filter: saturate(1.18) contrast(1.07);
    transition: transform 220ms ease, filter 220ms ease;
}

.public-gallery-grid figure:hover img {
    transform: scale(1.04);
    filter: saturate(1.34) contrast(1.12);
}

.musicians-hero {
    background:
        linear-gradient(90deg, rgba(15, 18, 21, 0.96), rgba(15, 18, 21, 0.56)),
        url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.musicians-teaser-section,
.musicians-public-section {
    background:
        radial-gradient(circle at 88% 0%, rgba(0, 127, 121, 0.16), transparent 32%),
        var(--paper);
}

.musicians-teaser-grid,
.musicians-public-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 380px));
    gap: clamp(18px, 2.2vw, 30px);
    justify-items: center;
    justify-content: center;
}

.musician-teaser-card,
.musician-public-card {
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    background: var(--white);
    border: 5px solid var(--ink);
    box-shadow: 9px 9px 0 var(--teal);
}

.musician-public-media {
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
    max-width: 100%;
    max-height: 500px;
    margin-inline: auto;
    background:
        linear-gradient(45deg, rgba(24, 15, 18, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(24, 15, 18, 0.1) 25%, transparent 25%),
        #fff7df;
    background-size: 20px 20px;
    border-bottom: 5px solid var(--ink);
}

.musician-public-media img,
.musician-public-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.musician-public-media img {
    object-fit: cover;
    opacity: 0;
    transition: opacity 360ms ease, transform 360ms ease;
}

.musician-public-media img.is-active {
    opacity: 1;
}

.musician-public-media.has-rotation img.is-active {
    transform: scale(1.02);
}

.musician-public-placeholder {
    display: grid;
    place-items: center;
    color: var(--ink);
    font-family: var(--display-font);
    font-size: clamp(3rem, 9vw, 5rem);
    text-transform: uppercase;
}

.musician-public-body {
    display: grid;
    gap: 14px;
    padding: clamp(22px, 3vw, 28px);
}

.musician-public-body .section-kicker {
    margin: 0;
}

.musician-public-body h2 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 0.88;
}

.musician-public-body p {
    margin: 0;
    color: #28191d;
    font-weight: 700;
    line-height: 1.65;
}

#musicos .musician-teaser-card,
#musicos .musician-public-card {
    width: min(100%, 400px);
    max-width: 400px;
    justify-self: center;
}

#musicos .musician-public-media {
    width: 100%;
    max-width: 400px;
}

/* Modern compact polish v2 */
body {
    font-size: 15.5px;
    line-height: 1.48;
}

p,
li,
small {
    font-weight: 500;
}

.hero,
.agenda-hero,
.booking-hero,
.maintenance-hero,
.community-hero {
    padding-top: 118px;
    padding-bottom: 44px;
}

.hero-content {
    max-width: 860px;
}

h1 {
    font-size: clamp(4.4rem, 14vw, 12rem);
    line-height: 0.79;
    text-shadow: 4px 4px 0 var(--tomato), 8px 8px 0 var(--teal), 11px 11px 0 rgba(0, 0, 0, 0.26);
}

.hero-copy,
.split-grid p,
.contact-section p,
.install-helper-card p,
.booking-cta p,
.community-login-card p,
.community-block p,
.community-empty,
.community-promo-card p,
.newsletter-confirmation-card p,
.contact-info-meta,
.show-card p,
.event-card p,
.differential-card p,
.newsletter-field-hint {
    font-size: 0.98rem;
    line-height: 1.54;
    font-weight: 500;
}

.section {
    padding: clamp(58px, 7vw, 104px) var(--section-x);
}

.section-heading {
    margin-bottom: clamp(24px, 4vw, 40px);
}

.section-heading h2,
.split-grid h2,
.contact-section h2,
.booking-cta h2,
.featured-show-copy h3,
.community-login-card h2,
.community-block h2,
.newsletter-confirmation-card h1 {
    font-size: clamp(2.4rem, 6.2vw, 5.4rem);
    line-height: 0.88;
}

.show-grid,
.event-grid,
.differential-grid,
.banner-strip-grid,
.site-card-media-grid,
.public-gallery-grid {
    gap: clamp(14px, 2vw, 22px);
}

.show-card,
.event-card,
.differential-card,
.budget-form,
.newsletter-form,
.contact-info-card,
.community-login-card,
.community-block,
.newsletter-confirmation-card {
    padding: 20px;
}

.show-card {
    min-height: 248px;
}

.event-card {
    min-height: 198px;
}

.differential-card {
    min-height: 220px;
}

.btn {
    min-height: 50px;
    padding: 12px 18px 11px;
    font-size: 0.93rem;
    box-shadow: 5px 5px 0 var(--ink);
}

.btn::after {
    font-size: 1rem;
}

.stamp,
.section-kicker,
.maintenance-badge,
.community-top-links a,
.community-app-link,
.community-bullets li,
.community-bullets span,
.community-push-card h3,
.community-user-box strong,
.poster-card::before,
.poster-card span,
.poster-card small,
.poster-card strong,
.site-nav {
    letter-spacing: 0.01em;
}

@media (max-width: 920px) {
    .hero,
    .agenda-hero,
    .booking-hero,
    .maintenance-hero,
    .community-hero {
        padding-top: 108px;
        padding-bottom: 36px;
    }

    h1 {
        font-size: clamp(3.8rem, 13vw, 9rem);
    }

    .section {
        padding: clamp(50px, 6vw, 88px) var(--section-x);
    }
}

@media (max-width: 560px) {
    .site-header {
        padding: 9px 12px;
        gap: 10px;
    }

    .brand {
        gap: 7px;
        font-size: 0.94rem;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .brand-logo {
        max-height: 34px;
    }

    .hero,
    .agenda-hero,
    .booking-hero,
    .maintenance-hero,
    .community-hero {
        padding: 92px 14px 36px;
    }

    h1 {
        max-width: 9.5ch;
        font-size: clamp(2.9rem, 14vw, 4.9rem);
        line-height: 0.84;
        text-shadow: 3px 3px 0 var(--tomato), 6px 6px 0 var(--teal), 8px 8px 0 rgba(0, 0, 0, 0.2);
    }

    .hero-copy {
        margin: 18px 0 16px;
        font-size: 0.94rem;
        line-height: 1.45;
    }

    .hero-actions,
    .split-cta-group,
    .install-helper-actions,
    .community-top-links,
    .community-quick-actions {
        gap: 10px;
    }

    .btn,
    .btn-cta-large,
    .hero-actions .btn,
    .split-cta-group .btn,
    .community-login-card .btn,
    .community-promo-card .btn,
    .newsletter-form button {
        width: 100%;
    }

    .btn {
        min-height: 44px;
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .section {
        padding-block: 44px;
    }

    .section-heading h2,
    .split-grid h2,
    .contact-section h2,
    .booking-cta h2,
    .featured-show-copy h3,
    .community-login-card h2,
    .community-block h2,
    .newsletter-confirmation-card h1 {
        font-size: clamp(1.9rem, 10vw, 3.5rem);
    }

    .show-card,
    .event-card,
    .differential-card,
    .budget-form,
    .newsletter-form,
    .contact-info-card,
    .community-login-card,
    .community-block,
    .newsletter-confirmation-card {
        padding: 16px;
    }

    .show-card,
    .event-card,
    .differential-card {
        min-height: auto;
    }

    .show-card time {
        margin-bottom: 16px;
        padding: 7px 9px 6px;
    }

    .show-card h3,
    .event-card h3,
    .differential-card h3,
    .community-push-card h3 {
        font-size: clamp(1.5rem, 9vw, 2.2rem);
    }

    .gallery-grid figure,
    .gallery-grid img,
    .public-gallery-grid img {
        min-height: 220px;
        height: 220px;
    }

    .community-app-bar {
        grid-template-columns: 1fr;
        margin-inline: 14px;
        bottom: 10px;
        padding: 8px;
    }

    .community-login-form input,
    .password-setup-form input,
    .newsletter-form input,
    .form-field input,
    .form-field textarea {
        min-height: 42px;
        font-size: 0.96rem;
    }

    .form-grid {
        gap: 12px;
    }

    .site-footer {
        display: block;
        padding: 14px 14px 16px;
    }

    .site-footer span {
        display: block;
        margin-top: 8px;
        text-align: left;
    }
}

/* Compact pass v3: leaner editorial rhythm */
:root {
    --section-x: clamp(16px, 4.8vw, 68px);
}

body {
    font-size: 15px;
    line-height: 1.45;
}

.site-header {
    padding: 12px var(--section-x);
    gap: 16px;
}

.site-nav a {
    padding: 8px 11px;
    font-size: 0.96rem;
}

.hero,
.agenda-hero,
.booking-hero,
.maintenance-hero,
.community-hero {
    padding-top: 108px;
    padding-bottom: 40px;
}

.hero-content {
    max-width: 820px;
}

h1 {
    font-size: clamp(4rem, 13vw, 10.8rem);
    line-height: 0.8;
    text-shadow: 4px 4px 0 var(--tomato), 7px 7px 0 var(--teal), 10px 10px 0 rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 0.9;
}

h3 {
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    line-height: 0.96;
}

.hero-copy,
.split-grid p,
.contact-section p,
.install-helper-card p,
.booking-cta p,
.community-login-card p,
.community-block p,
.community-empty,
.community-promo-card p,
.newsletter-confirmation-card p,
.contact-info-meta,
.show-card p,
.event-card p,
.differential-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.section {
    padding: clamp(48px, 6vw, 84px) var(--section-x);
}

.section-heading {
    margin-bottom: clamp(20px, 3.5vw, 32px);
}

.stamp,
.section-kicker,
.maintenance-badge,
.community-top-links a,
.community-app-link,
.community-bullets li,
.community-bullets span {
    padding: 7px 11px 6px;
    font-size: 0.84rem;
    line-height: 1;
}

.btn {
    min-height: 46px;
    padding: 10px 15px 9px;
    font-size: 0.85rem;
    box-shadow: 4px 4px 0 var(--ink);
}

.show-grid,
.event-grid,
.differential-grid,
.banner-strip-grid,
.site-card-media-grid,
.public-gallery-grid {
    gap: 14px;
}

.show-card,
.event-card,
.differential-card,
.budget-form,
.newsletter-form,
.contact-info-card,
.community-login-card,
.community-block,
.newsletter-confirmation-card,
.install-helper-card {
    padding: 18px;
}

.show-card {
    min-height: 230px;
}

.event-card {
    min-height: 185px;
}

.differential-card {
    min-height: 210px;
}

.show-card time {
    margin-bottom: 18px;
    padding: 7px 9px 6px;
    font-size: 0.84rem;
}

.show-card h3 {
    font-size: clamp(1.75rem, 2.6vw, 2.35rem);
}

.show-card span {
    font-size: 0.96rem;
}

.community-login-card h2,
.community-block h2,
.featured-show-copy h3,
.booking-cta h2,
.split-grid h2,
.section-heading h2,
.contact-section h2,
.newsletter-confirmation-card h1 {
    font-size: clamp(2.2rem, 5.8vw, 4.8rem);
}

.poster-card {
    min-height: 182px;
    padding: 24px 20px 18px;
    box-shadow: 8px 8px 0 var(--sun), 13px 13px 0 rgba(24, 15, 18, 0.84);
}

.banner-strip-grid img,
.site-card-media-grid img,
.public-gallery-grid img {
    height: clamp(170px, 22vw, 290px);
}

.gallery-grid figure,
.gallery-grid img {
    min-height: 250px;
    height: 250px;
}

.community-push-card h3 {
    font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.community-app-bar {
    gap: 8px;
    padding: 9px;
}

@media (max-width: 920px) {
    .site-nav a {
        padding: 10px 12px;
    }

    .hero,
    .agenda-hero,
    .booking-hero,
    .maintenance-hero,
    .community-hero {
        padding-top: 102px;
        padding-bottom: 34px;
    }

    h1 {
        font-size: clamp(3.4rem, 12vw, 7.8rem);
    }

    .section {
        padding: clamp(44px, 5.5vw, 78px) var(--section-x);
    }

    .show-grid,
    .event-grid,
    .differential-grid,
    .banner-strip-grid,
    .site-card-media-grid,
    .public-gallery-grid,
    .community-dashboard-grid,
    .split-grid,
    .booking-cta,
    .contact-section {
        gap: 16px;
    }
}

@media (max-width: 560px) {
    .site-header {
        padding: 8px 12px;
        gap: 8px;
    }

    .brand {
        gap: 6px;
        font-size: 0.92rem;
    }

    .brand-mark {
        width: 32px;
        height: 32px;
    }

    .brand-logo {
        max-height: 32px;
    }

    .hero,
    .agenda-hero,
    .booking-hero,
    .maintenance-hero,
    .community-hero {
        padding: 84px 12px 32px;
    }

    h1 {
        font-size: clamp(2.8rem, 13vw, 4.7rem);
        line-height: 0.84;
    }

    .hero-copy {
        margin: 16px 0 14px;
        font-size: 0.92rem;
    }

    .section {
        padding: 42px 12px;
    }

    .section-heading h2,
    .split-grid h2,
    .contact-section h2,
    .booking-cta h2,
    .featured-show-copy h3,
    .community-login-card h2,
    .community-block h2,
    .newsletter-confirmation-card h1 {
        font-size: clamp(1.9rem, 9vw, 3.4rem);
    }

    .show-card,
    .event-card,
    .differential-card,
    .budget-form,
    .newsletter-form,
    .contact-info-card,
    .community-login-card,
    .community-block,
    .newsletter-confirmation-card,
    .install-helper-card {
        padding: 14px;
    }

    .show-card {
        min-height: auto;
    }

    .show-card time {
        margin-bottom: 14px;
    }

    .show-card h3,
    .event-card h3,
    .differential-card h3,
    .community-push-card h3 {
        font-size: clamp(1.45rem, 8vw, 2rem);
    }

    .poster-card {
        min-height: 166px;
        padding: 20px 16px 16px;
    }

    .banner-strip-grid img,
    .site-card-media-grid img,
    .public-gallery-grid img,
    .gallery-grid figure,
    .gallery-grid img {
        height: 210px;
        min-height: 210px;
    }

    .btn {
        min-height: 42px;
        padding: 9px 13px 8px;
        font-size: 0.78rem;
    }

    .community-app-bar {
        margin-inline: 12px;
        bottom: 10px;
    }

    .newsletter-form input,
    .form-field input,
    .form-field textarea,
    .community-login-form input,
    .password-setup-form input {
        min-height: 42px;
        font-size: 0.94rem;
    }
}

/* Editorial compact refresh */
body {
    font-size: 16px;
    line-height: 1.45;
}

section[id] {
    scroll-margin-top: 92px;
}

.site-header {
    padding: 12px var(--section-x);
    gap: 16px;
    background: rgba(15, 18, 21, 0.92);
}

.brand {
    gap: 10px;
    font-size: clamp(0.95rem, 1.45vw, 1.14rem);
}

.brand-mark {
    width: 40px;
    height: 40px;
}

.brand-logo {
    max-width: min(172px, 26vw);
    max-height: 44px;
}

.site-nav {
    gap: 8px;
    font-size: 0.92rem;
}

.site-nav a {
    padding: 7px 10px;
}

.hero {
    min-height: 82vh;
    padding: 112px var(--section-x) 50px;
}

.maintenance-hero,
.community-hero {
    gap: clamp(18px, 3vw, 40px);
    padding-top: 104px;
    padding-bottom: 40px;
}

.booking-hero,
.agenda-hero {
    min-height: 56vh;
    padding: 112px var(--section-x) 50px;
}

.hero-content {
    max-width: 820px;
    transform: translateY(-2px);
}

h1 {
    font-size: clamp(4rem, 13vw, 11rem);
    line-height: 0.8;
    text-shadow: 5px 5px 0 var(--tomato), 9px 9px 0 var(--teal), 12px 12px 0 rgba(0, 0, 0, 0.25);
}

.hero-copy {
    margin: 24px 0 20px;
    font-size: clamp(0.98rem, 1.35vw, 1.12rem);
    line-height: 1.55;
}

.stamp,
.section-kicker {
    margin-bottom: 12px;
    padding: 7px 12px 6px;
    font-size: 0.84rem;
}

.btn {
    min-height: 48px;
    padding: 11px 16px 10px;
    font-size: 0.92rem;
    box-shadow: 5px 5px 0 var(--ink);
}

.btn::after {
    font-size: 0.92rem;
}

.poster-card {
    min-height: 190px;
    padding: 26px 20px 20px;
    box-shadow: 9px 9px 0 var(--sun), 14px 14px 0 rgba(24, 15, 18, 0.84);
}

.poster-card::before {
    padding: 6px 10px 5px;
    font-size: 0.88rem;
}

.poster-card strong {
    margin: 8px 0 10px;
    font-size: clamp(3.2rem, 5.4vw, 4.8rem);
}

.poster-card small {
    padding-top: 10px;
    font-size: 0.9rem;
}

.section {
    padding: clamp(56px, 7vw, 96px) var(--section-x);
}

.split-grid,
.featured-show-grid,
.booking-cta,
.contact-section {
    gap: clamp(22px, 4vw, 48px);
}

.split-grid h2,
.section-heading h2,
.contact-section h2,
.booking-cta h2,
.featured-show-copy h3,
.community-login-card h2,
.community-block h2,
.newsletter-confirmation-card h1 {
    font-size: clamp(2.4rem, 5.2vw, 5rem);
    line-height: 0.88;
}

.split-grid p,
.contact-section p,
.install-helper-card p,
.booking-cta p,
.community-login-card p,
.community-block p,
.community-empty {
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.6;
}

.install-helper-card,
.newsletter-form,
.contact-info-card,
.budget-form,
.community-login-card,
.community-block,
.newsletter-confirmation-card {
    padding: clamp(18px, 2.8vw, 26px);
}

.install-helper-card h2,
.empty-state h3,
.community-promo-card h3 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.show-grid,
.event-grid,
.differential-grid,
.banner-strip-grid,
.site-card-media-grid,
.public-gallery-grid {
    gap: clamp(14px, 2vw, 22px);
}

.show-card,
.event-card,
.differential-card,
.banner-strip-grid figure,
.site-card-media-grid figure,
.public-gallery-grid figure,
.gallery-grid figure {
    box-shadow: 7px 7px 0 var(--tomato);
}

.show-card {
    min-height: 238px;
    padding: 20px;
}

.show-card time {
    margin-bottom: 22px;
    padding: 8px 10px 7px;
    font-size: 0.88rem;
}

.show-card h3 {
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}

.show-card p {
    min-height: 36px;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.show-card span {
    font-size: 1rem;
}

.event-card {
    min-height: 190px;
    padding: 20px;
}

.event-card span {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
}

.event-card h3,
.differential-card h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.differential-card {
    min-height: 220px;
    padding: 22px;
}

.banner-strip-section {
    padding-top: clamp(34px, 4vw, 52px);
    padding-bottom: clamp(34px, 4vw, 52px);
}

.banner-strip-grid img {
    height: clamp(170px, 22vw, 280px);
}

.site-card-media-grid {
    margin-top: clamp(28px, 4vw, 54px);
}

.site-card-media-grid img {
    height: clamp(200px, 24vw, 300px);
}

.gallery-grid figure {
    min-height: 320px;
}

.gallery-grid img {
    min-height: 320px;
}

.public-gallery-grid img {
    height: clamp(220px, 26vw, 340px);
}

.musician-public-body {
    gap: 12px;
    padding: clamp(18px, 2.8vw, 24px);
}

.musician-public-body h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.contact-section-copy {
    font-size: 0.96rem;
    line-height: 1.55;
}

.newsletter-form label,
.form-field label,
.community-login-form label,
.password-setup-form label {
    font-size: 0.82rem;
}

.newsletter-form input,
.form-field input,
.form-field textarea,
.community-login-form input,
.password-setup-form input {
    min-height: 46px;
    font-size: 1rem;
}

.newsletter-form input,
.form-field input,
.form-field textarea {
    padding: 11px 12px;
}

.budget-form {
    box-shadow: 8px 8px 0 var(--sun), 14px 14px 0 rgba(24, 15, 18, 0.9);
}

.form-grid {
    gap: 14px;
}

.form-field {
    margin-bottom: 14px;
}

.form-alert {
    margin-bottom: 16px;
    padding: 12px 14px;
}

.community-user-box strong {
    font-size: 1.08rem;
}

.community-push-card h3 {
    font-size: clamp(1.2rem, 2.3vw, 1.7rem);
}

.community-app-bar {
    gap: 8px;
    padding: 10px;
}

.community-app-link {
    min-height: 42px;
    padding: 8px 12px;
    font-size: 0.84rem;
}

.community-promo-card p {
    font-size: 0.94rem;
}

.newsletter-confirmation-card {
    max-width: 720px;
}

.newsletter-confirmation-card p {
    font-size: 0.98rem;
    line-height: 1.55;
}

.site-footer {
    padding: 18px var(--section-x);
}

@media (max-width: 920px) {
    .site-nav {
        gap: 0;
    }

    .site-nav a {
        border-color: rgba(255, 210, 31, 0.22);
        padding: 11px 12px;
    }

    .hero,
    .agenda-hero,
    .booking-hero,
    .maintenance-hero,
    .community-hero,
    .password-setup-page {
        min-height: auto;
        padding-top: 106px;
        padding-bottom: 40px;
    }

    .hero-actions,
    .split-cta-group,
    .install-helper-actions {
        gap: 10px;
    }

    .poster-card {
        width: min(100%, 320px);
        margin-top: 28px;
        transform: rotate(-1deg);
    }

    .split-grid,
    .featured-show-grid,
    .show-grid,
    .event-grid,
    .differential-grid,
    .booking-cta,
    .form-grid,
    .gallery-grid,
    .musicians-teaser-grid,
    .musicians-public-grid,
    .site-card-media-grid,
    .contact-section,
    .community-dashboard-grid,
    .maintenance-hero,
    .community-hero,
    .install-helper-card {
        grid-template-columns: 1fr;
    }

    .section-heading {
        display: block;
        margin-bottom: 28px;
    }

    .section-heading .section-kicker {
        margin-bottom: 14px;
    }
}

@media (max-width: 560px) {
    .site-header {
        padding: 10px 14px;
        gap: 12px;
    }

    .brand {
        gap: 8px;
        font-size: 0.96rem;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
    }

    .brand-logo {
        max-height: 38px;
    }

    .hero,
    .agenda-hero,
    .booking-hero {
        padding: 102px 14px 42px;
    }

    h1 {
        font-size: clamp(3.3rem, 16vw, 5.8rem);
        text-shadow: 4px 4px 0 var(--tomato), 7px 7px 0 var(--teal), 10px 10px 0 rgba(0, 0, 0, 0.22);
    }

    .hero-copy {
        margin: 20px 0 18px;
        font-size: 0.98rem;
        line-height: 1.5;
    }

    .btn,
    .btn-cta-large,
    .hero-actions .btn,
    .split-cta-group .btn,
    .community-login-card .btn,
    .community-promo-card .btn,
    .newsletter-form button {
        width: 100%;
    }

    .btn {
        min-height: 46px;
        padding: 10px 14px;
        font-size: 0.84rem;
    }

    .section {
        padding-block: 52px;
    }

    .split-grid h2,
    .section-heading h2,
    .contact-section h2,
    .booking-cta h2,
    .featured-show-copy h3,
    .community-login-card h2,
    .community-block h2,
    .newsletter-confirmation-card h1 {
        font-size: clamp(2rem, 11vw, 3.8rem);
    }

    .poster-card {
        width: 100%;
        min-height: 176px;
        padding: 22px 18px 18px;
        box-shadow: 8px 8px 0 var(--sun), 12px 12px 0 rgba(24, 15, 18, 0.82);
    }

    .poster-card strong {
        font-size: clamp(2.8rem, 14vw, 4rem);
    }

    .show-card,
    .event-card,
    .differential-card,
    .budget-form,
    .newsletter-form,
    .contact-info-card,
    .community-login-card,
    .community-block {
        padding: 18px;
        min-height: auto;
    }

    .show-card time {
        margin-bottom: 18px;
    }

    .show-card h3,
    .event-card h3,
    .differential-card h3 {
        font-size: clamp(1.6rem, 10vw, 2.4rem);
    }

    .gallery-grid figure,
    .gallery-grid img,
    .public-gallery-grid img {
        min-height: 240px;
        height: 240px;
    }

    .community-top-links,
    .community-quick-actions,
    .community-app-bar {
        grid-template-columns: 1fr;
    }

    .community-login-form input,
    .password-setup-form input,
    .newsletter-form input,
    .form-field input,
    .form-field textarea {
        min-height: 44px;
        font-size: 0.98rem;
    }

    .site-footer {
        display: block;
        padding: 16px 14px;
    }

    .site-footer span {
        display: block;
        margin-top: 8px;
        text-align: left;
    }
}

.musician-instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 44px;
    padding: 8px 14px;
    color: var(--ink);
    background: var(--sun);
    border: 3px solid var(--ink);
    box-shadow: 4px 4px 0 var(--tomato);
    font-family: var(--display-font);
    text-transform: uppercase;
}

.musician-instagram-link:hover {
    transform: translate(-2px, -2px);
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 450px);
    gap: clamp(28px, 6vw, 72px);
    align-items: start;
    background:
        linear-gradient(115deg, rgba(0, 127, 121, 0.13), transparent 34%),
        var(--paper);
}

.contact-section-copy {
    max-width: 52ch;
    margin-top: 18px;
    color: rgba(53, 33, 42, 0.92);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.55;
}

.split-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.newsletter-form {
    padding: clamp(22px, 4vw, 34px);
    background: var(--white);
    border: 5px solid var(--ink);
    box-shadow: 10px 10px 0 var(--tomato), 17px 17px 0 var(--ink);
}

.newsletter-form label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--display-font);
    text-transform: uppercase;
}

.newsletter-form input {
    width: 100%;
    min-height: 50px;
    margin-bottom: 18px;
    padding: 12px 14px;
    color: var(--ink);
    background: #fffdf5;
    border: 3px solid var(--ink);
    font: inherit;
    font-weight: 700;
    transition: box-shadow 160ms ease, border-color 160ms ease;
}

.newsletter-form input:focus {
    border-color: var(--tomato);
    box-shadow: 4px 4px 0 var(--sun);
}

.newsletter-field-optional {
    font-size: 0.82em;
    letter-spacing: 0.02em;
    opacity: 0.72;
}

.newsletter-field-hint {
    display: block;
    margin: -12px 0 18px;
    color: rgba(53, 33, 42, 0.72);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
}

.newsletter-form button {
    width: 100%;
}

.contact-info-card {
    display: grid;
    gap: 14px;
    padding: clamp(22px, 4vw, 34px);
    background: var(--white);
    border: 5px solid var(--ink);
    box-shadow: 10px 10px 0 var(--tomato), 17px 17px 0 var(--ink);
}

.contact-info-card .btn {
    width: 100%;
}

.contact-info-meta {
    display: grid;
    gap: 10px;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 3px solid rgba(24, 15, 18, 0.15);
    color: rgba(53, 33, 42, 0.9);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
}

.contact-info-meta p {
    margin: 0;
}

.community-promo-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    margin-top: 6px;
    color: var(--ink);
    background: linear-gradient(135deg, rgba(255, 210, 31, 0.18), rgba(255, 255, 255, 0.84));
    border: 4px solid rgba(24, 15, 18, 0.14);
    box-shadow: 7px 7px 0 rgba(240, 59, 37, 0.22);
}

.community-promo-card h3 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    line-height: 0.92;
}

.community-promo-card p {
    margin: 0;
    color: rgba(53, 33, 42, 0.9);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.5;
}

.community-promo-card .btn {
    width: 100%;
}

.newsletter-consent-label {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--ink);
    font-family: var(--text-font) !important;
    text-transform: none !important;
}

.newsletter-consent-label input {
    width: 20px;
    height: 20px;
    min-height: 20px;
    margin: 4px 0 0;
    flex: 0 0 auto;
    accent-color: var(--tomato);
}

.newsletter-confirmation-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px;
}

.newsletter-confirmation-card {
    max-width: 760px;
    padding: clamp(24px, 5vw, 46px);
    background: var(--white);
    border: 5px solid var(--ink);
    box-shadow: 12px 12px 0 var(--tomato), 20px 20px 0 var(--teal);
}

.newsletter-confirmation-card h1 {
    margin: 0 0 18px;
    font-family: var(--display-font);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.newsletter-confirmation-card p {
    margin: 0 0 24px;
    font-weight: 800;
}

.newsletter-confirmation-sucesso .stamp {
    background: #8df4a8;
}

.newsletter-confirmation-erro .stamp {
    background: var(--tomato);
    color: var(--white);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 26px var(--section-x);
    color: var(--white);
    background: var(--night);
    border-top: 5px solid var(--sun);
}

.site-footer p {
    margin: 0;
    font-family: var(--display-font);
    text-transform: uppercase;
}

.site-footer span {
    text-align: right;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 920px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px var(--section-x);
        background: var(--night);
        border-bottom: 4px solid var(--sun);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        border-color: rgba(255, 210, 31, 0.35);
    }

    .hero {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 44px;
    }

    .poster-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: min(100%, 360px);
        margin-top: 40px;
        transform: rotate(-1.5deg);
    }

    .split-grid,
    .featured-show-grid,
    .show-grid,
    .event-grid,
    .differential-grid,
    .booking-cta,
    .form-grid,
    .gallery-grid,
    .musicians-teaser-grid,
    .musicians-public-grid,
    .site-card-media-grid,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .gallery-grid figure:nth-child(2),
    .gallery-grid figure:nth-child(3),
    .site-card-media-grid figure:nth-child(even),
    .public-gallery-grid figure:nth-child(3n + 2),
    .public-gallery-grid figure:nth-child(3n) {
        transform: none;
    }

    .section-heading {
        display: block;
    }

    .section-heading .section-kicker {
        margin-bottom: 22px;
    }

    .agenda-hero {
        min-height: auto;
        padding-top: 130px;
    }

    .booking-hero {
        min-height: auto;
        padding-top: 130px;
    }

    .maintenance-topbar {
        flex-wrap: wrap;
    }

    .maintenance-hero {
        grid-template-columns: 1fr;
        padding-top: 130px;
    }

    .community-hero {
        grid-template-columns: 1fr;
        padding-top: 130px;
    }

    .community-shell {
        padding-inline: 16px;
    }

    .community-profile-grid {
        grid-template-columns: 1fr;
    }

    .community-closed-show-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .community-chat-actions {
        justify-content: stretch;
    }

    .community-chat-actions .btn {
        width: 100%;
    }

    .community-dashboard-grid {
        grid-template-columns: 1fr;
    }

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

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

    .install-helper-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .site-header {
        padding: 13px 16px;
    }

    .brand {
        font-size: 1.1rem;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    h1 {
        font-size: clamp(4.2rem, 25vw, 7.2rem);
        text-shadow: 5px 5px 0 var(--tomato), 9px 9px 0 var(--teal);
    }

    .hero-copy {
        margin: 24px 0 26px;
        font-size: 1.04rem;
    }

    .hero-actions,
    .btn {
        width: 100%;
    }

    .btn-cta-large {
        width: 100%;
    }

    .btn {
        min-height: 54px;
        padding-inline: 16px;
    }

    .install-helper-actions {
        width: 100%;
    }

    .stamp,
    .section-kicker {
        max-width: 100%;
        font-size: 0.86rem;
    }

    .split-grid h2,
    .section-heading h2,
    .contact-section h2 {
        font-size: clamp(2.75rem, 17vw, 4.3rem);
    }

    .poster-card {
        padding: 32px 22px 22px;
        box-shadow: 8px 8px 0 var(--sun), 13px 13px 0 rgba(24, 15, 18, 0.86);
    }

    .poster-card strong {
        font-size: 3.7rem;
    }

    .section {
        padding-block: 66px;
    }

    .agenda-hero {
        padding: 124px 16px 48px;
    }

    .booking-hero {
        padding: 124px 16px 52px;
    }

    .booking-hero h1 {
        font-size: clamp(3.8rem, 19vw, 6.4rem);
    }

    .maintenance-topbar {
        gap: 14px;
    }

    .maintenance-badge {
        width: 100%;
        justify-content: center;
    }

    .maintenance-hero h1 {
        max-width: 12ch;
        font-size: clamp(2.9rem, 16vw, 5rem);
    }

    .maintenance-hero .hero-copy {
        margin: 24px 0 26px;
        font-size: 1.04rem;
    }

    .community-hero .hero-copy {
        margin: 24px 0 26px;
        font-size: 1.04rem;
    }

    .community-top-links {
        width: 100%;
        justify-content: flex-start;
    }

    .community-quick-actions {
        grid-template-columns: 1fr;
    }

    .community-dashboard-grid {
        padding-inline: 16px;
    }

    .community-app-bar {
        grid-template-columns: 1fr;
        margin-inline: 16px;
        bottom: 10px;
    }

    .install-helper-actions {
        flex-direction: column;
    }

    .event-card,
    .differential-card,
    .budget-form {
        min-height: auto;
        padding: 22px;
        box-shadow: 6px 6px 0 var(--tomato);
    }

    .booking-cta h2 {
        font-size: clamp(2.7rem, 16vw, 4.2rem);
    }

    .featured-show-copy h3 {
        font-size: clamp(2.8rem, 17vw, 4.4rem);
    }

    .show-card {
        min-height: auto;
        padding: 22px;
    }

    .show-card time {
        margin-bottom: 26px;
    }

    .split-cta-group {
        display: grid;
    }

    .gallery-grid figure,
    .gallery-grid img {
        min-height: 270px;
    }

    .show-card,
    .newsletter-form {
        box-shadow: 6px 6px 0 var(--tomato);
    }

    .site-footer {
        display: block;
    }

    .site-footer span {
        display: block;
        margin-top: 8px;
        text-align: left;
    }

    .contact-info-card .btn {
        width: 100%;
    }

    .community-login-card,
    .community-block {
        padding: 20px;
    }
}

#musicos .musicians-teaser-grid,
#musicos .musicians-public-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
    justify-content: center;
}

#musicos .musician-teaser-card,
#musicos .musician-public-card {
    width: 100%;
    max-width: 400px;
}

#musicos .musician-public-media {
    width: 100%;
    max-width: 400px;
}
