* {
    box-sizing: border-box;
}

:root {
    --navy: #243447;
    --coral: #e36f5d;
    --teal: #278b89;
    --cream: #faf8f3;
    --white: #ffffff;
    --text: #243447;
    --muted: #687582;
    --border: #e1e5e8;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.site-header-inner {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-logo img {
    display: block;
    width: 255px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav a {
    color: var(--navy);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.site-nav a:hover {
    color: var(--coral);
}

.site-nav .nav-primary {
    padding: 10px 15px;
    border-radius: 7px;
    background: var(--coral);
    color: var(--white);
}

.site-nav .nav-primary:hover {
    color: var(--white);
    opacity: 0.9;
}

.hero {
    padding: 54px 18px 48px;
    background: var(--navy);
    color: var(--white);
}

.hero-inner {
    width: min(1000px, 100%);
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.08;
}

.hero-intro {
    width: min(720px, 100%);
    margin: 15px auto 28px;
    color: #e9edf0;
    font-size: 1.05rem;
}

.event-search {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 18px;
    border-radius: 12px;
    background: var(--white);

    display: grid;
    grid-template-columns:
    minmax(150px, 1fr)
    minmax(150px, 1fr)
    minmax(150px, 1fr)
    auto;
    gap: 12px;
    text-align: left;
}

.search-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
}

.search-group input,
.search-group select {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #ccd3d9;
    border-radius: 7px;
    background: var(--white);
    color: var(--text);
    font: inherit;
}

.search-action {
    display: flex;
    align-items: flex-end;
}

.search-button {
    min-height: 46px;
    padding: 10px 20px;
    border: 0;
    border-radius: 7px;
    background: var(--coral);
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
}

.search-note {
    margin: 12px 0 0;
    color: #cdd5db;
    font-size: 13px;
}

.page-section {
    padding: 52px 18px;
}

.section-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

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

.section-heading h2 {
    margin: 0 0 5px;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.section-heading p {
    margin: 0;
    color: var(--muted);
}

.section-heading a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 700;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.event-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);

    display: flex;
    flex-direction: column;
}

.event-card-image {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #eceeef;
}

.event-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-body {
    padding: 18px;

    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-date {
    margin-bottom: 7px;
    color: var(--coral);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.event-card h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    line-height: 1.25;
}

.event-location {
    margin-bottom: 12px;
    color: var(--teal);
    font-size: 14px;
    font-weight: 700;
}

.event-description {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px;
}

.event-card-link {
    margin-top: auto;
    color: var(--navy);
    text-decoration: none;
    font-weight: 800;
}

.event-card-link:hover {
    color: var(--coral);
}

.empty-events {
    padding: 40px 24px;
    background: var(--white);
    border-radius: 10px;
    text-align: center;
    color: var(--muted);
}

.directory-hero {
    padding: 42px 18px;
    background: #243447;
    color: #ffffff;
}

.directory-heading {
    margin-bottom: 24px;
    text-align: center;
}

.directory-heading h1 {
    margin: 0 0 8px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.directory-heading p {
    margin: 0;
    color: #dce3e8;
}

.directory-search {
    width: min(760px, 100%);
    margin: 0 auto;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 30px;
}

.pagination a,
.pagination span {
    min-width: 40px;
    padding: 9px 11px;
    border: 1px solid #d8dde1;
    border-radius: 6px;
    background: #ffffff;
    color: #243447;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.pagination .current {
    background: #243447;
    border-color: #243447;
    color: #ffffff;
}

.pagination .disabled {
    color: #a4adb4;
    background: #f4f5f6;
}

.browse-section {
    padding: 10px 18px 52px;
}

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

.browse-group {
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e1e5e8;
    border-radius: 12px;
}

.browse-group h3 {
    margin: 0 0 16px;
    font-size: 1.15rem;
}

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

.browse-links a {
    display: inline-block;
    padding: 10px 14px;
    border: 1px solid #d8dde1;
    border-radius: 7px;
    background: #faf8f3;
    color: #243447;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.browse-links a:hover {
    border-color: #278b89;
    color: #278b89;
}

.newsletter-section {
    padding: 0 18px 52px;
}

.newsletter-card {
    padding: 32px;
    border-radius: 14px;
    background: #243447;
    color: #ffffff;
}

.newsletter-copy {
    max-width: 720px;
    margin-bottom: 24px;
}

.newsletter-copy h2 {
    margin: 0 0 8px;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.newsletter-copy p {
    margin: 0;
    color: #dce3e8;
}

.newsletter-form {
    display: grid;
    grid-template-columns:
        minmax(160px, 1fr)
        minmax(220px, 1.4fr)
        minmax(130px, 0.7fr)
        auto;
    gap: 12px;
    align-items: end;
}

.newsletter-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
}

.newsletter-field input {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #ccd3d9;
    border-radius: 7px;
    background: #ffffff;
    color: #243447;
    font: inherit;
}

.newsletter-field input:focus {
    outline: none;
    border-color: #278b89;
    box-shadow: 0 0 0 3px rgba(39,139,137,0.18);
}

.newsletter-button {
    min-height: 46px;
    padding: 10px 20px;
    border: 0;
    border-radius: 7px;
    background: #e36f5d;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.newsletter-button:hover {
    opacity: 0.92;
}

.newsletter-note {
    margin: 13px 0 0;
    color: #cbd4da;
    font-size: 13px;
}

.promoter-section {
    padding: 0 18px 52px;
}

.promoter-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;

    padding: 30px 32px;

    background: #ffffff;
    border: 1px solid #e1e5e8;
    border-radius: 14px;
}

.promoter-copy {
    max-width: 680px;
}

.promoter-copy h2 {
    margin: 0 0 8px;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.promoter-copy p {
    margin: 0;
    color: #687582;
}

.promoter-note {
    margin-top: 12px !important;
    color: #243447 !important;
    font-size: 14px;
    font-weight: 700;
}

.promoter-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 245px;
}

.promoter-primary,
.promoter-secondary {
    display: block;
    padding: 12px 18px;

    border-radius: 7px;

    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.promoter-primary {
    background: #e36f5d;
    color: #ffffff;
}

.promoter-primary:hover {
    opacity: 0.92;
}

.promoter-secondary {
    background: #ffffff;
    border: 1px solid #278b89;
    color: #278b89;
}

.promoter-secondary:hover {
    background: #278b89;
    color: #ffffff;
}

.site-footer {
    margin-top: 10px;
    background: #243447;
    color: #ffffff;
}

.site-footer-inner {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 44px 0 38px;

    display: grid;
    grid-template-columns:
        minmax(240px, 1.2fr)
        minmax(500px, 2fr);
    gap: 60px;
}

.footer-brand {
    max-width: 330px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo img {
    display: block;
    width: 230px;
    height: auto;
}

.footer-brand p {
    margin: 0;
    color: #cbd4da;
    font-size: 14px;
    line-height: 1.65;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.footer-group h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 15px;
}

.footer-group a {
    display: block;
    margin-bottom: 9px;
    color: #cbd4da;
    text-decoration: none;
    font-size: 14px;
}

.footer-group a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 18px 0;
}

.footer-bottom p {
    margin: 0;
    color: #aeb9c1;
    font-size: 13px;
}

.footer-owner {
    margin-top: 12px !important;
    color: #aeb9c1 !important;
    font-size: 14px !important;
    font-weight: bold;
}

.search-message {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 8px;
}

.search-message-error {
    background: #fff3f1;
    border: 1px solid #e4aaa1;
    color: #973b2d;
}

.event-detail-hero {
    padding: 44px 18px;
    background: #ffffff;
}

.event-detail-grid {
    display: grid;
    grid-template-columns:
        minmax(300px, 0.9fr)
        minmax(0, 1.1fr);
    gap: 40px;
    align-items: start;
}

.event-detail-image {
    overflow: hidden;
    border-radius: 14px;
    background: #eceeef;
}

.event-detail-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.event-detail-summary h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.event-detail-intro {
    margin: 0 0 24px;
    color: #687582;
    font-size: 1.05rem;
    line-height: 1.6;
}

.event-summary-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-summary-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px 16px;
    border: 1px solid #e1e5e8;
    border-radius: 9px;
    background: #faf8f3;
}

.event-summary-item strong {
    color: #243447;
}

.event-summary-item span {
    color: #586672;
}

.event-summary-alert {
    border-color: #e3aaa1;
    background: #fff5f3;
}

.event-status {
    width: fit-content;
    margin-bottom: 5px;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.event-status-canceled {
    background: #b33a2b;
    color: #ffffff;
}

.event-status-rescheduled {
    background: #e36f5d;
    color: #ffffff;
}

.status-note {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
}

.event-detail-section {
    padding: 42px 18px;
}

.event-detail-section-alt {
    background: #f3f5f6;
}

.event-content-container {
    width: min(900px, 100%);
    margin: 0 auto;
}

.event-content-container h2 {
    margin: 0 0 18px;
    font-size: 1.7rem;
}

.event-description-full {
    color: #43515e;
    line-height: 1.75;
}

.event-detail-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 22px;
    border: 1px solid #e1e5e8;
    border-radius: 10px;
    background: #ffffff;
}

.event-detail-card strong {
    margin-bottom: 3px;
    font-size: 1.05rem;
}

.event-muted {
    margin-top: 4px;
    color: #687582;
    font-size: 13px;
}

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

.event-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 18px;
    border: 1px solid #e1e5e8;
    border-radius: 9px;
    background: #ffffff;
}

.event-info-item strong {
    font-size: 13px;
    color: #687582;
}

.event-info-item a {
    color: #278b89;
    text-decoration: none;
    font-weight: 700;
}

.event-info-item a:hover {
    color: #e36f5d;
}

.event-detail-back {
    padding: 10px 18px 48px;
}

.event-detail-back a {
    color: #278b89;
    text-decoration: none;
    font-weight: 700;
}

.event-detail-back a:hover {
    color: #e36f5d;
}

.legal-page {
    padding: 48px 18px 64px;
    background: #ffffff;
}

.legal-container {
    width: min(900px, 100%);
    margin: 0 auto;
}

.legal-header {
    margin-bottom: 34px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e1e5e8;
}

.legal-header h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15;
}

.legal-updated {
    margin: 0;
    color: #687582;
    font-size: 14px;
    line-height: 1.6;
}

.legal-content {
    color: #43515e;
    line-height: 1.75;
}

.legal-content h2 {
    margin: 38px 0 12px;
    color: #243447;
    font-size: 1.35rem;
    line-height: 1.3;
}

.legal-content p {
    margin: 0 0 18px;
}

.legal-content ul {
    margin: 0 0 22px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 9px;
}

.legal-content a {
    color: #278b89;
    font-weight: 600;
}

.submission-intro {
    padding: 48px 18px 34px;
    background: #ffffff;
}

.submission-container {
    width: min(1000px, 100%);
    margin: 0 auto;
}

.submission-intro h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.submission-lead {
    max-width: 760px;
    margin: 0 0 28px;
    color: #586672;
    font-size: 1.08rem;
    line-height: 1.65;
}

.submission-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 34px;
}

.submission-highlights > div {
    padding: 20px;
    border: 1px solid #e1e5e8;
    border-radius: 10px;
    background: #faf8f3;
}

.submission-highlights strong {
    display: block;
    margin-bottom: 6px;
    color: #243447;
    font-size: 15px;
}

.submission-highlights span {
    color: #687582;
    font-size: 14px;
    line-height: 1.5;
}

.submission-info {
    max-width: 820px;
}

.submission-info h2 {
    margin: 28px 0 8px;
    font-size: 1.35rem;
}

.submission-info p {
    margin: 0 0 14px;
    color: #586672;
    line-height: 1.7;
}

.submission-form-section {
    padding: 38px 18px 60px;
    background: #f5f6f7;
}

.submission-heading {
    margin-bottom: 22px;
}

.submission-heading h2 {
    margin: 0 0 6px;
    font-size: 1.8rem;
}

.submission-heading p {
    margin: 0;
    color: #687582;
    font-size: 14px;
}

.submission-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.submission-card {
    padding: 26px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.submission-card h3 {
    margin: 0 0 8px;
    font-size: 1.3rem;
}

.submission-card-intro {
    margin: 0 0 20px;
    color: #687582;
    line-height: 1.6;
}

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

.single-day-grid {
    grid-template-columns:
        minmax(160px, 1fr)
        minmax(130px, 0.8fr)
        minmax(130px, 0.8fr);
}

.submission-field {
    min-width: 0;
}

.submission-field.full-width {
    grid-column: 1 / -1;
}

.submission-field label {
    display: block;
    margin-bottom: 7px;
    color: #243447;
    font-size: 14px;
    font-weight: 700;
}

.submission-field input,
.submission-field select,
.submission-field textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #ccd3d9;
    border-radius: 6px;
    background: #ffffff;
    color: #243447;
    font: inherit;
}

.submission-field textarea {
    min-height: 150px;
    resize: vertical;
}

.submission-field input:focus,
.submission-field select:focus,
.submission-field textarea:focus {
    outline: none;
    border-color: #278b89;
    box-shadow: 0 0 0 3px rgba(39,139,137,0.12);
}

.submission-field input[readonly] {
    background: #f5f6f7;
    color: #687582;
}

.submission-help {
    margin-top: 6px;
    color: #7a8791;
    font-size: 13px;
    line-height: 1.45;
}

.schedule-help {
    margin-bottom: 0;
}

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

.submission-category {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 12px 14px;
    border: 1px solid #dfe3e6;
    border-radius: 7px;
    background: #faf8f3;
    cursor: pointer;
}

.submission-category input {
    width: auto;
    margin-top: 3px;
}

.submission-category span {
    color: #243447;
    font-size: 14px;
    font-weight: 600;
}

.submission-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    color: #43515e;
    line-height: 1.5;
}

.submission-check input {
    width: auto;
    margin-top: 4px;
}

.submission-check a {
    color: #278b89;
    font-weight: 700;
}

.submission-turnstile {
    margin: 24px 0 20px;
}

.submission-button {
    border: 0;
    border-radius: 7px;
    padding: 12px 20px;
    background: #e36f5d;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.submission-button:hover {
    opacity: 0.92;
}

.schedule-panel {
    margin-top: 22px;
}

.multi-day-row {
    display: grid;
    grid-template-columns:
        minmax(160px, 1fr)
        minmax(130px, 0.8fr)
        minmax(130px, 0.8fr)
        auto;
    gap: 14px;
    align-items: end;
    padding: 16px 0;
    border-bottom: 1px solid #e8ebed;
}

.multi-day-row:first-child {
    padding-top: 0;
}

.multi-day-action {
    padding-bottom: 1px;
}

.add-date-button,
.remove-date-button {
    border-radius: 6px;
    padding: 10px 13px;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.add-date-button {
    margin-top: 16px;
    border: 1px solid #278b89;
    background: #ffffff;
    color: #278b89;
}

.add-date-button:hover {
    background: #278b89;
    color: #ffffff;
}

.remove-date-button {
    border: 1px solid #d7dcdf;
    background: #ffffff;
    color: #687582;
}

.remove-date-button:disabled {
    opacity: 0.45;
    cursor: default;
}

.submission-message {
    margin-bottom: 22px;
    padding: 18px 20px;
    border-radius: 9px;
    line-height: 1.55;
}

.submission-message strong {
    display: block;
    margin-bottom: 5px;
}

.submission-message p {
    margin: 4px 0 0;
}

.submission-message-success {
    border: 1px solid #b9d8c2;
    background: #f2faf4;
}

.submission-message-error {
    border: 1px solid #e0b6b1;
    background: #fff5f3;
}

.submission-field-error {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
}

.submission-field-error {
    margin-top: 6px;
    color: #b33a2b;
    font-size: 13px;
    font-weight: 600;
}

.submission-button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.contact-page {
    padding: 48px 18px 64px;
    background: #f5f6f7;
}

.contact-container {
    width: min(760px, 100%);
    margin: 0 auto;
}

.contact-intro {
    margin-bottom: 28px;
}

.contact-intro h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.contact-intro p {
    margin: 0 0 12px;
    color: #586672;
    line-height: 1.7;
}

.contact-intro a {
    color: #278b89;
    font-weight: 700;
}

.contact-form {
    position: relative;
    padding: 28px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.contact-field {
    margin-bottom: 20px;
}

.contact-field label {
    display: block;
    margin-bottom: 7px;
    color: #243447;
    font-size: 14px;
    font-weight: 700;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #ccd3d9;
    border-radius: 6px;
    background: #ffffff;
    color: #243447;
    font: inherit;
}

.contact-field textarea {
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #278b89;
    box-shadow: 0 0 0 3px rgba(39,139,137,0.12);
}

.contact-submit {
    border: 0;
    border-radius: 7px;
    padding: 12px 20px;
    background: #e36f5d;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.contact-submit:hover {
    opacity: 0.92;
}

.contact-message {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 7px;
}

.contact-message-success {
    border: 1px solid #91cbc4;
    background: #eef9f7;
}

.contact-message-error {
    border: 1px solid #e0b6b1;
    background: #fff5f3;
}

.contact-field-error {
    margin-top: 6px;
    color: #b33a2b;
    font-size: 13px;
    font-weight: 600;
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.promotion-hero {
    padding: 64px 18px 54px;
    background: #ffffff;
}

.promotion-container {
    width: min(1080px, 100%);
    margin: 0 auto;
}

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

.promotion-eyebrow {
    margin: 0 0 10px;
    color: #278b89;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.promotion-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.08;
}

.promotion-lead {
    font-size: 1.15rem;
}

.promotion-hero p {
    max-width: 780px;
    margin: 0 0 16px;
    color: #586672;
    line-height: 1.7;
}

.promotion-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.promotion-primary-button,
.promotion-secondary-button {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 700;
}

.promotion-primary-button {
    background: #e36f5d;
    color: #ffffff;
}

.promotion-secondary-button {
    border: 1px solid #278b89;
    background: #ffffff;
    color: #278b89;
}

.promotion-section {
    padding: 58px 18px;
    background: #ffffff;
}

.promotion-section-alt {
    background: #f5f6f7;
}

.promotion-section-heading {
    max-width: 800px;
    margin-bottom: 30px;
}

.promotion-section-heading h2,
.promotion-split h2,
.promotion-coming-soon h2,
.promotion-cta h2 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.2;
}

.promotion-section-heading p,
.promotion-split p,
.promotion-coming-soon p,
.promotion-cta p {
    color: #586672;
    line-height: 1.7;
}

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

.promotion-feature-card {
    padding: 24px;
    border: 1px solid #e1e5e8;
    border-radius: 10px;
    background: #ffffff;
}

.promotion-feature-card h3 {
    margin: 0 0 8px;
}

.promotion-feature-card p {
    margin: 0;
    color: #687582;
    line-height: 1.6;
}

.promotion-price-callout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.promotion-price-callout > div {
    padding: 20px 22px;
    border-radius: 10px;
    background: #243447;
    color: #ffffff;
}

.promotion-price-callout strong,
.promotion-price-callout span {
    display: block;
}

.promotion-price-callout strong {
    margin-bottom: 5px;
    font-size: 14px;
}

.promotion-price-callout span {
    font-size: 1.4rem;
    font-weight: 800;
}

.promotion-addon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.promotion-addon {
    padding: 16px 18px;
    border: 1px solid #dfe3e6;
    border-radius: 8px;
    background: #ffffff;
    color: #243447;
    font-weight: 700;
}

.promotion-small-note {
    margin: 22px 0 0;
    color: #7a8791;
    font-size: 14px;
    line-height: 1.6;
}

.promotion-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: start;
}

.promotion-parent-card {
    padding: 26px;
    border-radius: 12px;
    background: #faf8f3;
}

.promotion-parent-card h3 {
    margin: 0 0 12px;
}

.promotion-parent-card p {
    margin: 0 0 14px;
}

.promotion-text-link {
    color: #278b89;
    font-weight: 700;
    text-decoration: none;
}

.promotion-coming-soon {
    max-width: 960px;
}

.promotion-coming-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.promotion-coming-grid > div {
    padding: 22px;
    border-radius: 10px;
    background: #ffffff;
}

.promotion-coming-grid strong,
.promotion-coming-grid span {
    display: block;
}

.promotion-coming-grid strong {
    margin-bottom: 7px;
    color: #243447;
}

.promotion-coming-grid span {
    color: #687582;
    font-size: 14px;
    line-height: 1.55;
}

.promotion-cta {
    padding: 60px 18px;
    background: #243447;
    color: #ffffff;
}

.promotion-cta-inner {
    max-width: 780px;
}

.promotion-cta h2 {
    color: #ffffff;
}

.promotion-cta p {
    color: rgba(255,255,255,0.82);
}

.promotion-cta .promotion-secondary-button {
    border-color: rgba(255,255,255,0.65);
    background: transparent;
    color: #ffffff;
}

.newsletter-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.newsletter-confirm-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 60px 18px;
    background: #f5f6f7;
}

.newsletter-confirm-container {
    width: min(700px, 100%);
    margin: 0 auto;
}

.newsletter-confirm-card {
    padding: 36px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    text-align: center;
}

.newsletter-confirm-card h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.newsletter-confirm-card p {
    margin: 0 0 14px;
    color: #586672;
    line-height: 1.7;
}

.newsletter-confirm-button {
    display: inline-block;
    margin-top: 14px;
    padding: 12px 18px;
    border-radius: 7px;
    background: #e36f5d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 900px) {
    .site-header-inner {
        min-height: 72px;
    }

    .site-logo img {
        width: 220px;
    }

    .site-nav {
        gap: 15px;
    }

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

@media (max-width: 800px) {
    .newsletter-form {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-action {
        grid-column: 1 / -1;
    }

    .newsletter-button {
        width: 100%;
    }
    
    .site-footer-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-brand {
        max-width: 500px;
    }
    
    .event-detail-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .event-detail-image {
        width: 100%;
    }
    
    .submission-highlights {
        grid-template-columns: 1fr;
    }

    .submission-grid {
        grid-template-columns: 1fr;
    }
    
    .single-day-grid {
        grid-template-columns: 1fr;
    }

    .submission-field.full-width {
        grid-column: auto;
    }

    .submission-categories {
        grid-template-columns: 1fr;
    }
    
    .multi-day-row {
        grid-template-columns: 1fr 1fr;
    }

    .multi-day-action {
        grid-column: 1 / -1;
    }
    
    .promotion-feature-grid,
    .promotion-price-callout,
    .promotion-split {
        grid-template-columns: 1fr;
    }

    .promotion-addon-grid,
    .promotion-coming-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .site-header-inner {
        width: min(100% - 28px, 1180px);
        padding: 12px 0;

        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .site-logo img {
        width: 210px;
    }

    .site-nav {
        width: 100%;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .site-nav a {
        white-space: nowrap;
        font-size: 14px;
    }

    .hero {
        padding: 42px 16px;
    }

    .event-search {
        grid-template-columns: 1fr;
    }

    .search-action {
        display: block;
    }

    .search-button {
        width: 100%;
    }

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

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

    .page-section {
        padding: 40px 16px;
    }
    
    .browse-section {
        padding: 0 16px 40px;
    }

    .browse-groups {
        grid-template-columns: 1fr;
    }

    .browse-links {
        flex-direction: column;
    }

    .browse-links a {
        width: 100%;
    }
    
    .promoter-section {
        padding: 0 16px 40px;
    }

    .promoter-card {
        align-items: stretch;
        flex-direction: column;
        gap: 22px;
        padding: 24px 20px;
    }

    .promoter-actions {
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .newsletter-section {
        padding: 0 16px 40px;
    }

    .newsletter-card {
        padding: 24px 20px;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .newsletter-action {
        grid-column: auto;
    }
    
    .site-footer-inner {
        width: min(100% - 32px, 1180px);
        padding: 36px 0 30px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }

    .footer-bottom-inner {
        width: min(100% - 32px, 1180px);
    }
    
    .event-detail-hero {
        padding: 28px 16px 34px;
    }

    .event-detail-section {
        padding: 34px 16px;
    }

    .event-information-grid {
        grid-template-columns: 1fr;
    }

    .event-detail-back {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .legal-page {
        padding: 32px 16px 48px;
    }

    .legal-content h2 {
        margin-top: 32px;
    }
    
    .submission-intro {
        padding: 34px 16px 28px;
    }

    .submission-form-section {
        padding: 28px 16px 44px;
    }

    .submission-card {
        padding: 20px;
    }

    .submission-highlights > div {
        padding: 17px;
    }
    
    .contact-page {
        padding: 34px 16px 48px;
    }

    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 560px) {
    .promotion-hero {
        padding: 42px 16px 38px;
    }

    .promotion-section,
    .promotion-cta {
        padding: 42px 16px;
    }

    .promotion-addon-grid,
    .promotion-coming-grid {
        grid-template-columns: 1fr;
    }

    .promotion-actions {
        flex-direction: column;
    }

    .promotion-actions a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .multi-day-row {
        grid-template-columns: 1fr;
    }

    .multi-day-action {
        grid-column: auto;
    }

    .remove-date-button {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}