* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ink: #142033;
    --muted: #64748b;
    --line: #d9e6ea;
    --paper: #fffaf2;
    --paper-strong: #fff6df;
    --teal: #00a7a8;
    --green: #82d943;
    --orange: #ff9f1c;
    --pink: #e94bb7;
    --violet: #7057ff;
    --yellow: #ffe66d;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(20, 32, 51, 0.16);
    --soft-shadow: 0 16px 44px rgba(20, 32, 51, 0.1);
    --radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

body.nav-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

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

.site-background {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(0, 167, 168, 0.09) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0, 167, 168, 0.09) 1px, transparent 1px),
        linear-gradient(135deg, #fff8e9 0%, #f3fff3 42%, #eefcff 100%);
    background-size: 20px 20px, 20px 20px, cover;
}

#particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.44;
}

.grid-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 230, 109, 0.52), transparent 24%),
        radial-gradient(circle at 86% 12%, rgba(233, 75, 183, 0.2), transparent 24%),
        radial-gradient(circle at 74% 76%, rgba(0, 167, 168, 0.24), transparent 26%);
}

.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 20;
    display: flex;
    width: min(1120px, calc(100% - 32px));
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 46px rgba(20, 32, 51, 0.12);
    padding: 9px 12px;
    backdrop-filter: blur(18px);
}

.summer-nudge {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    width: min(330px, calc(100vw - 28px));
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 60px rgba(20, 32, 51, 0.18);
    opacity: 0;
    padding: 12px 14px 12px 12px;
    transform: translateY(18px) scale(0.98);
    transition: opacity 220ms ease, transform 220ms ease;
    backdrop-filter: blur(18px);
}

.summer-nudge[hidden] {
    display: none;
}

.summer-nudge.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.summer-nudge img {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    object-fit: cover;
}

.summer-nudge span {
    display: block;
    color: #006d71;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.summer-nudge strong {
    display: block;
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.08;
}

.summer-nudge a {
    display: inline-flex;
    color: var(--pink);
    font-size: 0.86rem;
    font-weight: 900;
    margin-top: 4px;
}

.summer-nudge-close {
    position: absolute;
    top: -8px;
    right: -8px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: var(--ink);
    font-weight: 900;
    letter-spacing: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: var(--white);
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(20, 32, 51, 0.1);
    transition: transform 220ms ease, filter 220ms ease;
}

.brand:hover .brand-mark {
    transform: rotate(-7deg) scale(1.08);
    filter: saturate(1.12);
}

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

.site-nav a {
    border-radius: 999px;
    color: #26364e;
    font-size: 0.94rem;
    font-weight: 800;
    padding: 12px 15px;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
    background: rgba(0, 167, 168, 0.12);
    color: #006d71;
}

.site-nav .nav-cta {
    background: var(--ink);
    color: var(--white);
}

.site-nav .nav-cta:hover {
    background: #203452;
    color: var(--white);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    cursor: pointer;
}

.nav-toggle span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease;
}

.nav-toggle span:first-child {
    transform: translateY(-4px);
}

.nav-toggle span:last-child {
    transform: translateY(4px);
}

body.nav-open .nav-toggle span:first-child {
    transform: rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
    transform: rotate(-45deg);
}

.hero-section {
    position: relative;
    display: grid;
    min-height: 100svh;
    align-items: center;
    padding: 112px 20px 42px;
}

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

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
    gap: 46px;
    align-items: center;
}

.hero-copy {
    max-width: 710px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid rgba(0, 167, 168, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #006d71;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    padding: 7px 12px;
    text-transform: uppercase;
}

.hero-copy h1 {
    color: var(--ink);
    font-size: clamp(4rem, 12vw, 8.7rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.85;
    margin-bottom: 26px;
}

.hero-lede {
    max-width: 650px;
    color: #31435b;
    font-size: clamp(1.16rem, 2.1vw, 1.58rem);
    font-weight: 650;
    line-height: 1.35;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.primary-button,
.secondary-button,
.submit-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
    letter-spacing: 0;
    padding: 0 24px;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 18px 34px rgba(20, 32, 51, 0.22);
}

.secondary-button {
    border: 1px solid rgba(20, 32, 51, 0.14);
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
}

.primary-button:hover,
.secondary-button:hover,
.submit-button:hover {
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 520px;
    margin-top: 34px;
}

.hero-stats div {
    border: 1px solid rgba(20, 32, 51, 0.08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.7);
    padding: 14px;
    box-shadow: 0 12px 30px rgba(20, 32, 51, 0.08);
}

.hero-stats strong {
    display: block;
    color: var(--teal);
    font-size: 1.45rem;
    line-height: 1;
}

.hero-stats span {
    display: block;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 750;
    margin-top: 5px;
}

.hero-world {
    position: relative;
    display: flex;
    min-height: 620px;
    align-items: center;
    justify-content: center;
    padding: 16px 0 54px;
}

.hero-orbit {
    position: absolute;
    inset: 24px 7% 42px;
    border: 2px solid rgba(0, 167, 168, 0.18);
    border-radius: 48% 52% 45% 55%;
    transform: rotate(-8deg);
}

.hero-orbit::before,
.hero-orbit::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 8px rgba(255, 159, 28, 0.12);
}

.hero-orbit::before {
    top: 22%;
    left: -4px;
}

.hero-orbit::after {
    right: 7%;
    bottom: 3%;
    background: var(--pink);
    box-shadow: 0 0 0 8px rgba(233, 75, 183, 0.12);
}

.hero-video-card {
    position: relative;
    z-index: 2;
    isolation: isolate;
    overflow: hidden;
    width: min(370px, 86vw);
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 30px;
    margin: 0 auto;
    background: #0f172a;
    box-shadow: 0 30px 80px rgba(20, 32, 51, 0.24);
}

.hero-video-card video {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    height: auto;
    object-fit: cover;
}

.video-caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 18px;
    background: rgba(16, 24, 39, 0.74);
    color: var(--white);
    padding: 11px 13px;
    backdrop-filter: blur(14px);
}

.video-caption strong {
    font-size: 0.95rem;
    font-weight: 900;
}

.video-caption span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
    font-weight: 650;
}

.world-chip {
    position: absolute;
    z-index: 4;
    display: grid;
    gap: 2px;
    min-width: 126px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--soft-shadow);
    padding: 12px 14px;
    backdrop-filter: blur(14px);
}

.world-chip span {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 800;
}

.world-chip strong {
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1;
}

.chip-one {
    left: 0;
    top: 14%;
}

.chip-two {
    right: 0;
    top: 43%;
}

.chip-three {
    left: 5%;
    bottom: 10%;
}

.hero-peek {
    position: absolute;
    right: max(22px, calc((100vw - 1120px) / 2));
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #496076;
    font-size: 0.88rem;
    font-weight: 850;
}

.hero-peek svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.section {
    padding: 86px 20px;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.section-heading.aligned {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
    gap: 34px;
    max-width: none;
    align-items: end;
    text-align: left;
}

.section-heading h2,
.studio-copy h2,
.family-copy h2,
.inscription-intro h2 {
    color: var(--ink);
    font-size: clamp(2.05rem, 4.5vw, 4rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.98;
}

.section-heading p:not(.eyebrow),
.studio-copy > p,
.family-copy > p,
.inscription-intro > p {
    color: #4b5f73;
    font-size: 1.05rem;
    font-weight: 560;
    margin-top: 16px;
}

.route-grid,
.mission-grid,
.character-grid {
    display: grid;
    gap: 18px;
}

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

.route-card,
.mission-card,
.character-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(20, 32, 51, 0.08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--soft-shadow);
}

.route-card {
    min-height: 342px;
    padding: 22px;
}

.route-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: var(--accent, var(--teal));
}

.route-card img {
    width: 126px;
    height: 126px;
    border-radius: 18px;
    object-fit: cover;
    margin-left: auto;
    transition: transform 240ms ease, filter 240ms ease;
}

.route-card:hover img {
    animation: character-wave 760ms ease both;
    filter: saturate(1.12) drop-shadow(0 16px 22px rgba(20, 32, 51, 0.14));
}

.route-range {
    display: inline-flex;
    border-radius: 999px;
    background: rgba(20, 32, 51, 0.06);
    color: #31435b;
    font-size: 0.8rem;
    font-weight: 900;
    margin-bottom: 12px;
    padding: 6px 10px;
}

.route-card h3,
.mission-card h3,
.character-card h3 {
    color: var(--ink);
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1.08;
}

.route-card p,
.mission-card p,
.character-card p {
    color: #52677c;
    font-size: 0.96rem;
    margin-top: 10px;
}

.route-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.route-skills span,
.mission-meta span {
    display: inline-flex;
    border-radius: 999px;
    background: rgba(0, 167, 168, 0.11);
    color: #006d71;
    font-size: 0.75rem;
    font-weight: 850;
    padding: 6px 9px;
}

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

.mission-card {
    display: flex;
    min-height: 368px;
    flex-direction: column;
    color: inherit;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.mission-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.mission-media {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: var(--paper-strong);
}

.mission-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 58px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.95), transparent);
}

.mission-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.mission-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.mission-link {
    color: #006d71;
    font-size: 0.92rem;
    font-weight: 900;
    margin-top: auto;
    padding-top: 18px;
}

.studio-section {
    padding-top: 40px;
}

.camp-section {
    padding-top: 48px;
}

.camp-portal {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
    gap: 30px;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(20, 32, 51, 0.08);
    border-radius: 28px;
    background:
        linear-gradient(125deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 246, 223, 0.92) 42%, rgba(238, 252, 255, 0.92) 100%),
        linear-gradient(135deg, rgba(255, 159, 28, 0.28), rgba(233, 75, 183, 0.14));
    box-shadow: var(--shadow);
    padding: clamp(24px, 5vw, 48px);
}

.camp-portal::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(0, 167, 168, 0.26);
    border-radius: 24px;
    pointer-events: none;
}

.camp-copy h2 {
    color: var(--ink);
    max-width: 720px;
    font-size: clamp(2.55rem, 7vw, 6.4rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.84;
}

.camp-copy p {
    max-width: 680px;
    color: #4b5f73;
    font-size: 1.05rem;
    font-weight: 650;
    margin: 16px 0 22px;
}

.camp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.camp-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 24px;
}

.camp-facts div {
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.76);
    padding: 12px;
}

.camp-facts strong {
    display: block;
    color: var(--orange);
    font-size: 1.2rem;
    line-height: 1;
}

.camp-facts span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.camp-stack {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 14px;
}

.camp-stack img {
    width: min(280px, 100%);
    border-radius: 26px;
    filter: drop-shadow(0 26px 44px rgba(20, 32, 51, 0.18));
    cursor: pointer;
    transition: filter 220ms ease;
}

.camp-stack img:hover {
    animation: character-magic 900ms ease both;
    filter: drop-shadow(0 30px 48px rgba(20, 32, 51, 0.24)) saturate(1.14);
}

.camp-badge-list {
    display: grid;
    gap: 8px;
    width: min(290px, 100%);
}

.camp-badge-list span {
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #31435b;
    font-size: 0.82rem;
    font-weight: 900;
    padding: 8px 12px;
    box-shadow: 0 12px 28px rgba(20, 32, 51, 0.08);
}

.camp-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.camp-preview-grid article,
.day-flow,
.workshop-timeline div {
    border: 1px solid rgba(20, 32, 51, 0.08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--soft-shadow);
}

.camp-preview-grid article {
    padding: 18px;
}

.camp-preview-grid span,
.day-flow span,
.workshop-timeline span {
    color: #006d71;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.camp-preview-grid h3 {
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 900;
    margin-top: 7px;
}

.camp-preview-grid p {
    color: var(--muted);
    font-size: 0.88rem;
    margin-top: 8px;
}

.day-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-top: 12px;
    padding: 14px;
}

.day-flow strong {
    border-radius: 999px;
    background: rgba(0, 167, 168, 0.1);
    color: #006d71;
    font-size: 0.82rem;
    padding: 7px 10px;
}

.workshop-section {
    padding-top: 38px;
    padding-bottom: 38px;
}

.workshop-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.workshop-timeline div {
    min-height: 130px;
    padding: 18px;
}

.workshop-timeline strong {
    display: block;
    color: var(--ink);
    font-size: 1.03rem;
    line-height: 1.15;
    margin-top: 10px;
}

.studio-layout,
.inscription-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
    gap: 42px;
    align-items: center;
}

.studio-copy {
    max-width: 590px;
}

.learning-steps {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.learning-steps div {
    display: grid;
    grid-template-columns: 52px minmax(0, 120px) minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    border-bottom: 1px solid rgba(20, 32, 51, 0.1);
    padding: 14px 0;
}

.learning-steps span {
    color: var(--teal);
    font-size: 0.8rem;
    font-weight: 900;
}

.learning-steps strong {
    color: var(--ink);
    font-weight: 900;
}

.learning-steps p {
    color: var(--muted);
    font-size: 0.94rem;
}

.studio-visual {
    position: relative;
}

.studio-visual img {
    width: min(520px, 100%);
    margin-left: auto;
    border-radius: 44px;
    filter: drop-shadow(0 30px 55px rgba(20, 32, 51, 0.16));
    cursor: pointer;
    transition: filter 220ms ease;
}

.studio-visual img:hover {
    animation: character-listen 820ms ease both;
    filter: drop-shadow(0 36px 58px rgba(20, 32, 51, 0.2)) saturate(1.1);
}

.studio-note {
    position: absolute;
    left: 6%;
    bottom: 9%;
    display: grid;
    gap: 2px;
    max-width: 230px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--soft-shadow);
    padding: 16px;
    backdrop-filter: blur(16px);
}

.studio-note strong {
    color: var(--ink);
    font-size: 1.1rem;
}

.studio-note span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 650;
}

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

.character-card {
    display: grid;
    min-height: 268px;
    align-content: start;
    padding: 12px;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.character-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.character-card img {
    width: 100%;
    aspect-ratio: 1.12;
    border-radius: var(--radius);
    background: var(--paper-strong);
    object-fit: cover;
    cursor: pointer;
    transform-origin: 50% 78%;
    transition: filter 220ms ease;
}

.character-card:hover img {
    animation: character-wave 760ms ease both;
    filter: saturate(1.13) drop-shadow(0 12px 20px rgba(20, 32, 51, 0.14));
}

.character-card h3 {
    margin-top: 12px;
}

.character-role {
    color: #006d71;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-top: 4px;
    text-transform: uppercase;
}

.family-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.6fr);
    gap: 34px;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(20, 32, 51, 0.08);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 252, 255, 0.86));
    box-shadow: var(--shadow);
    padding: 34px;
}

.trust-list {
    display: grid;
    gap: 11px;
    margin-top: 24px;
    list-style: none;
}

.trust-list li {
    position: relative;
    color: #31435b;
    font-weight: 750;
    padding-left: 30px;
}

.trust-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(130, 217, 67, 0.16);
}

.family-visual img {
    width: min(330px, 100%);
    margin: 0 auto;
    border-radius: 36px;
}

.inscription-section {
    padding-bottom: 100px;
}

.inscription-intro {
    align-self: start;
    position: sticky;
    top: 112px;
}

.form-lummi {
    width: min(360px, 92%);
    border-radius: 34px;
    margin-top: 28px;
    filter: drop-shadow(0 24px 42px rgba(20, 32, 51, 0.14));
    cursor: pointer;
    transition: filter 220ms ease;
}

.form-lummi:hover {
    animation: character-point 820ms ease both;
    filter: drop-shadow(0 30px 46px rgba(20, 32, 51, 0.2)) saturate(1.12);
}

.inscription-form {
    display: grid;
    gap: 22px;
    border: 1px solid rgba(20, 32, 51, 0.09);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    padding: 28px;
}

.form-section {
    display: grid;
    gap: 16px;
}

.form-section h3 {
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 900;
}

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

label {
    display: grid;
    gap: 8px;
}

label span {
    color: #31435b;
    font-size: 0.88rem;
    font-weight: 850;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(20, 32, 51, 0.14);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    outline: none;
    padding: 13px 14px;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(0, 167, 168, 0.13);
}

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

.success-message {
    border-radius: var(--radius);
    background: rgba(130, 217, 67, 0.18);
    color: #236600;
    font-weight: 850;
    padding: 13px 15px;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--teal), var(--green));
    color: var(--ink);
    box-shadow: 0 18px 34px rgba(0, 167, 168, 0.22);
}

.submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    transform: none;
}

.footer {
    background: #101827;
    color: var(--white);
    padding: 42px 20px;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr) minmax(220px, auto);
    gap: 22px;
    align-items: center;
}

.footer .brand {
    color: var(--white);
}

.footer p {
    color: rgba(255, 255, 255, 0.74);
    font-weight: 650;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.footer-links a {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.88rem;
    font-weight: 800;
    padding: 8px 12px;
}

.summer-page .site-header {
    position: sticky;
    top: 16px;
    left: auto;
    right: auto;
    margin: 16px auto 0;
    transform: none;
}

.summer-page-main {
    padding-top: 34px;
}

.summer-hero {
    padding: 24px 20px 70px;
}

.summer-hero-inner {
    display: grid;
    width: min(1120px, 100%);
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.64fr);
    gap: 42px;
    align-items: center;
    margin: 0 auto;
}

.summer-hero-copy h1 {
    max-width: 800px;
    color: var(--ink);
    font-size: clamp(3.4rem, 10vw, 8.2rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.82;
}

.summer-hero-copy > p:not(.eyebrow) {
    max-width: 680px;
    color: #31435b;
    font-size: clamp(1.1rem, 2vw, 1.42rem);
    font-weight: 680;
    margin: 22px 0 28px;
}

.summer-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    max-width: 760px;
    margin-top: 28px;
}

.summer-meta div {
    border: 1px solid rgba(20, 32, 51, 0.08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.76);
    padding: 14px;
}

.summer-meta strong {
    display: block;
    color: var(--orange);
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1;
}

.summer-meta span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    margin-top: 6px;
}

.summer-hero-art {
    position: relative;
    display: grid;
    justify-items: center;
}

.summer-hero-art img {
    width: min(410px, 100%);
    border-radius: 36px;
    filter: drop-shadow(0 30px 58px rgba(20, 32, 51, 0.18));
    animation: floaty 6.8s ease-in-out infinite;
}

.summer-hero-note {
    width: min(300px, 90%);
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--soft-shadow);
    margin-top: -30px;
    padding: 16px;
    backdrop-filter: blur(16px);
}

.summer-hero-note strong {
    display: block;
    color: var(--ink);
    font-size: 1.08rem;
}

.summer-hero-note span {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.summer-section {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 52px 0;
}

.summer-section-header {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
    gap: 30px;
    align-items: end;
    margin-bottom: 24px;
}

.summer-section-header h2,
.age-lab-copy h2,
.summer-cta h2 {
    color: var(--ink);
    font-size: clamp(2.2rem, 5.5vw, 4.8rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.9;
}

.summer-section-header p,
.age-lab-copy p,
.summer-cta p {
    color: #4b5f73;
    font-weight: 680;
}

.summer-week-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.summer-week-card,
.age-panel-card,
.summer-day-step,
.summer-trust-card {
    border: 1px solid rgba(20, 32, 51, 0.08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--soft-shadow);
}

.summer-week-card {
    display: grid;
    min-height: 290px;
    align-content: start;
    padding: 20px;
}

.summer-week-card img {
    width: 100%;
    aspect-ratio: 1.16;
    border-radius: var(--radius);
    object-fit: cover;
    margin-bottom: 16px;
}

.summer-week-card span,
.age-panel-card span,
.summer-day-step span,
.summer-trust-card span {
    color: #006d71;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.summer-week-card h3,
.age-panel-card h3,
.summer-day-step h3,
.summer-trust-card h3 {
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.1;
    margin-top: 8px;
}

.summer-week-card p,
.age-panel-card p,
.summer-day-step p,
.summer-trust-card p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

.age-lab {
    display: grid;
    grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.age-lab-copy {
    position: sticky;
    top: 110px;
}

.age-switcher {
    display: grid;
    gap: 9px;
    margin-top: 24px;
}

.age-switcher button {
    border: 1px solid rgba(20, 32, 51, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    cursor: pointer;
    font-weight: 900;
    padding: 12px 14px;
    text-align: left;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.age-switcher button:hover,
.age-switcher button.is-active {
    background: var(--ink);
    color: var(--white);
    transform: translateX(4px);
}

.age-panels {
    display: grid;
}

.age-panel {
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.age-panel.is-active {
    display: grid;
}

.age-panel-card {
    padding: 20px;
}

.summer-day-grid,
.summer-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.summer-day-step {
    min-height: 160px;
    padding: 20px;
}

.summer-trust-card {
    padding: 22px;
}

.summer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
    gap: 24px;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(20, 32, 51, 0.08);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 252, 255, 0.9)),
        linear-gradient(135deg, rgba(0, 167, 168, 0.18), rgba(255, 230, 109, 0.22));
    box-shadow: var(--shadow);
    padding: clamp(24px, 5vw, 44px);
}

.summer-cta img {
    width: min(280px, 100%);
    justify-self: center;
    border-radius: 28px;
    filter: drop-shadow(0 24px 42px rgba(20, 32, 51, 0.16));
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floaty {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }
    50% {
        transform: translateY(-16px) rotate(1.2deg);
    }
}

@keyframes character-wave {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    28% {
        transform: translateY(-7px) rotate(-4deg) scale(1.04);
    }
    58% {
        transform: translateY(-4px) rotate(3deg) scale(1.03);
    }
}

@keyframes character-pop {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    38% {
        transform: translateY(-14px) rotate(-3deg) scale(1.07);
    }
    68% {
        transform: translateY(-8px) rotate(2deg) scale(1.04);
    }
}

@keyframes character-magic {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    35% {
        transform: translateY(-10px) rotate(4deg) scale(1.06);
    }
    70% {
        transform: translateY(-5px) rotate(-2deg) scale(1.03);
    }
}

@keyframes character-listen {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    30% {
        transform: translateY(-7px) rotate(-1.5deg) scale(1.035);
    }
    62% {
        transform: translateY(-4px) rotate(1.5deg) scale(1.025);
    }
}

@keyframes character-point {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    34% {
        transform: translateY(-8px) rotate(-3deg) scale(1.045);
    }
    68% {
        transform: translateY(-5px) rotate(2deg) scale(1.025);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 1040px) {
    .hero-inner,
    .camp-portal,
    .summer-hero-inner,
    .summer-section-header,
    .age-lab,
    .summer-cta,
    .studio-layout,
    .inscription-layout,
    .section-heading.aligned {
        grid-template-columns: 1fr;
    }

    .hero-world {
        min-height: 590px;
        order: -1;
    }

    .hero-orbit {
        inset: 26px 18% 34px;
    }

    .route-grid,
    .mission-grid,
    .camp-preview-grid,
    .summer-week-grid,
    .age-panel,
    .summer-day-grid,
    .summer-trust-grid,
    .workshop-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .inscription-intro {
        position: static;
    }

    .age-lab-copy {
        position: static;
    }
}

@media (max-width: 780px) {
    .site-header {
        top: 10px;
        width: calc(100% - 20px);
    }

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

    .site-nav {
        position: fixed;
        top: 84px;
        left: 10px;
        right: 10px;
        display: none;
        border: 1px solid rgba(20, 32, 51, 0.1);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: var(--shadow);
        padding: 10px;
    }

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

    .site-nav a {
        border-radius: 12px;
        padding: 13px 14px;
    }

    .hero-section {
        padding-top: 104px;
    }

    .hero-copy h1 {
        font-size: clamp(3.4rem, 22vw, 5.1rem);
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-stats,
    .camp-facts,
    .summer-meta,
    .route-grid,
    .mission-grid,
    .camp-preview-grid,
    .summer-week-grid,
    .age-panel,
    .summer-day-grid,
    .summer-trust-grid,
    .workshop-timeline,
    .character-grid,
    .family-panel,
    .form-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        max-width: none;
    }

    .world-chip {
        display: none;
    }

    .hero-orbit {
        display: none;
    }

    .hero-world {
        min-height: auto;
        padding: 0 0 26px;
    }

    .hero-video-card {
        width: min(340px, 86vw);
        border-radius: 26px;
    }

    .section {
        padding: 66px 16px;
    }

    .section-heading,
    .section-heading.aligned {
        text-align: left;
    }

    .route-card {
        min-height: auto;
    }

    .camp-portal,
    .summer-cta {
        padding: 22px;
    }

    .camp-portal::before {
        display: none;
    }

    .summer-section {
        width: calc(100% - 32px);
        padding: 42px 0;
    }

    .summer-hero {
        padding-top: 10px;
    }

    .summer-hero-art {
        order: -1;
    }

    .learning-steps div {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .learning-steps p {
        grid-column: 2;
    }

    .family-panel,
    .inscription-form {
        padding: 22px;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 440px) {
    .summer-nudge {
        right: 14px;
        bottom: 14px;
        grid-template-columns: 54px minmax(0, 1fr);
        padding: 10px 12px 10px 10px;
    }

    .summer-nudge img {
        width: 54px;
        height: 54px;
        border-radius: 16px;
    }

    .brand span {
        font-size: 0.96rem;
    }

    .brand-mark {
        width: 39px;
        height: 39px;
    }

    .hero-peek {
        display: none;
    }

    .studio-visual img,
    .form-lummi {
        border-radius: 24px;
    }

    .section-heading h2,
    .studio-copy h2,
    .family-copy h2,
    .inscription-intro h2,
    .summer-section-header h2,
    .age-lab-copy h2,
    .summer-cta h2 {
        font-size: 2.2rem;
    }
}
