/* HEBBURN_DESIGN_THEME_START */
:root {
    --hd-ink: #17202a;
    --hd-muted: #5e6a72;
    --hd-paper: #ffffff;
    --hd-soft: #f4f7f3;
    --hd-line: #dde7dd;
    --hd-brand: #256f5b;
    --hd-brand-dark: #143d35;
    --hd-accent: #e9b44c;
    --hd-accent-soft: #fff3d2;
    --hd-footer: #111a17;
    --hd-hero-overlay-start: rgba(20, 61, 53, 0.94);
    --hd-hero-overlay-mid: rgba(20, 61, 53, 0.74);
    --hd-hero-overlay-end: rgba(20, 61, 53, 0.28);
    --hd-hero-image: url('/builder/templates/salvation/images/bg_1.jpg');
    --hd-button-radius: 6px;
    --hd-card-radius: 8px;
    --hd-font: Arial, Helvetica, sans-serif;
    --ink: var(--hd-ink);
    --muted: var(--hd-muted);
    --paper: var(--hd-paper);
    --soft: var(--hd-soft);
    --line: var(--hd-line);
    --brand: var(--hd-brand);
    --brand-dark: var(--hd-brand-dark);
    --accent: var(--hd-accent);
    --accent-soft: var(--hd-accent-soft);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--hd-ink);
    background: var(--hd-paper);
    font-family: var(--hd-font);
    line-height: 1.5;
}

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

img {
    max-width: 100%;
    height: auto;
}

body > .container:first-child {
    width: min(1180px, calc(100% - 48px));
    min-height: 360px;
    margin: 0 auto;
    padding: 96px 0;
}

.container,
.hd-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header,
.hd-site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    background: var(--hd-brand-dark);
    box-shadow: 0 10px 34px rgba(8, 23, 36, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-row,
.hd-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 76px;
    color: #ffffff;
}

.nav,
.hd-nav,
.brand,
.hd-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 800;
}

.brand-mark,
.hd-brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--hd-accent);
    color: var(--hd-brand-dark);
    font-weight: 900;
}

.nav-links,
.hd-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    font-size: 14px;
    font-weight: 700;
}

.nav-links a:not(.button),
.hd-nav-links a:not(.button) {
    padding: 10px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.84);
}

.nav-links a:not(.button):hover,
.hd-nav-links a:not(.button):hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.hd-nav-links a:not(.button).is-active {
    background: rgba(255, 255, 255, 0.16);
    color: var(--hd-accent);
}

.button,
.hd-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 0;
    border-radius: var(--hd-button-radius);
    background: var(--hd-accent);
    color: var(--hd-brand-dark);
    font-weight: 800;
}

.button.secondary,
.hd-button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.hero,
.hd-block-hero {
    position: relative;
    display: flex;
    min-height: 720px;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, var(--hd-hero-overlay-start), var(--hd-hero-overlay-mid) 46%, var(--hd-hero-overlay-end)),
        var(--hd-hero-image) center / cover no-repeat;
    color: #ffffff;
}

.hero-inner,
.hd-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) 430px;
    gap: 56px;
    align-items: end;
}

.hero-inner:not(.hd-section),
.hd-hero-inner:not(.hd-section) {
    padding-top: 86px;
    padding-bottom: 86px;
}

.hd-block-hero > .section,
.hd-block-hero > .hd-section {
    padding-top: 160px;
    padding-bottom: 92px;
}

.eyebrow,
.hd-eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff5d7;
    font-size: 13px;
    font-weight: 800;
}

.section-heading .eyebrow,
.section-heading .hd-eyebrow,
.hd-section-heading .eyebrow,
.hd-section-heading .hd-eyebrow {
    grid-column: 1;
    width: fit-content;
    margin-bottom: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--hd-brand);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero h1,
.hd-block-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(44px, 5vw, 78px);
    line-height: 1;
    font-weight: 900;
}

.hero-copy,
.hd-hero-copy {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 21px;
}

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

.notice-card,
.hd-notice-card {
    padding: 26px;
    border-radius: var(--hd-card-radius);
    background: rgba(255, 255, 255, 0.94);
    color: var(--hd-ink);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.summary-wrap,
.hd-summary-wrap {
    position: relative;
    z-index: 2;
    margin-top: -38px;
}

.hd-page-summary-wrap {
    background: var(--hd-paper);
}

.summary-bar,
.hd-summary-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--hd-line);
    border-radius: var(--hd-card-radius);
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(8, 23, 36, 0.12);
}

.summary-item,
.hd-summary-item {
    display: grid;
    gap: 4px;
    padding: 22px 24px;
    border-right: 1px solid var(--hd-line);
}

.summary-item:last-child,
.hd-summary-item:last-child {
    border-right: 0;
}

.summary-item strong,
.hd-summary-item strong {
    color: var(--hd-brand);
    font-size: 15px;
}

.summary-item span,
.hd-summary-item span {
    color: var(--hd-muted);
    font-size: 14px;
}

.notice-card strong,
.hd-notice-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--hd-brand);
    font-size: 13px;
    text-transform: uppercase;
}

.notice-card h2,
.hd-notice-card h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.15;
}

.notice-card p,
.hd-notice-card p {
    margin: 12px 0 22px;
    color: var(--hd-muted);
}

.section,
.hd-section {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 78px 0;
}

.hd-block-text,
.hd-block-cards,
.hd-block-donation,
.hd-block-split,
.hd-block-gallery,
.hd-block-faq,
.hd-block-team {
    background: var(--hd-paper);
}

.section-heading,
.hd-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
    align-items: end;
    gap: 10px 24px;
    margin-bottom: 26px;
}

.section-heading h2,
.hd-section-heading h2,
.hd-block-text h2 {
    grid-column: 1;
    margin: 0;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.08;
}

.section-heading p,
.hd-section-heading p,
.hd-block-text p {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
    max-width: 520px;
    margin: 0;
    color: var(--hd-muted);
}

.cards,
.cards-3,
.cards-4,
.hd-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.cards-4,
.hd-contact-route-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.feature-card,
.hd-card {
    padding: 24px;
    border: 1px solid var(--hd-line);
    border-radius: var(--hd-card-radius);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(8, 23, 36, 0.05);
}

.card h3,
.hd-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.card p,
.hd-card p {
    margin: 0;
    color: var(--hd-muted);
}

.contact-card,
.hd-contact-card {
    display: grid;
    gap: 8px;
    padding: 22px;
    border: 1px solid var(--hd-line);
    border-radius: var(--hd-card-radius);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(8, 23, 36, 0.05);
}

.contact-card strong,
.hd-contact-card strong {
    color: var(--hd-brand);
    font-size: 17px;
}

.contact-card span,
.hd-contact-card span {
    color: var(--hd-muted);
    font-size: 14px;
}

.hd-block-featured-update {
    background: var(--hd-paper);
}

.hd-block-featured-update .hd-notice-card {
    max-width: 760px;
    border: 1px solid var(--hd-line);
    box-shadow: 0 16px 44px rgba(8, 23, 36, 0.08);
}

.event-row,
.hd-event-row {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 22px 0;
    border-top: 1px solid var(--hd-line);
}

.event-grid,
.hd-event-dynamic-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.event-card.hd-event-dynamic-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--hd-line);
    border-radius: var(--hd-card-radius);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(8, 23, 36, 0.06);
}

.hd-event-dynamic-row {
    padding: 16px;
    border: 1px solid var(--hd-line);
    border-radius: var(--hd-card-radius);
    background: #ffffff;
}

.hd-event-dynamic-row.hd-event-row-with-image:not(.event-card) {
    grid-template-columns: minmax(160px, 240px) 88px minmax(0, 1fr) minmax(150px, 220px);
}

.hd-event-row-image {
    display: block;
    overflow: hidden;
    align-self: stretch;
    min-height: 190px;
    background: var(--hd-soft);
}

.hd-event-row-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
}

.event-card-body {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 20px 20px 8px;
}

.event-card .hd-dynamic-action {
    padding: 0 20px 20px;
}

.event-row h3,
.hd-event-row h3 {
    margin: 0 0 6px;
    font-size: 22px;
}

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

.event-row p,
.hd-event-row p {
    margin: 0;
    color: var(--hd-muted);
}

.event-date,
.hd-event-date {
    padding: 12px;
    border-radius: var(--hd-card-radius);
    background: var(--hd-soft);
    color: var(--hd-brand);
    font-weight: 900;
    text-align: center;
}

.event-card .hd-event-date {
    width: 70px;
    min-height: 70px;
    background: var(--hd-brand);
    color: #ffffff;
}

.event-card .hd-event-date span {
    color: rgba(255, 255, 255, 0.76);
}

.event-date span,
.hd-event-date span {
    display: block;
    color: var(--hd-muted);
    font-size: 13px;
}

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

.hd-event-dynamic-row:not(.event-card) {
    grid-template-columns: 88px minmax(0, 1fr) minmax(260px, 360px);
}

.hd-dynamic-action {
    min-width: 0;
}

.hd-event-detail-stack {
    display: grid;
    width: 100%;
    margin: 0 auto;
    gap: 26px;
}

.hd-event-detail-hero {
    overflow: hidden;
    margin: 0 0 28px;
    border-radius: var(--hd-card-radius);
    background: var(--hd-soft);
}

.hd-event-detail-hero img {
    display: block;
    width: 100%;
    max-height: 520px;
    aspect-ratio: 16 / 7;
    object-fit: cover;
}

.hd-event-detail-card {
    display: grid;
    gap: 18px;
    padding: 28px;
    border: 1px solid var(--hd-line);
    border-radius: var(--hd-card-radius);
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(8, 23, 36, 0.08);
}

.hd-event-detail-overview {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.hd-event-detail-card h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.05;
    letter-spacing: 0;
}

.hd-event-detail-card p {
    margin: 0;
    color: var(--hd-muted);
}

.hd-event-detail-card .hd-event-date {
    width: 88px;
}

.hd-event-detail-card .hd-venue-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
}

.hd-event-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hd-event-booking-trigger {
    width: auto;
    min-width: 180px;
}

.hd-event-description {
    display: grid;
    gap: 10px;
}

.hd-event-description h3,
.hd-event-gallery-section h3 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
    letter-spacing: 0;
}

.hd-event-description p {
    max-width: 900px;
    margin: 0;
    color: var(--hd-muted);
    font-size: 18px;
    line-height: 1.75;
}

.hd-event-gallery-section {
    display: grid;
    gap: 14px;
}

.hd-event-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.hd-event-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: calc(var(--hd-card-radius) - 4px);
}

.hd-event-map {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--hd-line);
    border-radius: calc(var(--hd-card-radius) - 4px);
    background: var(--hd-soft);
}

.hd-event-map img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.hd-event-map figcaption {
    padding: 12px 14px;
    color: var(--hd-muted);
    font-size: 14px;
    line-height: 1.5;
}

.hd-back-link {
    color: var(--hd-brand);
    font-weight: 800;
    text-decoration: none;
}

.hd-donation-dynamic-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hd-update-dynamic-list {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.hd-update-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--hd-line);
    border-radius: var(--hd-card-radius);
    background: #ffffff;
}

.hd-update-card-image {
    display: block;
    color: inherit;
    text-decoration: none;
}

.hd-update-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.hd-update-card-body {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.hd-update-card h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.15;
}

.hd-update-card h3 a {
    color: inherit;
    text-decoration: none;
}

.hd-update-card h3 a:hover {
    color: var(--hd-brand);
}

.hd-update-card p {
    margin: 0;
    color: var(--hd-muted);
}

.hd-update-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: var(--hd-brand);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hd-update-detail-stack {
    display: grid;
    gap: 24px;
}

.hd-update-detail-hero {
    overflow: hidden;
    margin: 0;
    border-radius: var(--hd-card-radius);
    background: var(--hd-soft);
}

.hd-update-detail-hero img {
    display: block;
    width: 100%;
    max-height: 520px;
    aspect-ratio: 16 / 7;
    object-fit: cover;
}

.hd-update-detail-card {
    display: grid;
    gap: 18px;
    padding: 30px;
    border: 1px solid var(--hd-line);
    border-radius: var(--hd-card-radius);
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(8, 23, 36, 0.08);
}

.hd-update-detail-card h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.06;
}

.hd-update-detail-intro {
    margin: 0;
    color: var(--hd-muted);
    font-size: 20px;
    line-height: 1.6;
}

.hd-update-detail-body {
    display: grid;
    gap: 16px;
    color: var(--hd-ink);
    font-size: 18px;
    line-height: 1.75;
}

.hd-update-detail-body p {
    margin: 0;
}

.hd-dynamic-form {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--hd-line);
    border-radius: var(--hd-card-radius);
    background: #ffffff;
    color: var(--hd-ink);
}

.hd-dynamic-form h3 {
    margin: 0;
    font-size: 22px;
}

.hd-dynamic-form p {
    margin: 0;
    color: var(--hd-muted);
}

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

.hd-event-booking .hd-dynamic-fields {
    grid-template-columns: 1fr;
}

body.hd-modal-open {
    overflow: hidden;
}

.hd-event-booking-modal {
    position: fixed;
    z-index: 2147482000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
}

.hd-event-booking-modal[hidden] {
    display: none;
}

.hd-event-booking-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(8, 23, 36, 0.62);
    cursor: pointer;
}

.hd-event-booking-dialog {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border-radius: var(--hd-card-radius);
    box-shadow: 0 24px 80px rgba(8, 23, 36, 0.28);
}

.hd-event-booking-dialog .hd-dynamic-form {
    border: 0;
    border-radius: var(--hd-card-radius);
    padding: 26px;
}

.hd-event-booking-close {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid var(--hd-line);
    border-radius: 999px;
    background: #ffffff;
    color: var(--hd-ink);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.hd-dynamic-form label {
    display: grid;
    gap: 6px;
    color: var(--hd-ink);
    font-size: 13px;
    font-weight: 800;
}

.hd-dynamic-form input,
.hd-dynamic-form select,
.hd-dynamic-form textarea {
    width: 100%;
    min-width: 0;
    padding: 11px 12px;
    border: 1px solid var(--hd-line);
    border-radius: var(--hd-button-radius);
    background: #ffffff;
    color: var(--hd-ink);
    font: inherit;
}

.hd-dynamic-check {
    display: flex !important;
    align-items: center;
    gap: 8px !important;
    color: var(--hd-muted) !important;
    font-weight: 600 !important;
}

.hd-dynamic-check input {
    width: auto;
}

.hd-dynamic-empty,
.hd-dynamic-meta,
.hd-dynamic-status {
    margin: 0;
    color: var(--hd-muted);
    font-size: 14px;
}

.hd-dynamic-status {
    color: var(--hd-brand);
    font-weight: 800;
}

.hd-dynamic-form .hd-button:disabled,
.hd-dynamic-form .button:disabled {
    cursor: wait;
    opacity: 0.7;
}

.band,
.hd-band {
    border-block: 1px solid var(--hd-line);
    background: var(--hd-soft);
}

.hd-block-sponsors,
.hd-block-venue {
    border-block: 1px solid var(--hd-line);
    background: var(--hd-soft);
}

.cta,
.cta-band,
.hd-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 34px;
    border-radius: var(--hd-card-radius);
    background: var(--hd-brand-dark);
    color: #ffffff;
}

.hd-block-get-involved {
    padding: 78px 0;
    background: var(--hd-paper);
}

.cta-band .hd-eyebrow,
.hd-cta .hd-eyebrow {
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff5d7;
}

.cta h2,
.hd-cta h2 {
    margin: 0 0 8px;
    font-size: 34px;
}

.cta p,
.hd-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.hd-block-contact {
    background: var(--hd-soft);
}

.section.hd-block-contact,
.hd-section.hd-block-contact {
    width: 100%;
    margin: 0;
    padding: 0;
}

.section.hd-block-contact > .section-heading,
.section.hd-block-contact > .hd-section-heading,
.section.hd-block-contact > .hd-contact-grid,
.hd-section.hd-block-contact > .section-heading,
.hd-section.hd-block-contact > .hd-section-heading,
.hd-section.hd-block-contact > .hd-contact-grid {
    width: min(1180px, calc(100% - 48px));
    margin-right: auto;
    margin-left: auto;
}

.section.hd-block-contact > .section-heading,
.section.hd-block-contact > .hd-section-heading,
.hd-section.hd-block-contact > .section-heading,
.hd-section.hd-block-contact > .hd-section-heading {
    padding-top: 78px;
}

.section.hd-block-contact > .hd-contact-grid,
.hd-section.hd-block-contact > .hd-contact-grid {
    padding-bottom: 78px;
}

.hd-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.hd-block-inner-hero {
    background:
        linear-gradient(90deg, var(--hd-hero-overlay-start), var(--hd-hero-overlay-mid)),
        var(--hd-hero-image) center / cover no-repeat;
    color: #ffffff;
}

.hd-block-inner-hero > .section,
.hd-block-inner-hero > .hd-section {
    padding-top: 150px;
    padding-bottom: 82px;
}

.hd-inner-hero:not(.hd-section) {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 150px 0 82px;
}

.hd-inner-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(42px, 4.4vw, 68px);
    line-height: 1;
    font-weight: 900;
}

.hd-inner-hero p {
    max-width: 660px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 20px;
}

.hd-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 42px;
    align-items: stretch;
}

.hd-block-split .hd-eyebrow {
    background: var(--hd-soft);
    color: var(--hd-brand);
}

.hd-block-venue .hd-eyebrow {
    background: var(--hd-accent-soft);
    color: var(--hd-brand);
}

.hd-block-hero .hd-eyebrow,
.hd-block-inner-hero .hd-eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: #fff5d7;
}

.hd-split-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.08;
}

.hd-split-copy p {
    max-width: 650px;
    margin: 0 0 14px;
    color: var(--hd-muted);
    font-size: 18px;
}

.hd-split-media {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    justify-content: end;
    gap: 8px;
    padding: 26px;
    border-radius: var(--hd-card-radius);
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.42)),
        var(--hd-hero-image) center / cover no-repeat;
    color: #ffffff;
}

.hd-split-media strong {
    font-size: 24px;
    line-height: 1.1;
}

.hd-split-media span {
    color: rgba(255, 255, 255, 0.8);
}

.hd-block-highlight .hd-card {
    background: var(--hd-paper);
}

.hd-gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 18px;
}

.hd-gallery-tile {
    min-height: 190px;
    border-radius: var(--hd-card-radius);
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.36)),
        var(--hd-hero-image) center / cover no-repeat;
}

.hd-gallery-tile:first-child {
    grid-row: span 2;
}

.hd-faq-list {
    display: grid;
    gap: 14px;
}

.hd-faq-item {
    padding: 22px 24px;
    border: 1px solid var(--hd-line);
    border-radius: var(--hd-card-radius);
    background: #ffffff;
}

.hd-faq-item summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
}

.hd-faq-item p {
    margin: 14px 0 0;
    color: var(--hd-muted);
}

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

.hd-logo-card {
    display: grid;
    min-height: 122px;
    place-items: center;
    gap: 10px;
    padding: 22px;
    border: 1px solid var(--hd-line);
    border-radius: var(--hd-card-radius);
    background: #ffffff;
    color: var(--hd-brand);
    text-align: center;
    font-weight: 900;
}

.hd-logo-image {
    max-width: 150px;
    max-height: 58px;
    object-fit: contain;
}

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

.hd-person-card {
    padding: 24px;
    border: 1px solid var(--hd-line);
    border-radius: var(--hd-card-radius);
    background: #ffffff;
}

.hd-avatar {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 50%;
    background: var(--hd-soft);
    color: var(--hd-brand);
    font-weight: 900;
}

.hd-avatar-image {
    display: block;
    object-fit: cover;
}

.hd-person-card h3 {
    margin: 0 0 6px;
    font-size: 22px;
}

.hd-person-card p {
    margin: 0;
    color: var(--hd-muted);
}

.hd-venue-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
    gap: 42px;
    align-items: stretch;
}

.hd-venue-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.08;
}

.hd-venue-copy p {
    max-width: 650px;
    margin: 0;
    color: var(--hd-muted);
    font-size: 18px;
}

.hd-venue-details {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.hd-venue-detail {
    display: grid;
    gap: 4px;
    padding: 18px 20px;
    border: 1px solid var(--hd-line);
    border-radius: var(--hd-card-radius);
    background: #ffffff;
}

.hd-venue-detail strong {
    color: var(--hd-brand);
}

.hd-venue-detail span {
    color: var(--hd-muted);
}

.hd-map-card {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    justify-content: end;
    gap: 8px;
    padding: 26px;
    border-radius: var(--hd-card-radius);
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.42)),
        var(--hd-hero-image) center / cover no-repeat;
    color: #ffffff;
}

.hd-map-card-image {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #111827;
}

.hd-map-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hd-map-card-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58));
    content: "";
}

.hd-map-card-image figcaption {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 26px;
}

.hd-map-card strong {
    font-size: 24px;
    line-height: 1.1;
}

.hd-map-card span {
    color: rgba(255, 255, 255, 0.8);
}

.site-footer,
.footer,
.hd-footer {
    padding: 54px 0 38px;
    background: var(--hd-footer);
    color: rgba(255, 255, 255, 0.78);
}

.footer-inner,
.hd-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
    gap: 28px;
}

.hd-footer-inner > div {
    display: grid;
    gap: 6px;
}

.hd-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-weight: 700;
}

.footer-brand .brand,
.hd-footer-brand .hd-brand {
    color: #ffffff;
}

.footer-tagline,
.hd-footer-tagline {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.68);
}

.footer-bottom,
.hd-footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.hd-powered-by-badge[data-hd-powered-by] {
    position: fixed !important;
    right: 16px !important;
    bottom: 16px !important;
    z-index: 2147483000 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    max-width: calc(100vw - 32px) !important;
    padding: 8px 12px !important;
    border: 1px solid rgba(15, 31, 51, 0.12) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    color: var(--hd-ink) !important;
    box-shadow: 0 12px 30px rgba(15, 31, 51, 0.18) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    text-decoration: none !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

.hd-powered-by-badge[data-hd-powered-by] span {
    color: rgba(15, 31, 51, 0.68) !important;
}

.hd-powered-by-badge[data-hd-powered-by] strong {
    color: var(--hd-brand-dark) !important;
    font-weight: 800 !important;
}

@media (max-width: 900px) {
    .nav-links,
    .hd-nav-links {
        display: none;
    }

    .header-row,
    .hd-header-row {
        min-height: 68px;
    }

    .hero,
    .hd-block-hero {
        min-height: auto;
    }

    .hero-inner,
    .hd-hero-inner {
        padding: 76px 0 52px;
    }

    .hero-inner,
    .hd-hero-inner,
    .summary-bar,
    .hd-summary-bar,
    .cards,
    .cards-3,
    .cards-4,
    .hd-card-grid,
    .hd-contact-route-grid,
    .cta,
    .cta-band,
    .hd-cta,
    .hd-contact-grid,
    .hd-split,
    .hd-gallery-grid,
    .hd-logo-grid,
    .hd-team-grid,
    .hd-venue-layout,
    .hd-event-detail-overview,
    .hd-event-detail-card .hd-venue-details,
    .hd-dynamic-fields,
    .hd-event-dynamic-row,
    .hd-event-dynamic-row.hd-event-row-with-image,
    .hd-donation-dynamic-list,
    .footer-inner,
    .hd-footer-inner {
        grid-template-columns: 1fr;
    }

    .summary-item,
    .hd-summary-item {
        border-right: 0;
        border-bottom: 1px solid var(--hd-line);
    }

    .summary-item:last-child,
    .hd-summary-item:last-child {
        border-bottom: 0;
    }

    .section-heading,
    .hd-section-heading,
    .event-row,
    .hd-event-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .section-heading p,
    .hd-section-heading p {
        grid-column: 1;
        grid-row: auto;
        justify-self: start;
    }

    .event-card-body {
        grid-template-columns: 64px minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .hd-powered-by-badge[data-hd-powered-by] {
        right: auto !important;
        left: 50% !important;
        bottom: 10px !important;
        transform: translateX(-50%) !important;
    }
}

@media print {
    .hd-powered-by-badge[data-hd-powered-by] {
        display: none !important;
    }
}
/* HEBBURN_DESIGN_THEME_END */