:root {
    --rotary-blue: #17458f;
    --rotary-blue-dark: #0f2f63;
    --rotary-blue-soft: #eef4ff;
    --polio-red: #d71920;
    --polio-red-dark: #b91218;
    --gold: #f7a81b;
    --ink: #172033;
    --muted: #647084;
    --paper: #fbfcff;
    --line: #dfe5ee;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(15, 47, 99, 0.14);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    max-width: 850px;
}

.work-notice {
    background: linear-gradient(90deg, var(--polio-red), var(--gold), var(--rotary-blue));
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.work-notice .container {
    padding: 9px 0;
    text-align: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-rotary,
.brand-epn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-rotary img {
    display: block;
    max-width: 148px;
    max-height: 54px;
    object-fit: contain;
}

.brand-epn img {
    display: block;
    max-width: 74px;
    max-height: 74px;
    object-fit: contain;
}

.brand-divider {
    width: 1px;
    height: 48px;
    background: var(--line);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 15px;
    color: var(--ink);
}

.main-nav a:hover {
    color: var(--rotary-blue);
}

.nav-cta {
    padding: 10px 18px;
    border-radius: 999px;
    color: var(--white) !important;
    background: var(--polio-red);
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(215, 25, 32, 0.18);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 74px;
    background:
        radial-gradient(circle at 82% 14%, rgba(247, 168, 27, 0.24), transparent 30%),
        radial-gradient(circle at 10% 92%, rgba(215, 25, 32, 0.10), transparent 26%),
        linear-gradient(135deg, #f9fbff 0%, #eef4ff 52%, #ffffff 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(23, 69, 143, 0.08), transparent 45%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.22fr 0.78fr;
    gap: 46px;
    align-items: center;
}

.eyebrow,
.section-kicker,
.card-label {
    margin: 0 0 12px;
    color: var(--polio-red);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
}

.section-kicker.light {
    color: #ffd3d5;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 18px;
    color: var(--rotary-blue-dark);
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

h2 {
    margin-bottom: 16px;
    color: var(--rotary-blue-dark);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h3 {
    margin-bottom: 10px;
    color: var(--rotary-blue-dark);
    font-size: 22px;
    line-height: 1.2;
}

.lead {
    max-width: 660px;
    color: #344157;
    font-size: 22px;
}

.lead-small {
    max-width: 620px;
    color: #344157;
    font-size: 19px;
}

.hero-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 34px 0;
}

.hero-details div {
    padding: 18px;
    border: 1px solid rgba(23, 69, 143, 0.13);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
}

.hero-details span,
.price-row span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.hero-details strong,
.price-row strong {
    display: block;
    color: var(--rotary-blue-dark);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    font-size: 16px;
}

.btn-primary {
    color: var(--white);
    background: var(--polio-red);
    box-shadow: 0 12px 28px rgba(215, 25, 32, 0.25);
}

.btn-primary:hover {
    background: var(--polio-red-dark);
}

.btn-secondary {
    color: var(--rotary-blue);
    background: var(--white);
    border: 1px solid var(--line);
}

.btn-light {
    color: var(--rotary-blue-dark);
    background: var(--white);
}

.btn.full {
    width: 100%;
}

.hero-card {
    padding: 30px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid rgba(23, 69, 143, 0.10);
}

.price-row {
    padding: 18px;
    margin-bottom: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fbfcff;
}

.price-row.featured {
    border-color: rgba(215, 25, 32, 0.25);
    background: #fff5f5;
}

.price-row small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.microcopy {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.section {
    padding: 82px 0;
}

.artists-section {
    background: var(--white);
}

.section-heading {
    margin-bottom: 34px;
}

.section-heading.split {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 36px;
    align-items: end;
}

.section-heading.split p:last-child {
    color: var(--muted);
    font-size: 18px;
}

.section-heading.center {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.artist-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 18px 45px rgba(15, 47, 99, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.artist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15, 47, 99, 0.14);
}

.artist-photo {
    min-height: 260px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
    font-size: 22px;
    background:
        linear-gradient(135deg, rgba(23, 69, 143, 0.84), rgba(215, 25, 32, 0.76)),
        var(--rotary-blue);
}

.artist-photo.large {
    min-height: 260px;
    border-radius: 22px;
}

.artist-body {
    padding: 24px;
}

.artist-body p {
    color: var(--muted);
}

.artist-body a {
    color: var(--polio-red);
    font-weight: 800;
}

.impact-section {
    background: var(--rotary-blue-soft);
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 42px;
    align-items: center;
}

.impact-list {
    display: grid;
    gap: 16px;
}

.impact-list div {
    padding: 20px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid rgba(23, 69, 143, 0.10);
}

.impact-list strong,
.impact-list span {
    display: block;
}

.impact-list span {
    margin-top: 4px;
    color: var(--muted);
}

.practical-section {
    background: var(--paper);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.info-card {
    padding: 28px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
}

.info-card > span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--polio-red);
    font-weight: 900;
    font-size: 30px;
}

.info-card p {
    color: var(--muted);
}

.cta-section {
    padding: 76px 0;
    background: var(--white);
}

.cta-box-large {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
    padding: 42px;
    border-radius: 30px;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 20%, rgba(247, 168, 27, 0.28), transparent 30%),
        linear-gradient(135deg, var(--rotary-blue-dark), var(--rotary-blue));
}

.cta-box-large h2 {
    color: var(--white);
}

.cta-box-large p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
}

.page-hero {
    padding: 72px 0 54px;
    background:
        radial-gradient(circle at 82% 14%, rgba(247, 168, 27, 0.20), transparent 30%),
        linear-gradient(135deg, #f9fbff 0%, #eef4ff 100%);
}

.page-hero h1 {
    font-size: clamp(42px, 5vw, 68px);
}

.page-hero p {
    color: #344157;
    font-size: 20px;
}

.ticket-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 32px;
    align-items: start;
}

.ticket-form,
.payment-panel {
    padding: 32px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 18px 45px rgba(15, 47, 99, 0.07);
}

.form-note {
    color: var(--muted);
}

.ticket-choice {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    margin: 16px 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fbfcff;
}

.ticket-choice.support {
    border-color: rgba(215, 25, 32, 0.25);
    background: #fff5f5;
}

.ticket-choice strong,
.ticket-choice span {
    display: block;
}

.ticket-choice div span {
    color: var(--muted);
}

.ticket-choice label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    white-space: nowrap;
}

select,
input {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    font: inherit;
    background: var(--white);
}

.ticket-choice select {
    width: 76px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.form-grid label {
    color: var(--rotary-blue-dark);
    font-weight: 800;
}

.form-grid label:last-child {
    grid-column: span 2;
}

.form-grid input {
    margin-top: 6px;
}

.payment-panel ol {
    padding-left: 22px;
}

.payment-panel li {
    margin-bottom: 10px;
}

.notice-box {
    padding: 18px;
    margin-top: 22px;
    border-radius: 16px;
    color: var(--rotary-blue-dark);
    background: var(--rotary-blue-soft);
    border: 1px solid rgba(23, 69, 143, 0.14);
    font-weight: 700;
}

.artist-profile-list {
    display: grid;
    gap: 28px;
}

.artist-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: center;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.artist-profile p {
    color: var(--muted);
    font-size: 18px;
}

.site-footer {
    padding: 30px 0;
    color: var(--white);
    background: var(--rotary-blue-dark);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-inner strong,
.footer-inner span {
    display: block;
}

.footer-inner span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
}

.footer-inner a {
    color: var(--white);
    font-weight: 800;
}

@media (max-width: 940px) {
    .header-inner,
    .footer-inner,
    .cta-box-large {
        align-items: flex-start;
        flex-direction: column;
    }

    .main-nav {
        width: 100%;
        gap: 14px;
        flex-wrap: wrap;
    }

    .hero-grid,
    .impact-grid,
    .ticket-layout,
    .section-heading.split,
    .artist-profile {
        grid-template-columns: 1fr;
    }

    .hero-details,
    .artist-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .brand {
        width: 100%;
        justify-content: space-between;
    }

    .brand-rotary img {
        max-width: 132px;
    }

    .brand-epn img {
        max-width: 66px;
        max-height: 66px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid label:last-child {
        grid-column: span 1;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .hero,
    .section,
    .page-hero {
        padding: 54px 0;
    }

    .ticket-choice {
        flex-direction: column;
    }

    .brand-divider {
        display: none;
    }
}
