/* =========================================================
   Little Angels — watercolour design system
   Palette, shapes and type taken from the Little Angels
   welcome pack: cream ground, soft rainbow arcs, cloud
   panels and torn-paper washes in sage, mustard and coral.

   Tokens are split deliberately. The pack's colours are
   lovely but pale, so anything that carries words uses the
   "text-safe" set, which clears 4.5:1 on cream; the airy
   originals are kept for washes, arcs and fills.
   ========================================================= */

:root {
    /* Decorative — washes, arcs, fills, never text */
    --sage: #a9bfa2;
    --sage-soft: #d3e0cb;
    --sage-wash: #edf2e8;
    --mustard: #e9c46a;
    --mustard-soft: #f7e6bb;
    --coral: #e2997b;
    --coral-soft: #f8dccd;
    --coral-wash: #fceee5;
    --blush: #edc9bd;
    --blush-soft: #f9e6df;

    /* Text-safe — measured against --cream */
    --sage-deep: #5f7554;   /* white text on this: 5.0:1 */
    --sage-dark: #4c5f44;
    --coral-text: #a85a36;  /* small accent text on cream: 4.7:1 */
    --coral-deep: #b3653f;
    --brown: #6f6259;       /* body copy on cream: 5.6:1 */
    --brown-dark: #574b43;
    --on-sage: #4f4239;      /* text on the soft sage: 4.9:1 */

    /* Grounds */
    --cream: #fdf8ec;
    --cream-deep: #f9efdb;
    --paper: #fefcf7;

    --font-heading: "Baloo 2", "Segoe UI", sans-serif;
    --font-body: "Nunito", "Segoe UI", sans-serif;

    --radius: 1.25rem;
    --radius-blob: 2.5rem;
    --shadow-soft: 0 8px 24px rgba(125, 111, 102, 0.12);
    --shadow-lift: 0 14px 34px rgba(125, 111, 102, 0.18);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--brown);
    background-color: var(--cream);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--brown-dark);
    font-weight: 600;
}

a {
    color: var(--sage-deep);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--sage-dark);
}

/* ---------- Buttons ---------- */

.btn-brand,
.btn-brand-outline {
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 999px;
    padding: 0.55rem 1.6rem;
    transition: all 0.2s ease;
    border: 2px solid var(--sage);
}

.btn-brand {
    background-color: var(--sage);
    color: var(--on-sage);
}

.btn-brand:hover {
    background-color: #b6c9b0;
    border-color: #b6c9b0;
    color: var(--on-sage);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-brand-outline {
    background-color: transparent;
    color: var(--sage-dark);
}

.btn-brand-outline:hover {
    background-color: var(--sage-wash);
    color: var(--sage-dark);
    transform: translateY(-2px);
}

.btn-coral {
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 999px;
    padding: 0.55rem 1.6rem;
    background-color: var(--coral-deep);
    border: 2px solid var(--coral-deep);
    color: #fff;
    transition: all 0.2s ease;
}

.btn-coral:hover {
    background-color: #b06c4d;
    border-color: #b06c4d;
    color: #fff;
    transform: translateY(-2px);
}

/* ---------- Header / nav ---------- */

.site-header {
    background-color: #fff;
    box-shadow: 0 2px 12px rgba(107, 95, 81, 0.08);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.site-header .navbar {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

.site-header .navbar-brand img {
    height: 64px;
    width: auto;
}

.site-header .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--brown);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--sage-dark);
    background-color: var(--sage-wash);
}

.navbar-toggler {
    border-color: var(--sage-soft);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem var(--sage-soft);
}

/* ---------- Hero ---------- */

.hero {
    background-color: var(--cream);
    padding: 5rem 0 4rem;
}

.hero .tagline {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--coral-text);
    background-color: #fff;
    border-radius: 999px;
    padding: 0.35rem 1.2rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: clamp(2.3rem, 5vw, 3.4rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.hero h1 .accent {
    color: var(--coral-text);
}

.hero p {
    font-size: 1.1rem;
    max-width: 34rem;
}

.hero-logo-card {
    background-color: #fff;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.hero-logo-card img {
    max-width: 100%;
    height: auto;
}

.hero-logo-card .hero-photo {
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-height: 480px;
    object-fit: cover;
    border-radius: 2rem;
}

/* ---------- Sections ---------- */

.section {
    padding: 4.5rem 0;
}

.section-alt {
    background-color: var(--sage-wash);
}

.section-cream {
    background-color: var(--cream-deep);
}

.section-title {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 3rem;
}

.eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--coral-text);
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700;
}

/* ---------- Cards ---------- */

.card-soft {
    background-color: #fff;
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 1.9rem;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-soft:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(111, 135, 99, 0.18);
}

.card-soft h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.card-soft p:last-child {
    margin-bottom: 0;
}

.badge-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--brown-dark);
    margin-bottom: 1.1rem;
}

.badge-sage      { background-color: var(--sage-soft); }
.badge-coral{ background-color: var(--coral-soft); }
.badge-blush      { background-color: var(--blush-soft); }
.badge-mustard       { background-color: var(--mustard-soft); }

/* ---------- Feature list (who we are) ---------- */

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
}

.feature-list li span {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background-color: var(--sage-soft);
    color: var(--sage-dark);
    font-family: var(--font-heading);
    font-weight: 700;
}

/* ---------- Tables (pricing, menu) ---------- */

.table-brand {
    background-color: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.table-brand table {
    margin-bottom: 0;
}

.table-brand thead th {
    background-color: var(--coral-deep);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    border: none;
    padding: 1rem 1.25rem;
    white-space: nowrap;
}

.table-brand tbody th,
.table-brand tbody td {
    padding: 0.95rem 1.25rem;
    border-color: var(--sage-wash);
    vertical-align: middle;
}

.table-brand tbody th {
    font-weight: 700;
    color: var(--brown-dark);
}

.table-brand tbody tr:nth-child(even) {
    background-color: var(--cream);
}

.funding-note {
    background-color: #fff;
    border-left: 6px solid var(--sage);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow-soft);
    padding: 1.75rem 2rem;
    margin-top: 2rem;
}

.funding-note ul {
    padding-left: 1.2rem;
}

.funding-note p:last-child {
    margin-bottom: 0;
}

/* ---------- Gallery ---------- */

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* ---------- FAQ ---------- */

.accordion-brand .accordion-item {
    border: none;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-soft);
    margin-bottom: 1rem;
    overflow: hidden;
    background-color: #fff;
}

.accordion-brand .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--brown-dark);
    background-color: #fff;
    padding: 1.15rem 1.5rem;
}

.accordion-brand .accordion-button:not(.collapsed) {
    background-color: var(--sage-wash);
    color: var(--sage-dark);
    box-shadow: none;
}

.accordion-brand .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem var(--sage-soft);
}

.accordion-brand .accordion-body {
    padding: 1.15rem 1.5rem;
}

/* ---------- Forms ---------- */

.form-card {
    background-color: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 2.5rem;
}

.form-card h3 {
    margin-bottom: 1.25rem;
}

.form-control {
    border: 2px solid var(--sage-wash);
    border-radius: 0.9rem;
    padding: 0.65rem 1rem;
    font-family: var(--font-body);
    color: var(--brown-dark);
}

.form-control:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 0.2rem var(--sage-soft);
}

.form-control::placeholder {
    color: #b0a898;
}

.form-label {
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 0.35rem;
}

/* ---------- Contact info ---------- */

.info-card {
    background-color: var(--sage-wash);
    border-radius: var(--radius);
    padding: 2.5rem;
    height: 100%;
}

.info-card h3 {
    margin-bottom: 1.25rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.info-card ul:last-child {
    margin-bottom: 0;
}

.info-card li {
    margin-bottom: 0.75rem;
}

.info-card li span {
    font-weight: 700;
    color: var(--brown-dark);
}

/* ---------- Call to action ---------- */

.cta {
    background: linear-gradient(150deg, var(--coral-deep) 0%, #9c5636 100%);
    border-radius: 2rem;
    padding: 3.5rem 2rem;
    text-align: center;
    color: #fff;
}

.cta h2 {
    color: #fff;
    font-weight: 700;
}

.cta p {
    max-width: 38rem;
    margin: 0.75rem auto 1.75rem;
    color: var(--sage-soft);
}

.cta .btn-brand {
    background-color: #fff;
    border-color: #fff;
    color: var(--coral-deep);
}

.cta .btn-brand:hover {
    background-color: var(--cream);
    border-color: var(--cream);
}

/* ---------- Footer ---------- */

.site-footer {
    background-color: var(--sage-wash);
    border-top: 1px solid var(--sage-soft);
    padding: 3.5rem 0 0;
    margin-top: 4rem;
}

.site-footer .footer-logo {
    height: 90px;
    width: auto;
    margin-bottom: 1rem;
}

.site-footer h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin-bottom: 0.6rem;
}

.site-footer .footer-contact span {
    font-weight: 700;
    color: var(--brown-dark);
    margin-right: 0.35rem;
}

.footer-bottom {
    border-top: 1px solid var(--sage-soft);
    margin-top: 2.5rem;
    padding: 1.25rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
}

/* ---------- Page banner (inner pages) ---------- */

.page-banner {
    background-color: var(--cream);
    padding: 3.75rem 0 3.25rem;
    text-align: center;
}

.page-banner h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-banner p {
    max-width: 40rem;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ---------- Announcement bar (opening soon) ---------- */

.announcement-bar {
    background-color: var(--sage);
    color: var(--on-sage);
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    padding: 0.6rem 1rem;
}

.announcement-bar a {
    color: var(--on-sage);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.announcement-bar a:hover {
    color: #38302a;
}

.announcement-bar .announcement-dot {
    display: inline-block;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background-color: var(--coral-deep);
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* ---------- Status pill (opening soon / registering) ---------- */

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--coral-text);
    background-color: var(--coral-soft);
    border-radius: 999px;
    padding: 0.3rem 1.1rem;
    margin-bottom: 1rem;
}

/* ---------- Trust panel (tiney certification) ---------- */

.trust-panel {
    background-color: #fff;
    border: 1px solid var(--sage-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 2.25rem;
}

.trust-panel h2,
.trust-panel h3 {
    margin-bottom: 0.75rem;
}

.trust-panel p:last-child {
    margin-bottom: 0;
}

.trust-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.35rem;
    background: linear-gradient(160deg, var(--sage-wash) 0%, var(--sage-soft) 100%);
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    height: 100%;
}

.trust-mark .trust-mark-name {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--sage-dark);
}

.trust-mark .trust-mark-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brown);
}

.trust-points {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.trust-points li {
    position: relative;
    padding-left: 1.9rem;
    margin-bottom: 0.6rem;
}

.trust-points li:last-child {
    margin-bottom: 0;
}

.trust-points li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0.05rem;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    background-color: var(--sage-soft);
    color: var(--sage-dark);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Honeypot (spam trap — must stay invisible to people) ---------- */

.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ---------- Responsive tweaks ---------- */

@media (max-width: 991.98px) {
    .site-header .navbar-brand img {
        height: 52px;
    }

    .site-header .navbar-collapse {
        padding-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 3.5rem 0;
    }

    .section {
        padding: 3rem 0;
    }
}

/* =========================================================
   Welcome-pack decoration layer
   Rainbow arcs, cloud domes, torn-paper washes and stars,
   all drawn in CSS/SVG so the rebrand needs no new assets.
   Every decorative element is aria-hidden in the markup and
   sits behind content via z-index, never intercepting taps.
   ========================================================= */

.wc-scene {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.wc-scene > .container {
    position: relative;
    z-index: 2;
}

/* ---------- Stars ---------- */

.wc-star {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e9c46a' d='M12 1.6l3.1 7 7.6.7-5.7 5.1 1.7 7.5-6.7-4-6.7 4 1.7-7.5L1.3 9.3l7.6-.7z'/%3E%3C/svg%3E");
    opacity: 0.85;
}

/* Position variants. Sizes, angles and opacities all differ so the same
   shape never reads as a repeat the way the rainbow arc did. */
.wc-star--a { top: 2.5rem;    right: 8%;   width: 6.5rem;  height: 6.5rem;  transform: rotate(-8deg); }
.wc-star--b { bottom: 3rem;   left: 6%;    width: 4.5rem;  height: 4.5rem;  transform: rotate(14deg); }
.wc-star--c { top: 38%;       left: 44%;   width: 3.25rem; height: 3.25rem; transform: rotate(-20deg); opacity: 0.5; }
.wc-star--d { top: 1.25rem;   left: 5%;    width: 5rem;    height: 5rem;    transform: rotate(18deg); opacity: 0.75; }
.wc-star--e { bottom: 1.5rem; right: 6%;   width: 3.75rem; height: 3.75rem; transform: rotate(-15deg); opacity: 0.7; }
.wc-star--f { top: 2rem;      right: 16%;  width: 3rem;    height: 3rem;    transform: rotate(26deg); opacity: 0.6; }
.wc-star--g { bottom: 18%;    left: 3%;    width: 5.5rem;  height: 5.5rem;  transform: rotate(-26deg); opacity: 0.45; }
.wc-star--h { top: 50%;       right: 3.5%; width: 4rem;    height: 4rem;    transform: rotate(10deg); opacity: 0.55; }

/* Coral star, for pages where a second mustard one would be too much */
.wc-star--coral {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e2997b' d='M12 1.6l3.1 7 7.6.7-5.7 5.1 1.7 7.5-6.7-4-6.7 4 1.7-7.5L1.3 9.3l7.6-.7z'/%3E%3C/svg%3E");
}

/* ---------- Torn-paper wash panel ---------- */

.paper-panel {
    position: relative;
    background-color: var(--coral-soft);
    border-radius: 18px 32px 20px 36px / 32px 20px 36px 22px;
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow-soft);
}

.paper-panel--sage    { background-color: var(--sage-soft); }
.paper-panel--mustard { background-color: var(--mustard-soft); }
.paper-panel--blush   { background-color: var(--blush-soft); }

.paper-panel p:last-child {
    margin-bottom: 0;
}

/* ---------- Brush band (opening hours) ---------- */

.brush-band {
    display: inline-block;
    background-color: var(--blush-soft);
    border-radius: 46% 54% 52% 48% / 62% 58% 42% 38%;
    padding: 1.1rem 3rem;
    text-align: center;
}

.brush-band .brush-label {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.brush-band .brush-hours {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--brown-dark);
    line-height: 1.15;
}

/* ---------- Team portraits ---------- */

/* The portraits are cut straight from the welcome pack, complete with its own
   circular frame and name badge, so they are placed as plain transparent
   images rather than being re-cropped into a CSS circle. */

.portrait-wrap {
    width: 230px;
    max-width: 100%;
    margin: 0 auto;
    flex-shrink: 0;
}

.portrait-wrap .portrait {
    display: block;
    width: 100%;
    height: auto;
}

/* ---------- Pack-style price list ---------- */

.price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-list > li {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 1rem;
    padding: 0.85rem 0;
    border-bottom: 2px dotted rgba(125, 111, 102, 0.25);
}

.price-list > li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.price-list .price-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--brown-dark);
}

.price-list .price-value {
    margin-left: auto;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--coral-deep);
    white-space: nowrap;
}

.price-list .price-note {
    flex-basis: 100%;
    font-size: 0.95rem;
    margin: 0;
}

/* ---------- Photo collage (the pack's "Our space") ---------- */

.collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease;
}

.collage .collage-tilt-a img { transform: rotate(-1.5deg); }
.collage .collage-tilt-b img { transform: rotate(1.5deg); }
.collage img:hover { transform: rotate(0deg) scale(1.02); }

/* ---------- Motion and small screens ---------- */

@media (max-width: 767.98px) {
    .wc-star {
        display: none;
    }

    .paper-panel {
        padding: 1.5rem 1.35rem;
    }

    .portrait-wrap {
        width: 185px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .collage img,
    .card-soft,
    .btn-brand,
    .btn-brand-outline,
    .btn-coral {
        transition: none;
    }
}

/* ---------- Brand band ("Play | Learn | Grow" from the pack cover) ---------- */

.brand-band {
    background-color: var(--coral-deep);
    color: #fff;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.05rem, 2.4vw, 1.5rem);
    letter-spacing: 0.02em;
    padding: 0.8rem 1rem;
}

.brand-band .sep {
    opacity: 0.5;
    margin: 0 0.55rem;
    font-weight: 600;
}

/* ---------- Our Space collage sizing ---------- */

.collage img {
    height: 200px;
}

@media (max-width: 991.98px) {
    .collage img { height: 170px; }
}

@media (max-width: 575.98px) {
    .collage img { height: 140px; }
}

/* ---------- Promo video ---------- */

.video-frame {
    position: relative;
    max-width: 340px;
    margin: 0 auto;
    border-radius: var(--radius-blob);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    background-color: var(--sage-wash);
    border: 6px solid var(--paper);
}

.video-frame video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    background-color: #000;
}

/* =========================================================
   Rainbow accents
   The pack leans hard on its rainbow and coral; these bring
   both further forward across the site.
   ========================================================= */

/* Watercolour rainbow strip used as a section divider */

.rainbow-divider {
    height: 14px;
    border: none;
    margin: 0;
    opacity: 0.9;
    background: linear-gradient(90deg,
        var(--coral) 0 20%,
        var(--mustard) 20% 40%,
        var(--sage) 40% 60%,
        var(--blush) 60% 80%,
        var(--coral) 80% 100%);
}

/* Rainbow underline beneath centred section headings */

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.65rem;
}

.section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 5.5rem;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg,
        var(--coral) 0 33%,
        var(--mustard) 33% 66%,
        var(--sage) 66% 100%);
}

/* Left-aligned variant used inside two-column blocks */

.section-title.text-lg-start h2::after {
    left: 0;
    transform: none;
}

/* Arc behind the hero heading, echoing the pack cover */

.hero h1 {
    position: relative;
}

/* Feature list numbers cycle through the rainbow */

.feature-list li:nth-child(4n+1) span { background-color: var(--coral-soft);   color: var(--coral-deep); }
.feature-list li:nth-child(4n+2) span { background-color: var(--mustard-soft); color: #8a6a1f; }
.feature-list li:nth-child(4n+3) span { background-color: var(--sage-soft);    color: var(--sage-dark); }
.feature-list li:nth-child(4n+4) span { background-color: var(--blush-soft);   color: var(--coral-deep); }

/* Torn-paper panels get a rainbow edge */

.paper-panel::before {
    content: "";
    position: absolute;
    left: 1.75rem;
    right: 1.75rem;
    top: 0;
    height: 5px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg,
        var(--coral-deep) 0 25%,
        var(--mustard) 25% 50%,
        var(--sage) 50% 75%,
        var(--blush) 75% 100%);
    opacity: 0.65;
}

/* Tagline and status pill in the warm palette */

.hero .tagline {
    background-color: var(--mustard-soft);
    color: #8a6a1f;
}

/* =========================================================
   Rainbow, used sparingly
   The rainbow appears only as a thin line — under page and
   section headings, and as the strip beneath the header — plus
   soft blurred washes. The big watercolour arc was dropped: it
   read as clutter at any size.
   ========================================================= */

/* Page-banner heading gets the same rainbow underline as section titles */

.page-banner h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.7rem;
}

.page-banner h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 6.5rem;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg,
        var(--coral) 0 33%,
        var(--mustard) 33% 66%,
        var(--sage) 66% 100%);
}

/* Soft watercolour wash — a different shape to the arc, so sections
   that need warmth do not all repeat the same motif. */

.wc-wash {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.wc-wash--coral   { background-color: var(--coral); }
.wc-wash--mustard { background-color: var(--mustard); }
.wc-wash--sage    { background-color: var(--sage); }

.wc-wash--tr { top: -6rem;    right: -5rem;  width: 22rem; height: 22rem; }
.wc-wash--bl { bottom: -7rem; left: -6rem;   width: 24rem; height: 24rem; }

@media (max-width: 767.98px) {
    .wc-wash { display: none; }
}

/* =========================================================
   Logo mark children
   The illustrated children from the logo, cut out with a
   transparent background and reused as decoration. They sit
   on the brand band exactly as they do on the welcome pack
   cover, and appear once more per page at most.
   ========================================================= */

.brand-band-wrap {
    position: relative;
}

.band-kids {
    position: absolute;
    right: 6%;
    bottom: 100%;
    z-index: 3;
    width: 220px;
    max-width: 40vw;
    margin-bottom: -3px;   /* overlap so they sit ON the band, not above it */
    pointer-events: none;
    user-select: none;
}

/* Corner decoration used sparingly inside a .wc-scene section */

.wc-kids {
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100px;
    pointer-events: none;
    user-select: none;
    opacity: 0.95;
}

/* Positioned from the centre line, so they always sit just outside the
   1080px content column whatever the viewport. */
.wc-kids--left  { left:  calc(50% - 650px); }
.wc-kids--right { right: calc(50% - 650px); }

/* Mirrored, so the same two figures can be reused without looking repeated */
.wc-kids--flip { transform: scaleX(-1); }

/* Below this the margin is thinner than the figure, so hide rather than clip */
@media (max-width: 1319.98px) {
    .wc-kids { display: none; }
}

@media (max-width: 575.98px) {
    .band-kids { width: 150px; right: 4%; }
}

/* The transparent logo has no white plate, so it needs a touch
   more room to breathe against the sage footer. */

.site-footer .footer-logo {
    margin-bottom: 1.1rem;
}

/* ---------- Team role label ---------- */

.team-role {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--coral-deep);
    background-color: var(--paper);
    border-radius: 999px;
    padding: 0.25rem 1rem;
    margin-bottom: 1rem;
}

/* =========================================================
   Weekly menu
   Mirrors the welcome pack's menu page: a sage panel holding
   white rounded cells, with the day names colour-cycled.
   Kept as a real table because it is tabular data — six meal
   slots against five days — so it stays navigable.
   ========================================================= */

.menu-kid {
    width: 100%;
    max-width: 180px;
    height: auto;
}

.menu-panel {
    background-color: var(--sage-soft);
    border-radius: var(--radius-blob);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-soft);
}

.menu-panel-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 0 0.25rem;
}

.menu-panel-title,
.menu-week {
    font-family: var(--font-heading);
    font-weight: 700;
    background-color: var(--paper);
    border-radius: 999px;
    padding: 0.35rem 1.35rem;
    box-shadow: var(--shadow-soft);
}

.menu-panel-title {
    font-size: 1.35rem;
    color: var(--brown-dark);
}

.menu-week {
    font-size: 1.15rem;
    color: var(--coral-deep);
}

.menu-table {
    width: 100%;
    table-layout: fixed;   /* every column sized from the container, so it never overflows */
    border-collapse: separate;
    border-spacing: 5px;
    background: transparent;
}

.menu-table thead th:first-child,
.menu-table tbody th {
    width: 4.75rem;
}

.menu-table thead th {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--coral-deep);
    background-color: var(--paper);
    border-radius: 999px;
    padding: 0.3rem 0.6rem;
    text-align: center;
}

.menu-table tbody th {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    background-color: var(--paper);
    border-radius: 12px;
    padding: 0.75rem 0.6rem;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
}

/* Day names cycle through the pack palette */
.menu-table tbody tr:nth-child(5n+1) th { color: #6f8a63; }
.menu-table tbody tr:nth-child(5n+2) th { color: var(--coral-deep); }
.menu-table tbody tr:nth-child(5n+3) th { color: #4f7f96; }
.menu-table tbody tr:nth-child(5n+4) th { color: #8a5fa0; }
.menu-table tbody tr:nth-child(5n+5) th { color: #c05f86; }

.menu-table tbody td {
    background-color: var(--paper);
    border-radius: 12px;
    padding: 0.7rem 0.65rem;
    text-align: center;
    vertical-align: middle;
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--brown);
}

.menu-table .menu-item {
    display: block;
}

.menu-table .menu-item + .menu-item {
    margin-top: 0.45rem;
}

.menu-table .menu-sub {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    line-height: 1.35;
    opacity: 0.85;
}


/* Tablet: tighten the grid rather than let it overflow */
@media (max-width: 1199.98px) {
    .menu-table tbody td {
        font-size: 0.82rem;
        padding: 0.55rem 0.4rem;
    }

    .menu-table .menu-sub {
        font-size: 0.74rem;
    }

    .menu-table thead th {
        font-size: 0.8rem;
        padding: 0.3rem 0.35rem;
    }

    .menu-table thead th:first-child,
    .menu-table tbody th {
        width: 3.75rem;
    }

    .menu-table tbody th {
        font-size: 1rem;
        padding: 0.5rem 0.3rem;
    }
}

/* Phone: a six-column grid cannot be read at this width, so each day
   becomes its own card with the meal name above the dish. No sideways
   scrolling anywhere. */
@media (max-width: 767.98px) {
    .menu-panel {
        padding: 1.1rem 0.85rem;
        border-radius: var(--radius);
    }

    .menu-table,
    .menu-table tbody,
    .menu-table tbody tr,
    .menu-table tbody th,
    .menu-table tbody td {
        display: block;
        width: auto;
    }

    .menu-table thead {
        display: none;
    }

    .menu-table {
        border-spacing: 0;
    }

    .menu-table tbody tr {
        background-color: var(--paper);
        border-radius: 14px;
        padding: 0.9rem 1rem;
        margin-bottom: 0.75rem;
        box-shadow: var(--shadow-soft);
    }

    .menu-table tbody tr:last-child {
        margin-bottom: 0;
    }

    .menu-table tbody th {
        background: transparent;
        box-shadow: none;
        text-align: left;
        font-size: 1.25rem;
        padding: 0 0 0.5rem;
        border-bottom: 2px dotted rgba(125, 111, 102, 0.25);
        margin-bottom: 0.6rem;
        width: auto;
    }

    .menu-table tbody td {
        background: transparent;
        text-align: left;
        padding: 0.4rem 0;
        font-size: 0.95rem;
    }

    .menu-table tbody td::before {
        content: attr(data-label);
        display: block;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--coral-deep);
        margin-bottom: 0.15rem;
    }
}

/* ---------- Content column ---------- */

/* Bootstrap widens .container to 1320px on large screens, which left no room
   beside the content for the illustrated children — they only appeared above
   1640px. Holding the column at 1080px gives a permanent margin either side,
   so the figures show on ordinary laptop screens too. */
@media (min-width: 1200px) {
    .container {
        max-width: 1080px;
    }
}
