/* ==========================================================================
   Street Dance York — shared styles
   Look & feel: warm stone background, teal + coral highlight pills,
   oversized geometric type, tall pill shapes and dot-grid details.
   ========================================================================== */

:root {
    --bg: #e6e3dc;
    --bg-deep: #dcd6ca;
    --paper: #f5f3ef;
    --white: #ffffff;
    --ink: #151d1c;
    --ink-soft: #3c4644;
    --muted: #66706e;
    --teal: #1b8a82;
    --teal-dark: #126660;
    --coral: #ea5a4f;
    --coral-dark: #cc4238;
    --yellow: #f3c131;
    --line: rgba(21, 29, 28, 0.12);
    --mint: #dcede9;
    --pink: #e0569b;

    --font-display: "Sora", "Helvetica Neue", Arial, sans-serif;
    --font-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;

    --radius: 22px;
    --radius-lg: 36px;
    --pill: 999px;
    --shadow: 0 18px 40px -22px rgba(21, 29, 28, 0.35);
    --wrap: 1180px;
    --gutter: clamp(16px, 4vw, 40px);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
p { margin: 0 0 1em; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 0.5em;
}

h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section { padding: clamp(64px, 10vw, 130px) 0; position: relative; }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: var(--paper); }

.nowrap { white-space: nowrap; }

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.skip-link {
    position: absolute;
    left: 16px; top: -60px;
    background: var(--ink); color: var(--white);
    padding: 10px 16px; border-radius: var(--pill);
    z-index: 200;
}
.skip-link:focus { top: 16px; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

/* ---------- Highlight pills (the signature "tag" words) ---------- */
.hl {
    display: inline-block;
    padding: 0.02em 0.38em 0.08em;
    border-radius: 0.5em;
    line-height: 1.15;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}
.hl--teal  { background: var(--teal);  color: var(--white); }
.hl--coral { background: var(--coral); color: var(--white); }
.hl--ink   { background: var(--ink);   color: var(--white); }
.hl--yellow{ background: var(--yellow);color: var(--ink); }
.hl--line  { box-shadow: inset 0 0 0 2px var(--ink); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal-dark);
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--yellow);
    flex: none;
}

.lead { font-size: clamp(1.1rem, 1.6vw, 1.25rem); color: var(--ink-soft); }

/* dot-grid decoration */
.dots {
    position: absolute;
    width: 120px; height: 90px;
    background-image: radial-gradient(var(--ink) 1.4px, transparent 1.6px);
    background-size: 14px 14px;
    opacity: 0.35;
    pointer-events: none;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: var(--pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--teal  { background: var(--teal);  color: var(--white); }
.btn--teal:hover  { background: var(--teal-dark); }
.btn--coral { background: var(--coral); color: var(--white); }
.btn--coral:hover { background: var(--coral-dark); }
.btn--ink   { background: var(--ink);   color: var(--white); }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--small { padding: 9px 18px; font-size: 0.85rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Header / nav ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(230, 227, 220, 0.88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
}
.logo__mark { width: 40px; height: 40px; flex: none; }
.logo__text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}
.logo__text span { display: block; color: var(--teal); }

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0; padding: 0;
}
.nav__links a {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 9px 18px;
    border-radius: var(--pill);
    transition: background-color .2s ease, color .2s ease;
}
.nav__links a:hover { background: var(--white); }
.nav__links a[aria-current="page"] { background: var(--ink); color: var(--white); }
.nav__links .nav__cta { background: var(--teal); color: var(--white); }
.nav__links .nav__cta:hover { background: var(--teal-dark); }
.nav__links .nav__cta[aria-current="page"] { background: var(--coral); }

.nav__toggle {
    display: none;
    width: 46px; height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    cursor: pointer;
    position: relative;
}
.nav__toggle span {
    position: absolute;
    left: 13px; right: 13px;
    height: 2px;
    background: var(--white);
    transition: transform .25s ease, opacity .2s ease;
}
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 22px; }
.nav__toggle span:nth-child(3) { top: 28px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 820px) {
    .nav__toggle { display: block; }
    /* Full-height mobile menu under the header */
    .nav__links {
        position: fixed;
        top: 76px; left: 0; right: 0;
        height: calc(100vh - 76px);
        height: calc(100dvh - 76px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px var(--gutter) max(24px, env(safe-area-inset-bottom));
        overflow-y: auto;
        background: var(--bg);
        background-image: radial-gradient(rgba(21, 29, 28, 0.08) 1.4px, transparent 1.6px);
        background-size: 16px 16px;
        border-top: 1px solid var(--line);
        opacity: 0;
        transform: translateY(-16px);
        visibility: hidden;
        transition: opacity .3s ease, transform .3s ease, visibility .3s;
    }
    .nav__links.is-open { opacity: 1; transform: none; visibility: visible; }
    .nav__links li { opacity: 0; transform: translateX(-24px); transition: opacity .35s ease, transform .35s ease; }
    .nav__links.is-open li { opacity: 1; transform: none; }
    .nav__links.is-open li:nth-child(2) { transition-delay: .05s; }
    .nav__links.is-open li:nth-child(3) { transition-delay: .1s; }
    .nav__links.is-open li:nth-child(4) { transition-delay: .15s; }
    .nav__links.is-open li:nth-child(5) { transition-delay: .2s; }
    .nav__links a {
        display: block;
        padding: 16px 4px;
        border-radius: 0;
        border-bottom: 2px solid var(--ink);
        font-size: clamp(1.8rem, 9vw, 2.6rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        text-transform: uppercase;
    }
    .nav__links a:hover { background: transparent; color: var(--coral); }
    .nav__links a[aria-current="page"] { background: transparent; color: var(--coral); }
    .nav__links .nav__cta {
        margin-top: 24px;
        padding: 18px 22px;
        border: 2px solid var(--ink);
        border-radius: var(--pill);
        background: var(--coral);
        box-shadow: 4px 4px 0 var(--ink);
        color: var(--white);
        font-size: 1.4rem;
        text-align: center;
    }
    .nav__links .nav__cta:hover, .nav__links .nav__cta[aria-current="page"] { background: var(--coral-dark); color: var(--white); }
    .nav__extra {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-top: auto;
        padding-top: 28px;
        font-weight: 600;
        color: var(--ink-soft);
    }
    .nav__extra .adult-badge { margin: 0 0 4px; font-size: 0.75rem; }
    body.menu-open { overflow: hidden; }
}
@media (min-width: 821px) { .nav__extra { display: none; } }

/* ---------- Pill shapes ---------- */
.pill {
    position: absolute;
    border-radius: var(--pill);
    background: var(--white);
}

/* ---------- "Adults only" badge ---------- */
.adult-badge {
    display: inline-block;
    vertical-align: 0.15em;
    margin-right: 10px;
    padding: 5px 12px;
    border-radius: var(--pill);
    background: var(--coral);
    color: var(--white);
    font-size: 0.72em;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ---------- Home hero ---------- */
.hero {
    position: relative;
    padding: clamp(28px, 5vw, 56px) 0 clamp(60px, 8vw, 100px);
    overflow: hidden;
    overflow: clip; /* clip (not hidden) so the pinned story can stick */
}
.hero__stage { position: relative; }

.hero__title {
    position: relative;
    z-index: 2;
    font-size: clamp(3rem, 9.5vw, 8rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    margin: 0;
}
.hero__title .line { display: block; }
.hero__title .line--2 { text-align: right; }
.hero__title .line--3 {
    font-size: clamp(0.95rem, 1.8vw, 1.3rem);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.3;
    text-transform: none;
    margin-top: 22px;
    max-width: 44ch;
}

.hero__deco { background: var(--white); z-index: 0; }
.hero__deco--a { width: 15%; height: 520px; left: 2%; top: 150px; }
.hero__deco--b { width: 15%; height: 420px; right: 3%; top: 60px; }

.hero__body {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 64px);
    margin-top: clamp(56px, 8vw, 110px);
    align-items: start;
}
.hero__intro {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0;
}
.hero__text { max-width: 560px; margin: 0; color: var(--ink-soft); font-size: 1.1rem; }
.hero__text strong { color: var(--ink); }
.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 26px 0 30px;
    padding: 0;
    list-style: none;
}
.chip.chip--adult { background: var(--coral); color: var(--white); letter-spacing: 0.04em; }
.chip.chip--start { background: var(--yellow); color: var(--ink); }
.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: var(--pill);
    background: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
}
.chip svg { width: 16px; height: 16px; color: var(--teal); flex: none; }

.hero .dots--1 { right: 36%; top: 40px; }
.hero .dots--2 { left: 42%; bottom: 20px; }

/* Animated story stage */
.stage {
    position: relative;
    z-index: 2;
    margin-top: clamp(24px, 4vw, 44px);
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--ink);
    box-shadow: var(--shadow);
    isolation: isolate;
}
.stage svg#stageSvg { display: block; width: 100%; height: 100%; }
.stage__fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stage::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(10, 14, 14, 0.55), transparent);
    pointer-events: none;
}

.stage__caption {
    position: absolute;
    z-index: 2;
    left: clamp(12px, 2vw, 24px);
    top: clamp(12px, 2vw, 24px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 6px 16px 6px 6px;
    border-radius: var(--pill);
    background: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(0.8rem, 1.4vw, 1rem);
    box-shadow: 0 6px 20px -8px rgba(0, 0, 0, 0.35);
}
.stage__step {
    display: grid;
    place-items: center;
    width: 2.2em; height: 2.2em;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    font-size: 0.85em;
}

.stage__controls {
    position: absolute;
    z-index: 3;
    left: clamp(12px, 2vw, 24px);
    right: clamp(12px, 2vw, 24px);
    bottom: clamp(10px, 1.8vw, 20px);
    display: flex;
    align-items: center;
    gap: 14px;
}
.stage__play {
    flex: none;
    width: 44px; height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    display: grid;
    place-items: center;
    cursor: pointer;
}
.stage__play svg { width: 20px; height: 20px; fill: currentColor; }
.stage__play .i-play { display: none; }
.stage.is-paused .stage__play .i-play { display: block; }
.stage.is-paused .stage__play .i-pause { display: none; }

.stage__chapters {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr) 2.2fr 1.2fr;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.stage__chapters button {
    --progress: 0;
    width: 100%;
    padding: 8px 0 2px;
    border: 0;
    background: none;
    cursor: pointer;
    text-align: left;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
}
.stage__chapters .bar {
    position: relative;
    display: block;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.35);
    overflow: hidden;
}
.stage__chapters .bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--yellow);
    transform-origin: left;
    transform: scaleX(var(--progress));
}
.stage__chapters .lbl { display: block; margin-top: 6px; opacity: 0.8; text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5); }
.stage__chapters button[aria-current="step"] .lbl { opacity: 1; }
.stage__chapters button:hover .bar { background: rgba(255, 255, 255, 0.55); }

.stage__end {
    position: absolute;
    z-index: 3;
    right: clamp(12px, 3vw, 40px);
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: clamp(16px, 2.4vw, 28px);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-40%) scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}
.stage__end.is-visible { opacity: 1; visibility: visible; transform: translateY(-50%) scale(1); }
.stage__end p {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.3rem, 2.6vw, 2.2rem);
    letter-spacing: -0.03em;
}

/* Scroll-driven story: .story--scroll is added by JS */
.story__panel { display: none; width: 100%; }
.story__kicker {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--teal-dark);
}
.story__blurb { margin: 0; color: var(--ink-soft); }
.story--scroll { height: 500vh; }
.story--scroll .story__sticky {
    position: sticky;
    top: 76px;
    height: calc(100vh - 76px);
    height: calc(100svh - 76px);
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Full-bleed: the story breaks out of .wrap to the full page width */
.story {
    --edge: max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 0;
}
.story .stage { margin-top: 0; border-radius: 0; box-shadow: none; }
.story .stage__caption { left: var(--edge); }
.story .stage__controls { left: var(--edge); right: var(--edge); }
.story .stage__end { right: var(--edge); }
.story--scroll .stage {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
}
.hero { padding-top: 0; }

.stage__hint {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 72px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 10px 18px;
    border-radius: var(--pill);
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
}
.stage__hint.is-hidden { opacity: 0; pointer-events: none; }
.stage__mouse {
    position: relative;
    width: 16px; height: 24px;
    border: 2px solid currentColor;
    border-radius: 9px;
}
.stage__mouse::after {
    content: "";
    position: absolute;
    left: 50%; top: 4px;
    width: 3px; height: 6px;
    margin-left: -1.5px;
    border-radius: 2px;
    background: var(--yellow);
    animation: scroll-wheel 1.4s ease-in-out infinite;
}
@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    70% { transform: translateY(8px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

@media (max-width: 820px) {
    .hero__deco { display: none; }
    .hero__body { grid-template-columns: 1fr; }
    .hero .dots { display: none; }
    .stage { aspect-ratio: 4 / 3; border-radius: var(--radius); margin-left: calc(var(--gutter) * -0.5); margin-right: calc(var(--gutter) * -0.5); }
    .story--scroll { height: 380vh; }
    .story .stage { margin: 0; border-radius: 0; }
    /* Phones: the story fills the whole screen under the header */
    .story--scroll .story__sticky { padding: 0; }
    .story--scroll .stage__hint { display: none; }
    .story--scroll .stage__caption { top: 14px; left: 14px; font-size: 0.78rem; max-width: calc(100% - 28px); }
    .story--scroll .stage { width: 100%; height: 100%; aspect-ratio: auto; flex: none; }
    .story__panel { padding: 0 var(--gutter); }
    .story--scroll .story__panel { display: none; }
}
@media (max-width: 560px) {
    .stage__chapters .lbl { display: none; }
    .stage__chapters { grid-template-columns: repeat(3, 1fr) 2fr 1.2fr; gap: 5px; }
    .stage__play { width: 38px; height: 38px; }
    .stage__end { left: 12px; right: 12px; top: auto; bottom: 64px; transform: translateY(12px); flex-direction: row; align-items: center; justify-content: space-between; }
    .stage__end.is-visible { transform: none; }
    .stage__end .btn { padding: 10px 16px; font-size: 0.85rem; }
}
@media (prefers-reduced-motion: reduce) {
    .stage__end { transition: none; }
}

/* ---------- Story title card ---------- */
.stage__title {
    position: absolute;
    z-index: 4;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0 var(--edge, var(--gutter));
    font-size: clamp(3.2rem, 12.5vw, 12rem);
    font-weight: 800;
    line-height: 0.86;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    pointer-events: none;
}
.stage::before {
    content: "";
    position: absolute;
    z-index: 3;
    inset: 0;
    background: rgba(230, 227, 220, 0.72);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.stage.is-title::before { opacity: 1; }
.stage.is-title .stage__caption { opacity: 0; }
.stage__caption { transition: opacity 0.3s ease; }

.t-line {
    display: block;
    color: var(--ink);
    transition: transform 0.7s cubic-bezier(0.7, 0, 0.2, 1), opacity 0.5s ease;
}
.t-line--1 { transform: translateX(0) skewX(0); }
.t-line--2 { text-align: right; color: var(--coral); -webkit-text-stroke: 0; text-shadow: 0.04em 0.04em 0 var(--ink); }
.t-sub {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 0.5em;
    font-size: clamp(0.9rem, 1.6vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.3;
    text-transform: none;
    transition: transform 0.5s ease, opacity 0.4s ease;
}
.t-sub .adult-badge { margin: 0; font-size: 0.8em; }
.stage__title .t-h1 { margin: 0; font-size: inherit; font-weight: inherit; line-height: inherit; letter-spacing: inherit; }
.stage__title .t-sub { font-family: var(--font-display); margin: 0.5em 0 0; }
.stage__title:not(.is-in) .t-line--1 { transform: translateX(-110%) skewX(-18deg); opacity: 0; }
.stage__title:not(.is-in) .t-line--2 { transform: translateX(110%) skewX(-18deg); opacity: 0; }
.stage__title:not(.is-in) .t-sub { transform: translateY(40px); opacity: 0; }

/* ---------- Story facts (sticker style) ---------- */
.facts { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.fact {
    --r: 0deg; --fx: 0px; --fy: 0px;
    position: absolute;
    margin: 0;
    padding: 0.38em 0.7em 0.42em;
    border: 3px solid var(--ink);
    border-radius: 14px;
    box-shadow: 6px 6px 0 var(--ink);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1rem, 2.3vw, 2.1rem);
    line-height: 1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transform: translate(var(--fx), var(--fy)) rotate(calc(var(--r) * -3)) scale(0.7);
    transition: transform 0.55s cubic-bezier(0.2, 1.5, 0.35, 1), opacity 0.25s ease;
}
.fact.is-in { opacity: 1; transform: translate(0, 0) rotate(var(--r)) scale(1); }
.fact em {
    display: block;
    margin-top: 0.3em;
    font-style: normal;
    font-size: 0.55em;
    letter-spacing: 0.06em;
    opacity: 0.85;
}
.fact--coral { background: var(--coral); color: var(--white); }
.fact--teal { background: var(--teal); color: var(--white); }
.fact--yellow { background: var(--yellow); color: var(--ink); }
.fact--white { background: var(--white); color: var(--ink); }
.fact--xl { font-size: clamp(1.6rem, 4.4vw, 4.2rem); line-height: 0.95; border-width: 4px; box-shadow: 9px 9px 0 var(--ink); }
.fact--stamp {
    background: var(--coral);
    color: var(--white);
    font-size: clamp(2rem, 6vw, 5.6rem);
    padding: 0.2em 0.45em;
    border: 5px solid var(--white);
    outline: 4px solid var(--coral);
    box-shadow: 10px 10px 0 var(--ink);
    transform: rotate(var(--r)) scale(2.4);
}
.fact--stamp.is-in { transform: rotate(var(--r)) scale(1); }

/* ---------- Ticker ---------- */
.ticker {
    position: relative;
    z-index: 3;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 28px;
    padding: 16px 0;
    background: var(--ink);
    color: var(--yellow);
    overflow: hidden;
    transform: rotate(-2deg) scale(1.04);
}
.ticker__track {
    display: flex;
    gap: 28px;
    width: max-content;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.1rem, 2.6vw, 2.2rem);
    text-transform: uppercase;
    white-space: nowrap;
    animation: ticker 32s linear infinite;
}
.ticker__track span:nth-child(4n+1) { color: var(--white); }
.ticker__star { color: var(--coral); }
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 820px) {
    .fact { font-size: clamp(0.8rem, 4vw, 1.15rem); border-width: 2px; box-shadow: 3px 3px 0 var(--ink); border-radius: 9px; }
    .fact--xl { font-size: clamp(1.3rem, 7vw, 2rem); box-shadow: 4px 4px 0 var(--ink); }
    .fact--stamp { font-size: clamp(1.8rem, 10vw, 2.8rem); border-width: 3px; outline-width: 2px; box-shadow: 4px 4px 0 var(--ink); }
    .fact--minor { display: none; }
    .stage__title { font-size: clamp(2.6rem, 14vw, 5rem); }
    .t-sub { font-size: 0.8rem; }
    .ticker { margin-top: 8px; }
}
@media (prefers-reduced-motion: reduce) {
    .ticker__track { animation: none; }
    .fact, .t-line, .t-sub { transition: none; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    position: relative;
    padding: clamp(28px, 5vw, 64px) 0 clamp(48px, 6vw, 80px);
    overflow: hidden;
    overflow: clip;
}
.page-hero__grid {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.page-hero__title {
    margin: 0 0 clamp(28px, 4vw, 48px);
    font-size: clamp(2.6rem, 7.4vw, 7.6rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}
.page-hero__title .ph-line--accent { text-align: right; padding-right: 0.05em; }

/* Bottom row: intro | stickers | buttons */
.page-hero__meta {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr) auto;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
    padding-top: clamp(20px, 2.5vw, 28px);
    border-top: 2px solid var(--ink);
}
.page-hero__meta .page-hero__sub { margin: 0; }
.page-hero__meta .stickers { margin: 0; }
.page-hero__meta .btn-row { flex-wrap: nowrap; }
@media (max-width: 1100px) {
    .page-hero__meta { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
    .page-hero__meta .btn-row { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
    .page-hero__grid { min-height: 0; }
    .page-hero__title .ph-line--accent { text-align: left; }
    .page-hero__meta { grid-template-columns: 1fr; border-top-width: 0; padding-top: 0; }
    .page-hero__meta .btn-row { flex-wrap: wrap; }
}
.ph-line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.ph-line > span {
    display: inline-block;
    animation: ph-rise 0.8s cubic-bezier(0.2, 0.9, 0.25, 1) both;
    animation-delay: calc(var(--i) * 0.12s);
}
.ph-line--accent > span { color: var(--coral); text-shadow: 0.04em 0.04em 0 var(--ink); }
.ph-line--small { font-size: 0.42em; letter-spacing: -0.02em; margin-top: 0.25em; color: var(--teal-dark); }
@keyframes ph-rise {
    from { transform: translateY(110%) skewY(6deg); }
    to { transform: none; }
}
.page-hero__sub {
    max-width: 540px;
    margin: 0 0 24px;
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: var(--ink-soft);
    animation: ph-fade 0.6s ease 0.45s both;
}
.page-hero__sub .adult-badge { font-size: 0.72rem; }
@keyframes ph-fade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.stickers {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 12px;
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}
.sticker {
    --r: 0deg;
    padding: 8px 14px;
    border: 2px solid var(--ink);
    border-radius: 10px;
    box-shadow: 4px 4px 0 var(--ink);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transform: rotate(var(--r));
    animation: sticker-pop 0.55s cubic-bezier(0.2, 1.6, 0.35, 1) both;
    animation-delay: calc(0.6s + var(--i) * 0.12s);
}
.sticker--yellow { background: var(--yellow); }
.sticker--coral { background: var(--coral); color: var(--white); }
.sticker--teal { background: var(--teal); color: var(--white); }
.sticker--white { background: var(--white); text-transform: none; }
@keyframes sticker-pop {
    from { opacity: 0; transform: translateY(18px) rotate(calc(var(--r) * -4)) scale(0.6); }
    to { opacity: 1; transform: rotate(var(--r)); }
}
.page-hero .btn-row { animation: ph-fade 0.6s ease 1.05s both; }

.page-hero__art { position: relative; animation: ph-fade 0.8s ease 0.2s both; }
.mini-dancer { display: block; width: 100%; max-width: 440px; height: auto; margin: 0 auto; overflow: visible; }

.thanks__dancer { width: 220px; margin: 0 auto 8px; }

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    font-size: 0.85rem;
    color: var(--muted);
}
.breadcrumb li + li::before { content: "/"; margin-right: 6px; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

@media (max-width: 820px) {
    .page-hero__grid { grid-template-columns: 1fr; }
    .page-hero__art { order: -1; }
    .mini-dancer { max-width: 170px; }
}
@media (prefers-reduced-motion: reduce) {
    .ph-line > span, .page-hero__sub, .sticker, .page-hero .btn-row, .page-hero__art { animation: none; }
}

/* ---------- Image band (the wide photo strip) ---------- */
.band {
    position: relative;
    height: clamp(260px, 42vw, 520px);
    overflow: hidden;
    background: var(--ink);
}
.band img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 50% 45%;
    opacity: 0.9;
}
.band__caption {
    position: absolute;
    left: var(--gutter); bottom: 22px;
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.band__circles {
    position: absolute;
    right: -40px; top: -60px;
    display: flex;
    gap: 14px;
}
.band__circles span {
    width: clamp(90px, 14vw, 190px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--bg);
}

/* ---------- Split (text + media) ---------- */
.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
}
.split--reverse .split__media { order: -1; }
.split h2 { margin-bottom: 24px; }

.media-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--ink);
    aspect-ratio: 4 / 3.4;
    box-shadow: var(--shadow);
}
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.media-card--tall { aspect-ratio: 3 / 3.6; }

@media (max-width: 820px) {
    .split { grid-template-columns: 1fr; }
    .split--reverse .split__media { order: 0; }
}

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before {
    content: "";
    flex: none;
    width: 22px; height: 22px;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E") center / 13px no-repeat;
}

/* ---------- Feature cards (made for adults) ---------- */
.features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.feature {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
}
.feature h3 { margin: 22px 0 10px; }
.feature p { margin: 0; color: var(--ink-soft); }
.feature__icon {
    display: grid;
    place-items: center;
    width: 56px; height: 56px;
    border-radius: 50%;
    color: var(--white);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature__icon--coral { background: var(--coral); }
.feature__icon--teal { background: var(--teal); }
.feature__icon--yellow { background: var(--yellow); color: var(--ink); }
.feature__icon--ink { background: var(--ink); }
@media (max-width: 1000px) { .features { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) {
    .features { grid-template-columns: 1fr; gap: 12px; }
    .feature { display: grid; grid-template-columns: 48px 1fr; column-gap: 16px; padding: 20px; border-radius: var(--radius); }
    .feature__icon { width: 48px; height: 48px; grid-row: span 2; }
    .feature__icon svg { width: 22px; height: 22px; }
    .feature h3 { margin: 2px 0 4px; font-size: 1.1rem; }
    .feature p { font-size: 0.95rem; }
}

.card__title { font-size: 1.4rem; margin-bottom: 26px; }
.card--accent .card__title { margin-bottom: 8px; }
.card--accent > .muted { margin-bottom: 26px; }
.card__cta { margin-top: 26px; }
.location-card__btn { margin-top: 28px; }

/* ---------- Style cards (street / commercial / k-pop) ---------- */
.styles-head { max-width: 760px; margin-bottom: 48px; }
.style-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
@media (max-width: 1100px) { .style-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.style-card--soon {
    background: transparent;
    border: 2px dashed rgba(21, 29, 28, 0.25);
}
.style-card--soon .style-card__num { color: var(--pink); }
.soon-badge {
    position: absolute;
    top: 18px; right: 18px;
    padding: 6px 12px;
    border: 2px solid var(--ink);
    border-radius: var(--pill);
    background: var(--yellow);
    box-shadow: 3px 3px 0 var(--ink);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transform: rotate(4deg);
}
.style-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px 28px 30px;
    overflow: hidden;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}
.style-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.style-card__num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 4.5rem;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 26px;
}
.style-card:nth-child(1) .style-card__num { color: var(--teal); }
.style-card:nth-child(2) .style-card__num { color: var(--yellow); -webkit-text-stroke: 1.5px var(--ink); }
.style-card:nth-child(3) .style-card__num { color: var(--coral); }
.style-card:nth-child(4) .style-card__num { color: var(--pink); }
.style-card h3 { font-size: 1.5rem; }
.style-card p { color: var(--ink-soft); flex: 1; }
.style-card .link-arrow { margin-top: 10px; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--teal-dark);
    text-decoration: none;
}
.link-arrow::after { content: "→"; transition: transform .2s ease; }
.link-arrow:hover::after, .style-card:hover .link-arrow::after { transform: translateX(4px); }

@media (max-width: 900px) {
    .style-grid { grid-template-columns: 1fr; gap: 14px; }
    .style-card { padding: 24px 22px; border-radius: var(--radius); }
    .style-card__num { font-size: 2.6rem; margin-bottom: 12px; }
}

/* ---------- Rotation strip (week to week) ---------- */
.rotation {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 40px;
}
.rotation__week {
    border-radius: var(--radius);
    padding: 20px;
    background: var(--bg);
}
.rotation__week small {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}
.rotation__week strong { font-family: var(--font-display); font-size: 1.1rem; }
.rotation__week--teal  { background: var(--teal);  color: var(--white); }
.rotation__week--coral { background: var(--coral); color: var(--white); }
.rotation__week--ink   { background: var(--ink);   color: var(--white); }
.rotation__week--teal small,
.rotation__week--coral small,
.rotation__week--ink small { color: rgba(255,255,255,.75); }
@media (max-width: 720px) { .rotation { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- Class info + pricing ---------- */
.info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(26px, 4vw, 44px);
}
/* Soft mint card used for forms and highlights */
.card--accent { background: var(--mint); color: var(--ink); box-shadow: inset 0 0 0 1px rgba(27, 138, 130, 0.18); }
.card--accent .muted { color: var(--ink-soft); }

.detail-list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 22px; }
.detail-list li { display: flex; gap: 14px; align-items: flex-start; }
.detail-list .ico {
    flex: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--bg);
    color: var(--teal-dark);
}
.detail-list .ico svg { width: 19px; height: 19px; }
.detail-list__start .ico { background: var(--yellow); color: var(--ink); }
.detail-list strong { display: block; font-family: var(--font-display); font-size: 0.95rem; }
.detail-list span { color: var(--ink-soft); font-size: 0.95rem; }

.prices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.price {
    position: relative;
    border-radius: var(--radius);
    padding: 20px;
    background: var(--bg);
}
.price--feature { background: var(--teal); color: var(--white); }
.price__label { font-size: 0.85rem; font-weight: 600; opacity: 0.85; }
.price__value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}
.price__note { font-size: 0.82rem; opacity: 0.85; }
.badge {
    position: absolute;
    top: -10px; right: 14px;
    background: var(--coral);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: var(--pill);
}
@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
    .price { padding: 16px; }
    .price__value { font-size: 1.9rem; }
    .card { padding: 24px 20px; border-radius: var(--radius); }
}

/* ---------- Forms ---------- */
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 0.88rem; font-weight: 600; }
.field input,
.field select,
.field textarea {
    width: 100%;
    font: inherit;
    font-size: 1rem;
    color: var(--ink);
    background: var(--paper);
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 13px 16px;
    transition: border-color .2s ease, background-color .2s ease;
}
.card--accent .field input,
.card--accent .field select,
.card--accent .field textarea { background: var(--white); border-color: rgba(21, 29, 28, 0.08); }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--teal); background: var(--white); color: var(--ink); }
.field textarea { resize: vertical; min-height: 130px; }
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form small { color: var(--muted); font-size: 0.82rem; }
.card--accent .form small { color: var(--ink-soft); }
.form .btn { justify-self: start; }

.form-alert {
    display: none;
    padding: 14px 18px;
    border-radius: 14px;
    background: #fde4e1;
    color: #8a2019;
    font-size: 0.95rem;
    font-weight: 600;
}
.form-alert.is-visible { display: block; }

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

/* ---------- Form call to action ---------- */
.card--form { position: relative; }
.form-sticker {
    position: absolute;
    top: -16px; right: 24px;
    padding: 7px 14px;
    border: 2px solid var(--ink);
    border-radius: var(--pill);
    background: var(--yellow);
    box-shadow: 3px 3px 0 var(--ink);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transform: rotate(4deg);
}
.form-cta { margin-bottom: 24px; }
.form-cta__title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 8px;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    letter-spacing: -0.03em;
}
.form-cta__arrow {
    flex: none;
    display: grid;
    place-items: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--coral);
    color: var(--white);
    animation: nudge 1.6s ease-in-out infinite;
}
.form-cta__arrow svg { width: 20px; height: 20px; }
.form-cta__text { margin: 0; color: var(--ink-soft); }
@keyframes nudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ---------- Floating "Get more info" button ---------- */
.float-cta {
    position: fixed;
    z-index: 90;
    right: 20px; bottom: 20px;
    padding: 14px 22px;
    border: 2px solid var(--ink);
    border-radius: var(--pill);
    background: var(--coral);
    color: var(--white);
    box-shadow: 4px 4px 0 var(--ink);
    font-family: var(--font-display);
    font-weight: 800;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) rotate(-2deg);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.float-cta.is-visible { opacity: 1; visibility: visible; transform: rotate(-2deg); }
.float-cta:hover { background: var(--coral-dark); }

/* ---------- Keyword copy block ---------- */
.seo-split {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: start;
}
.seo-split p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.05rem; }
.keyword-links { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 24px 0 0; padding: 0; }
.keyword-links a {
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid var(--ink);
    border-radius: var(--pill);
    background: var(--white);
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.keyword-links a:hover { background: var(--ink); color: var(--white); }
@media (max-width: 820px) { .seo-split { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .form-cta__arrow { animation: none; } }

/* ---------- Teachers ---------- */
.teacher-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.teacher {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 26px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 26px;
    align-items: start;
}
.teacher__photo {
    width: 150px;
    height: 220px;
    border-radius: var(--pill);
    overflow: hidden;
    background: var(--bg-deep);
    display: grid;
    place-items: center;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
}
.teacher__photo img { width: 100%; height: 100%; object-fit: cover; }
.teacher__role {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.teacher h3 { font-size: 1.5rem; margin-bottom: 8px; }
.teacher p { color: var(--ink-soft); font-size: 0.97rem; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 12px 0 0; }
.tags li {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--pill);
    background: var(--bg);
}
@media (max-width: 960px) { .teacher-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) {
    .teacher { grid-template-columns: 84px minmax(0, 1fr); gap: 16px; padding: 18px; border-radius: var(--radius); }
    .teacher__photo { width: 84px; height: 120px; font-size: 1.6rem; }
    .teacher h3 { font-size: 1.2rem; }
    .teacher p { font-size: 0.92rem; }
}

/* ---------- Classes page: info form split ---------- */
.info-split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}
.info-split h2 { margin-bottom: 16px; }
@media (max-width: 900px) { .info-split { grid-template-columns: 1fr; } }

/* What to bring (under the timeline) */
.bring { margin-top: 22px; padding: 20px 24px; border-radius: var(--radius); background: var(--paper); }
.bring__title { margin: 0 0 4px; font-family: var(--font-display); font-weight: 700; }
.bring .tags li { background: var(--white); }

/* Style panels */
.style-panels {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.style-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border-top: 8px solid var(--c, var(--teal));
    scroll-margin-top: 100px;
}
.style-panel--teal { --c: var(--teal); }
.style-panel--coral { --c: var(--coral); }
.style-panel--yellow { --c: var(--yellow); }
.style-panel--yellow .style-panel__num { -webkit-text-stroke: 1.5px var(--ink); }
.style-panel--ink { --c: var(--pink); }
.style-panel__num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--c);
    margin-bottom: 18px;
}
.style-panel h2 { font-size: 1.35rem; letter-spacing: -0.02em; margin-bottom: 12px; }
.style-panel p { color: var(--ink-soft); flex: 1; }
.style-panel .tags { margin-top: 8px; }
@media (max-width: 1100px) { .style-panels { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 900px) {
    .style-panels { grid-template-columns: 1fr; gap: 14px; }
    .style-panel { padding: 24px 22px; border-radius: var(--radius); }
    .style-panel__num { font-size: 2.2rem; margin-bottom: 10px; }
}

/* Heels coming-soon strip */
.soon-strip {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: 20px;
    padding: 30px 28px;
    border: 2px dashed rgba(21, 29, 28, 0.25);
    border-radius: var(--radius-lg);
    scroll-margin-top: 100px;
}
.soon-strip h2, .soon-strip h3 { font-size: 1.35rem; letter-spacing: -0.02em; margin-bottom: 6px; }
.soon-strip p { margin: 0; color: var(--ink-soft); max-width: 640px; }
.soon-strip .soon-badge { top: -16px; right: auto; left: 24px; }
@media (max-width: 700px) { .soon-strip { grid-template-columns: 1fr; padding: 30px 22px 24px; } }

/* FAQ in two columns on wide screens */
.faq--grid { max-width: none; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
@media (max-width: 900px) { .faq--grid { grid-template-columns: 1fr; } }

/* ---------- Timeline (class structure) ---------- */
.timeline { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.timeline li {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px 22px;
}
.timeline time {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--teal-dark);
}
.timeline h3 { font-size: 1.05rem; margin-bottom: 4px; }
.timeline p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
@media (max-width: 520px) { .timeline li { grid-template-columns: 1fr; gap: 6px; } }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; max-width: 860px; }
.faq details {
    background: var(--white);
    border-radius: var(--radius);
    padding: 0 24px;
}
.faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    flex: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--bg);
    font-size: 1.2rem;
    transition: transform .2s ease, background-color .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); background: var(--coral); color: var(--white); }
.faq details p { color: var(--ink-soft); padding-bottom: 8px; }

/* ---------- Location ---------- */
.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}
.map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 380px;
    background: var(--bg-deep);
}
.map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.location-grid address { font-style: normal; font-size: 1.15rem; line-height: 1.5; margin-bottom: 22px; }
.location-grid h3 { font-size: 1rem; margin: 26px 0 6px; }
.location-grid h3:first-child { margin-top: 0; }
.location-grid p { color: var(--ink-soft); font-size: 0.97rem; margin: 0; }
.card--accent.location-card p { color: var(--ink-soft); }
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; } }

/* ---------- Big statement / CTA ---------- */
.statement {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4.4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.35;
    max-width: 900px;
    margin: 0 auto;
}

.cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(30px, 5vw, 64px);
    border: 1px solid var(--line);
}
.cta-card h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0; }
.cta-card p { color: var(--ink-soft); }
@media (max-width: 820px) { .cta-card { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer-big {
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 5vw, 64px) 0 clamp(24px, 3vw, 40px);
}
.footer-big__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 10vw, 8.5rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
    margin: 0;
}
.footer-big__title span { display: block; }
.footer-big__title span:nth-child(2) { text-align: right; color: var(--teal); }
.footer-big .pill { background: var(--white); z-index: -1; }
.footer-big .pill--a { display: none; }
.footer-big .pill--b { display: none; }
.footer-big .wrap { position: relative; z-index: 1; }
.footer-big { isolation: isolate; }

.site-footer {
    border-top: 1px solid var(--line);
    padding: 36px 0 40px;
    font-size: 0.92rem;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 32px;
}
.site-footer h2 {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--muted);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer address { font-style: normal; }
.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.85rem;
}
.socials { display: flex; gap: 8px; margin-top: 16px; }
.socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: var(--white);
}
.socials svg { width: 17px; height: 17px; }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) {
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
    .site-footer__grid > :first-child, .site-footer__grid > :last-child { grid-column: 1 / -1; }
}

/* ---------- 404 page ---------- */
.lost { padding: clamp(40px, 7vw, 100px) 0 clamp(60px, 8vw, 110px); text-align: center; overflow: hidden; }
.lost__code {
    display: flex;
    justify-content: center;
    gap: 0.02em;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(7rem, 26vw, 20rem);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.06em;
}
.lost__code span { display: inline-block; animation: lost-drop 0.7s cubic-bezier(0.2, 1.5, 0.35, 1) both; }
.lost__code span:nth-child(2) { animation-delay: 0.1s; }
.lost__code span:nth-child(3) { animation-delay: 0.2s; }
.lost__zero { color: var(--coral); text-shadow: 0.04em 0.04em 0 var(--ink); animation-name: lost-spin !important; }
.lost__title { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.04em; margin: 18px 0 12px; }
.lost__text { max-width: 520px; margin: 0 auto 26px; }
.lost__stickers, .lost__buttons { justify-content: center; }
@keyframes lost-drop { from { opacity: 0; transform: translateY(-60px) rotate(-10deg); } to { opacity: 1; transform: none; } }
@keyframes lost-spin { from { opacity: 0; transform: rotate(-200deg) scale(0.4); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .lost__code span { animation: none !important; } }

/* ---------- Thank-you ---------- */
.thanks { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 80px 0; }
.thanks h1 { font-size: clamp(2.6rem, 8vw, 5.5rem); letter-spacing: -0.05em; font-weight: 800; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .btn, .style-card { transition: none; }
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-lg { margin-bottom: 48px; }
.muted { color: var(--muted); }
.max-700 { max-width: 700px; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; }
.stack > * + * { margin-top: 24px; }
