﻿/*
    STYLE GUIDE

    Heading Font: Mrs Saint Delafield // MRS SAINT DELAFIELD
    Body: Raleway

    Gold: #B6A260
    Pink: #E14190
    Darker Purple: #FFFFFF
    Lighter Purple: #6D5395
    Very Light Pink: #FCECF4

*/
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Nunito:wght@400;600;700;800&display=swap');

:root {
    --green: #355e53;
    --green-light: #4f7f72;
    --cream: #fffaf1;
    --yellow: #f5bb63;
    --pink: #f3a6ae;
    --blue: #8ed5dc;
    --lime: #a8cf88;
    --text: #5b6b65;
    --white: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family: "Nunito", Arial, sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.nursery-day-page {
    overflow: hidden;
}

.container {
    width: min(1400px, calc(100% - 48px));
    margin-inline: auto;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--green);
    font-family: "Fredoka", Arial, sans-serif;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

p {
    font-size: 17px;
    line-height: 1.72;
}

.eyebrow {
    display: inline-block;
    margin: 0 0 15px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nightingales-hero {
    position: relative;
    width: 100%;
    min-height: 780px;
    overflow: hidden;
    background: #355e53;
    font-family: "Nunito", Arial, sans-serif;
    top:0;
}

.nightingales-slides,
.nightingales-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.nightingales-slide {
    opacity: 0;
    visibility: hidden;
    background-position: center;
    background-size: cover;
    transform: scale(1.03);
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out, transform 7s ease;
}

    .nightingales-slide.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

.nightingales-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 90deg, rgba(36, 76, 65, 0.91) 0%, rgba(46, 91, 78, 0.75) 42%, rgba(46, 91, 78, 0.35) 70%, rgba(46, 91, 78, 0.48) 100% );
}

.nightingales-hero::before,
.nightingales-hero::after {
    position: absolute;
    z-index: 3;
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.nightingales-hero::before {
    right: -100px;
    bottom: -130px;
    width: 320px;
    height: 320px;
    background: rgba(243, 166, 174, 0.23);
}

.nightingales-hero::after {
    top: 135px;
    left: -85px;
    width: 220px;
    height: 220px;
    background: rgba(245, 187, 99, 0.18);
}

/* Header and navigation */

/*.nightingales-header {
    position: relative;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 22px 32px;
}*/

.nightingales-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    width: 100%;
    max-width: 1400px;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 22px 32px;
}

.nightingales-logo {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    border: 3px solid rgba(255, 255, 255, 0.72);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 28px rgba(17, 51, 42, 0.2);
    transform: rotate(-1deg);
}

    .nightingales-logo img {
        display: block;
        width: 185px;
        max-width: 100%;
        height: auto;
    }

.nightingales-nav {
    padding: 9px 13px;
    border: 2px solid rgba(255, 255, 255, 0.27);
    border-radius: 32px;
    background: rgba(41, 83, 71, 0.8);
    box-shadow: 0 9px 24px rgba(20, 55, 46, 0.22);
    backdrop-filter: blur(8px);
}

    .nightingales-nav ul {
        display: flex;
        align-items: center;
        gap: 5px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nightingales-nav a {
        display: block;
        padding: 10px 13px;
        border-radius: 22px;
        color: #ffffff;
        font-family: "Nunito", Arial, sans-serif;
        font-size: 14px;
        font-weight: 800;
        line-height: 1.25;
        text-decoration: none;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .nightingales-nav li:nth-child(4n+1) a:hover,
    .nightingales-nav li:nth-child(4n+1) a:focus {
        background: #f5bb63;
        color: #355e53;
    }

    .nightingales-nav li:nth-child(4n+2) a:hover,
    .nightingales-nav li:nth-child(4n+2) a:focus {
        background: #f3a6ae;
        color: #355e53;
    }

    .nightingales-nav li:nth-child(4n+3) a:hover,
    .nightingales-nav li:nth-child(4n+3) a:focus {
        background: #8ed5dc;
        color: #355e53;
    }

    .nightingales-nav li:nth-child(4n) a:hover,
    .nightingales-nav li:nth-child(4n) a:focus {
        background: #a8cf88;
        color: #355e53;
    }

    .nightingales-nav a:hover,
    .nightingales-nav a:focus {
        transform: translateY(-1px);
    }

.nightingales-menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 46px;
    border: 3px solid #ffffff;
    border-radius: 15px;
    background: #f5bb63;
    color: #355e53;
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 7px 18px rgba(19, 53, 44, 0.2);
}

/* Hero content */

/*.nightingales-content {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 480px);
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    min-height: 630px;
    margin: 0 auto;
    padding: 45px 32px 90px;
}*/

.nightingales-content {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 480px);
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    min-height: 780px;
    box-sizing: border-box;
    margin: 0 auto;
    /* Top padding allows for the overlaid header */
    padding: 145px 32px 90px;
}

.nightingales-copy {
    position: relative;
    max-width: 775px;
    color: #ffffff;
}

    .nightingales-copy::before {
        position: absolute;
        top: -30px;
        right: 8%;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #f3a6ae;
        box-shadow: 45px 25px 0 #8ed5dc, 85px -8px 0 #f5bb63, 120px 28px 0 #a8cf88;
        content: "";
    }

.nightingales-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 22px;
    padding: 10px 18px;
    border: 3px solid rgba(255, 255, 255, 0.75);
    border-radius: 30px;
    background: #f5bb63;
    color: #355e53;
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(18, 48, 40, 0.18);
    transform: rotate(-1deg);
}

    .nightingales-eyebrow::before {
        content: "★";
        font-size: 14px;
    }

.nightingales-copy h1 {
    max-width: 780px;
    margin: 0 0 24px;
    color: #ffffff;
    font-family: "Fredoka", Arial, sans-serif;
    font-size: clamp(46px, 5.2vw, 78px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.025em;
    text-shadow: 0 4px 20px rgba(15, 42, 35, 0.35);
}

.nightingales-subheading {
    max-width: 700px;
    margin: 0;
    padding: 20px 23px;
    border-left: 7px solid #8ed5dc;
    border-radius: 0 18px 18px 0;
    background: rgba(39, 76, 65, 0.67);
    color: #ffffff;
    font-size: clamp(19px, 2vw, 26px);
    font-weight: 700;
    line-height: 1.5;
    text-shadow: 0 2px 9px rgba(15, 42, 35, 0.32);
    backdrop-filter: blur(6px);
}

/* Booking form */

.nightingales-form-card {
    position: relative;
    padding: 31px;
    border: 5px solid #ffffff;
    border-radius: 27px;
    background: #fffaf1;
    box-shadow: 0 20px 55px rgba(18, 50, 41, 0.3);
    transform: rotate(0.5deg);
}

    .nightingales-form-card::before {
        position: absolute;
        top: -18px;
        right: 28px;
        width: 58px;
        height: 34px;
        border-radius: 7px;
        background: rgba(142, 213, 220, 0.92);
        content: "";
        transform: rotate(4deg);
    }

    .nightingales-form-card::after {
        position: absolute;
        right: -18px;
        bottom: 45px;
        z-index: -1;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background: #f3a6ae;
        content: "";
    }

    .nightingales-form-card h2 {
        margin: 0 0 8px;
        color: #355e53;
        font-family: "Fredoka", Arial, sans-serif;
        font-size: 34px;
        font-weight: 600;
        line-height: 1.15;
    }

.nightingales-form-intro {
    margin: 0 0 21px;
    color: #5b6b65;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
}

.nightingales-form-group {
    margin-bottom: 14px;
}

    .nightingales-form-group label {
        display: block;
        margin-bottom: 6px;
        color: #355e53;
        font-size: 14px;
        font-weight: 800;
    }

    .nightingales-form-group input {
        display: block;
        width: 100%;
        height: 50px;
        box-sizing: border-box;
        padding: 10px 14px;
        border: 2px solid #dce8e3;
        border-radius: 13px;
        background: #ffffff;
        color: #355e53;
        font-family: "Nunito", Arial, sans-serif;
        font-size: 16px;
        font-weight: 600;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .nightingales-form-group:nth-child(1) input {
        border-color: #f5d595;
    }

.nightingales-form-row:nth-of-type(2) .nightingales-form-group:first-child input {
    border-color: #f3c2c8;
}

.nightingales-form-row:nth-of-type(2) .nightingales-form-group:last-child input {
    border-color: #aee1e5;
}

.nightingales-form-group input:focus {
    border-color: #4f7f72;
    box-shadow: 0 0 0 4px rgba(142, 213, 220, 0.28);
    transform: translateY(-1px);
}

.nightingales-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.nightingales-submit {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 16px 20px;
    border: 3px solid #ffffff;
    border-radius: 28px;
    background: #f3a6ae;
    color: #355e53;
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(79, 127, 114, 0.17);
    transition: transform 0.2s ease, background 0.2s ease;
}

    .nightingales-submit:hover,
    .nightingales-submit:focus {
        background: #f5bb63;
        transform: translateY(-2px) rotate(-0.5deg);
    }

.nightingales-form-note {
    margin: 13px 0 0;
    color: #6c7b76;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
}

/* Carousel controls */

.nightingales-controls {
    position: absolute;
    right: 32px;
    bottom: 27px;
    left: 32px;
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.nightingales-dot {
    width: 13px;
    height: 13px;
    padding: 0;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(21, 54, 45, 0.25);
    transition: background 0.2s ease, transform 0.2s ease;
}

    .nightingales-dot:nth-child(4n + 1).active {
        background: #f5bb63;
    }

    .nightingales-dot:nth-child(4n + 2).active {
        background: #f3a6ae;
    }

    .nightingales-dot:nth-child(4n + 3).active {
        background: #8ed5dc;
    }

    .nightingales-dot:nth-child(4n).active {
        background: #a8cf88;
    }

    .nightingales-dot.active {
        transform: scale(1.25);
    }

.nightingales-arrow {
    position: absolute;
    top: 50%;
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 3px solid #ffffff;
    border-radius: 18px;
    background: #8ed5dc;
    color: #355e53;
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 31px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(17, 49, 40, 0.23);
    transform: translateY(-50%) rotate(-2deg);
    transition: background 0.2s ease, transform 0.2s ease;
}

    .nightingales-arrow:hover,
    .nightingales-arrow:focus {
        background: #f5bb63;
        transform: translateY(-50%) scale(1.06) rotate(0);
    }

.nightingales-arrow-prev {
    left: 18px;
}

.nightingales-arrow-next {
    right: 18px;
    transform: translateY(-50%) rotate(2deg);
}

    .nightingales-arrow-next:hover,
    .nightingales-arrow-next:focus {
        transform: translateY(-50%) scale(1.06) rotate(0);
    }

/* Tablet layout */

@media (max-width: 1180px) {
    .nightingales-nav {
        padding: 7px 9px;
    }

        .nightingales-nav a {
            padding: 9px 8px;
            font-size: 13px;
        }

    .nightingales-content {
        gap: 35px;
    }
}

@media (max-width: 980px) {
    .nightingales-hero {
        min-height: 1050px;
    }

    .nightingales-header {
        align-items: flex-start;
        padding: 18px 22px;
    }

    .nightingales-content {
        grid-template-columns: 1fr;
        align-items: start;
        min-height: auto;
        /* Room for the mobile header */
        padding: 135px 22px 100px;
    }

    .nightingales-logo {
        padding: 8px 12px;
    }

        .nightingales-logo img {
            width: 155px;
        }

    .nightingales-menu-button {
        display: flex;
    }

    .nightingales-nav {
        position: absolute;
        top: 88px;
        right: 22px;
        left: 22px;
        display: none;
        padding: 18px;
        border: 3px solid #ffffff;
        border-radius: 22px;
        background: rgba(53, 94, 83, 0.98);
        box-shadow: 0 14px 32px rgba(17, 49, 40, 0.28);
    }

        .nightingales-nav.open {
            display: block;
        }

        .nightingales-nav ul {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px;
        }

        .nightingales-nav a {
            padding: 11px 13px;
            font-size: 15px;
        }

       /* .nightingales-nav li:nth-child(1) a {
            background: #f5bb63;
            color: #355e53;
        }

        .nightingales-nav li:nth-child(2) a {
            background: #f3a6ae;
            color: #355e53;
        }

        .nightingales-nav li:nth-child(3) a {
            background: #8ed5dc;
            color: #355e53;
        }

        .nightingales-nav li:nth-child(4) a {
            background: #a8cf88;
            color: #355e53;
        }

        .nightingales-nav li:nth-child(5) a {
            background: #f5bb63;
            color: #355e53;
        }

        .nightingales-nav li:nth-child(6) a {
            background: #f3a6ae;
            color: #355e53;
        }*/

    .nightingales-content {
        grid-template-columns: 1fr;
        align-items: start;
        min-height: auto;
        padding: 225px 22px 100px;
    }

    .nightingales-copy {
        max-width: 760px;
    }

    .nightingales-form-card {
        width: 100%;
        max-width: 620px;
        box-sizing: border-box;
        transform: none;
    }

    .nightingales-hero-overlay {
        background: rgba(38, 78, 66, 0.71);
    }
}

/* Mobile layout */

@media (max-width: 600px) {
    .nightingales-hero {
        min-height: 1170px;
    }

    .nightingales-header {
        padding: 14px 16px;
    }

    .nightingales-content {
        padding: 115px 16px 95px;
    }

    .nightingales-logo {
        padding: 7px 10px;
        border-radius: 15px;
        transform: none;
    }

        .nightingales-logo img {
            width: 135px;
        }

    .nightingales-nav {
        top: 76px;
        right: 16px;
        left: 16px;
    }

        .nightingales-nav ul {
            grid-template-columns: 1fr;
        }

    .nightingales-content {
        padding: 200px 16px 95px;
    }

    .nightingales-eyebrow {
        font-size: 14px;
    }

    .nightingales-copy h1 {
        font-size: 43px;
    }

    .nightingales-subheading {
        padding: 17px 18px;
        font-size: 19px;
    }

    .nightingales-form-card {
        padding: 25px 19px;
        border-radius: 22px;
    }

        .nightingales-form-card h2 {
            font-size: 30px;
        }

    .nightingales-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nightingales-arrow {
        display: none;
    }

    .nightingales-controls {
        right: 16px;
        bottom: 24px;
        left: 16px;
        flex-wrap: wrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nightingales-slide,
    .nightingales-submit,
    .nightingales-dot,
    .nightingales-nav a,
    .nightingales-arrow {
        transition: none;
    }
}

/* Compact hero — keeps the full banner within the desktop viewport */

@media (min-width: 981px) {
    .nightingales-hero {
        height: 100svh;
        min-height: 650px;
        max-height: 820px;
    }

    .nightingales-header {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .nightingales-logo {
        padding: 7px 12px;
    }

        .nightingales-logo img {
            width: 155px;
        }

    .nightingales-content {
        min-height: 100%;
        height: 100%;
        box-sizing: border-box;
        gap: 45px;
        /*
        Header is now an overlay, so the content occupies the
        full hero height but receives additional top padding.
        */
        padding-top: 125px;
        padding-bottom: 55px;
    }

    .nightingales-copy h1 {
        margin-bottom: 16px;
        font-size: clamp(40px, 4.2vw, 62px);
        line-height: 1.02;
    }

    .nightingales-eyebrow {
        margin-bottom: 14px;
        padding: 8px 15px;
        font-size: 14px;
    }

    .nightingales-subheading {
        padding: 14px 18px;
        font-size: clamp(17px, 1.5vw, 22px);
        line-height: 1.4;
    }

    .nightingales-form-card {
        padding: 22px 24px;
        border-width: 4px;
        border-radius: 23px;
    }

        .nightingales-form-card h2 {
            font-size: 29px;
        }

    .nightingales-form-intro {
        margin-bottom: 14px;
        font-size: 14px;
        line-height: 1.4;
    }

    .nightingales-form-group {
        margin-bottom: 9px;
    }

        .nightingales-form-group label {
            margin-bottom: 4px;
            font-size: 13px;
        }

        .nightingales-form-group input {
            height: 42px;
            padding: 8px 12px;
            font-size: 14px;
        }

    .nightingales-submit {
        margin-top: 6px;
        padding: 11px 18px;
        font-size: 16px;
    }

    .nightingales-form-note {
        margin-top: 8px;
        font-size: 11px;
        line-height: 1.35;
    }

    .nightingales-controls {
        bottom: 15px;
    }
}

/* Extra compression for shorter laptop screens */

@media (min-width: 981px) and (max-height: 720px) {
    .nightingales-hero {
        min-height: 620px;
    }

    .nightingales-header {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .nightingales-logo img {
        width: 135px;
    }

    /*.nightingales-content {
        height: calc(100% - 88px);
        padding-top: 10px;
        padding-bottom: 42px;
    }*/

    .nightingales-content {
        height: 100%;
        min-height: 100%;
        padding-top: 105px;
        padding-bottom: 42px;
    }

    .nightingales-copy h1 {
        font-size: clamp(36px, 4vw, 54px);
    }

    .nightingales-subheading {
        padding: 12px 16px;
        font-size: 17px;
    }

    .nightingales-form-card {
        padding: 17px 21px;
    }

        .nightingales-form-card h2 {
            font-size: 26px;
        }

    .nightingales-form-intro {
        margin-bottom: 10px;
    }

    .nightingales-form-group {
        margin-bottom: 7px;
    }

        .nightingales-form-group input {
            height: 38px;
        }

    .nightingales-submit {
        padding: 9px 16px;
    }

    .nightingales-form-note {
        margin-top: 5px;
    }

    .nightingales-controls {
        bottom: 10px;
    }
}





.nightingales-story-page {
    --story-green: #355e53;
    --story-green-light: #4f7f72;
    --story-yellow: #f5bb63;
    --story-pink: #f3a6ae;
    --story-blue: #8ed5dc;
    --story-lime: #a8cf88;
    --story-cream: #fffaf1;
    --story-text: #5b6b65;
    overflow: hidden;
    background: #ffffff;
    color: var(--story-text);
    font-family: "Nunito", Arial, sans-serif;
}

    .nightingales-story-page *,
    .nightingales-story-page *::before,
    .nightingales-story-page *::after {
        box-sizing: border-box;
    }

.nightingales-story-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-right: 24px;
    padding-left: 24px;
    padding-top:150px;
}

.nightingales-story-page h1,
.nightingales-story-page h2,
.nightingales-story-page h3 {
    font-family: "Fredoka", Arial, sans-serif;
    font-weight: 600;
}

.nightingales-story-page h2 {
    margin: 0 0 20px;
    color: var(--story-green);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.nightingales-story-page h3 {
    color: var(--story-green);
}

.nightingales-story-page p {
    font-size: 17px;
    line-height: 1.7;
}

.nightingales-story-eyebrow {
    display: inline-block;
    margin: 0 0 15px;
    padding: 8px 16px;
    border-radius: 30px;
    background: var(--story-yellow);
    color: var(--story-green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Hero */

.nightingales-story-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 520px;
    padding: 85px 0;
    overflow: hidden;
    background: linear-gradient( 90deg, rgba(39, 80, 69, 0.95) 0%, rgba(50, 96, 83, 0.83) 47%, rgba(50, 96, 83, 0.3) 100% ), url('/ckfinder/userfiles/images/Nightingales15.jpg') center / cover no-repeat;
}

    .nightingales-story-hero::before {
        position: absolute;
        top: 60px;
        right: 7%;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--story-pink);
        box-shadow: 50px 27px 0 var(--story-blue), 95px -8px 0 var(--story-yellow), 138px 29px 0 var(--story-lime);
        content: "";
    }

    .nightingales-story-hero::after {
        position: absolute;
        right: -90px;
        bottom: -130px;
        width: 310px;
        height: 310px;
        border-radius: 50%;
        background: rgba(243, 166, 174, 0.2);
        content: "";
    }

.nightingales-story-hero-copy {
    max-width: 760px;
    color: #ffffff;
}

.nightingales-story-hero .nightingales-story-eyebrow {
    border: 3px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 8px 20px rgba(22, 56, 47, 0.2);
}

.nightingales-story-hero h1 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    text-shadow: 0 4px 18px rgba(20, 49, 41, 0.28);
}

.nightingales-story-hero-copy > p {
    max-width: 700px;
    margin: 0 0 30px;
    color: #ffffff;
    font-size: clamp(18px, 1.8vw, 23px);
    font-weight: 700;
    line-height: 1.55;
    text-shadow: 0 2px 10px rgba(20, 49, 41, 0.3);
}

.nightingales-story-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .nightingales-story-hero-points li {
        padding: 10px 16px;
        border: 2px solid rgba(255, 255, 255, 0.75);
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.94);
        color: var(--story-green);
        font-size: 14px;
        font-weight: 800;
        box-shadow: 0 7px 18px rgba(24, 55, 47, 0.16);
    }

/* Introduction */

.nightingales-story-intro {
    position: relative;
    padding: 95px 0;
    background: radial-gradient(circle at 5% 20%, rgba(245, 187, 99, 0.19) 0, rgba(245, 187, 99, 0.19) 120px, transparent 121px), radial-gradient(circle at 96% 80%, rgba(142, 213, 220, 0.2) 0, rgba(142, 213, 220, 0.2) 150px, transparent 151px), var(--story-cream);
}

.nightingales-story-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
    gap: 65px;
    align-items: center;
}

.nightingales-story-intro-copy > p {
    margin: 0 0 18px;
}

.nightingales-story-highlight {
    margin-top: 28px;
    padding: 22px 25px;
    border-left: 7px solid var(--story-pink);
    border-radius: 0 18px 18px 0;
    background: #ffffff;
    color: var(--story-green);
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 10px 26px rgba(79, 127, 114, 0.1);
}

.nightingales-story-photo-stack {
    position: relative;
    min-height: 560px;
}

.nightingales-story-photo-main {
    position: absolute;
    inset: 0 65px 70px 0;
    overflow: hidden;
    border: 9px solid #ffffff;
    border-radius: 32px;
    background: url('/ckfinder/userfiles/images/Nightingales30.jpg') center / cover no-repeat;
    box-shadow: 0 18px 44px rgba(79, 127, 114, 0.18);
    transform: rotate(-1deg);
}

.nightingales-story-photo-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 230px;
    border: 8px solid #ffffff;
    border-radius: 26px;
    background: url('/ckfinder/userfiles/images/Nightingales18.jpg') center / cover no-repeat;
    box-shadow: 0 15px 34px rgba(79, 127, 114, 0.2);
    transform: rotate(2deg);
}

.nightingales-story-photo-label {
    position: absolute;
    top: 30px;
    right: 0;
    max-width: 185px;
    padding: 16px 18px;
    border: 3px solid #ffffff;
    border-radius: 18px;
    background: var(--story-yellow);
    color: var(--story-green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    box-shadow: 0 9px 22px rgba(79, 127, 114, 0.16);
    transform: rotate(2deg);
}

/* Mission */

.nightingales-story-mission {
    padding: 95px 0;
    background: #eef8f4;
}

.nightingales-story-section-heading {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

    .nightingales-story-section-heading .nightingales-story-eyebrow {
        background: var(--story-pink);
    }

    .nightingales-story-section-heading p {
        margin: 0;
        font-size: 18px;
    }

.nightingales-story-values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.nightingales-story-value-card {
    position: relative;
    overflow: hidden;
    min-height: 290px;
    padding: 31px 27px;
    border: 5px solid #ffffff;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 13px 32px rgba(79, 127, 114, 0.11);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .nightingales-story-value-card:nth-child(1) {
        border-color: var(--story-yellow);
    }

    .nightingales-story-value-card:nth-child(2) {
        border-color: var(--story-pink);
    }

    .nightingales-story-value-card:nth-child(3) {
        border-color: var(--story-blue);
    }

    .nightingales-story-value-card:nth-child(4) {
        border-color: var(--story-lime);
    }

    .nightingales-story-value-card:hover {
        box-shadow: 0 19px 40px rgba(79, 127, 114, 0.17);
        transform: translateY(-5px);
    }

    .nightingales-story-value-card::after {
        position: absolute;
        right: -40px;
        bottom: -55px;
        width: 145px;
        height: 145px;
        border-radius: 50%;
        background: rgba(142, 213, 220, 0.12);
        content: "";
    }

.nightingales-story-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 19px;
    border-radius: 17px;
    color: var(--story-green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    box-shadow: 0 7px 16px rgba(79, 127, 114, 0.12);
    transform: rotate(-3deg);
}

.nightingales-story-value-card:nth-child(1) .nightingales-story-value-icon {
    background: var(--story-yellow);
}

.nightingales-story-value-card:nth-child(2) .nightingales-story-value-icon {
    background: var(--story-pink);
}

.nightingales-story-value-card:nth-child(3) .nightingales-story-value-icon {
    background: var(--story-blue);
}

.nightingales-story-value-card:nth-child(4) .nightingales-story-value-icon {
    background: var(--story-lime);
}

.nightingales-story-value-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 11px;
    font-size: 25px;
    line-height: 1.2;
}

.nightingales-story-value-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 15px;
}

/* Development */

.nightingales-story-development {
    padding: 95px 0;
    background: #ffffff;
}

.nightingales-story-development-layout {
    display: grid;
    grid-template-columns: minmax(330px, 520px) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}

.nightingales-story-development-image {
    position: relative;
    min-height: 570px;
    border: 9px solid #ffffff;
    border-radius: 32px;
    background: url('/ckfinder/userfiles/images/Nightingales14.jpg') center / cover no-repeat;
    box-shadow: 0 18px 44px rgba(79, 127, 114, 0.18);
    transform: rotate(-1deg);
}

    .nightingales-story-development-image::before {
        position: absolute;
        top: -23px;
        left: 48px;
        width: 75px;
        height: 38px;
        border-radius: 8px;
        background: rgba(243, 166, 174, 0.93);
        content: "";
        transform: rotate(-4deg);
    }

    .nightingales-story-development-image::after {
        position: absolute;
        right: -32px;
        bottom: 45px;
        width: 120px;
        height: 120px;
        z-index: -1;
        border-radius: 50%;
        background: var(--story-blue);
        content: "";
    }

.nightingales-story-development-copy > p {
    margin: 0 0 18px;
}

.nightingales-story-development-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin: 29px 0 0;
    padding: 0;
    list-style: none;
}

    .nightingales-story-development-list li {
        position: relative;
        padding: 15px 15px 15px 48px;
        border-radius: 15px;
        background: var(--story-cream);
        color: var(--story-green);
        font-size: 15px;
        font-weight: 800;
        box-shadow: 0 7px 18px rgba(79, 127, 114, 0.08);
    }

        .nightingales-story-development-list li::before {
            position: absolute;
            top: 50%;
            left: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: var(--story-lime);
            content: "✓";
            transform: translateY(-50%);
        }

/* Our day / practical care */

.nightingales-story-care {
    position: relative;
    padding: 95px 0;
    background: radial-gradient(circle at 4% 78%, rgba(243, 166, 174, 0.18) 0, rgba(243, 166, 174, 0.18) 135px, transparent 136px), radial-gradient(circle at 96% 20%, rgba(168, 207, 136, 0.2) 0, rgba(168, 207, 136, 0.2) 145px, transparent 146px), var(--story-cream);
}

.nightingales-story-care-heading {
    max-width: 830px;
    margin: 0 auto 48px;
    text-align: center;
}

    .nightingales-story-care-heading .nightingales-story-eyebrow {
        background: var(--story-blue);
    }

    .nightingales-story-care-heading p {
        margin: 0;
    }

.nightingales-story-care-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.nightingales-story-care-card {
    position: relative;
    overflow: hidden;
    padding: 32px 28px;
    border: 5px solid #ffffff;
    border-radius: 25px;
    box-shadow: 0 12px 30px rgba(79, 127, 114, 0.11);
}

    .nightingales-story-care-card:nth-child(1) {
        background: #fff0d5;
    }

    .nightingales-story-care-card:nth-child(2) {
        background: #dff2f4;
    }

    .nightingales-story-care-card:nth-child(3) {
        background: #f8dfe2;
    }

    .nightingales-story-care-card::after {
        position: absolute;
        right: -40px;
        bottom: -45px;
        width: 130px;
        height: 130px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.55);
        content: "";
    }

.nightingales-story-care-label {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 22px;
    background: #ffffff;
    color: var(--story-green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.nightingales-story-care-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    font-size: 27px;
}

.nightingales-story-care-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 16px;
}

/* The Best Start feature */

.nightingales-story-best-start {
    padding: 95px 0;
    background: #eef8f4;
}

.nightingales-story-best-start-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
    overflow: hidden;
    border: 6px solid var(--story-yellow);
    border-radius: 31px;
    background: var(--story-green);
    box-shadow: 0 18px 42px rgba(53, 94, 83, 0.2);
}

.nightingales-story-best-start-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px;
}

    .nightingales-story-best-start-copy .nightingales-story-eyebrow {
        align-self: flex-start;
        background: var(--story-pink);
    }

    .nightingales-story-best-start-copy h2 {
        color: #ffffff;
    }

    .nightingales-story-best-start-copy p {
        margin: 0 0 18px;
        color: #eef8f4;
    }

        .nightingales-story-best-start-copy p:last-child {
            margin-bottom: 0;
        }

.nightingales-story-best-start-image {
    min-height: 480px;
    background: url('/ckfinder/userfiles/images/Nightingales19.jpg') center / cover no-repeat;
}

/* CTA */

.nightingales-story-cta-section {
    position: relative;
    padding: 90px 0;
    background: radial-gradient(circle at 7% 50%, rgba(243, 166, 174, 0.24) 0, rgba(243, 166, 174, 0.24) 110px, transparent 111px), radial-gradient(circle at 94% 25%, rgba(168, 207, 136, 0.25) 0, rgba(168, 207, 136, 0.25) 135px, transparent 136px), #ffffff;
}

.nightingales-story-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 35px;
    align-items: center;
    padding: 45px;
    border: 5px solid #ffffff;
    border-radius: 30px;
    background: linear-gradient( 135deg, var(--story-green-light), var(--story-green) );
    box-shadow: 0 18px 44px rgba(53, 94, 83, 0.22);
}

    .nightingales-story-cta h2 {
        margin-bottom: 12px;
        color: #ffffff;
        font-size: clamp(32px, 3.5vw, 47px);
    }

    .nightingales-story-cta p {
        max-width: 850px;
        margin: 0;
        color: #eef8f4;
    }

.nightingales-story-cta-button {
    display: inline-block;
    min-width: 180px;
    padding: 17px 27px;
    border: 3px solid #ffffff;
    border-radius: 30px;
    background: var(--story-pink);
    color: var(--story-green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 9px 20px rgba(26, 57, 49, 0.16);
    transition: background 0.2s ease, transform 0.2s ease;
}

    .nightingales-story-cta-button:hover,
    .nightingales-story-cta-button:focus {
        background: var(--story-yellow);
        transform: translateY(-2px) rotate(-1deg);
    }

/* Tablet */

@media (max-width: 1100px) {
    .nightingales-story-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nightingales-story-intro-layout,
    .nightingales-story-development-layout {
        gap: 42px;
    }
}

@media (max-width: 850px) {
    .nightingales-story-intro-layout,
    .nightingales-story-development-layout {
        grid-template-columns: 1fr;
    }

    .nightingales-story-photo-stack {
        max-width: 620px;
    }

    .nightingales-story-development-image {
        width: 100%;
        max-width: 620px;
    }

    .nightingales-story-care-grid {
        grid-template-columns: 1fr;
    }

    .nightingales-story-best-start-panel {
        grid-template-columns: 1fr;
    }

    .nightingales-story-best-start-image {
        min-height: 380px;
    }

    .nightingales-story-cta {
        grid-template-columns: 1fr;
    }

    .nightingales-story-cta-button {
        justify-self: start;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .nightingales-story-container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .nightingales-story-hero,
    .nightingales-story-intro,
    .nightingales-story-mission,
    .nightingales-story-development,
    .nightingales-story-care,
    .nightingales-story-best-start,
    .nightingales-story-cta-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .nightingales-story-hero {
        min-height: 520px;
        background-position: 60% center;
    }

        .nightingales-story-hero h1 {
            font-size: 43px;
        }

    .nightingales-story-hero-points {
        display: grid;
        grid-template-columns: 1fr;
    }

    .nightingales-story-photo-stack {
        min-height: 440px;
    }

    .nightingales-story-photo-main {
        right: 35px;
        bottom: 70px;
    }

    .nightingales-story-photo-small {
        width: 58%;
        height: 180px;
    }

    .nightingales-story-photo-label {
        top: 18px;
        right: 0;
        max-width: 145px;
        font-size: 14px;
    }

    .nightingales-story-values-grid {
        grid-template-columns: 1fr;
    }

    .nightingales-story-value-card {
        min-height: 0;
    }

    .nightingales-story-development-image {
        min-height: 430px;
        transform: none;
    }

    .nightingales-story-development-list {
        grid-template-columns: 1fr;
    }

    .nightingales-story-best-start-copy {
        padding: 33px 23px;
    }

    .nightingales-story-best-start-image {
        min-height: 280px;
    }

    .nightingales-story-cta {
        padding: 31px 23px;
    }

    .nightingales-story-cta-button {
        width: 100%;
    }
}




.nightingales-why-page {
    --nightingales-green: #355e53;
    --nightingales-green-light: #4f7f72;
    --nightingales-yellow: #f5bb63;
    --nightingales-pink: #f3a6ae;
    --nightingales-blue: #8ed5dc;
    --nightingales-lime: #a8cf88;
    --nightingales-cream: #fffaf1;
    --nightingales-text: #5b6b65;
    overflow: hidden;
    background: #ffffff;
    color: var(--nightingales-text);
    font-family: "Nunito", Arial, sans-serif;
}

    .nightingales-why-page *,
    .nightingales-why-page *::before,
    .nightingales-why-page *::after {
        box-sizing: border-box;
    }

.nightingales-why-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-right: 24px;
    padding-left: 24px;
    padding-top:150px;
}

.nightingales-why-page h1,
.nightingales-why-page h2,
.nightingales-why-page h3 {
    font-family: "Fredoka", Arial, sans-serif;
    font-weight: 600;
}

.nightingales-why-page h2 {
    margin: 0 0 20px;
    color: var(--nightingales-green);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.nightingales-why-page h3 {
    color: var(--nightingales-green);
}

.nightingales-why-page p {
    font-size: 17px;
    line-height: 1.7;
}

.nightingales-why-eyebrow {
    display: inline-block;
    margin: 0 0 15px;
    padding: 8px 16px;
    border-radius: 30px;
    background: var(--nightingales-yellow);
    color: var(--nightingales-green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Introductory banner */

.nightingales-why-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 520px;
    padding: 85px 0;
    overflow: hidden;
    background: linear-gradient( 90deg, rgba(40, 82, 70, 0.94) 0%, rgba(48, 94, 81, 0.84) 48%, rgba(48, 94, 81, 0.36) 100% ), url('/ckfinder/userfiles/images/Nightingales17.jpg') center / cover no-repeat;
}

    .nightingales-why-hero::before {
        position: absolute;
        top: 55px;
        right: 8%;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--nightingales-pink);
        box-shadow: 50px 30px 0 var(--nightingales-blue), 96px -5px 0 var(--nightingales-yellow), 135px 32px 0 var(--nightingales-lime);
        content: "";
    }

.nightingales-why-hero-copy {
    max-width: 770px;
    color: #ffffff;
}

.nightingales-why-hero .nightingales-why-eyebrow {
    border: 3px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 8px 20px rgba(22, 56, 47, 0.2);
}

.nightingales-why-hero h1 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    text-shadow: 0 4px 18px rgba(20, 49, 41, 0.28);
}

.nightingales-why-hero-copy > p {
    max-width: 700px;
    margin: 0 0 30px;
    color: #ffffff;
    font-size: clamp(18px, 1.8vw, 23px);
    font-weight: 700;
    line-height: 1.55;
    text-shadow: 0 2px 10px rgba(20, 49, 41, 0.3);
}

.nightingales-why-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .nightingales-why-hero-points li {
        padding: 10px 16px;
        border: 2px solid rgba(255, 255, 255, 0.75);
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.93);
        color: var(--nightingales-green);
        font-size: 14px;
        font-weight: 800;
        box-shadow: 0 7px 18px rgba(24, 55, 47, 0.16);
    }

/* Funding section */

.nightingales-funding-feature {
    position: relative;
    padding: 90px 0;
    background: radial-gradient(circle at 4% 18%, rgba(245, 187, 99, 0.2) 0, rgba(245, 187, 99, 0.2) 120px, transparent 121px), radial-gradient(circle at 96% 85%, rgba(142, 213, 220, 0.22) 0, rgba(142, 213, 220, 0.22) 155px, transparent 156px), var(--nightingales-cream);
}

.nightingales-funding-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 460px);
    gap: 55px;
    align-items: center;
}

.nightingales-funding-copy > p {
    max-width: 780px;
    margin: 0 0 18px;
}

.nightingales-funding-copy strong {
    color: var(--nightingales-green);
}

.nightingales-funding-promise {
    margin-top: 28px;
    padding: 22px 24px;
    border-left: 7px solid var(--nightingales-pink);
    border-radius: 0 18px 18px 0;
    background: #ffffff;
    color: var(--nightingales-green);
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 10px 26px rgba(79, 127, 114, 0.1);
}

.nightingales-funding-highlight {
    position: relative;
    padding: 34px;
    border: 5px solid #ffffff;
    border-radius: 30px;
    background: linear-gradient( 145deg, var(--nightingales-green-light), var(--nightingales-green) );
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(53, 94, 83, 0.24);
    transform: rotate(0.5deg);
}

    .nightingales-funding-highlight::before {
        position: absolute;
        top: -18px;
        right: 34px;
        width: 65px;
        height: 34px;
        border-radius: 7px;
        background: var(--nightingales-yellow);
        content: "";
        transform: rotate(4deg);
    }

    .nightingales-funding-highlight h3 {
        margin: 0 0 14px;
        color: #ffffff;
        font-size: 32px;
        line-height: 1.15;
    }

    .nightingales-funding-highlight > p {
        margin: 0;
        color: #f0f8f5;
        font-size: 16px;
    }

.nightingales-funding-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-top: 24px;
}

.nightingales-funding-option {
    padding: 21px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 19px;
    color: var(--nightingales-green);
    box-shadow: 0 8px 18px rgba(23, 54, 46, 0.12);
}

    .nightingales-funding-option:first-child {
        background: var(--nightingales-yellow);
        transform: rotate(-1deg);
    }

    .nightingales-funding-option:last-child {
        background: var(--nightingales-blue);
        transform: rotate(1deg);
    }

    .nightingales-funding-option strong {
        display: block;
        margin-bottom: 5px;
        font-family: "Fredoka", Arial, sans-serif;
        font-size: 27px;
        font-weight: 600;
    }

    .nightingales-funding-option span {
        display: block;
        font-size: 14px;
        font-weight: 800;
        line-height: 1.45;
    }

.nightingales-funding-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 50px;
}

.nightingales-funding-step {
    position: relative;
    padding: 28px 24px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 11px 28px rgba(79, 127, 114, 0.11);
}

.nightingales-funding-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin-bottom: 16px;
    border-radius: 15px;
    color: var(--nightingales-green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.nightingales-funding-step:nth-child(1) .nightingales-funding-step-number {
    background: var(--nightingales-pink);
}

.nightingales-funding-step:nth-child(2) .nightingales-funding-step-number {
    background: var(--nightingales-blue);
}

.nightingales-funding-step:nth-child(3) .nightingales-funding-step-number {
    background: var(--nightingales-lime);
}

.nightingales-funding-step h3 {
    margin: 0 0 8px;
    font-size: 23px;
}

.nightingales-funding-step p {
    margin: 0;
    font-size: 15px;
}

/* Reasons grid */

.nightingales-reasons-section {
    position: relative;
    padding: 95px 0;
    background: #eef8f4;
}

.nightingales-reasons-heading {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

    .nightingales-reasons-heading .nightingales-why-eyebrow {
        background: var(--nightingales-pink);
    }

    .nightingales-reasons-heading p {
        margin: 0;
        font-size: 18px;
    }

.nightingales-reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.nightingales-reason-card {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    min-height: 340px;
    overflow: hidden;
    border: 5px solid #ffffff;
    border-radius: 27px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(79, 127, 114, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .nightingales-reason-card:nth-child(1) {
        border-color: var(--nightingales-yellow);
    }

    .nightingales-reason-card:nth-child(2) {
        border-color: var(--nightingales-blue);
    }

    .nightingales-reason-card:nth-child(3) {
        border-color: var(--nightingales-pink);
    }

    .nightingales-reason-card:nth-child(4) {
        border-color: var(--nightingales-lime);
    }

    .nightingales-reason-card:hover {
        box-shadow: 0 20px 42px rgba(79, 127, 114, 0.18);
        transform: translateY(-5px);
    }

.nightingales-reason-image {
    min-height: 100%;
    background-position: center;
    background-size: cover;
}

.nightingales-reason-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.nightingales-reason-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    width: 48px;
    height: 48px;
    margin-bottom: 17px;
    border-radius: 16px;
    color: var(--nightingales-green);
    font-size: 23px;
    box-shadow: 0 6px 14px rgba(79, 127, 114, 0.12);
    transform: rotate(-3deg);
}

.nightingales-reason-card:nth-child(1) .nightingales-reason-icon {
    background: var(--nightingales-yellow);
}

.nightingales-reason-card:nth-child(2) .nightingales-reason-icon {
    background: var(--nightingales-blue);
}

.nightingales-reason-card:nth-child(3) .nightingales-reason-icon {
    background: var(--nightingales-pink);
}

.nightingales-reason-card:nth-child(4) .nightingales-reason-icon {
    background: var(--nightingales-lime);
}

.nightingales-reason-content h3 {
    margin: 0 0 12px;
    font-size: 27px;
    line-height: 1.2;
}

.nightingales-reason-content p {
    margin: 0;
    font-size: 16px;
}

/* Outdoor feature */

.nightingales-outdoor-section {
    position: relative;
    padding: 95px 0;
    background: var(--nightingales-cream);
}

.nightingales-outdoor-layout {
    display: grid;
    grid-template-columns: minmax(330px, 560px) minmax(0, 1fr);
    gap: 65px;
    align-items: center;
}

.nightingales-outdoor-collage {
    position: relative;
    min-height: 560px;
}

.nightingales-outdoor-main-image {
    position: absolute;
    inset: 0 75px 70px 0;
    overflow: hidden;
    border: 9px solid #ffffff;
    border-radius: 32px;
    background: url('/ckfinder/userfiles/images/Nightingales16.jpg') center / cover no-repeat;
    box-shadow: 0 18px 44px rgba(79, 127, 114, 0.18);
    transform: rotate(-1deg);
}

.nightingales-outdoor-small-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 235px;
    overflow: hidden;
    border: 8px solid #ffffff;
    border-radius: 26px;
    background: url('/ckfinder/userfiles/images/Nightingales27.jpg') center / cover no-repeat;
    box-shadow: 0 15px 34px rgba(79, 127, 114, 0.2);
    transform: rotate(2deg);
}

.nightingales-outdoor-label {
    position: absolute;
    top: 32px;
    right: 12px;
    max-width: 180px;
    padding: 16px 18px;
    border: 3px solid #ffffff;
    border-radius: 17px;
    background: var(--nightingales-yellow);
    color: var(--nightingales-green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    box-shadow: 0 9px 22px rgba(79, 127, 114, 0.16);
    transform: rotate(2deg);
}

.nightingales-outdoor-copy > p {
    margin: 0 0 18px;
}

.nightingales-outdoor-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

    .nightingales-outdoor-list li {
        position: relative;
        padding: 15px 15px 15px 47px;
        border-radius: 15px;
        background: #ffffff;
        color: var(--nightingales-green);
        font-size: 15px;
        font-weight: 800;
        box-shadow: 0 7px 18px rgba(79, 127, 114, 0.08);
    }

        .nightingales-outdoor-list li::before {
            position: absolute;
            top: 50%;
            left: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: var(--nightingales-blue);
            content: "✓";
            transform: translateY(-50%);
        }

/* Age journey */

.nightingales-journey-section {
    padding: 95px 0;
    background: #ffffff;
}

.nightingales-journey-heading {
    max-width: 830px;
    margin: 0 auto 48px;
    text-align: center;
}

    .nightingales-journey-heading .nightingales-why-eyebrow {
        background: var(--nightingales-blue);
    }

    .nightingales-journey-heading p {
        margin: 0;
    }

.nightingales-journey-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.nightingales-journey-card {
    position: relative;
    overflow: hidden;
    padding: 32px 28px;
    border-radius: 25px;
    box-shadow: 0 12px 30px rgba(79, 127, 114, 0.11);
}

    .nightingales-journey-card:nth-child(1) {
        background: #fff0d5;
    }

    .nightingales-journey-card:nth-child(2) {
        background: #dff2f4;
    }

    .nightingales-journey-card:nth-child(3) {
        background: #e7f1dd;
    }

    .nightingales-journey-card::after {
        position: absolute;
        right: -35px;
        bottom: -45px;
        width: 130px;
        height: 130px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.55);
        content: "";
    }

.nightingales-journey-age {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 22px;
    background: #ffffff;
    color: var(--nightingales-green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.nightingales-journey-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    font-size: 27px;
}

.nightingales-journey-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 16px;
}

/* Meals banner */

.nightingales-meals-section {
    padding: 0 0 95px;
    background: #ffffff;
}

.nightingales-meals-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 480px);
    overflow: hidden;
    border: 6px solid var(--nightingales-yellow);
    border-radius: 30px;
    background: var(--nightingales-green);
    box-shadow: 0 17px 40px rgba(53, 94, 83, 0.18);
}

.nightingales-meals-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
}

    .nightingales-meals-copy .nightingales-why-eyebrow {
        align-self: flex-start;
        background: var(--nightingales-pink);
    }

    .nightingales-meals-copy h2 {
        color: #ffffff;
    }

    .nightingales-meals-copy p {
        margin: 0;
        color: #eef8f4;
    }

.nightingales-meals-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 25px;
}

    .nightingales-meals-badges span {
        padding: 10px 14px;
        border-radius: 22px;
        background: #ffffff;
        color: var(--nightingales-green);
        font-size: 14px;
        font-weight: 800;
    }

.nightingales-meals-image {
    min-height: 430px;
    background: url('/ckfinder/userfiles/images/Nightingales31.jpg') center / cover no-repeat;
}

/* Final call to action */

.nightingales-why-cta-section {
    position: relative;
    padding: 90px 0;
    background: radial-gradient(circle at 8% 50%, rgba(243, 166, 174, 0.25) 0, rgba(243, 166, 174, 0.25) 110px, transparent 111px), radial-gradient(circle at 94% 25%, rgba(168, 207, 136, 0.25) 0, rgba(168, 207, 136, 0.25) 135px, transparent 136px), #eef8f4;
}

.nightingales-why-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 35px;
    align-items: center;
    padding: 45px;
    border: 5px solid #ffffff;
    border-radius: 30px;
    background: linear-gradient( 135deg, var(--nightingales-green-light), var(--nightingales-green) );
    box-shadow: 0 18px 44px rgba(53, 94, 83, 0.22);
}

    .nightingales-why-cta h2 {
        margin-bottom: 12px;
        color: #ffffff;
        font-size: clamp(32px, 3.5vw, 47px);
    }

    .nightingales-why-cta p {
        max-width: 850px;
        margin: 0;
        color: #eef8f4;
    }

.nightingales-why-cta-button {
    display: inline-block;
    min-width: 180px;
    padding: 17px 27px;
    border: 3px solid #ffffff;
    border-radius: 30px;
    background: var(--nightingales-pink);
    color: var(--nightingales-green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 9px 20px rgba(26, 57, 49, 0.16);
    transition: background 0.2s ease, transform 0.2s ease;
}

    .nightingales-why-cta-button:hover,
    .nightingales-why-cta-button:focus {
        background: var(--nightingales-yellow);
        transform: translateY(-2px) rotate(-1deg);
    }

/* Tablet */

@media (max-width: 1050px) {
    .nightingales-funding-intro {
        grid-template-columns: 1fr;
    }

    .nightingales-funding-highlight {
        max-width: 720px;
    }

    .nightingales-reason-card {
        grid-template-columns: 185px minmax(0, 1fr);
    }

    .nightingales-outdoor-layout {
        grid-template-columns: minmax(300px, 450px) minmax(0, 1fr);
        gap: 40px;
    }
}

@media (max-width: 850px) {
    .nightingales-why-hero {
        min-height: 480px;
    }

    .nightingales-funding-steps,
    .nightingales-journey-grid {
        grid-template-columns: 1fr;
    }

    .nightingales-reasons-grid {
        grid-template-columns: 1fr;
    }

    .nightingales-reason-card {
        grid-template-columns: 230px minmax(0, 1fr);
    }

    .nightingales-outdoor-layout {
        grid-template-columns: 1fr;
    }

    .nightingales-outdoor-collage {
        max-width: 620px;
    }

    .nightingales-meals-panel {
        grid-template-columns: 1fr;
    }

    .nightingales-meals-image {
        min-height: 360px;
    }

    .nightingales-why-cta {
        grid-template-columns: 1fr;
    }

    .nightingales-why-cta-button {
        justify-self: start;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .nightingales-why-container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .nightingales-why-hero,
    .nightingales-funding-feature,
    .nightingales-reasons-section,
    .nightingales-outdoor-section,
    .nightingales-journey-section,
    .nightingales-why-cta-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .nightingales-why-hero {
        min-height: 520px;
        background-position: 62% center;
    }

        .nightingales-why-hero h1 {
            font-size: 43px;
        }

    .nightingales-why-hero-points {
        display: grid;
        grid-template-columns: 1fr;
    }

    .nightingales-funding-options {
        grid-template-columns: 1fr;
    }

    .nightingales-funding-option {
        transform: none !important;
    }

    .nightingales-funding-highlight {
        padding: 29px 22px;
        transform: none;
    }

    .nightingales-reason-card {
        grid-template-columns: 1fr;
    }

    .nightingales-reason-image {
        min-height: 250px;
    }

    .nightingales-reason-content {
        padding: 26px 22px;
    }

    .nightingales-outdoor-collage {
        min-height: 440px;
    }

    .nightingales-outdoor-main-image {
        right: 35px;
        bottom: 70px;
    }

    .nightingales-outdoor-small-image {
        width: 57%;
        height: 180px;
    }

    .nightingales-outdoor-label {
        top: 20px;
        right: 0;
        max-width: 145px;
        font-size: 14px;
    }

    .nightingales-outdoor-list {
        grid-template-columns: 1fr;
    }

    .nightingales-meals-section {
        padding-bottom: 65px;
    }

    .nightingales-meals-copy {
        padding: 32px 23px;
    }

    .nightingales-meals-image {
        min-height: 270px;
    }

    .nightingales-why-cta {
        padding: 31px 23px;
    }

    .nightingales-why-cta-button {
        width: 100%;
    }
}



.nightingales-team-section {
    padding: 150px 0;
    background: #eef8f4;
    color: #5b6b65;
    font-family: "Nunito", Arial, sans-serif;
}

    .nightingales-team-section *,
    .nightingales-team-section *::before,
    .nightingales-team-section *::after {
        box-sizing: border-box;
    }

.nightingales-team-container {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
}

.nightingales-team-heading {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.nightingales-team-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #f5bb63;
    color: #355e53;
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nightingales-team-heading h2 {
    margin: 0 0 18px;
    color: #355e53;
    font-family: "Fredoka", Arial, sans-serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.nightingales-team-heading p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
}

.nightingales-team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.nightingales-team-card {
    padding: 35px 28px;
    border: 5px solid #ffffff;
    border-radius: 28px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 15px 35px rgba(53, 94, 83, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .nightingales-team-card:nth-child(1) {
        border-color: #f5bb63;
    }

    .nightingales-team-card:nth-child(2) {
        border-color: #8ed5dc;
    }

    .nightingales-team-card:nth-child(3) {
        border-color: #f3a6ae;
    }

    .nightingales-team-card:nth-child(4) {
        border-color: #a8cf88;
    }

    .nightingales-team-card:hover {
        box-shadow: 0 20px 42px rgba(53, 94, 83, 0.16);
        transform: translateY(-8px);
    }

.nightingales-team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 22px;
    overflow: hidden;
    border: 6px solid #355e53;
    border-radius: 50%;
    background: #fffaf1;
    box-shadow: 0 10px 24px rgba(53, 94, 83, 0.16);
}

    .nightingales-team-photo img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.nightingales-team-card:nth-child(1) .nightingales-team-photo {
    border-color: #f5bb63;
}

.nightingales-team-card:nth-child(2) .nightingales-team-photo {
    border-color: #8ed5dc;
}

.nightingales-team-card:nth-child(3) .nightingales-team-photo {
    border-color: #f3a6ae;
}

.nightingales-team-card:nth-child(4) .nightingales-team-photo {
    border-color: #a8cf88;
}

.nightingales-team-card h3 {
    margin: 0;
    color: #355e53;
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
}

.nightingales-team-role {
    display: inline-block;
    margin: 10px 0 20px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #355e53;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.nightingales-team-card > p {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.7;
}

.nightingales-team-info {
    padding-top: 20px;
    border-top: 2px dashed #d7e8df;
    text-align: left;
}

.nightingales-team-detail {
    margin-bottom: 16px;
}

    .nightingales-team-detail:last-child {
        margin-bottom: 0;
    }

    .nightingales-team-detail strong {
        display: block;
        margin-bottom: 5px;
        color: #355e53;
        font-family: "Fredoka", Arial, sans-serif;
        font-size: 15px;
        font-weight: 600;
    }

    .nightingales-team-detail span {
        display: block;
        font-size: 14px;
        line-height: 1.55;
    }

@media (max-width: 1100px) {
    .nightingales-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .nightingales-team-section {
        padding: 65px 0;
    }

    .nightingales-team-container {
        width: min(100% - 32px, 1400px);
    }

    .nightingales-team-heading {
        margin-bottom: 42px;
    }

    .nightingales-team-grid {
        grid-template-columns: 1fr;
    }

    .nightingales-team-card {
        padding: 30px 24px;
    }
}


.nightingales-school-page {
    --nightingales-green: #355e53;
    --nightingales-green-light: #4f7f72;
    --nightingales-yellow: #f5bb63;
    --nightingales-pink: #f3a6ae;
    --nightingales-blue: #8ed5dc;
    --nightingales-lime: #a8cf88;
    --nightingales-cream: #fffaf1;
    --nightingales-text: #5b6b65;
    overflow: hidden;
    background: #ffffff;
    color: var(--nightingales-text);
    font-family: "Nunito", Arial, sans-serif;
}

    .nightingales-school-page *,
    .nightingales-school-page *::before,
    .nightingales-school-page *::after {
        box-sizing: border-box;
    }

.nightingales-school-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-right: 24px;
    padding-left: 24px;
    padding-top:150px;
}

.nightingales-school-page h1,
.nightingales-school-page h2,
.nightingales-school-page h3 {
    font-family: "Fredoka", Arial, sans-serif;
    font-weight: 600;
}

.nightingales-school-page h2 {
    margin: 0 0 20px;
    color: var(--nightingales-green);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.nightingales-school-page h3 {
    color: var(--nightingales-green);
}

.nightingales-school-page p {
    font-size: 17px;
    line-height: 1.7;
}

.nightingales-school-eyebrow {
    display: inline-block;
    margin: 0 0 15px;
    padding: 8px 16px;
    border-radius: 30px;
    background: var(--nightingales-yellow);
    color: var(--nightingales-green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Header and navigation */

.nightingales-school-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 32px;
}

.nightingales-school-logo {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border: 3px solid rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 28px rgba(17, 51, 42, 0.2);
    transform: rotate(-1deg);
}

    .nightingales-school-logo img {
        display: block;
        width: 155px;
        max-width: 100%;
        height: auto;
    }

.nightingales-school-nav {
    padding: 8px 12px;
    border: 2px solid rgba(255, 255, 255, 0.27);
    border-radius: 32px;
    background: rgba(41, 83, 71, 0.82);
    box-shadow: 0 9px 24px rgba(20, 55, 46, 0.22);
    backdrop-filter: blur(8px);
}

    .nightingales-school-nav ul {
        display: flex;
        align-items: center;
        gap: 4px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nightingales-school-nav a {
        display: block;
        padding: 10px 11px;
        border-radius: 22px;
        color: #ffffff;
        font-size: 13px;
        font-weight: 800;
        line-height: 1.25;
        text-decoration: none;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

        .nightingales-school-nav a:hover,
        .nightingales-school-nav a:focus,
        .nightingales-school-nav a[aria-current="page"] {
            background: var(--nightingales-blue);
            color: var(--nightingales-green);
            transform: translateY(-1px);
        }

.nightingales-school-menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 46px;
    border: 3px solid #ffffff;
    border-radius: 15px;
    background: var(--nightingales-yellow);
    color: var(--nightingales-green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 7px 18px rgba(19, 53, 44, 0.2);
}

/* Hero */

.nightingales-school-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 650px;
    padding: 150px 0 95px;
    overflow: hidden;
    background: linear-gradient( 90deg, rgba(40, 82, 70, 0.95) 0%, rgba(48, 94, 81, 0.84) 48%, rgba(48, 94, 81, 0.4) 100% ), url('/ckfinder/userfiles/images/Nightingales24.jpg') center / cover no-repeat;
}

    .nightingales-school-hero::before {
        position: absolute;
        top: 145px;
        right: 8%;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--nightingales-pink);
        box-shadow: 50px 30px 0 var(--nightingales-blue), 96px -5px 0 var(--nightingales-yellow), 135px 32px 0 var(--nightingales-lime);
        content: "";
    }

.nightingales-school-hero-copy {
    max-width: 790px;
    color: #ffffff;
}

.nightingales-school-hero .nightingales-school-eyebrow {
    border: 3px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 8px 20px rgba(22, 56, 47, 0.2);
}

.nightingales-school-hero h1 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    text-shadow: 0 4px 18px rgba(20, 49, 41, 0.28);
}

.nightingales-school-hero-copy > p {
    max-width: 720px;
    margin: 0 0 30px;
    color: #ffffff;
    font-size: clamp(18px, 1.8vw, 23px);
    font-weight: 700;
    line-height: 1.55;
    text-shadow: 0 2px 10px rgba(20, 49, 41, 0.3);
}

.nightingales-school-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .nightingales-school-hero-points li {
        padding: 10px 16px;
        border: 2px solid rgba(255, 255, 255, 0.75);
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.93);
        color: var(--nightingales-green);
        font-size: 14px;
        font-weight: 800;
        box-shadow: 0 7px 18px rgba(24, 55, 47, 0.16);
    }

/* Intro */

.nightingales-school-intro {
    position: relative;
    padding: 90px 0;
    background: radial-gradient(circle at 3% 20%, rgba(245, 187, 99, 0.2) 0, rgba(245, 187, 99, 0.2) 120px, transparent 121px), radial-gradient(circle at 96% 82%, rgba(142, 213, 220, 0.22) 0, rgba(142, 213, 220, 0.22) 155px, transparent 156px), var(--nightingales-cream);
}

.nightingales-school-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
    gap: 60px;
    align-items: center;
}

.nightingales-school-intro-copy p {
    margin: 0 0 18px;
}

.nightingales-school-intro-highlight {
    position: relative;
    padding: 34px;
    border: 5px solid #ffffff;
    border-radius: 30px;
    background: linear-gradient(145deg, var(--nightingales-green-light), var(--nightingales-green));
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(53, 94, 83, 0.24);
    transform: rotate(0.5deg);
}

    .nightingales-school-intro-highlight::before {
        position: absolute;
        top: -18px;
        right: 34px;
        width: 65px;
        height: 34px;
        border-radius: 7px;
        background: var(--nightingales-pink);
        content: "";
        transform: rotate(4deg);
    }

    .nightingales-school-intro-highlight h3 {
        margin: 0 0 14px;
        color: #ffffff;
        font-size: 32px;
        line-height: 1.15;
    }

    .nightingales-school-intro-highlight p {
        margin: 0;
        color: #f0f8f5;
        font-size: 16px;
    }

.nightingales-school-intro-promise {
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 18px;
    background: var(--nightingales-yellow);
    color: var(--nightingales-green);
    font-size: 17px;
    font-weight: 800;
}

/* Pillars */

.nightingales-school-pillars {
    padding: 95px 0;
    background: #eef8f4;
}

.nightingales-school-heading {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

    .nightingales-school-heading .nightingales-school-eyebrow {
        background: var(--nightingales-pink);
    }

    .nightingales-school-heading p {
        margin: 0;
        font-size: 18px;
    }

.nightingales-school-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.nightingales-school-pillar-card {
    position: relative;
    overflow: hidden;
    padding: 30px 27px;
    border: 5px solid #ffffff;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(79, 127, 114, 0.11);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .nightingales-school-pillar-card:nth-child(1) {
        border-color: var(--nightingales-yellow);
    }

    .nightingales-school-pillar-card:nth-child(2) {
        border-color: var(--nightingales-blue);
    }

    .nightingales-school-pillar-card:nth-child(3) {
        border-color: var(--nightingales-pink);
    }

    .nightingales-school-pillar-card:nth-child(4) {
        border-color: var(--nightingales-lime);
    }

    .nightingales-school-pillar-card:nth-child(5) {
        border-color: var(--nightingales-yellow);
    }

    .nightingales-school-pillar-card:nth-child(6) {
        border-color: var(--nightingales-blue);
    }

    .nightingales-school-pillar-card:hover {
        box-shadow: 0 18px 38px rgba(79, 127, 114, 0.17);
        transform: translateY(-5px);
    }

.nightingales-school-pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 17px;
    background: var(--nightingales-yellow);
    color: var(--nightingales-green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(79, 127, 114, 0.12);
    transform: rotate(-3deg);
}

.nightingales-school-pillar-card:nth-child(2) .nightingales-school-pillar-icon,
.nightingales-school-pillar-card:nth-child(6) .nightingales-school-pillar-icon {
    background: var(--nightingales-blue);
}

.nightingales-school-pillar-card:nth-child(3) .nightingales-school-pillar-icon {
    background: var(--nightingales-pink);
}

.nightingales-school-pillar-card:nth-child(4) .nightingales-school-pillar-icon {
    background: var(--nightingales-lime);
}

.nightingales-school-pillar-card h3 {
    margin: 0 0 11px;
    font-size: 25px;
    line-height: 1.2;
}

.nightingales-school-pillar-card p {
    margin: 0;
    font-size: 16px;
}

/* Image feature */

.nightingales-school-feature {
    padding: 95px 0;
    background: var(--nightingales-cream);
}

.nightingales-school-feature-layout {
    display: grid;
    grid-template-columns: minmax(330px, 560px) minmax(0, 1fr);
    gap: 65px;
    align-items: center;
}

.nightingales-school-feature-collage {
    position: relative;
    min-height: 560px;
}

.nightingales-school-feature-main-image {
    position: absolute;
    inset: 0 75px 70px 0;
    overflow: hidden;
    border: 9px solid #ffffff;
    border-radius: 32px;
    background: url('/ckfinder/userfiles/images/Nightingales25.jpg') center / cover no-repeat;
    box-shadow: 0 18px 44px rgba(79, 127, 114, 0.18);
    transform: rotate(-1deg);
}

.nightingales-school-feature-small-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 235px;
    overflow: hidden;
    border: 8px solid #ffffff;
    border-radius: 26px;
    background: url('/ckfinder/userfiles/images/Nightingales28.jpg') center / cover no-repeat;
    box-shadow: 0 15px 34px rgba(79, 127, 114, 0.2);
    transform: rotate(2deg);
}

.nightingales-school-feature-label {
    position: absolute;
    top: 32px;
    right: 12px;
    max-width: 190px;
    padding: 16px 18px;
    border: 3px solid #ffffff;
    border-radius: 17px;
    background: var(--nightingales-yellow);
    color: var(--nightingales-green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    box-shadow: 0 9px 22px rgba(79, 127, 114, 0.16);
    transform: rotate(2deg);
}

.nightingales-school-feature-copy > p {
    margin: 0 0 18px;
}

.nightingales-school-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

    .nightingales-school-checklist li {
        position: relative;
        padding: 15px 15px 15px 47px;
        border-radius: 15px;
        background: #ffffff;
        color: var(--nightingales-green);
        font-size: 15px;
        font-weight: 800;
        box-shadow: 0 7px 18px rgba(79, 127, 114, 0.08);
    }

        .nightingales-school-checklist li::before {
            position: absolute;
            top: 50%;
            left: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: var(--nightingales-blue);
            content: "✓";
            transform: translateY(-50%);
        }

/* Transition steps */

.nightingales-school-transition {
    padding: 95px 0;
    background: #ffffff;
}

.nightingales-school-transition-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 48px;
}

.nightingales-school-transition-card {
    position: relative;
    padding: 29px 24px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 11px 28px rgba(79, 127, 114, 0.11);
}

    .nightingales-school-transition-card:nth-child(1) {
        background: #fff0d5;
    }

    .nightingales-school-transition-card:nth-child(2) {
        background: #dff2f4;
    }

    .nightingales-school-transition-card:nth-child(3) {
        background: #fde4e7;
    }

    .nightingales-school-transition-card:nth-child(4) {
        background: #e7f1dd;
    }

.nightingales-school-transition-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 17px;
    border-radius: 15px;
    background: #ffffff;
    color: var(--nightingales-green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.nightingales-school-transition-card h3 {
    margin: 0 0 9px;
    font-size: 23px;
}

.nightingales-school-transition-card p {
    margin: 0;
    font-size: 15px;
}

/* Parent tips */

.nightingales-school-parent-section {
    padding: 95px 0;
    background: #eef8f4;
}

.nightingales-school-parent-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 480px);
    overflow: hidden;
    border: 6px solid var(--nightingales-yellow);
    border-radius: 30px;
    background: var(--nightingales-green);
    box-shadow: 0 17px 40px rgba(53, 94, 83, 0.18);
}

.nightingales-school-parent-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
}

    .nightingales-school-parent-copy .nightingales-school-eyebrow {
        align-self: flex-start;
        background: var(--nightingales-pink);
    }

    .nightingales-school-parent-copy h2 {
        color: #ffffff;
    }

    .nightingales-school-parent-copy p {
        margin: 0;
        color: #eef8f4;
    }

.nightingales-school-parent-tips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin-top: 25px;
}

    .nightingales-school-parent-tips span {
        padding: 12px 14px;
        border-radius: 18px;
        background: #ffffff;
        color: var(--nightingales-green);
        font-size: 14px;
        font-weight: 800;
    }

.nightingales-school-parent-image {
    min-height: 450px;
    background: url('/ckfinder/userfiles/images/Nightingales32.jpg') center / cover no-repeat;
}

/* FAQ */

.nightingales-school-faq {
    padding: 95px 0;
    background: var(--nightingales-cream);
}

.nightingales-school-faq-list {
    display: grid;
    gap: 16px;
    max-width: 980px;
    margin: 42px auto 0;
}

.nightingales-school-faq-item {
    padding: 22px 24px;
    border: 3px solid #ffffff;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 9px 24px rgba(79, 127, 114, 0.1);
}

    .nightingales-school-faq-item summary {
        color: var(--nightingales-green);
        font-family: "Fredoka", Arial, sans-serif;
        font-size: 21px;
        font-weight: 600;
        cursor: pointer;
    }

    .nightingales-school-faq-item p {
        margin: 15px 0 0;
        font-size: 16px;
    }

/* CTA */

.nightingales-school-cta-section {
    position: relative;
    padding: 90px 0;
    background: radial-gradient(circle at 8% 50%, rgba(243, 166, 174, 0.25) 0, rgba(243, 166, 174, 0.25) 110px, transparent 111px), radial-gradient(circle at 94% 25%, rgba(168, 207, 136, 0.25) 0, rgba(168, 207, 136, 0.25) 135px, transparent 136px), #eef8f4;
}

.nightingales-school-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 35px;
    align-items: center;
    padding: 45px;
    border: 5px solid #ffffff;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--nightingales-green-light), var(--nightingales-green));
    box-shadow: 0 18px 44px rgba(53, 94, 83, 0.22);
}

    .nightingales-school-cta h2 {
        margin-bottom: 12px;
        color: #ffffff;
        font-size: clamp(32px, 3.5vw, 47px);
    }

    .nightingales-school-cta p {
        max-width: 850px;
        margin: 0;
        color: #eef8f4;
    }

.nightingales-school-cta-button {
    display: inline-block;
    min-width: 180px;
    padding: 17px 27px;
    border: 3px solid #ffffff;
    border-radius: 30px;
    background: var(--nightingales-pink);
    color: var(--nightingales-green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 9px 20px rgba(26, 57, 49, 0.16);
    transition: background 0.2s ease, transform 0.2s ease;
}

    .nightingales-school-cta-button:hover,
    .nightingales-school-cta-button:focus {
        background: var(--nightingales-yellow);
        transform: translateY(-2px) rotate(-1deg);
    }

/* Tablet */

@media (max-width: 1180px) {
    .nightingales-school-nav a {
        padding: 9px 7px;
        font-size: 12px;
    }
}

@media (max-width: 980px) {
    .nightingales-school-header {
        align-items: flex-start;
        padding: 18px 22px;
    }

    .nightingales-school-menu-button {
        display: flex;
    }

    .nightingales-school-nav {
        position: absolute;
        top: 88px;
        right: 22px;
        left: 22px;
        display: none;
        padding: 18px;
        border: 3px solid #ffffff;
        border-radius: 22px;
        background: rgba(53, 94, 83, 0.98);
        box-shadow: 0 14px 32px rgba(17, 49, 40, 0.28);
    }

        .nightingales-school-nav.open {
            display: block;
        }

        .nightingales-school-nav ul {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px;
        }

        .nightingales-school-nav a {
            padding: 11px 13px;
            font-size: 15px;
        }

    .nightingales-school-intro-layout,
    .nightingales-school-feature-layout {
        grid-template-columns: 1fr;
    }

    .nightingales-school-intro-highlight {
        max-width: 720px;
    }

    .nightingales-school-pillars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nightingales-school-transition-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nightingales-school-feature-collage {
        max-width: 620px;
    }

    .nightingales-school-parent-panel {
        grid-template-columns: 1fr;
    }

    .nightingales-school-parent-image {
        min-height: 360px;
    }

    .nightingales-school-cta {
        grid-template-columns: 1fr;
    }

    .nightingales-school-cta-button {
        justify-self: start;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .nightingales-school-container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .nightingales-school-header {
        padding: 14px 16px;
    }

    .nightingales-school-logo {
        padding: 7px 10px;
        border-radius: 15px;
        transform: none;
    }

        .nightingales-school-logo img {
            width: 135px;
        }

    .nightingales-school-nav {
        top: 76px;
        right: 16px;
        left: 16px;
    }

        .nightingales-school-nav ul {
            grid-template-columns: 1fr;
        }

    .nightingales-school-hero {
        min-height: 620px;
        padding-top: 135px;
        background-position: 62% center;
    }

        .nightingales-school-hero h1 {
            font-size: 43px;
        }

    .nightingales-school-hero-points {
        display: grid;
        grid-template-columns: 1fr;
    }

    .nightingales-school-intro,
    .nightingales-school-pillars,
    .nightingales-school-feature,
    .nightingales-school-transition,
    .nightingales-school-parent-section,
    .nightingales-school-faq,
    .nightingales-school-cta-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .nightingales-school-intro-highlight {
        padding: 29px 22px;
        transform: none;
    }

    .nightingales-school-pillars-grid,
    .nightingales-school-transition-grid {
        grid-template-columns: 1fr;
    }

    .nightingales-school-feature-collage {
        min-height: 440px;
    }

    .nightingales-school-feature-main-image {
        right: 35px;
        bottom: 70px;
    }

    .nightingales-school-feature-small-image {
        width: 57%;
        height: 180px;
    }

    .nightingales-school-feature-label {
        top: 20px;
        right: 0;
        max-width: 150px;
        font-size: 14px;
    }

    .nightingales-school-checklist,
    .nightingales-school-parent-tips {
        grid-template-columns: 1fr;
    }

    .nightingales-school-parent-copy {
        padding: 32px 23px;
    }

    .nightingales-school-parent-image {
        min-height: 280px;
    }

    .nightingales-school-cta {
        padding: 31px 23px;
    }

    .nightingales-school-cta-button {
        width: 100%;
    }
}


.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 650px;
    padding: 225px 0 100px;
    background: linear-gradient(90deg, rgba(40,82,70,.96) 0%, rgba(48,94,81,.83) 50%, rgba(48,94,81,.38) 100%), url('/ckfinder/userfiles/images/Nightingales34.jpg') center / cover no-repeat;
}

    .hero::after {
        position: absolute;
        right: 6%;
        bottom: 48px;
        width: 150px;
        height: 150px;
        border: 20px solid rgba(245,187,99,.92);
        border-radius: 50%;
        content: "";
        transform: rotate(8deg);
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--white);
}

.hero .eyebrow {
    border: 3px solid rgba(255,255,255,.75);
}

.hero h1 {
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.02;
    text-shadow: 0 4px 18px rgba(20,49,41,.28);
}

.hero p {
    max-width: 740px;
    margin-bottom: 30px;
    color: var(--white);
    font-size: clamp(18px, 2vw, 23px);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(20,49,41,.3);
}

.hero-hours {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

    .hero-hours span {
        padding: 12px 18px;
        border: 3px solid rgba(255,255,255,.8);
        border-radius: 999px;
        background: rgba(255,255,255,.94);
        color: var(--green);
        font-weight: 800;
        box-shadow: 0 8px 20px rgba(24,55,47,.16);
    }

/* Introduction */

.intro {
    padding: 90px 0;
    background: radial-gradient(circle at 4% 18%, rgba(245,187,99,.22) 0 120px, transparent 121px), radial-gradient(circle at 96% 82%, rgba(142,213,220,.22) 0 150px, transparent 151px), var(--cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
    gap: 60px;
    align-items: center;
}

.intro-card {
    padding: 35px;
    border: 6px solid var(--white);
    border-radius: 30px;
    background: linear-gradient(145deg, var(--green-light), var(--green));
    color: var(--white);
    box-shadow: 0 18px 42px rgba(53,94,83,.24);
    transform: rotate(.6deg);
}

    .intro-card h3 {
        margin-bottom: 14px;
        color: var(--white);
        font-size: 32px;
    }

    .intro-card p {
        margin: 0;
        color: #eff8f5;
    }

.intro-note {
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 18px;
    background: var(--yellow);
    color: var(--green);
    font-weight: 800;
}

/* Timeline */

.timeline-section {
    padding: 95px 0;
    background: #eef8f4;
}

.section-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

    .section-heading p {
        margin-bottom: 0;
        font-size: 18px;
    }

.timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

    .timeline::before {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 8px;
        border-radius: 8px;
        background: linear-gradient(var(--yellow), var(--blue), var(--pink), var(--lime));
        content: "";
        transform: translateX(-50%);
    }

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 34px;
}

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-item:nth-child(even) .timeline-card {
        grid-column: 2;
    }

    .timeline-item:nth-child(even) .timeline-spacer {
        grid-column: 1;
        grid-row: 1;
    }

.timeline-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 7px solid var(--white);
    border-radius: 50%;
    background: var(--yellow);
    color: var(--green);
    font-family: "Fredoka", Arial, sans-serif;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(53,94,83,.18);
    transform: translate(-50%, -50%);
}

.timeline-item:nth-child(2) .timeline-dot,
.timeline-item:nth-child(6) .timeline-dot {
    background: var(--blue);
}

.timeline-item:nth-child(3) .timeline-dot,
.timeline-item:nth-child(7) .timeline-dot {
    background: var(--pink);
}

.timeline-item:nth-child(4) .timeline-dot,
.timeline-item:nth-child(8) .timeline-dot {
    background: var(--lime);
}

.timeline-card {
    position: relative;
    padding: 28px 30px;
    border: 5px solid var(--white);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 13px 32px rgba(79,127,114,.12);
}

    .timeline-card::after {
        position: absolute;
        top: 50%;
        right: -20px;
        width: 35px;
        height: 35px;
        background: var(--white);
        content: "";
        transform: translateY(-50%) rotate(45deg);
    }

.timeline-item:nth-child(even) .timeline-card::after {
    right: auto;
    left: -20px;
}

.timeline-time {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 13px;
    border-radius: 20px;
    background: var(--yellow);
    color: var(--green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.timeline-item:nth-child(2) .timeline-time,
.timeline-item:nth-child(6) .timeline-time {
    background: var(--blue);
}

.timeline-item:nth-child(3) .timeline-time,
.timeline-item:nth-child(7) .timeline-time {
    background: var(--pink);
}

.timeline-item:nth-child(4) .timeline-time,
.timeline-item:nth-child(8) .timeline-time {
    background: var(--lime);
}

.timeline-card h3 {
    margin-bottom: 10px;
    font-size: 27px;
}

.timeline-card p {
    margin: 0;
    font-size: 16px;
}

/* Food */

.food-section {
    padding: 95px 0;
    background: var(--cream);
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.food-card {
    overflow: hidden;
    border: 6px solid var(--white);
    border-radius: 28px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(79,127,114,.13);
}

.food-image {
    min-height: 220px;
    background-size: cover;
    background-position: center;
}

.food-card:nth-child(1) .food-image {
    background-image: linear-gradient(rgba(53,94,83,.12), rgba(53,94,83,.12)), url('/ckfinder/userfiles/images/Nightingales31.jpg');
}

.food-card:nth-child(2) .food-image {
    background-image: linear-gradient(rgba(53,94,83,.12), rgba(53,94,83,.12)), url('/ckfinder/userfiles/images/Nightingales35.jpg');
}

.food-card:nth-child(3) .food-image {
    background-image: linear-gradient(rgba(53,94,83,.12), rgba(53,94,83,.12)), url('/ckfinder/userfiles/images/Nightingales33.jpg');
}

.food-copy {
    padding: 27px;
}

    .food-copy h3 {
        margin-bottom: 12px;
        font-size: 27px;
    }

    .food-copy p {
        margin-bottom: 15px;
        font-size: 16px;
    }

    .food-copy ul {
        margin: 0;
        padding-left: 21px;
    }

    .food-copy li {
        margin-bottom: 7px;
        font-weight: 700;
    }

/* Flexible day */

.flexible-section {
    padding: 95px 0;
    background: #ffffff;
}

.flexible-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
    overflow: hidden;
    border: 6px solid var(--yellow);
    border-radius: 32px;
    background: var(--green);
    box-shadow: 0 18px 44px rgba(53,94,83,.2);
}

.flexible-copy {
    padding: 52px;
}

    .flexible-copy h2 {
        color: var(--white);
    }

    .flexible-copy p {
        color: #eff8f5;
    }

.flexible-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 25px;
}

    .flexible-list span {
        padding: 13px 15px;
        border-radius: 18px;
        background: var(--white);
        color: var(--green);
        font-size: 14px;
        font-weight: 800;
    }

.flexible-image {
    min-height: 480px;
    background: url('/ckfinder/userfiles/images/Nightingales24.jpg') center / cover no-repeat;
}

/* Highlights */

.highlights {
    padding: 95px 0;
    background: #eef8f4;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 48px;
}

.highlight-card {
    padding: 29px 24px;
    border: 5px solid var(--white);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 11px 28px rgba(79,127,114,.11);
}

    .highlight-card:nth-child(1) {
        border-color: var(--yellow);
    }

    .highlight-card:nth-child(2) {
        border-color: var(--blue);
    }

    .highlight-card:nth-child(3) {
        border-color: var(--pink);
    }

    .highlight-card:nth-child(4) {
        border-color: var(--lime);
    }

.highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: var(--yellow);
    color: var(--green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.highlight-card:nth-child(2) .highlight-icon {
    background: var(--blue);
}

.highlight-card:nth-child(3) .highlight-icon {
    background: var(--pink);
}

.highlight-card:nth-child(4) .highlight-icon {
    background: var(--lime);
}

.highlight-card h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.highlight-card p {
    margin: 0;
    font-size: 15px;
}

/* CTA */

.cta-section {
    padding: 90px 0;
    background: radial-gradient(circle at 8% 50%, rgba(243,166,174,.25) 0 110px, transparent 111px), radial-gradient(circle at 94% 25%, rgba(168,207,136,.25) 0 135px, transparent 136px), var(--cream);
}

.cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 35px;
    align-items: center;
    padding: 45px;
    border: 5px solid var(--white);
    border-radius: 30px;
    background: linear-gradient(135deg, var(--green-light), var(--green));
    box-shadow: 0 18px 44px rgba(53,94,83,.22);
}

    .cta h2 {
        margin-bottom: 12px;
        color: var(--white);
        font-size: clamp(32px, 3.5vw, 47px);
    }

    .cta p {
        margin: 0;
        color: #eef8f4;
    }

.cta-button {
    display: inline-block;
    min-width: 180px;
    padding: 17px 27px;
    border: 3px solid var(--white);
    border-radius: 30px;
    background: var(--pink);
    color: var(--green);
    font-family: "Fredoka", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 9px 20px rgba(26,57,49,.16);
    transition: .2s ease;
}

    .cta-button:hover,
    .cta-button:focus {
        background: var(--yellow);
        transform: translateY(-2px) rotate(-1deg);
    }

/* Responsive */

@media (max-width: 1180px) {
    .main-nav a {
        padding: 9px 7px;
        font-size: 12px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .site-header {
        align-items: flex-start;
    }

    .menu-button {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 88px;
        right: 0;
        left: 0;
        display: none;
        padding: 18px;
        border: 3px solid var(--white);
        border-radius: 22px;
        background: rgba(53,94,83,.98);
        box-shadow: 0 14px 32px rgba(17,49,40,.28);
    }

        .main-nav.open {
            display: block;
        }

        .main-nav ul {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px;
        }

        .main-nav a {
            padding: 11px 13px;
            font-size: 15px;
        }

    .intro-grid,
    .flexible-panel {
        grid-template-columns: 1fr;
    }

    .food-grid {
        grid-template-columns: 1fr;
    }

    .food-card {
        display: grid;
        grid-template-columns: minmax(250px, .85fr) 1.15fr;
    }

    .flexible-image {
        min-height: 380px;
    }

    .cta {
        grid-template-columns: 1fr;
    }

    .cta-button {
        justify-self: start;
    }
}

@media (max-width: 720px) {
    .container,
    .site-header {
        width: min(100% - 32px, 1400px);
    }

    .logo {
        transform: none;
    }

        .logo img {
            width: 135px;
        }

    .hero {
        min-height: 620px;
        padding-top: 200px;
        background-position: 60% center;
    }

        .hero::after {
            display: none;
        }

    .timeline::before {
        left: 27px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 70px;
    }

        .timeline-item:nth-child(even) .timeline-card,
        .timeline-item:nth-child(even) .timeline-spacer {
            grid-column: auto;
            grid-row: auto;
        }

    .timeline-spacer {
        display: none;
    }

    .timeline-dot {
        left: 27px;
    }

    .timeline-card::after,
    .timeline-item:nth-child(even) .timeline-card::after {
        top: 50%;
        right: auto;
        left: -20px;
    }

    .food-card {
        display: block;
    }

    .flexible-copy {
        padding: 36px 25px;
    }

    .flexible-list,
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 32px 24px;
    }

    .cta-button {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .main-nav {
        top: 76px;
    }

        .main-nav ul {
            grid-template-columns: 1fr;
        }

    .hero h1 {
        font-size: 44px;
    }

    .hero-hours {
        display: grid;
        grid-template-columns: 1fr;
    }

    .intro,
    .timeline-section,
    .food-section,
    .flexible-section,
    .highlights,
    .cta-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .intro-card {
        padding: 28px 22px;
        transform: none;
    }

    .timeline-card {
        padding: 24px 21px;
    }
}