:root {
    --bg: #f4f7ff;
    --bg-deep: #0f172a;
    --surface: #ffffff;
    --surface-alt: #eef4ff;
    --surface-strong: #0f172a;
    --text: #13233f;
    --muted: #5e6e8d;
    --line: rgba(19, 35, 63, 0.10);
    --accent: #2563eb;
    --accent-strong: #1848ba;
    --accent-lime: #c7ff6b;
    --accent-coral: #ff845d;
    --accent-sky: #52d7ff;
    --accent-soft: rgba(37, 99, 235, 0.12);
    --shadow: 0 24px 64px rgba(39, 92, 211, 0.12);
    --shadow-strong: 0 36px 90px rgba(15, 23, 42, 0.22);
    --radius-xl: 36px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --max-width: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
    radial-gradient(circle at top left, rgba(82, 215, 255, 0.22), transparent 24%),
    radial-gradient(circle at right 14%, rgba(199, 255, 107, 0.20), transparent 22%),
    linear-gradient(180deg, #f7fbff 0%, var(--bg) 56%, #edf2ff 100%);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 24px 24px, rgba(37, 99, 235, 0.06) 2px, transparent 2.5px),
        linear-gradient(90deg, rgba(19, 35, 63, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(19, 35, 63, 0.03) 1px, transparent 1px);
    background-size: 48px 48px, 96px 96px, 96px 96px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.14), transparent 82%);
}

a {
    color: inherit;
    text-decoration: none;
}

.page-shell {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
    padding-top: 28px;
    padding-bottom: 72px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0 auto;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(82, 215, 255, 0.16);
    border-radius: 24px;
    box-shadow: 0 16px 38px rgba(37, 99, 235, 0.10);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1e5eff 0%, #00b7ff 100%);
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #fff;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}

.nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav a {
    padding: 10px 14px;
    color: var(--muted);
    border-radius: 999px;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
    color: var(--text);
    background: var(--accent-soft);
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent) 0%, #00b7ff 100%);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.16);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 18px;
    padding: 44px 0 40px;
    align-items: stretch;
}

.hero-copy,
.program-card,
.benefit-list article,
.timeline article,
.application-form,
.application-copy,
.flash {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-copy {
    position: relative;
    padding: 56px 54px 44px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top left, rgba(82, 215, 255, 0.14), transparent 24%),
        radial-gradient(circle at 78% 16%, rgba(199, 255, 107, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 255, 0.96));
    color: var(--text);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-copy::after {
    content: '';
    position: absolute;
    inset: auto -48px -72px auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.10), rgba(37, 99, 235, 0));
}

.hero-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-content: stretch;
}

.hero-photo,
.photo-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(37, 99, 235, 0.10);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
}

.hero-photo {
    min-height: 250px;
}

.hero-photo-wide {
    grid-column: span 2;
    min-height: 240px;
}

.hero-photo-tall {
    grid-row: span 2;
    min-height: 100%;
}

.hero-photo img,
.photo-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo::after,
.photo-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.72) 100%);
    pointer-events: none;
}

.hero-photo figcaption,
.photo-card figcaption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 1;
    color: #fff;
    font-weight: 700;
    line-height: 1.35;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}
.hero-copy::before {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 30px;
    pointer-events: none;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent-strong);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

h1,
h2,
h3 {
    margin: 0;
}

h1,
h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 0.92;
}

h1 {
    font-size: clamp(3.5rem, 6.6vw, 5.7rem);
    max-width: 9ch;
    letter-spacing: -0.05em;
    font-weight: 800;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    letter-spacing: -0.03em;
}

.hero-text,
.section-heading,
.program-card p,
.benefit-list p,
.timeline p,
.application-copy p,
.flash p {
    color: var(--muted);
}

.hero-text {
    max-width: 36ch;
    font-size: 1.16rem;
    line-height: 1.7;
    margin: 24px 0 0;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 38px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-meta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
}

.hero-meta-link:hover,
.hero-meta-link:focus-visible {
    color: var(--accent-strong);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--accent) 0%, #00b7ff 100%);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
}

.hero-stats {
    list-style: none;
    padding: 0;
    margin: 34px 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hero-stats li {
    position: relative;
    padding: 18px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.stat-icon {
    display: inline-flex;
    margin-bottom: 14px;
    font-size: 1.15rem;
    color: var(--accent);
}

.hero-stats strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.hero-stats span {
    color: var(--muted);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(220, 192, 112, 0.18);
    color: #f3d79a;
    font-weight: 700;
}

.hero-badge-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.hero-badge-row .hero-badge {
    margin-bottom: 0;
}

.hero-badge-secondary {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.12), rgba(154, 182, 194, 0.12));
    color: #f5e0b9;
    font-weight: 800;
}

.hero-card-label {
    margin: 0;
    color: rgba(248, 240, 230, 0.64);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero-card-title-primary {
    color: #fff5e8;
}

.hero-card p {
    margin: 16px 0 26px;
    max-width: 32ch;
    color: rgba(248, 240, 230, 0.74);
    line-height: 1.7;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.card-grid article {
    position: relative;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(82, 215, 255, 0.18);
}

.card-grid article:nth-child(2n) {
    background: linear-gradient(180deg, #ffffff, #f4fbff);
}

.card-grid span {
    display: block;
    color: var(--muted);
    margin-bottom: 6px;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.hero-highlights li {
    position: relative;
    padding-left: 18px;
    color: rgba(248, 240, 230, 0.88);
    line-height: 1.55;
}

.hero-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, #00b7ff 100%);
    transform: translateY(-50%);
}

.hero-card-cta {
    width: fit-content;
    min-height: 48px;
    padding: 0 18px;
    background: linear-gradient(135deg, var(--accent) 0%, #00b7ff 100%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.2);
}

.hero-camp-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-camp-link {
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(82, 215, 255, 0.2);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-camp-link:hover,
.hero-camp-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.34);
    box-shadow: 0 16px 28px rgba(37, 99, 235, 0.12);
}

.hero-camp-link span {
    margin-bottom: 0;
    font-size: 0.92rem;
}

.hero-camp-link strong {
    font-size: 1rem;
    line-height: 1.4;
}

.inline-link {
    color: #f3d79a;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

.inline-link:hover,
.inline-link:focus-visible {
    color: #fff3de;
}

.section {
    padding: 88px 0 0;
}

section[id] {
    scroll-margin-top: 84px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 26px;
}

.section-heading h2 {
    margin-top: 8px;
    color: #2a1f18;
}

.section-heading p,
.section-heading,
.program-card p,
.benefit-list p,
.timeline p,
.flash p {
    color: var(--muted);
}

.program-grid,
.benefit-list,
.timeline,
.application-layout,
.camps-layout,
.camp-grid,
.photo-grid {
    display: grid;
    gap: 18px;
}

.program-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.photo-card {
    min-height: 320px;
}

.photo-card-wide {
    grid-column: span 2;
    min-height: 360px;
}

.camps-layout {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}

.camp-grid {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 18px;
}

.program-card,
.benefit-list article,
.timeline article,
.camp-highlight,
.camp-grid article,
.application-copy,
.application-form {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
}

.program-card,
.camp-grid article,
.overview-grid article,
.application-copy-compact {
    box-shadow: none;
}

.program-card h3,
.benefit-list h3,
.timeline h3 {
    margin-bottom: 12px;
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1.25rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.program-card p,
.benefit-list p,
.timeline p,
.camp-highlight p,
.camp-grid p {
    margin: 0;
    line-height: 1.7;
}

.camps-overview {
    display: grid;
    gap: 18px;
}

.camp-grid article {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.camp-note {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.camp-option-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.camp-option-card:hover,
.camp-option-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.10);
    outline: none;
}

.camp-option-card.is-selected {
    border-color: rgba(37, 99, 235, 0.24);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 244, 255, 0.88));
}

.camp-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.camp-tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-size: 0.84rem;
    font-weight: 700;
}

.camp-status {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.camp-status.is-limited {
    background: rgba(207, 132, 87, 0.18);
    color: #9b552c;
}

.camp-grid strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.04rem;
}

.camp-term {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: -2px 0 12px;
    color: var(--accent-strong);
    font-size: 0.94rem;
    font-weight: 700;
}

.camp-term i {
    color: var(--accent);
}

.camp-facts {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
}

.camp-story {
    margin-top: 16px;
    display: grid;
    gap: 12px;
}

.camp-story h3 {
    margin: 0;
    font-size: 1.25rem;
}

.camp-facts span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 700;
}

.camp-facts i {
    color: var(--accent);
}

.accent-sand {
    background: linear-gradient(180deg, #fbfdff, #e3efff);
}

.accent-coral {
    background: linear-gradient(180deg, #f8fcff, #deeeff);
}

.accent-mint {
    background: linear-gradient(180deg, #f7fbff, #dfefff);
}

.split-section {
    grid-template-columns: 0.75fr 1.25fr;
}

.benefit-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.overview-grid article {
    padding: 28px 30px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(19, 35, 63, 0.08);
}

.overview-grid article span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.overview-grid h3 {
    margin-bottom: 10px;
}

.overview-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.photo-section .section-heading {
    max-width: 820px;
}

.timeline article span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.timeline-icon {
    font-size: 1rem;
}

.flash {
    margin-top: 16px;
    padding: 18px 22px;
    border-radius: 20px;
}

.has-status-dialog .flash {
    display: none;
}

.flash-success,
.flash-queued {
    border-color: rgba(34, 197, 94, 0.28);
}

.flash-error,
.flash-invalid {
    border-color: rgba(220, 38, 38, 0.25);
}

.application-layout {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}

.application-intro {
    margin: 0 0 16px;
    max-width: 64ch;
    color: var(--muted);
    line-height: 1.75;
}

.camp-form {
    position: relative;
}

.application-copy {
    background:
        radial-gradient(circle at top left, rgba(220, 192, 112, 0.10), transparent 24%),
        radial-gradient(circle at 80% 20%, rgba(154, 182, 194, 0.08), transparent 20%),
        linear-gradient(180deg, rgba(112, 87, 66, 0.88), rgba(88, 69, 53, 0.88));
    color: #fff;
    border-color: rgba(220, 192, 112, 0.08);
    box-shadow: var(--shadow);
}

.application-section .section-heading {
    margin-bottom: 18px;
}

.application-copy p {
    margin-top: 0;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.76);
}

.application-copy h3 {
    margin: 0 0 10px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(1.5rem, 2.3vw, 2.1rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.application-copy-compact {
    padding-top: 28px;
    background: transparent;
    color: var(--text);
    border-color: transparent;
}

.application-copy-compact .eyebrow {
    margin-bottom: 10px;
    color: var(--accent);
}

.application-copy-compact h3 {
    color: var(--text);
    font-size: clamp(1.35rem, 1.8vw, 1.75rem);
    max-width: 16ch;
}

.application-copy-compact .application-points {
    margin-top: 18px;
}

.application-copy-compact .application-points li {
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    border: 1px solid rgba(37, 99, 235, 0.1);
    padding: 12px 14px;
}

.application-copy-compact .point-icon {
    color: var(--accent);
}

.application-copy-note {
    margin: 18px 0 0;
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.72);
}

.application-copy-compact .application-copy-note {
    color: var(--muted);
}

.inline-link-light {
    color: #fff;
}

.application-copy-compact .inline-link-light {
    color: var(--accent-strong);
}

.inline-link-light:hover,
.inline-link-light:focus-visible {
    color: var(--accent-sky);
}

.application-copy-compact .inline-link-light:hover,
.application-copy-compact .inline-link-light:focus-visible {
    color: var(--accent);
}

.application-points {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}

.application-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.point-icon {
    flex: 0 0 auto;
    color: var(--accent-lime);
    font-size: 1.05rem;
}

.camp-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.camp-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.camp-benefits .point-icon {
    color: var(--accent);
}

.application-form {
    display: grid;
    gap: 16px;
    background: rgba(255, 255, 255, 0.94);
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.application-form label {
    display: grid;
    gap: 8px;
    font-weight: 500;
}

.application-form span {
    font-size: 0.95rem;
}

.application-form input,
.application-form select,
.application-form textarea {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.10);
    background: rgba(248, 251, 255, 0.92);
    font: inherit;
    color: var(--text);
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    outline: 2px solid rgba(37, 99, 235, 0.18);
    border-color: rgba(37, 99, 235, 0.32);
}

.consent {
    grid-template-columns: auto 1fr;
    align-items: start;
}

.consent input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.consent-link {
    display: inline;
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
    color: var(--accent-strong);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 2px;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}

.button-submit {
    width: 100%;
}

.contact-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 18px;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(37, 99, 235, 0.10);
    box-shadow: var(--shadow);
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-person strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.contact-person p,
.contact-note {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.contact-links {
    display: grid;
    gap: 14px;
    align-content: center;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, #00b7ff 100%);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}

.contact-link i {
    font-size: 1rem;
}

.contact-gdpr-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--accent-strong);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.gdpr-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gdpr-card article {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: var(--shadow);
}

.gdpr-card h3 {
    margin-bottom: 12px;
}

.gdpr-card p {
    margin: 0 0 10px;
    color: var(--muted);
    line-height: 1.75;
}

.gdpr-card p:last-child {
    margin-bottom: 0;
}

.gdpr-card a {
    color: var(--accent-strong);
    font-weight: 700;
}

.gdpr-dialog {
    width: min(1080px, calc(100% - 24px));
    max-height: min(88vh, 920px);
    padding: 0;
    border: 0;
    border-radius: 28px;
    background: rgba(248, 251, 255, 0.98);
    box-shadow: 0 40px 90px rgba(15, 23, 42, 0.28);
}

.gdpr-dialog::backdrop {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
}

.gdpr-dialog__header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 28px 0;
}

.gdpr-dialog__header .eyebrow {
    margin-bottom: 8px;
}

.gdpr-dialog__header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.gdpr-dialog__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent-strong);
    cursor: pointer;
}

.gdpr-dialog__content {
    padding: 24px 28px 28px;
    overflow: auto;
}

.status-dialog {
    width: min(640px, calc(100% - 24px));
    padding: 0;
    border: 0;
    border-radius: 28px;
    background: transparent;
}

.status-dialog::backdrop {
    background: rgba(15, 23, 42, 0.52);
    backdrop-filter: blur(8px);
}

.status-dialog__panel {
    background: rgba(248, 251, 255, 0.98);
    border-radius: 28px;
    box-shadow: 0 40px 90px rgba(15, 23, 42, 0.28);
    overflow: hidden;
}

.status-dialog__header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 28px 0;
}

.status-dialog__intro {
    display: flex;
    align-items: center;
    gap: 14px;
}

.status-dialog__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(37, 99, 235, 0.10);
    color: var(--accent-strong);
    font-size: 1.55rem;
    flex: 0 0 auto;
}

.status-dialog-success .status-dialog__icon,
.status-dialog-queued .status-dialog__icon {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.status-dialog-error .status-dialog__icon,
.status-dialog-invalid .status-dialog__icon {
    background: rgba(220, 38, 38, 0.10);
    color: #b91c1c;
}

.status-dialog__header .eyebrow {
    margin-bottom: 8px;
}

.status-dialog__header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.status-dialog__content {
    padding: 18px 28px 28px;
}

.status-dialog__content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1.02rem;
}

.status-dialog__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero,
    .program-grid,
    .overview-grid,
    .benefit-list,
    .timeline,
    .hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-photo-tall {
        grid-row: auto;
        min-height: 240px;
    }

    .camp-grid,
    .camps-layout,
    .application-layout,
    .contact-card,
    .field-row {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 34px;
    .hero-gallery,
    .photo-grid,
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-camp-grid {

    .hero-photo-wide,
    .photo-card-wide {
        grid-column: auto;
    }

    .hero-photo,
    .hero-photo-wide,
    .hero-photo-tall,
    .photo-card,
    .photo-card-wide {
        min-height: 240px;
    }
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .page-shell {
        width: min(calc(100% - 20px), var(--max-width));
    }

    .topbar {
        position: static;
        border-radius: 28px;
        padding: 14px;
    }

    .nav {
        display: none;
    }

    .hero {
        padding-top: 24px;
    }

    h1 {
        font-size: clamp(2.9rem, 15vw, 4.3rem);
    }

    .field-row,
    .card-grid {
        grid-template-columns: 1fr;
    }

    .program-card,
    .overview-grid article,
    .benefit-list article,
    .timeline article,
    .application-copy,
    .application-form,
    .contact-card {
        padding: 24px;
    }

    .gdpr-dialog__header,
    .gdpr-dialog__content,
    .status-dialog__header,
    .status-dialog__content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .status-dialog__intro {
        align-items: flex-start;
    }
}
