/* =========================================================
   Bitz & Pieces — Mobile Soft Play
   Modern, playful, responsive stylesheet
   ========================================================= */

:root {
    --pink:      #ff5a8c;
    --pink-dark: #e63e73;
    --purple:    #7b5cff;
    --blue:      #2bb7ff;
    --teal:      #16c9b8;
    --yellow:    #ffc23c;
    --orange:    #ff8a3c;

    --ink:       #2a2350;
    --ink-soft:  #5b5480;
    --muted:     #8a86a6;
    --line:      #ece9f6;
    --bg:        #ffffff;
    --bg-soft:   #f7f5ff;
    --bg-card:   #ffffff;

    --radius:    22px;
    --radius-sm: 14px;
    --shadow:    0 18px 40px -18px rgba(60, 40, 120, .35);
    --shadow-sm: 0 8px 22px -12px rgba(60, 40, 120, .35);

    --container: 1160px;
    --font-head: 'Baloo 2', system-ui, sans-serif;
    --font-body: 'Nunito', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    line-height: 1.1;
    color: var(--ink);
    margin: 0 0 .5em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; color: var(--ink-soft); }

a { color: var(--purple); text-decoration: none; transition: color .2s; }
a:hover { color: var(--pink); }

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

.container {
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--ink);
    color: #fff;
    padding: .6rem 1rem;
    border-radius: 0 0 10px 0;
    z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
    padding: .85rem 1.7rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: #fff;
    box-shadow: 0 12px 24px -10px rgba(123, 92, 255, .7);
    transition: transform .15s ease, box-shadow .2s ease, filter .2s;
}
.btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 30px -10px rgba(123, 92, 255, .8);
    filter: saturate(1.1);
}
.btn:active { transform: translateY(0); }

.btn-small { font-size: .95rem; padding: .6rem 1.2rem; }

.btn-outline {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
    box-shadow: none;
}
.btn-outline:hover { background: var(--purple); color: #fff; }

.btn-yellow {
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    color: var(--ink);
    box-shadow: 0 12px 24px -10px rgba(255, 138, 60, .7);
}
.btn-yellow:hover { color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .7rem 0;
    gap: 1rem;
}

.brand { display: flex; align-items: center; gap: .7rem; }
.brand-mark {
    position: relative;
    width: 42px; height: 42px;
    flex: none;
}
.brand-mark .dot {
    position: absolute;
    border-radius: 50%;
}
.dot-1 { width: 26px; height: 26px; background: var(--pink);   top: 0; left: 0; }
.dot-2 { width: 20px; height: 20px; background: var(--yellow); bottom: 0; left: 10px; }
.dot-3 { width: 18px; height: 18px; background: var(--blue);   top: 6px; right: 0; }

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.55rem;
    color: var(--ink);
    letter-spacing: -.01em;
}
.brand-sub {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--pink);
    font-weight: 700;
    margin-top: 3px;
}

.main-nav { display: flex; align-items: center; }
.nav-list {
    display: flex;
    align-items: center;
    gap: .3rem;
    list-style: none;
    margin: 0; padding: 0;
}
.nav-list a {
    display: block;
    padding: .55rem .95rem;
    border-radius: 999px;
    font-weight: 700;
    color: var(--ink);
    font-size: 1rem;
}
.nav-list a:hover { color: var(--pink); background: var(--bg-soft); }
.nav-list a.active { color: var(--pink); background: #ffe6ef; }
.nav-cta { margin-left: .5rem; }
.nav-cta a { color: #fff; }
.nav-cta a:hover { color: #fff; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 44px; height: 44px;
    background: var(--bg-soft);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 0 11px;
}
.nav-toggle span {
    height: 3px;
    background: var(--ink);
    border-radius: 3px;
    transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head p { font-size: 1.1rem; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .8rem;
    color: var(--purple);
    background: #efeaff;
    padding: .35rem .9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(1200px 500px at 80% -10%, #ffe6ef 0%, transparent 60%),
        radial-gradient(900px 500px at 0% 0%, #e6f6ff 0%, transparent 55%),
        var(--bg);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 3rem;
    align-items: center;
    padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem);
}
.hero h1 { margin-bottom: .3em; }
.hero h1 .grad {
    background: linear-gradient(120deg, var(--pink), var(--purple), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-lead { font-size: 1.25rem; max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.6rem; }

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.2rem;
}
.hero-badge { display: flex; align-items: center; gap: .6rem; font-weight: 700; color: var(--ink); }
.hero-badge .icon {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    font-size: 1.3rem;
}

/* Hero illustration */
.hero-art {
    position: relative;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
}
.hero-blob {
    position: absolute;
    inset: 5%;
    overflow: hidden;
    border-radius: 42% 58% 63% 37% / 42% 45% 55% 58%;
    animation: morph 12s ease-in-out infinite;
    box-shadow: var(--shadow);
}
.hero-blob picture,
.hero-blob img {
    width: 100%;
    height: 100%;
    display: block;
}
.hero-blob img {
    object-fit: cover;
    object-position: center;
}
.hero-art .floaty {
    position: absolute;
    background: #fff;
    border-radius: 18px;
    padding: .8rem 1rem;
    box-shadow: var(--shadow);
    font-weight: 800;
    font-family: var(--font-head);
    display: flex; align-items: center; gap: .5rem;
    animation: float 5s ease-in-out infinite;
}
.floaty .emoji { font-size: 1.4rem; }
.floaty-1 { top: 8%;  left: -6%;  animation-delay: .2s; }
.floaty-2 { bottom: 14%; left: -4%; animation-delay: 1.2s; }
.floaty-3 { top: 18%; right: -6%; animation-delay: .8s; }
.floaty-4 { bottom: 6%; right: 2%; animation-delay: 1.8s; }

@keyframes morph {
    0%, 100% { border-radius: 42% 58% 63% 37% / 42% 45% 55% 58%; }
    50%      { border-radius: 58% 42% 38% 62% / 55% 58% 42% 45%; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

/* Wave divider */
.wave { display: block; width: 100%; height: auto; }

/* ---------- Feature cards ---------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
}
.card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);
    transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .card-icon {
    width: 56px; height: 56px;
    display: grid; place-items: center;
    border-radius: 16px;
    font-size: 1.7rem;
    margin-bottom: 1rem;
}
.card h3 { margin-bottom: .4rem; }
.card p { margin: 0; font-size: .98rem; }

.ic-pink   { background: #ffe6ef; }
.ic-purple { background: #efeaff; }
.ic-blue   { background: #e2f4ff; }
.ic-teal   { background: #d9f7f3; }
.ic-yellow { background: #fff2d3; }
.ic-orange { background: #ffe8d6; }

/* ---------- Equipment list ---------- */
.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    list-style: none;
    padding: 0; margin: 1.4rem 0 0;
}
.pill-list li {
    background: #fff;
    border: 2px solid var(--line);
    border-radius: 999px;
    padding: .5rem 1.1rem;
    font-weight: 700;
    color: var(--ink);
    display: flex; align-items: center; gap: .5rem;
}

/* ---------- Split feature ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.split-art {
    border-radius: var(--radius);
    min-height: 340px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    position: relative;
    overflow: hidden;
    display: grid; place-items: center;
    box-shadow: var(--shadow);
}
.split-art .big-emoji { font-size: clamp(5rem, 12vw, 8rem); filter: drop-shadow(0 10px 14px rgba(0,0,0,.25)); }
.split-art.alt { background: linear-gradient(135deg, var(--yellow), var(--orange)); }
.split-art-photo {
    padding: 0;
    min-height: 320px;
    background: var(--bg-soft);
}
.split-art-photo picture,
.split-art-photo img {
    width: 100%;
    height: 100%;
    display: block;
}
.split-art-photo img {
    min-height: 320px;
    object-fit: cover;
    object-position: center;
}

/* ---------- Steps ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
    counter-reset: step;
}
.step {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem 1.6rem 1.6rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid var(--line);
}
.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -20px; left: 1.6rem;
    width: 44px; height: 44px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: #fff;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}
.step h3 { margin-top: .6rem; }
.step p { margin: 0; font-size: .96rem; }

/* ---------- Occasions ---------- */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .8rem;
}
.tag-cloud span {
    background: #fff;
    border-radius: 999px;
    padding: .7rem 1.4rem;
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    font-size: 1.05rem;
}

/* ---------- CTA banner ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    border-radius: var(--radius);
    padding: clamp(2.2rem, 5vw, 3.5rem);
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.9); font-size: 1.15rem; max-width: 46ch; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.6rem; }
.cta-banner .btn-outline { border-color: #fff; color: #fff; }
.cta-banner .btn-outline:hover { background: #fff; color: var(--purple); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    background:
        radial-gradient(800px 400px at 90% -20%, #ffe6ef 0%, transparent 60%),
        radial-gradient(700px 400px at -10% 0%, #e6f6ff 0%, transparent 55%),
        var(--bg-soft);
    padding: clamp(2.8rem, 6vw, 4.5rem) 0 clamp(2.4rem, 5vw, 3.5rem);
    text-align: center;
}
.page-hero p { font-size: 1.15rem; max-width: 55ch; margin-inline: auto; }

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: block;
    padding: 0;
    border: none;
    background: var(--bg-soft);
    cursor: zoom-in;
    transition: transform .2s, box-shadow .2s;
    text-align: left;
    font: inherit;
    width: 100%;
}
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.gallery-item:focus-visible {
    outline: 3px solid var(--purple);
    outline-offset: 3px;
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}
.gallery-item picture {
    display: block;
}
.gallery-zoom {
    position: absolute;
    right: .85rem;
    bottom: .85rem;
    display: flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .85rem;
    padding: .45rem .75rem;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .2s, transform .2s;
    pointer-events: none;
}
.gallery-item:hover .gallery-zoom,
.gallery-item:focus-visible .gallery-zoom {
    opacity: 1;
    transform: none;
}
.gallery-note {
    text-align: center;
    color: var(--muted);
    margin-top: 2rem;
    font-size: .95rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.lightbox[hidden] { display: none; }
.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 15, 45, .88);
    backdrop-filter: blur(6px);
}
.lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1100px);
    max-height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-figure {
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: calc(100vh - 6rem);
}
.lightbox-figure picture {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: calc(100vh - 8rem);
}
#lightbox-img {
    max-width: 100%;
    max-height: calc(100vh - 8rem);
    width: auto;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
    object-fit: contain;
}
#lightbox-caption {
    margin-top: .85rem;
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    text-align: center;
    font-size: .95rem;
}
.lightbox-btn {
    position: absolute;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    cursor: pointer;
    transition: background .2s, transform .15s;
    z-index: 2;
}
.lightbox-btn:hover {
    background: rgba(255, 255, 255, .28);
    transform: scale(1.05);
}
.lightbox-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}
.lightbox-close {
    top: -3.2rem;
    right: 0;
}
.lightbox-prev { left: -3.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: -3.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover,
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

@media (max-width: 900px) {
    .lightbox-prev { left: .5rem; top: auto; bottom: -3.5rem; transform: none; }
    .lightbox-next { right: .5rem; top: auto; bottom: -3.5rem; transform: none; }
    .lightbox-close { top: .5rem; right: .5rem; background: rgba(0, 0, 0, .45); }
    .lightbox-dialog { padding-bottom: 3.5rem; }
}

body.lightbox-open { overflow: hidden; }

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
    align-items: start;
}
.contact-cards { display: grid; gap: 1rem; }
.contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1.3rem 1.4rem;
    box-shadow: var(--shadow-sm);
}
.contact-card .icon {
    width: 48px; height: 48px; flex: none;
    display: grid; place-items: center;
    border-radius: 14px;
    font-size: 1.4rem;
}
.contact-card h3 { margin: 0 0 .2rem; font-size: 1.05rem; }
.contact-card p { margin: 0; }
.contact-card a { font-weight: 700; }

form.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 4vw, 2.2rem);
    box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.1rem; }
.field label {
    display: block;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .4rem;
    font-size: .95rem;
}
.field input,
.field textarea,
.field select {
    width: 100%;
    padding: .8rem 1rem;
    border: 2px solid var(--line);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink);
    background: var(--bg-soft);
    transition: border-color .2s, background .2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--purple);
    background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.form-note { font-size: .85rem; color: var(--muted); margin-top: .3rem; }
.recaptcha-notice {
    font-size: .78rem;
    color: var(--muted);
    margin: .85rem 0 .35rem;
    line-height: 1.5;
}
.recaptcha-notice a { color: var(--muted); text-decoration: underline; }
.recaptcha-notice a:hover { color: var(--purple); }

/* Hide reCAPTCHA v3 badge — required notice shown below the form instead */
.grecaptcha-badge { visibility: hidden; }

.alert {
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.3rem;
    font-weight: 600;
}
.alert-success { background: #e2f9ee; color: #0f7a4d; border: 1px solid #b6ecd1; }
.alert-error   { background: #ffe9ec; color: #c62339; border: 1px solid #f8c4cd; }

.honeypot { position: absolute; left: -9999px; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--ink);
    color: #cfc9ef;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 2.5rem;
    padding: clamp(3rem, 6vw, 4rem) 0 2.5rem;
}
.footer-col h3 {
    color: #fff;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0 0 1.2rem; padding: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: #cfc9ef; }
.footer-col a:hover { color: var(--yellow); }
.footer-brand .brand-name { color: #fff; font-size: 1.5rem; }
.footer-brand p { color: #a9a3d0; }
.footer-area { font-weight: 700; color: var(--yellow) !important; }

.footer-bar { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem;
    padding: 1.3rem 0;
    font-size: .88rem;
    color: #8f89b8;
}
.footer-bar-inner p { margin: 0; color: #8f89b8; }

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

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-lead { margin-inline: auto; }
    .hero-actions, .hero-badges { justify-content: center; }
    .hero-art { max-width: 380px; margin: 0 auto; width: 100%; }
    .split { grid-template-columns: 1fr; }
    .split-art { min-height: 240px; order: -1; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .nav-toggle { display: flex; }
    .nav-list {
        position: absolute;
        top: calc(100% + 1px);
        left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: .2rem;
        background: #fff;
        padding: 1rem 1.25rem 1.5rem;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform .25s, opacity .25s;
    }
    .nav-list.open { transform: none; opacity: 1; pointer-events: auto; }
    .nav-list a { padding: .8rem 1rem; }
    .nav-cta { margin: .4rem 0 0; }
    .nav-cta a { text-align: center; }
    .field-row { grid-template-columns: 1fr; }
    .footer-bar-inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
}
