:root {
    --cream: #fff7dd;
    --paper: #f7f2df;
    --ink: #13211f;
    --moss: #3b5d50;
    --moss-soft: #dcece4;
    --sun: #f2c86d;
    --peach: #efb7a7;
    --rose: #f4c9c4;
    --blue: #b9cbed;
    --lavender: #d7d2ea;
    --line: #d8d4bf;
    --white: #fffaf0;
    --muted: rgba(19, 33, 31, 0.72);
    --shadow: 12px 12px 0 rgba(19, 33, 31, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.5;
    margin: 0;
}

body::selection {
    background: var(--sun);
    color: var(--ink);
}

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

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

.wrap {
    margin-inline: auto;
    max-width: 1240px;
    padding-inline: 20px;
    width: 100%;
}

.site-header {
    backdrop-filter: blur(18px);
    background: rgba(247, 242, 223, 0.9);
    border-bottom: 1px solid rgba(216, 212, 191, 0.85);
    position: sticky;
    top: 0;
    z-index: 20;
}

.nav-wrap {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    min-height: 76px;
}

.brand {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 12px;
}

.brand-mark {
    align-items: center;
    background: var(--moss);
    border-radius: 8px;
    box-shadow: 4px 4px 0 var(--sun);
    color: var(--cream);
    display: inline-flex;
    font-weight: 950;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.05;
}

.brand strong {
    font-size: 0.88rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand small {
    color: var(--muted);
    font-weight: 700;
}

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

.site-nav a {
    border-radius: 7px;
    color: rgba(19, 33, 31, 0.78);
    font-size: 0.88rem;
    font-weight: 850;
    padding: 9px 10px;
}

.site-nav a:hover,
.site-nav a.is-active,
.header-cta:hover {
    background: rgba(59, 93, 80, 0.1);
    color: var(--ink);
}

.header-cta {
    background: var(--ink);
    border-radius: 7px;
    color: var(--cream);
    flex: 0 0 auto;
    font-size: 0.92rem;
    font-weight: 900;
    padding: 10px 16px;
}

.menu-toggle {
    align-items: center;
    background: var(--ink);
    border: 0;
    border-radius: 8px;
    color: var(--cream);
    cursor: pointer;
    display: none;
    height: 44px;
    justify-content: center;
    padding: 0;
    width: 48px;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
    background: currentColor;
    border-radius: 999px;
    display: block;
    height: 2px;
    transition: transform 160ms ease, opacity 160ms ease;
    width: 22px;
}

.menu-toggle-lines {
    position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
    content: "";
    left: 0;
    position: absolute;
}

.menu-toggle-lines::before {
    top: -7px;
}

.menu-toggle-lines::after {
    top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
    transform: rotate(90deg) translateX(-7px);
}

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

.hero {
    background:
        linear-gradient(115deg, rgba(255, 247, 221, 0.98), rgba(255, 247, 221, 0.86) 46%, rgba(185, 203, 237, 0.42)),
        radial-gradient(circle at 85% 15%, rgba(242, 200, 109, 0.55), transparent 24%),
        radial-gradient(circle at 68% 88%, rgba(239, 183, 167, 0.52), transparent 24%);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    position: relative;
}

.hero::before,
.subpage-hero::before {
    background: url("../img/decor/sun-leaves.svg") center / contain no-repeat;
    content: "";
    height: clamp(120px, 22vw, 230px);
    opacity: 0.46;
    pointer-events: none;
    position: absolute;
    right: clamp(-28px, 3vw, 42px);
    top: 0;
    width: clamp(120px, 22vw, 230px);
    z-index: 0;
}

.hero::after,
.service-section::before,
.venue-section::before,
.ticket-section::before {
    background-image:
        linear-gradient(rgba(19, 33, 31, 0.11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(19, 33, 31, 0.11) 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
    inset: 0;
    opacity: 0.13;
    pointer-events: none;
    position: absolute;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 54px;
    grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.68fr);
    padding-block: clamp(64px, 9vw, 118px);
    position: relative;
    z-index: 1;
}

.eyebrow {
    color: var(--moss);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.18em;
    margin: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    hyphens: none;
    overflow-wrap: normal;
    text-wrap: balance;
    word-break: normal;
}

h1 {
    color: var(--moss);
    font-size: clamp(3.1rem, 9vw, 7.6rem);
    font-weight: 1000;
    letter-spacing: 0;
    line-height: 1.02;
    margin-bottom: 0;
    margin-top: 22px;
    max-width: 980px;
    text-transform: uppercase;
}

.lead {
    color: rgba(19, 33, 31, 0.82);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.5;
    margin-bottom: 0;
    margin-top: 34px;
    max-width: 720px;
}

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

.btn {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-weight: 950;
    justify-content: center;
    min-height: 52px;
    padding: 13px 19px;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
    background: var(--ink);
    box-shadow: 5px 5px 0 var(--sun);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--moss);
}

.btn-secondary {
    background: rgba(255, 250, 240, 0.74);
    border: 1px solid var(--line);
    color: var(--ink);
}

.btn-secondary:hover {
    box-shadow: 4px 4px 0 rgba(59, 93, 80, 0.22);
}

.poster-card {
    aspect-ratio: 4 / 5;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 18px 18px 0 rgba(59, 93, 80, 0.14);
    margin: 0;
    max-height: 620px;
    overflow: hidden;
}

.poster-card img {
    height: 100%;
    object-fit: cover;
    object-position: top;
    width: 100%;
}

.motto {
    color: rgba(19, 33, 31, 0.7);
    display: grid;
    font-size: 0.75rem;
    font-weight: 900;
    gap: 8px;
    grid-template-columns: repeat(4, 1fr);
    letter-spacing: 0.18em;
    margin-top: 19px;
    text-align: center;
    text-transform: uppercase;
}

.section {
    padding-block: clamp(64px, 9vw, 112px);
    position: relative;
}

.section-cream {
    background: var(--cream);
}

.section-heading h2,
.ticket-grid h2,
.contact-grid h2 {
    color: var(--ink);
    font-size: clamp(2.05rem, 5vw, 4.35rem);
    font-weight: 1000;
    letter-spacing: 0;
    line-height: 1.05;
    margin-bottom: 0;
    margin-top: 13px;
    max-width: 900px;
    text-transform: uppercase;
}

.section-heading > p:not(.eyebrow),
.ticket-grid p,
.contact-grid p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
    margin-top: 16px;
    max-width: 710px;
}

.program-list {
    display: grid;
    gap: 14px;
    margin-top: 40px;
}

.event-row {
    align-items: stretch;
    border: 1px solid rgba(19, 33, 31, 0.1);
    border-radius: 8px;
    display: grid;
    gap: 16px;
    grid-template-columns: 150px minmax(0, 1fr) minmax(210px, 0.32fr);
    overflow: hidden;
    padding: 16px;
    position: relative;
}

.tone-mint {
    background: linear-gradient(90deg, #dcece4, #eef5ec);
}

.tone-peach {
    background: linear-gradient(90deg, #f8d7cc, #fff1e9);
}

.tone-yellow {
    background: linear-gradient(90deg, #f6dea1, #fff2c5);
}

.tone-rose {
    background: linear-gradient(90deg, #f7cec9, #ffe7e3);
}

.tone-blue {
    background: linear-gradient(90deg, #d7e4fa, #edf2ff);
}

.tone-lavender {
    background: linear-gradient(90deg, #dddaf0, #f3efff);
}

.event-date {
    align-items: center;
    background: rgba(255, 250, 240, 0.72);
    border-radius: 8px;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 16px;
    text-align: center;
}

.event-date strong {
    font-size: clamp(1.9rem, 4.2vw, 3rem);
    font-weight: 1000;
    line-height: 1;
}

.event-date span,
.event-title-line span {
    font-size: 0.75rem;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.event-title-line {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.event-title-line h3 {
    color: #050706;
    font-size: clamp(1.55rem, 3.5vw, 2.75rem);
    font-weight: 1000;
    letter-spacing: 0;
    line-height: 1.06;
    margin-bottom: 0;
    text-transform: uppercase;
}

.event-title-line span {
    background: rgba(255, 250, 240, 0.8);
    border: 1px solid rgba(19, 33, 31, 0.08);
    border-radius: 999px;
    padding: 6px 11px;
}

.event-main p {
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 0;
    margin-top: 12px;
    max-width: 760px;
}

.event-meta {
    align-items: flex-start;
    color: rgba(19, 33, 31, 0.78);
    display: flex;
    flex-direction: column;
    font-weight: 850;
    gap: 16px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.event-symbol {
    align-items: center;
    align-self: flex-end;
    color: rgba(59, 93, 80, 0.44);
    display: inline-flex;
    height: 58px;
    justify-content: center;
    margin-bottom: -4px;
    width: 58px;
}

.event-symbol svg {
    display: block;
    height: 100%;
    width: 100%;
}

.event-meta a {
    background: var(--ink);
    border-radius: 8px;
    color: var(--cream);
    font-weight: 950;
    min-height: 44px;
    padding: 11px 15px;
}

.service-section,
.venue-section {
    background: linear-gradient(180deg, rgba(59, 93, 80, 0.94), rgba(19, 33, 31, 0.98)), var(--ink);
    color: var(--cream);
    overflow: hidden;
}

.service-section .wrap,
.venue-section .wrap {
    position: relative;
    z-index: 1;
}

.service-section .eyebrow,
.service-section .section-heading h2,
.service-section .section-heading p,
.venue-section .eyebrow,
.venue-section .section-heading h2,
.venue-section .section-heading p {
    color: var(--cream);
}

.service-section .section-heading p,
.venue-section .section-heading p {
    opacity: 0.78;
}

.service-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
}

.service-item {
    background: rgba(255, 247, 221, 0.08);
    border: 1px solid rgba(255, 247, 221, 0.16);
    border-radius: 8px;
    display: grid;
    gap: 16px;
    grid-template-columns: auto 1fr;
    padding: 18px;
}

.service-icon {
    color: var(--sun);
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    margin-top: 2px;
}

.service-item h3 {
    font-size: 1.08rem;
    font-weight: 950;
    margin-bottom: 0;
}

.service-item p {
    color: rgba(255, 247, 221, 0.76);
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: 6px;
}

.news-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
}

.news-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: 22px;
}

.news-card time {
    color: var(--moss);
    font-size: 0.84rem;
    font-weight: 950;
}

.news-card h3 {
    font-size: 1.55rem;
    font-weight: 1000;
    line-height: 1.05;
    margin-bottom: 0;
    margin-top: 16px;
}

.news-card p {
    color: var(--muted);
    line-height: 1.62;
    margin-bottom: 0;
    margin-top: 13px;
}

.news-card a {
    color: var(--moss);
    font-weight: 950;
    margin-top: auto;
    padding-top: 22px;
}

.ticket-section {
    background: linear-gradient(135deg, rgba(242, 200, 109, 0.34), rgba(244, 201, 196, 0.5)), var(--cream);
    overflow: hidden;
}

.ticket-grid {
    align-items: center;
    display: grid;
    gap: 44px;
    grid-template-columns: 0.8fr 1fr;
    position: relative;
    z-index: 1;
}

.ticket-widget {
    background: var(--white);
    border: 1px solid rgba(19, 33, 31, 0.16);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.ticket-widget-head {
    align-items: center;
    background: var(--ink);
    color: var(--cream);
    display: flex;
    font-size: 0.82rem;
    font-weight: 950;
    justify-content: space-between;
    letter-spacing: 0.12em;
    padding: 14px 16px;
    text-transform: uppercase;
}

.ticket-widget-body {
    align-items: center;
    display: grid;
    justify-items: center;
    min-height: 300px;
    padding: 32px;
    text-align: center;
}

.ticket-widget-body > span {
    color: var(--moss);
    font-size: 2.6rem;
    line-height: 1;
}

.ticket-widget-body h3 {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 1000;
    line-height: 1;
    margin-bottom: 0;
    margin-top: 15px;
    max-width: 560px;
    text-transform: uppercase;
}

.ticket-widget-body p {
    margin-top: 12px;
}

.partners-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 36px;
}

.partner-logo {
    align-items: center;
    background: rgba(255, 250, 240, 0.72);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: rgba(19, 33, 31, 0.72);
    display: flex;
    font-size: 0.95rem;
    font-weight: 1000;
    justify-content: center;
    min-height: 86px;
    padding: 16px;
    text-align: center;
    text-transform: uppercase;
}

.contact-section {
    background: linear-gradient(180deg, #f7f2df, #eef1e4 55%, #d8e6e3);
}

.contact-grid {
    display: grid;
    gap: 44px;
    grid-template-columns: 0.85fr 1fr;
}

.contact-lines {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.contact-lines > a {
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 950;
}

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

.socials a {
    background: var(--ink);
    border-radius: 8px;
    color: var(--cream);
    font-weight: 900;
    padding: 11px 14px;
}

.map-card {
    background: linear-gradient(160deg, rgba(59, 93, 80, 0.92), rgba(19, 33, 31, 0.98)), var(--ink);
    border-radius: 8px;
    color: var(--cream);
    display: grid;
    font-style: normal;
    gap: 6px;
    margin-top: 32px;
    min-height: 170px;
    overflow: hidden;
    padding: 23px;
    position: relative;
}

.map-card::after {
    background: var(--sun);
    border-radius: 999px;
    content: "";
    height: 70px;
    opacity: 0.72;
    position: absolute;
    right: 22px;
    top: 22px;
    width: 70px;
}

.map-card strong,
.map-card span {
    position: relative;
    z-index: 1;
}

.map-card strong {
    font-size: 1.35rem;
    font-weight: 1000;
}

.map-card span {
    opacity: 0.78;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 16px;
    padding: clamp(20px, 3vw, 32px);
}

.contact-form label {
    color: rgba(19, 33, 31, 0.78);
    display: grid;
    font-size: 0.9rem;
    font-weight: 950;
    gap: 7px;
}

.contact-form input,
.contact-form textarea {
    background: #fffef8;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    font: inherit;
    min-height: 50px;
    padding: 13px 14px;
    width: 100%;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background: var(--moss);
    border: 0;
    border-radius: 8px;
    color: var(--cream);
    cursor: pointer;
    font: inherit;
    font-weight: 1000;
    min-height: 52px;
    padding: 14px 18px;
}

.form-message {
    background: #dcece4;
    border: 1px solid rgba(59, 93, 80, 0.24);
    border-radius: 8px;
    color: var(--ink);
    font-weight: 850;
    margin: 0;
    padding: 13px 14px;
}

.site-footer {
    background:
        linear-gradient(180deg, rgba(255, 247, 221, 0.92), rgba(216, 230, 227, 0.96)),
        var(--cream);
    border-top: 1px solid var(--line);
    color: var(--ink);
    min-height: 310px;
    overflow: hidden;
    padding-block: 34px 210px;
    position: relative;
}

.footer-illustration {
    bottom: 0;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 0;
}

.footer-illustration img {
    display: block;
    height: clamp(170px, 22vw, 260px);
    object-fit: cover;
    object-position: center bottom;
    opacity: 0.96;
    width: 100%;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.footer-grid p {
    margin: 0;
}

.section-paper {
    background: var(--paper);
}

.section-heading-row {
    align-items: end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.section-heading-row .btn {
    flex: 0 0 auto;
}

.compact-list {
    margin-top: 34px;
}

.split-feature {
    align-items: start;
    display: grid;
    gap: clamp(28px, 6vw, 72px);
    grid-template-columns: 0.95fr 1fr;
}

.split-feature h2,
.large-link-card h2 {
    color: var(--ink);
    font-size: clamp(2rem, 4.6vw, 4rem);
    font-weight: 1000;
    letter-spacing: 0;
    line-height: 1.05;
    margin: 13px 0 0;
    text-transform: uppercase;
}

.split-feature p,
.large-link-card p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.text-link {
    color: var(--moss);
    display: inline-flex;
    font-weight: 1000;
    margin-top: 22px;
}

.text-link::after {
    content: " →";
    padding-left: 6px;
}

.teaser-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 38px;
}

.teaser-card,
.info-card,
.large-link-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
}

.teaser-card > span {
    color: var(--moss);
    display: block;
    font-size: 1.8rem;
    font-weight: 1000;
    line-height: 1;
    margin-bottom: 18px;
}

.teaser-card h3,
.info-card h3 {
    font-size: 1.28rem;
    font-weight: 1000;
    line-height: 1.08;
    margin-bottom: 0;
}

.teaser-card p,
.info-card p {
    color: var(--muted);
    line-height: 1.62;
    margin-bottom: 0;
    margin-top: 11px;
}

.section-button {
    margin-top: 28px;
}

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

.subpage-hero {
    background:
        linear-gradient(115deg, rgba(255, 247, 221, 0.98), rgba(255, 247, 221, 0.84) 48%, rgba(185, 203, 237, 0.42)),
        radial-gradient(circle at 82% 18%, rgba(242, 200, 109, 0.55), transparent 23%),
        radial-gradient(circle at 70% 100%, rgba(239, 183, 167, 0.44), transparent 24%);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    padding-block: clamp(58px, 9vw, 105px);
    position: relative;
}

.venue-hero {
    background:
        linear-gradient(135deg, rgba(59, 93, 80, 0.94), rgba(19, 33, 31, 0.96)),
        var(--ink);
}

.ticket-subpage {
    background:
        linear-gradient(135deg, rgba(242, 200, 109, 0.42), rgba(244, 201, 196, 0.5)),
        var(--cream);
}

.subpage-grid {
    align-items: end;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
    position: relative;
    z-index: 1;
}

.subpage-hero h1 {
    color: var(--moss);
    font-size: clamp(2.85rem, 7vw, 6.1rem);
    line-height: 1.04;
    max-width: 900px;
}

.venue-hero h1,
.venue-hero .eyebrow,
.venue-hero .subpage-lead {
    color: var(--cream);
}

.subpage-lead {
    color: rgba(19, 33, 31, 0.76);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.65;
    margin: 0;
}

.story-layout {
    align-items: center;
    display: grid;
    gap: clamp(30px, 6vw, 74px);
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
}

.story-copy h2 {
    color: var(--ink);
    font-size: clamp(2rem, 4.8vw, 4.15rem);
    font-weight: 1000;
    line-height: 1.05;
    margin: 13px 0 0;
    text-transform: uppercase;
}

.story-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.75;
    margin-bottom: 0;
    margin-top: 18px;
}

.story-poster {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 0;
    max-height: 620px;
    overflow: hidden;
    position: relative;
}

.story-poster img {
    aspect-ratio: 4 / 3;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    width: 100%;
}

.story-poster figcaption {
    background: rgba(19, 33, 31, 0.72);
    bottom: 12px;
    border-radius: 999px;
    color: var(--cream);
    font-size: 0.76rem;
    font-weight: 850;
    left: 12px;
    margin: 0;
    padding: 7px 10px;
    position: absolute;
}

.photo-section {
    background:
        linear-gradient(180deg, rgba(255, 247, 221, 0.92), rgba(220, 236, 228, 0.72)),
        var(--cream);
    overflow: hidden;
    position: relative;
}

.photo-section::before {
    background: url("../img/decor/leaf-sprig.svg") center / contain no-repeat;
    content: "";
    height: 180px;
    opacity: 0.18;
    pointer-events: none;
    position: absolute;
    right: max(20px, calc((100vw - 1240px) / 2));
    top: 18px;
    width: 320px;
}

.photo-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 38px;
}

.venue-photo {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    margin: 0;
    min-height: 220px;
    overflow: hidden;
    position: relative;
}

.venue-photo.is-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.venue-photo img {
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.venue-photo.is-featured img {
    object-position: center top;
}

.venue-photo figcaption {
    background: rgba(19, 33, 31, 0.78);
    border-radius: 999px;
    bottom: 12px;
    color: var(--cream);
    font-size: 0.78rem;
    font-weight: 900;
    left: 12px;
    margin: 0;
    padding: 7px 11px;
    position: absolute;
}

.photo-credit {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 0;
    margin-top: 14px;
}

.photo-credit a {
    color: var(--moss);
    font-weight: 900;
}

.info-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

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

.magazine-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 28px;
    grid-template-columns: 150px 1fr;
    padding: clamp(20px, 3vw, 32px);
}

.magazine-item time {
    color: var(--moss);
    font-weight: 1000;
}

.magazine-item h2 {
    font-size: clamp(1.55rem, 3vw, 2.65rem);
    font-weight: 1000;
    line-height: 1.08;
    margin: 0;
    text-transform: uppercase;
}

.magazine-item p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0;
    margin-top: 13px;
}

.partners-grid-large .partner-logo {
    min-height: 130px;
}

@media (max-width: 1020px) {
    .nav-wrap {
        position: relative;
    }

    .site-nav {
        align-items: stretch;
        background: rgba(255, 247, 221, 0.98);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: 0 18px 46px rgba(19, 33, 31, 0.15);
        display: none;
        gap: 6px;
        left: 20px;
        padding: 10px;
        position: absolute;
        right: 20px;
        top: calc(100% + 8px);
        z-index: 30;
    }

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

    .site-nav a {
        align-items: center;
        display: flex;
        font-size: 1rem;
        justify-content: space-between;
        min-height: 46px;
        padding: 12px 14px;
    }

    .site-nav a::after {
        content: "→";
        opacity: 0.45;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero-grid,
    .ticket-grid,
    .contact-grid,
    .split-feature,
    .subpage-grid,
    .story-layout {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 560px;
    }

    .event-row {
        grid-template-columns: 122px minmax(0, 1fr);
    }

    .event-meta {
        grid-column: 2;
    }

    .event-symbol {
        align-self: flex-start;
        height: 46px;
        margin-bottom: 0;
        width: 46px;
    }

    .service-grid,
    .news-grid,
    .teaser-grid,
    .info-grid,
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .venue-photo.is-featured {
        grid-column: span 2;
    }

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

@media (max-width: 680px) {
    .wrap {
        padding-inline: 16px;
    }

    .nav-wrap {
        min-height: 68px;
    }

    .hero::before,
    .subpage-hero::before {
        height: 132px;
        opacity: 0.22;
        right: -34px;
        width: 132px;
    }

    .header-cta {
        display: none;
    }

    h1 {
        font-size: clamp(2.55rem, 13vw, 4rem);
        line-height: 1.05;
    }

    .hero-grid {
        padding-block: 46px 60px;
    }

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

    .event-row,
    .service-grid,
    .news-grid,
    .partners-grid,
    .teaser-grid,
    .info-grid,
    .photo-grid,
    .homepage-bottom,
    .magazine-item {
        grid-template-columns: 1fr;
    }

    .venue-photo,
    .venue-photo.is-featured {
        grid-column: auto;
        grid-row: auto;
        min-height: 260px;
    }

    .event-title-line h3 {
        font-size: clamp(1.55rem, 8.8vw, 2.1rem);
        line-height: 1.12;
    }

    .section-heading-row {
        align-items: start;
        flex-direction: column;
    }

    .event-date {
        align-items: baseline;
        flex-direction: row;
        gap: 11px;
        justify-content: flex-start;
        min-height: auto;
    }

    .event-meta {
        grid-column: auto;
    }

    .ticket-widget-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .motto {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-footer {
        min-height: 240px;
        padding-block: 28px 168px;
    }

    .footer-grid {
        display: grid;
    }

    .footer-illustration img {
        height: 178px;
        object-position: 55% bottom;
    }
}
