:root {
    --navy-950: #07111f;
    --navy-900: #0b1728;
    --navy-850: #101f35;
    --blue-800: #173f73;
    --red-700: #b91c1c;
    --red-800: #991b1b;
    --gold-400: #f6c453;
    --gold-300: #ffd86b;
    --green-700: #12624a;
    --white: #ffffff;
    --soft: #f8fafc;
    --soft-2: #edf2f7;
    --slate-100: #f1f5f9;
    --slate-300: #cbd5e1;
    --slate-500: #64748b;
    --slate-700: #334155;
    --slate-900: #0f172a;
    --shadow-soft: 0 24px 70px rgba(15, 23, 42, 0.14);
    --shadow-strong: 0 40px 110px rgba(2, 6, 23, 0.36);
    --radius-xl: 24px;
    --radius-2xl: 34px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body.amusarts-body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--slate-900);
    background: var(--navy-950);
    line-height: 1.6;
}

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

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

button {
    font: inherit;
}

.site-container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.96);
    color: var(--slate-900);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.top-strip {
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.78rem;
}

.top-strip__inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-strip__left,
.top-strip__right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.navbar {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.brand__logo-wrap {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.15);
    flex: 0 0 auto;
}

.brand__logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.brand__text strong {
    display: block;
    font-size: 1.45rem;
    line-height: 1;
    letter-spacing: 0.03em;
    font-weight: 900;
}

.brand__text small {
    display: block;
    margin-top: 6px;
    color: var(--red-700);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    white-space: nowrap;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
}

.desktop-nav__link {
    padding: 12px 13px;
    border-radius: 999px;
    color: var(--slate-700);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.18s ease;
}

.desktop-nav__link:hover,
.desktop-nav__link.is-active {
    background: var(--red-700);
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.quick-link-button,
.mobile-menu-button {
    border: 0;
    cursor: pointer;
}

.quick-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--navy-950);
    color: white;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mobile-menu-button {
    display: none;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--white);
    color: var(--slate-900);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.14);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.mobile-menu-button i {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--slate-900);
    margin: 4px 0;
    border-radius: 6px;
}

.quick-menu-handle {
    position: fixed;
    right: 0;
    top: 25%;
    height: 46vh;
    width: 11px;
    z-index: 59;
    border: 0;
    cursor: pointer;
    border-radius: 18px 0 0 18px;
    background: var(--red-700);
    box-shadow: -10px 0 28px rgba(185, 28, 28, 0.32);
    opacity: 0.76;
    transition: all 0.2s ease;
}

.quick-menu-handle span {
    position: absolute;
    left: -64px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: white;
    opacity: 0;
    white-space: nowrap;
}

.quick-menu-handle:hover {
    width: 20px;
    opacity: 1;
}

.quick-menu-handle:hover span {
    opacity: 1;
}

.site-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(2, 6, 23, 0.72);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.site-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-panel,
.quick-panel {
    position: fixed;
    top: 0;
    height: 100vh;
    width: min(90vw, 420px);
    z-index: 90;
    overflow-y: auto;
    transition: transform 0.32s ease;
    box-shadow: var(--shadow-strong);
}

.mobile-panel {
    left: 0;
    background: white;
    transform: translateX(-105%);
}

.quick-panel {
    right: 0;
    color: white;
    background: linear-gradient(145deg, var(--navy-950), var(--navy-900) 55%, #071b36);
    transform: translateX(105%);
}

.mobile-panel.is-open,
.quick-panel.is-open {
    transform: translateX(0);
}

.panel-head {
    min-height: 88px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.panel-head--dark {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.panel-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.panel-brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 2px;
}

.panel-brand strong,
.panel-brand span {
    display: block;
}

.panel-brand strong {
    font-weight: 900;
    font-size: 1.05rem;
}

.panel-brand span {
    font-size: 0.72rem;
    color: var(--red-700);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.panel-head--dark .panel-brand span {
    color: var(--gold-300);
}

.panel-close {
    border: 0;
    background: transparent;
    color: var(--slate-900);
    cursor: pointer;
    font-size: 2.4rem;
    line-height: 1;
}

.panel-close--dark {
    color: white;
}

.panel-content {
    padding: 24px;
}

.panel-kicker {
    margin: 0 0 14px;
    font-size: 0.72rem;
    color: var(--red-700);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.panel-kicker--gold {
    color: var(--gold-300);
}

.mobile-nav-list,
.quick-list {
    display: grid;
    gap: 10px;
}

.mobile-nav-item {
    display: block;
    padding: 16px 18px;
    border-radius: 18px;
    background: var(--soft);
    color: var(--slate-900);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.mobile-nav-item.is-active {
    background: var(--red-700);
    color: white;
}

.mobile-menu-note {
    margin-top: 24px;
    padding: 22px;
    border-radius: 24px;
    background: var(--navy-950);
    color: white;
}

.mobile-menu-note strong {
    display: block;
    font-size: 1.2rem;
}

.mobile-menu-note p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.74);
}

.quick-item {
    display: block;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.quick-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-4px);
}

.quick-item strong,
.quick-item span {
    display: block;
}

.quick-item strong {
    color: white;
    font-weight: 900;
}

.quick-item span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
}

.quick-contact-card {
    margin-top: 24px;
    padding: 22px;
    border-radius: 24px;
    background: var(--gold-300);
    color: var(--navy-950);
}

.quick-contact-card span,
.quick-contact-card strong,
.quick-contact-card p {
    display: block;
    margin: 0;
}

.quick-contact-card span {
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.quick-contact-card strong {
    margin-top: 8px;
    font-size: 1.45rem;
    font-weight: 900;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(246, 196, 83, 0.26), transparent 30%),
        linear-gradient(135deg, #fff 0%, #f9fbff 45%, #eaf2ff 100%);
    color: var(--slate-900);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: auto -10% -30% 35%;
    height: 52%;
    background: linear-gradient(90deg, rgba(185, 28, 28, 0.11), rgba(23, 63, 115, 0.16));
    filter: blur(40px);
    transform: rotate(-7deg);
}

.hero-grid {
    position: relative;
    min-height: 690px;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 58px;
    align-items: center;
    padding: 80px 0;
}

.hero-kicker,
.section-eyebrow {
    margin: 0 0 16px;
    color: var(--red-700);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.23em;
}

.hero-copy h1,
.page-hero h1,
.event-detail-hero h1 {
    margin: 0;
    font-size: clamp(3rem, 5.2vw, 5.8rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
    font-weight: 900;
    color: var(--slate-900);
}

.hero-copy p:not(.hero-kicker),
.page-hero p:not(.hero-kicker),
.event-detail-hero p:not(.hero-kicker) {
    margin: 24px 0 0;
    max-width: 680px;
    color: var(--slate-700);
    font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.btn--primary {
    background: var(--red-700);
    color: white;
    box-shadow: 0 16px 34px rgba(185, 28, 28, 0.28);
}

.btn--primary:hover {
    background: var(--red-800);
    transform: translateY(-2px);
}

.btn--secondary {
    background: white;
    color: var(--navy-950);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.btn--white {
    background: white;
    color: var(--navy-950);
}

.btn--outline-light {
    color: white;
    border-color: rgba(255, 255, 255, 0.28);
}

.hero-stats {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 680px;
}

.hero-stats div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    color: var(--red-700);
    font-size: 1.1rem;
    font-weight: 900;
}

.hero-stats span {
    margin-top: 4px;
    color: var(--slate-500);
    font-size: 0.86rem;
}

.hero-media {
    position: relative;
    border-radius: 42px;
    overflow: hidden;
    min-height: 520px;
    background: var(--navy-950);
    box-shadow: var(--shadow-strong);
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(2, 6, 23, 0.74));
}

.hero-media__caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-media__caption strong,
.hero-media__caption span {
    display: block;
}

.hero-media__caption strong {
    font-weight: 900;
    font-size: 1.15rem;
}

.hero-media__caption span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.intro-section,
.content-section {
    padding: 90px 0;
    background: white;
    color: var(--slate-900);
}

.content-section--light {
    background: var(--soft);
}

.intro-grid,
.split-grid,
.feature-band__grid,
.event-detail-grid,
.page-hero__grid,
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: center;
}

.intro-card {
    padding: 44px;
    border-radius: var(--radius-2xl);
}

.intro-card--dark {
    background: linear-gradient(135deg, var(--navy-950), var(--blue-800));
    color: white;
}

.intro-card p {
    margin: 0 0 14px;
    color: var(--gold-300);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
}

.intro-card h2,
.section-heading h2,
.feature-band h2,
.cta-box h2,
.split-grid h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-weight: 900;
}

.intro-text p,
.rich-text p {
    margin: 0 0 18px;
    color: var(--slate-700);
    font-size: 1.05rem;
}

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

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading p:not(.section-eyebrow) {
    margin: 16px 0 0;
    color: var(--slate-600);
    font-size: 1.05rem;
}

.event-grid,
.program-grid,
.gallery-grid,
.values-grid,
.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.event-grid--all,
.program-grid--all,
.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-card,
.program-card {
    overflow: hidden;
    border-radius: var(--radius-2xl);
    background: white;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.event-card__image,
.program-card__image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--navy-950);
}

.event-card__image img,
.program-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.event-card:hover img,
.program-card:hover img {
    transform: scale(1.04);
}

.event-card__image span {
    position: absolute;
    left: 16px;
    top: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--red-700);
    color: white;
    font-size: 0.72rem;
    font-weight: 900;
}

.event-card__body,
.program-card__content {
    padding: 24px;
}

.event-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.event-card__meta span,
.program-card__content span {
    color: var(--red-700);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.event-card h3,
.program-card h3 {
    margin: 0;
    color: var(--slate-900);
    font-size: 1.35rem;
    line-height: 1.14;
    font-weight: 900;
}

.event-card p,
.program-card p {
    margin: 14px 0 0;
    color: var(--slate-600);
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--red-700);
    font-weight: 900;
}

.section-action {
    margin-top: 34px;
    text-align: center;
}

.feature-band {
    padding: 88px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(246, 196, 83, 0.18), transparent 32%),
        linear-gradient(135deg, var(--navy-950), var(--blue-800));
    color: white;
}

.feature-band p:not(.section-eyebrow) {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
}

.feature-band__visual {
    overflow: hidden;
    border-radius: var(--radius-2xl);
    min-height: 420px;
    box-shadow: var(--shadow-strong);
}

.feature-band__visual img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

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

.gallery-card {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    background: var(--navy-950);
    box-shadow: var(--shadow-soft);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    opacity: 0.88;
    transition: transform 0.28s ease;
}

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

.gallery-card__overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 24px;
    color: white;
    background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.9));
}

.gallery-card__overlay span {
    color: var(--gold-300);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.gallery-card__overlay h3 {
    margin: 8px 0 4px;
    font-size: 1.35rem;
    font-weight: 900;
}

.gallery-card__overlay p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.cta-section {
    padding: 88px 0;
    color: white;
    background: linear-gradient(135deg, var(--red-800), var(--navy-950) 52%, var(--blue-800));
}

.cta-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 34px;
    align-items: center;
}

.cta-box p:not(.section-eyebrow) {
    margin: 18px 0 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.77);
    font-size: 1.05rem;
}

.cta-actions {
    justify-content: flex-end;
}

.page-hero,
.event-detail-hero {
    padding: 92px 0;
    background:
        radial-gradient(circle at 85% 18%, rgba(246, 196, 83, 0.22), transparent 28%),
        linear-gradient(135deg, var(--soft), #eaf2ff);
    color: var(--slate-900);
}

.page-hero--compact {
    padding: 84px 0 70px;
}

.page-hero img,
.event-detail-hero img {
    border-radius: var(--radius-2xl);
    min-height: 380px;
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.event-detail-meta {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.event-detail-meta span {
    padding: 9px 13px;
    border-radius: 999px;
    background: white;
    color: var(--navy-950);
    font-size: 0.78rem;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

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

.highlight-list div {
    padding: 18px 20px;
    border-radius: 18px;
    background: white;
    color: var(--slate-800);
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.highlight-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-right: 10px;
    background: var(--red-700);
    color: white;
}

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

.values-grid article,
.partner-grid article,
.contact-card,
.media-note {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-soft);
}

.values-grid article span {
    color: var(--red-700);
    font-weight: 900;
}

.values-grid article h3,
.partner-grid article h3,
.contact-card h2,
.media-note h2 {
    margin: 8px 0 10px;
    font-size: 1.3rem;
    font-weight: 900;
}

.values-grid article p,
.partner-grid article p,
.contact-card p,
.media-note p {
    margin: 0;
    color: var(--slate-600);
}

.contact-card--dark {
    background: var(--navy-950);
    color: white;
}

.contact-card--dark p,
.contact-card--dark li {
    color: rgba(255, 255, 255, 0.76);
}

.contact-card ul {
    margin: 0 0 24px;
    padding-left: 20px;
}

.media-note {
    margin-top: 30px;
}

.site-footer {
    background: var(--navy-950);
    color: white;
}

.footer-grid {
    padding: 70px 0;
    display: grid;
    grid-template-columns: 1.5fr 0.75fr 0.75fr;
    gap: 42px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: white;
    padding: 2px;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    font-size: 1.4rem;
    font-weight: 900;
}

.footer-brand span,
.footer-about p,
.footer-contact span,
.footer-links a {
    color: rgba(255, 255, 255, 0.62);
}

.footer-about p {
    max-width: 600px;
}

.site-footer h3 {
    margin: 0 0 18px;
    color: white;
    font-size: 1rem;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--gold-300);
}

.footer-bottom {
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.82rem;
}

body.has-open-menu {
    overflow: hidden;
}

@media (max-width: 1280px) {
    .desktop-nav,
    .quick-link-button {
        display: none !important;
    }

    .mobile-menu-button {
        display: inline-flex !important;
    }

    .quick-menu-handle {
        display: block !important;
    }

    .navbar {
        min-height: 78px;
    }

    .hero-grid,
    .intro-grid,
    .split-grid,
    .feature-band__grid,
    .event-detail-grid,
    .page-hero__grid,
    .contact-grid,
    .cta-box {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: unset;
        padding: 62px 0;
        gap: 34px;
    }

    .hero-copy h1,
    .page-hero h1,
    .event-detail-hero h1 {
        font-size: clamp(2.8rem, 7vw, 5rem);
    }

    .hero-media,
    .hero-media img {
        min-height: 430px;
    }

    .event-grid,
    .event-grid--all,
    .program-grid,
    .program-grid--all,
    .gallery-grid,
    .values-grid,
    .partner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-actions {
        justify-content: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1281px) {
    .mobile-menu-button {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .top-strip {
        display: none;
    }

    .site-container {
        width: min(100% - 28px, var(--container));
    }

    .brand__logo-wrap {
        width: 52px;
        height: 52px;
    }

    .brand__logo {
        width: 46px;
        height: 46px;
    }

    .brand__text strong {
        font-size: 1.18rem;
    }

    .brand__text small {
        font-size: 0.6rem;
        letter-spacing: 0.12em;
    }

    .hero-section,
    .page-hero,
    .event-detail-hero {
        overflow: hidden;
    }

    .hero-grid {
        padding: 42px 0 56px;
    }

    .hero-copy h1,
    .page-hero h1,
    .event-detail-hero h1 {
        font-size: 2.72rem;
        line-height: 1;
    }

    .hero-copy p:not(.hero-kicker),
    .page-hero p:not(.hero-kicker),
    .event-detail-hero p:not(.hero-kicker) {
        font-size: 1rem;
    }

    .hero-actions,
    .cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-media,
    .hero-media img,
    .feature-band__visual,
    .feature-band__visual img,
    .page-hero img,
    .event-detail-hero img {
        min-height: 300px;
    }

    .hero-media {
        border-radius: 28px;
    }

    .intro-section,
    .content-section,
    .feature-band,
    .cta-section {
        padding: 62px 0;
    }

    .intro-card {
        padding: 28px;
    }

    .intro-card h2,
    .section-heading h2,
    .feature-band h2,
    .cta-box h2,
    .split-grid h2 {
        font-size: 2.3rem;
    }

    .event-grid,
    .event-grid--all,
    .program-grid,
    .program-grid--all,
    .gallery-grid,
    .values-grid,
    .partner-grid {
        grid-template-columns: 1fr;
    }

    .event-card__image,
    .program-card__image {
        height: 220px;
    }

    .gallery-card,
    .gallery-card img {
        min-height: 280px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 54px 0;
    }

    .quick-menu-handle {
        height: 40vh;
        top: 30%;
    }
}

@media (max-width: 520px) {
    .navbar {
        min-height: 72px;
        gap: 10px;
    }

    .brand__text small {
        display: none;
    }

    .mobile-menu-button span {
        display: none;
    }

    .mobile-menu-button {
        width: 46px;
        padding: 0;
        justify-content: center;
    }

    .hero-copy h1,
    .page-hero h1,
    .event-detail-hero h1 {
        font-size: 2.35rem;
    }

    .hero-media,
    .hero-media img {
        min-height: 250px;
    }

    .hero-media__caption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px;
    }

    .event-card__body,
    .program-card__content {
        padding: 20px;
    }

    .mobile-panel,
    .quick-panel {
        width: min(94vw, 420px);
    }
}
