@font-face {
    font-family: "Donau";
    src: url("Donau%20Neue_Uppercase.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

:root {
    --teal: #7F9B97;
    --pink: #E09D94;
    --peach: #EDB777;
    --cream: #E5D9D1;
    --rust: #A24F2F;
    --dark: #3F3530;
    --white: #FFFDF9;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--dark);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
}

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

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

h1,
h2,
h3,
.logo,
.button,
.eyebrow,
.nav-links a {
    font-family: "Donau", Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 400;
}

h1,
h2,
h3 {
    line-height: 1.05;
}

h1 {
    font-size: clamp(3.5rem, 7vw, 7.5rem);
}

h2 {
    font-size: clamp(2.8rem, 5vw, 5.5rem);
}

h3 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.eyebrow {
    font-size: .82rem;
    letter-spacing: .14em;
    color: var(--rust);
    margin-bottom: 1.2rem;
}

/* NAV */

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(229,217,209,.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(63,53,48,.1);
}

.navbar {
    max-width: 1400px;
    margin: auto;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1rem;
    letter-spacing: .14em;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    font-size: .68rem;
    letter-spacing: .12em;
}

.nav-button {
    background: var(--rust);
    color: var(--white);
    padding: .75rem 1.2rem;
    border-radius: 100px;
}

/* HERO */

.hero {
    min-height: 86vh;
    padding: 5rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1500px;
    margin: auto;
}

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

.hero h1 {
    color: var(--rust);
    margin-bottom: 1.8rem;
}

.hero h1 span {
    color: var(--teal);
    display: block;
}

.hero-text {
    max-width: 600px;
    font-size: 1.15rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 2rem;
}

.button {
    display: inline-block;
    padding: .95rem 1.5rem;
    border-radius: 100px;
    font-size: .7rem;
    letter-spacing: .12em;
    transition: transform .2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.primary {
    background: var(--rust);
    color: var(--white);
}

.secondary {
    border: 1.5px solid var(--dark);
}

.hero-image {
    height: 650px;
    border-radius: 3rem;
    overflow: hidden;
    background: var(--teal);
}

.image-placeholder {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: var(--white);
    background: var(--teal);
    font-family: "Donau", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .12em;
}

/* STATEMENT */

.statement {
    background: var(--rust);
    color: var(--white);
    padding: 9rem 7%;
}

.statement-inner {
    max-width: 1200px;
    margin: auto;
}

.statement h2 {
    max-width: 850px;
    margin-bottom: 3rem;
}

.statement-lines {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.statement-lines p {
    font-size: 1.15rem;
}

.statement-lines strong {
    font-family: "Donau", Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.5rem;
}

/* SECTION */

.section {
    padding: 8rem 5%;
}

.section-heading {
    max-width: 850px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-heading p:last-child {
    max-width: 650px;
    margin: 1.5rem auto 0;
}

/* SERVICES */

.services {
    background: var(--white);
    padding: 8rem 5%;
}

.service-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    min-height: 560px;
    border-radius: 2.5rem;
    overflow: hidden;
    display: grid;
    grid-template-rows: 280px 1fr;
}

.service-photo {
    background: var(--teal);
}

.service-content {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:nth-child(1) .service-content {
    background: var(--teal);
}

.service-card:nth-child(2) .service-content {
    background: var(--pink);
}

.service-card:nth-child(3) .service-content {
    background: var(--peach);
}

.service-card:nth-child(4) .service-content {
    background: var(--rust);
    color: var(--white);
}

.service-content h3 {
    margin-bottom: 1rem;
}

.service-link {
    font-family: "Donau", Arial, sans-serif;
    text-transform: uppercase;
    font-size: .7rem;
    letter-spacing: .12em;
    margin-top: 1.5rem;
}

/* PARENT SPACE */

.parent-space {
    background: var(--teal);
    padding: 8rem 5%;
}

.parent-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.parent-image {
    height: 600px;
    border-radius: 3rem;
    overflow: hidden;
}

.parent-copy h2 {
    margin-bottom: 1.5rem;
}

.parent-copy p {
    max-width: 550px;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* WHY */

.why {
    background: var(--cream);
}

.trust-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--dark);
    border: 1px solid var(--dark);
}

.trust-card {
    background: var(--cream);
    padding: 3rem;
    min-height: 280px;
}

.trust-card h3 {
    margin: 1rem 0;
}

.trust-number {
    font-family: "Donau", Arial, sans-serif;
    color: var(--rust);
}

/* HOW IT WORKS */

.how {
    background: var(--white);
}

.steps {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
    padding: 2.5rem;
    border-radius: 2rem;
    background: var(--pink);
}

.step:nth-child(2) {
    background: var(--peach);
}

.step:nth-child(3) {
    background: var(--teal);
}

.step-number {
    font-family: "Donau", Arial, sans-serif;
    font-size: 2rem;
    margin-bottom: 4rem;
}

.step h3 {
    margin-bottom: .8rem;
}

/* COMMUNITY */

.community {
    padding: 8rem 5%;
    background: var(--pink);
}

.community-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.community-image {
    height: 550px;
    border-radius: 3rem;
    overflow: hidden;
}

.community-copy h2 {
    margin-bottom: 1.5rem;
}

.community-copy p {
    max-width: 600px;
    margin-bottom: 1.5rem;
}

/* TEAM */

.team {
    background: var(--white);
}

.team-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.team-photo {
    height: 330px;
    border-radius: 1.5rem;
    overflow: hidden;
    background: var(--teal);
}

.team-name {
    font-family: "Donau", Arial, sans-serif;
    text-transform: uppercase;
    margin-top: .8rem;
    font-size: .8rem;
}

/* CTA */

.final-cta {
    background: var(--rust);
    color: var(--white);
    text-align: center;
    padding: 9rem 5%;
}

.final-cta-inner {
    max-width: 950px;
    margin: auto;
}

.final-cta h2 {
    margin-bottom: 2rem;
}

.final-cta p {
    max-width: 650px;
    margin: 0 auto 2rem;
}

.final-cta .eyebrow {
    color: var(--peach);
}

/* FOOTER */

footer {
    background: var(--dark);
    color: var(--cream);
    text-align: center;
    padding: 4rem 5%;
}

.footer-logo {
    font-family: "Donau", Arial, sans-serif;
    letter-spacing: .14em;
    margin-bottom: 1rem;
}

/* MOBILE */

@media (max-width: 850px) {

    .nav-links {
        display: none;
    }

    .hero,
    .parent-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 4rem 6%;
        min-height: auto;
    }

    .hero-image {
        height: 450px;
        order: -1;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 14vw, 5.5rem);
    }

    .statement-lines,
    .steps {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

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

    .parent-image,
    .community-image {
        height: 400px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section,
    .services,
    .parent-space,
    .community,
    .final-cta {
        padding: 6rem 6%;
    }
}

@media (max-width: 500px) {

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-photo {
        height: 220px;
    }
.service-content p {
    font-size: 1rem;
    line-height: 1.7;
}

.service-link {
    font-size: .78rem;
}

.trust-card p,
.step p,
    /* Booking Terms & Conditions */
.booking-terms {
  padding: 30px 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: #faf8f4;
}

.terms-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.booking-terms h3 {
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  font-weight: 600;
}

.booking-terms p {
  font-size: 10px;
  line-height: 1.6;
  margin: 0 0 10px;
  color: #666;
}

.booking-terms strong {
  color: #4a4038;
}

.terms-contact {
  margin-top: 18px !important;
}

.booking-terms a {
  color: inherit;
  text-decoration: underline;
}
.parent-copy p,
.community-copy p {
    font-size: 1rem;
    line-height: 1.7;
}
