 /* =========================
   BRAND COLORS
========================= */


:root {
    --navy: #20386b;
    --navy-light: #4f73a3;

    --gold: #c79a3b;
    --gold-dark: #a97c23;

    --white: #ffffff;
    --warm-white: #fbfdff;

    --cream: #f3f8fd;
    --cloud: #f8fcff;

    --sky-light: #dceeff;
    --sky-soft: #c9e2f7;
    --sky-medium: #afd2ee;
    --sky-deep: #83b5dc;
    --sky-accent: #5e88b3;

    /*
       Keeping these variable names so your existing
       CSS still works, but they are now BLUE.
    */
    --blush: #b9d7f2;
    --blush-light: #e8f3fc;

    --text: #314055;
    --text-light: #6c7a8f;
}


/* =========================
   GLOBAL
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        linear-gradient(
            180deg,
            var(--cloud) 0%,
            var(--warm-white) 38%,
            var(--cream) 100%
        );
}

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

a {
    color: inherit;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 253, 249, 0.98);
    border-bottom: 1px solid rgba(201, 149, 61, 0.15);
    z-index: 1000;
}

.menu-toggle {
    margin-left: auto;
}

.nav-container {
    width: 92%;
    max-width: 1250px;
    margin: 0 auto;

    min-height: 78px;

    padding: 7px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================
   BRAND
========================= */

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-icon {
    color: var(--gold);
    font-size: 2rem;
    line-height: 1;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    color: var(--gold-dark);
    line-height: 1.1;
}

.brand-tagline {
    display: none;

    margin-top: 3px;
    font-size: 0.65rem;
    color: var(--blush);
}


/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle {
    width: 45px;
    height: 45px;

    border: none;
    background: transparent;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 26px;
    height: 2px;

    margin-left: auto;

    background: var(--navy);

    border-radius: 2px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* Hamburger turns into X */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* =========================
   MOBILE NAVIGATION
========================= */

.main-nav {
    position: absolute;

    top: 78px;
    left: 0;

    width: 100%;

    padding: 20px 5% 28px;

    background: var(--warm-white);

    display: none;
    flex-direction: column;
    align-items: center;
    gap: 6px;

    border-bottom: 1px solid rgba(201, 149, 61, 0.2);

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.08);
}

.main-nav.open {
    display: flex;
}

.main-nav a {
    width: 100%;

    padding: 13px;

    text-align: center;
    text-decoration: none;

    color: var(--navy);
    font-weight: 500;

    border-radius: 8px;
}

.main-nav a:hover {
    background: var(--blush-light);
}

.main-nav .nav-book-button {
    margin-top: 8px;

    width: 100%;
    max-width: 300px;

    background: var(--gold);
    color: var(--white);

    border-radius: 30px;
}

.main-nav .nav-book-button:hover {
    background: var(--gold-dark);
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #cfe6f8 0%,
            #e3f1fb 28%,
            #f4faff 58%,
            #dcecf8 100%
        );
}


/* Dreamy soft background shapes */

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:

        /* Upper-left cloud */
        radial-gradient(
            circle at 4% 18%,
            rgba(255, 255, 255, 0.95) 0 55px,
            transparent 56px
        ),

        radial-gradient(
            circle at 9% 18%,
            rgba(255, 255, 255, 0.95) 0 80px,
            transparent 81px
        ),

        radial-gradient(
            circle at 15% 18%,
            rgba(255, 255, 255, 0.9) 0 58px,
            transparent 59px
        ),


        /* Lower-right cloud */
        radial-gradient(
            circle at 86% 78%,
            rgba(255, 255, 255, 0.85) 0 70px,
            transparent 71px
        ),

        radial-gradient(
            circle at 92% 78%,
            rgba(255, 255, 255, 0.9) 0 95px,
            transparent 96px
        ),

        radial-gradient(
            circle at 99% 78%,
            rgba(255, 255, 255, 0.82) 0 68px,
            transparent 69px
        );

    opacity: 0.75;

    filter: blur(3px);

    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.02) 60%,
            rgba(165, 207, 238, 0.12)
        );

    pointer-events: none;
}


/* Keeps content above background */

.hero-container {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1250px;

    margin: 0 auto;

    padding: 70px 0;

    display: flex;
    flex-direction: column;
    gap: 50px;
}


/* =========================
   HERO TEXT
========================= */

.hero-content {
    max-width: 650px;
}

.hero-eyebrow {
    margin: 0 0 14px;

    color: var(--gold-dark);

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(
        2.6rem,
        10vw,
        4.8rem
    );

    line-height: 0.98;

    color: var(--navy);

    font-weight: normal;
}

.hero h1 span {
    display: block;

    margin-top: 12px;

    color: var(--gold);

    font-size: 0.65em;

    font-style: italic;
}

.hero-tagline {
    margin: 24px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--navy-light);
}

.hero-description {
    max-width: 570px;

    margin: 20px 0 0;

    font-size: 1rem;
    line-height: 1.8;
}


/* =========================
   HERO BUTTONS
========================= */

.hero-buttons {
    margin-top: 30px;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.button {
    display: inline-flex;

    min-height: 52px;

    align-items: center;
    justify-content: center;

    padding: 14px 28px;

    border-radius: 30px;

    text-decoration: none;

    font-weight: 600;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

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

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

.button-primary:hover {
    background: var(--gold-dark);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.45);
    color: var(--navy-light);
    border:
        1px solid var(--sky-medium);
}

.button-secondary:hover {
    background: var(--sky-light);
}


/* =========================
   HERO VISUAL CARD
========================= */

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    width: 100%;
    max-width: 420px;

    min-height: 310px;

    padding: 45px 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 35px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.96),
            rgba(226, 241, 252, 0.94)
        );

    border:
        1px solid rgba(199, 154, 59, 0.22);

    box-shadow:
        0 20px 50px rgba(52, 92, 130, 0.14);
}

.hero-card-small {
    color: var(--gold-dark);

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-card-message {
    margin: 20px 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 2rem;

    line-height: 1.25;

    color: var(--navy);

    font-style: italic;
}

.hero-card-location {
    color: var(--sky-accent);

    font-size: 0.9rem;
}

/* =========================
   SERVICES
========================= */

.services-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #fbfdff 0%,
            #f3f8fd 100%
        );
}

.services-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
}

.services-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 170px;
    top: 55px;
    right: -85px;

    background:
        radial-gradient(
            circle at 25% 68%,
            rgba(255, 255, 255, 0.78) 0 52px,
            transparent 53px
        ),

        radial-gradient(
            circle at 48% 48%,
            rgba(255, 255, 255, 0.82) 0 72px,
            transparent 73px
        ),

        radial-gradient(
            circle at 72% 68%,
            rgba(255, 255, 255, 0.75) 0 56px,
            transparent 57px
        );

    filter: blur(2px);

    opacity: 0.55;

    pointer-events: none;
}

/* =========================
   SECTION HEADING
========================= */

.section-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-eyebrow {
    margin: 0 0 10px;

    color: var(--gold-dark);

    font-size: 0.75rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.section-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(
        2.4rem,
        8vw,
        3.8rem
    );

    font-weight: normal;

    color: var(--navy);
}

.section-description {
    max-width: 620px;

    margin: 18px auto 0;

    line-height: 1.8;

    color: #686868;

    font-size: 1rem;
}


/* =========================
   SERVICES GRID
========================= */

.services-grid {
    display: grid;

    grid-template-columns: 1fr;

    gap: 22px;
}


/* =========================
   SERVICE CARD
========================= */

.service-card {
    position: relative;

    min-height: 340px;

    padding: 34px 28px;

    display: flex;
    flex-direction: column;

    background: var(--white);

    border:
        1px solid rgba(201, 149, 61, 0.16);

    border-radius: 24px;

    box-shadow:
        0 12px 35px rgba(65, 47, 31, 0.07);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


/* Subtle decorative background */

.service-card::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: -45px;
    bottom: -45px;

    border-radius: 50%;

    background:
        rgba(143, 188, 226, 0.14);
}


/* Hover effect */

.service-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(201, 149, 61, 0.35);

    box-shadow:
        0 20px 45px rgba(65, 47, 31, 0.12);
}


/* =========================
   SERVICE NUMBER
========================= */

.service-number {
    position: absolute;

    top: 24px;
    right: 26px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 0.8rem;

    color:
        rgba(201, 149, 61, 0.55);

    letter-spacing: 2px;
}


/* =========================
   SERVICE ICON
========================= */

.service-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--cream),
            var(--blush-light)
        );

    border:
        1px solid rgba(201, 149, 61, 0.2);

    color: var(--gold);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.7rem;
}


/* =========================
   SERVICE TEXT
========================= */

.service-card h3 {
    margin: 0 0 14px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 1.55rem;

    font-weight: normal;

    color: var(--navy);
}

.service-card p {
    margin: 0;

    line-height: 1.7;

    color: #656565;

    font-size: 0.95rem;
}


/* =========================
   SERVICE BOOK LINK
========================= */

.service-link {
    position: relative;
    z-index: 2;

    margin-top: auto;
    padding-top: 28px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    width: fit-content;

    color: var(--sky-accent);

    text-decoration: none;

    font-weight: 700;

    font-size: 0.9rem;
}

.service-link span {
    transition:
        transform 0.2s ease;
}

.service-link:hover span {
    transform: translateX(5px);
}


/* =========================
   MOMMY & ME FEATURE CARD
========================= */

.service-card-featured {
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #e5f2fc 100%
        );
}

.featured-label {
    margin-bottom: 8px !important;

    color: var(--gold-dark) !important;

    font-size: 0.68rem !important;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


/* =========================
   SERVICES CTA
========================= */

.services-cta {
    margin-top: 50px;

    padding: 35px 25px;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 20px;

    text-align: center;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            var(--cream),
            var(--blush-light)
        );
}

.services-cta p {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    color: var(--navy);

    font-size: 1.25rem;
}

/* =========================
   MOMMY & ME
========================= */

.mommy-me-section {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #dceeff 0%,
            #e9f4fc 48%,
            #f5faff 100%
        );
}


.mommy-me-container {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1250px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr;

    gap: 60px;

    align-items: center;
}


/* =========================
   MOMMY & ME VISUAL
========================= */

.mommy-me-visual {
    position: relative;

    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.mommy-visual-card {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 430px;

    min-height: 390px;

    padding: 50px 35px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        rgba(255, 255, 255, 0.82);

    border:
        1px solid rgba(201, 149, 61, 0.18);

    border-radius: 40px;

    box-shadow:
        0 25px 55px
        rgba(74, 52, 39, 0.12);

    backdrop-filter: blur(10px);
}


/* Decorative heart */

.mommy-heart {
    margin-bottom: 18px;

    color: var(--gold);

    font-size: 3.2rem;

    line-height: 1;
}


.mommy-visual-small {
    margin: 0;

    color: var(--gold-dark);

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.mommy-visual-title {
    margin: 20px 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: var(--navy);

    font-size: 2rem;

    line-height: 1.25;

    font-style: italic;
}


.mommy-divider {
    width: 55px;
    height: 1px;

    margin-bottom: 20px;

    background: var(--gold);
}


.mommy-visual-text {
    max-width: 300px;

    margin: 0;

    color: #7a6865;

    line-height: 1.7;

    font-size: 0.92rem;
}


/* =========================
   DECORATIVE CLOUDS
========================= */

.mommy-cloud {
    position: absolute;
    height: 72px;
    border-radius: 999px;
    background:
        rgba(255, 255, 255, 0.78);

    filter: blur(1px);
    z-index: 1;
    pointer-events: none;
}


.mommy-cloud::before,
.mommy-cloud::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: inherit;
}


.mommy-cloud::before {
    width: 90px;
    height: 90px;
    left: 24px;
    top: -38px;
}


.mommy-cloud::after {
    width: 76px;
    height: 76px;
    right: 25px;
    top: -26px;
}


.cloud-one {
    width: 195px;
    height: 72px;
    top: 58px;
    left: -45px;
    background:
        rgba(255, 255, 255, 0.82);
}


.cloud-two {
    width: 215px;
    height: 78px;
    right: -50px;
    bottom: 45px;
    background:
        rgba(255, 255, 255, 0.62);
}


/* =========================
   MOMMY & ME CONTENT
========================= */

.mommy-me-content {
    max-width: 620px;
}


.mommy-me-content h2 {
    margin: 0;
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: var(--gold);
    font-size: clamp(
        2.5rem,
        8vw,
        4rem
    );

    line-height: 1;
    font-weight: normal;
}


.mommy-me-content h2 span {
    display: block;

    margin-top: 10px;

    color: var(--navy-light);

    font-size: 0.7em;

    font-style: italic;
}


.mommy-intro {
    margin: 26px 0 0;

    color: #4c4c4c;

    line-height: 1.8;

    font-size: 1.05rem;
}


.mommy-description {
    margin: 15px 0 0;

    color: #707070;

    line-height: 1.8;

    font-size: 0.95rem;
}


/* =========================
   HIGHLIGHTS
========================= */

.mommy-highlights {
    margin-top: 35px;

    display: flex;
    flex-direction: column;

    gap: 23px;
}


.mommy-highlight {
    display: grid;

    grid-template-columns:
        52px 1fr;

    gap: 16px;

    align-items: start;
}


.highlight-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.85);

    border:
        1px solid
        rgba(201, 149, 61, 0.22);

    color: var(--gold);

    font-size: 1.25rem;

    box-shadow:
        0 8px 18px
        rgba(72, 54, 43, 0.06);
}


.mommy-highlight h3 {
    margin: 2px 0 6px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: var(--navy);

    font-size: 1.1rem;

    font-weight: normal;
}


.mommy-highlight p {
    margin: 0;

    color: #727272;

    font-size: 0.9rem;

    line-height: 1.6;
}


/* =========================
   MOMMY & ME BUTTONS
========================= */

.mommy-buttons {
    margin-top: 38px;

    display: flex;
    flex-direction: column;

    gap: 20px;

    align-items: flex-start;
}


.mommy-secondary-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--sky-accent);

    text-decoration: none;

    font-size: 0.9rem;

    font-weight: 700;
}


.mommy-secondary-link span {
    transition:
        transform 0.2s ease;
}


.mommy-secondary-link:hover span {
    transform:
        translateX(5px);
}

/* =========================
   ABOUT ELVIA
========================= */

.about-section {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #f9fcff 0%,
            #edf5fc 100%
        );
}


.about-container {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 65px;
    align-items: center;
}

.about-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 185px;
    left: -110px;
    bottom: 75px;
    background:
        radial-gradient(
            circle at 27% 68%,
            rgba(255, 255, 255, 0.72) 0 55px,
            transparent 56px
        ),

        radial-gradient(
            circle at 50% 48%,
            rgba(255, 255, 255, 0.78) 0 78px,
            transparent 79px
        ),

        radial-gradient(
            circle at 76% 68%,
            rgba(255, 255, 255, 0.70) 0 58px,
            transparent 59px
        );

    filter: blur(3px);
    opacity: 0.5;
    pointer-events: none;
}

/* =========================
   ABOUT VISUAL
========================= */

.about-visual {
    position: relative;

    width: 100%;
    max-width: 500px;

    margin: 0 auto;
}


.about-photo-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 40px 40px 140px 40px;
    border:
        1px solid rgba(201, 149, 61, 0.2);

    background:
        linear-gradient(
            145deg,
            var(--sky-light),
            #fffaf4 55%,
            #edf6ff
        );

    box-shadow:
        0 25px 55px rgba(56, 42, 31, 0.12);
}


/* Actual photo later */

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}


/* Temporary photo placeholder */

.about-photo-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 15px;

    color: var(--gold-dark);

    text-align: center;
}


.about-photo-placeholder p {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.2rem;

    font-style: italic;
}


.about-photo-icon {
    font-size: 3rem;

    color: var(--gold);
}


/* =========================
   EXPERIENCE BADGE
========================= */

.about-experience-badge {
    position: absolute;

    right: -10px;
    bottom: 35px;

    width: 125px;
    height: 125px;

    padding: 15px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 50%;

    background: var(--gold);

    color: var(--white);

    box-shadow:
        0 15px 30px rgba(94, 67, 30, 0.2);
}


.about-experience-badge strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 2.1rem;

    line-height: 1;
}


.about-experience-badge span {
    margin-top: 5px;

    font-size: 0.7rem;

    line-height: 1.2;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


/* =========================
   ABOUT CONTENT
========================= */

.about-content {
    max-width: 650px;
}


.about-content h2 {
    margin: 0;
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: var(--navy);
    font-size: clamp(
        2.6rem,
        8vw,
        4rem
    );

    line-height: 1;
    font-weight: normal;
}


.about-content h2 span {
    display: block;
    margin-top: 12px;
    color: var(--gold);
    font-size: 0.42em;
    font-style: italic;
    line-height: 1.3;
}


.about-intro {
    margin: 28px 0 0;
    color: #444444;
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.12rem;
    line-height: 1.7;
}


.about-description {
    margin: 16px 0 0;

    color: #6c6c6c;

    font-size: 0.96rem;

    line-height: 1.8;
}


/* =========================
   ABOUT HIGHLIGHTS
========================= */

.about-highlights {
    margin-top: 35px;

    display: flex;
    flex-direction: column;

    gap: 23px;
}


.about-highlight {
    display: grid;

    grid-template-columns:
        52px 1fr;

    gap: 16px;

    align-items: start;
}


.about-highlight-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--cream);

    border:
        1px solid rgba(201, 149, 61, 0.22);

    color: var(--gold);

    font-size: 1.2rem;
}


.about-highlight h3 {
    margin: 2px 0 5px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.08rem;

    font-weight: normal;

    color: var(--navy);
}


.about-highlight p {
    margin: 0;

    color: #737373;

    font-size: 0.9rem;

    line-height: 1.6;
}


/* =========================
   ELVIA QUOTE
========================= */

.about-quote {
    position: relative;
    margin:
        38px 0 0;

    padding:
        26px 28px;

    border: none;
    border-left:
        3px solid var(--gold);

    border-radius:
        0 18px 18px 0;

    background:
    linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.90),
        rgba(205, 229, 247, 0.78)
    );
}


.about-quote p {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: var(--navy);

    font-size: 1.05rem;

    font-style: italic;

    line-height: 1.65;
}


.about-quote cite {
    display: block;

    margin-top: 10px;

    color: var(--gold-dark);

    font-size: 0.8rem;

    font-style: normal;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================
   ABOUT BUTTONS
========================= */

.about-buttons {
    margin-top: 35px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
}


.about-secondary-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--sky-accent);

    text-decoration: none;

    font-weight: 700;

    font-size: 0.9rem;
}


.about-secondary-link span {
    transition:
        transform 0.2s ease;
}


.about-secondary-link:hover span {
    transform: translateX(5px);
}

/* =========================
   GALLERY
========================= */

.gallery-section {
    padding: 95px 0;

    background:
        linear-gradient(
            180deg,
            var(--cream) 0%,
            var(--warm-white) 100%
        );

    scroll-margin-top: 90px;
}


.gallery-container {
    width: 90%;
    max-width: 1250px;

    margin: 0 auto;
}


/* =========================
   GALLERY GRID
========================= */

.gallery-grid {
    display: grid;

    grid-template-columns: 1fr;

    gap: 20px;
}


/* =========================
   GALLERY ITEM
========================= */

.gallery-item {
    position: relative;

    margin: 0;

    min-height: 300px;

    overflow: hidden;

    border-radius: 24px;

    background: var(--white);

    box-shadow:
        0 14px 35px rgba(61, 45, 32, 0.08);

    border:
        1px solid rgba(201, 149, 61, 0.13);
}


/* Placeholder until real photo is added */

.gallery-placeholder {
    width: 100%;
    height: 100%;

    min-height: 300px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #edf6ff 0%,
            #fffaf4 52%,
            var(--sky-light) 100%
        );

    color: var(--gold-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1rem;

    font-style: italic;
}


/* =========================
   REAL GALLERY IMAGES
========================= */

.gallery-image {
    width: 100%;
    height: 100%;

    min-height: 300px;

    display: block;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}


.gallery-item:hover .gallery-image {
    transform: scale(1.04);
}


/* =========================
   GALLERY CAPTION
========================= */

.gallery-item figcaption {
    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 18px;

    padding: 16px 18px;

    border-radius: 16px;

    background:
        rgba(255, 253, 249, 0.92);

    backdrop-filter: blur(8px);

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1rem;

    line-height: 1.35;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.08);
}


.gallery-item figcaption span {
    display: block;

    margin-bottom: 4px;

    color: var(--gold-dark);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


/* =========================
   GALLERY CTA
========================= */

.gallery-cta {
    margin-top: 45px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.92),
            rgba(218, 237, 251, 0.85)
        );

    border:
        1px solid rgba(201, 149, 61, 0.14);
}


.gallery-cta p {
    margin: 0;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.1rem;
}

/* =========================
   CONTACT / LOCATION
========================= */

.contact-section {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #e4f1fb 0%,
            #f5faff 100%
        );
}


.contact-container {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1250px;

    margin: 0 auto;
}

.contact-section::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 190px;

    top: 105px;
    right: -105px;

    background:
        radial-gradient(
            circle at 25% 68%,
            rgba(255, 255, 255, 0.76) 0 58px,
            transparent 59px
        ),

        radial-gradient(
            circle at 50% 45%,
            rgba(255, 255, 255, 0.82) 0 82px,
            transparent 83px
        ),

        radial-gradient(
            circle at 76% 68%,
            rgba(255, 255, 255, 0.72) 0 60px,
            transparent 61px
        );

    filter: blur(3px);

    opacity: 0.55;

    pointer-events: none;
}


/* Contact heading special styling */

.contact-section .section-heading h2 span {
    display: block;
    margin-top: 10px;
    color: var(--gold);
    font-size: 0.55em;
    font-style: italic;
}

.phone-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    margin-bottom: 4px;
}


/* =========================
   CONTACT GRID
========================= */

.contact-grid {
    display: grid;

    grid-template-columns: 1fr;

    gap: 45px;

    align-items: stretch;
}


/* =========================
   LOCATION CARD
========================= */

.location-card {
    min-height: 430px;

    border-radius: 35px;

    overflow: hidden;

    border:
        1px solid rgba(201, 149, 61, 0.18);

    box-shadow:
        0 20px 45px rgba(61, 44, 31, 0.1);
}


.location-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 430px;
    padding: 45px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #dceeff 0%,
            #f7fbff 48%,
            #cfe5f6 100%
        );
}


/* =========================
   LOCATION DECORATION
========================= */

.location-cloud {
    position: absolute;
    height: 72px;
    border-radius: 999px;
    background:
        rgba(255, 255, 255, 0.76);

    filter: blur(1px);
    pointer-events: none;
}


.location-cloud::before,
.location-cloud::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: inherit;
}


.location-cloud::before {
    width: 88px;
    height: 88px;
    left: 22px;
    top: -36px;
}


.location-cloud::after {
    width: 74px;
    height: 74px;
    right: 24px;
    top: -25px;
}


.location-cloud-one {
    width: 190px;
    height: 72px;
    top: 65px;
    left: -48px;
    background:
        rgba(255, 255, 255, 0.82);
}


.location-cloud-two {
    width: 215px;
    height: 78px;
    right: -55px;
    bottom: 55px;
    background:
        rgba(255, 255, 255, 0.64);
}


.location-pin {
    position: relative;
    z-index: 2;
    width: 85px;
    height: 85px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--gold);
    font-size: 2.2rem;
    border:
        1px solid rgba(201, 149, 61, 0.25);

    box-shadow:
        0 15px 30px rgba(76, 55, 34, 0.1);
}


.location-city {
    position: relative;
    z-index: 2;

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: var(--navy);

    font-size: 2rem;
}


.location-message {
    position: relative;
    z-index: 2;
    max-width: 280px;
    margin: 15px 0 0;
    color: var(--sky-accent);
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
}

.location-address {
    position: relative;
    z-index: 2;

    margin: 12px 0 0;

    color: #666666;

    font-size: 0.9rem;
    line-height: 1.6;
}


/* =========================
   CONTACT INFO
========================= */

.contact-info {
    padding: 5px 0;
}


.contact-small-heading {
    margin: 0 0 10px;

    color: var(--gold-dark);

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.contact-info > h3 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: var(--navy);

    font-size: clamp(
        2rem,
        7vw,
        3rem
    );

    font-weight: normal;

    line-height: 1.1;
}


.contact-intro {
    max-width: 560px;

    margin: 20px 0 0;

    color: #696969;

    font-size: 0.96rem;

    line-height: 1.8;
}


/* =========================
   CONTACT DETAILS
========================= */

.contact-details {
    margin-top: 35px;

    display: flex;

    flex-direction: column;

    gap: 24px;
}


.contact-detail {
    display: grid;

    grid-template-columns:
        52px 1fr;

    gap: 16px;

    align-items: start;
}


.contact-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--cream),
            var(--blush-light)
        );

    border:
        1px solid rgba(201, 149, 61, 0.22);

    color: var(--gold);

    font-size: 1.15rem;
}


.contact-detail h4 {
    margin: 2px 0 5px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    color: var(--navy);

    font-size: 1.05rem;

    font-weight: normal;
}


.contact-detail p {
    margin: 0 0 3px;

    color: #555;

    font-size: 0.95rem;
}


.contact-detail a {
    display: inline-block;

    margin-bottom: 3px;

    color: var(--sky-accent);

    font-size: 0.95rem;

    font-weight: 700;

    text-decoration: none;
}


.contact-detail a:hover {
    text-decoration: underline;
}


.contact-detail span {
    display: block;

    color: #8a8a8a;

    font-size: 0.8rem;

    line-height: 1.5;
}


/* =========================
   CONTACT BUTTONS
========================= */

.contact-buttons {
    margin-top: 38px;

    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* =========================
   BOTTOM BOOKING STRIP
========================= */

.contact-booking-strip {
    margin-top: 70px;

    padding: 35px 28px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 25px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            #2c456f
        );

    box-shadow:
        0 18px 40px rgba(29, 49, 83, 0.18);
}


.booking-strip-small {
    margin: 0 0 7px;

    color: #e3c180;

    font-size: 0.68rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;
}


.contact-booking-strip h3 {
    max-width: 650px;

    margin: 0;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.45rem;

    font-weight: normal;

    line-height: 1.4;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 4px;

    margin-bottom: 4px;
}


/* =========================
   PLACEHOLDER SECTIONS
========================= */

.placeholder-section {
    min-height: 400px;

    padding: 80px 5%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.placeholder-section:nth-child(even) {
    background: var(--cream);
}

.placeholder-section h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 2.2rem;

    color: var(--navy);
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background:
        linear-gradient(
            145deg,
            #172a49,
            var(--navy)
        );

    color: var(--white);
}


.footer-container {
    width: 90%;
    max-width: 1250px;

    margin: 0 auto;

    padding: 75px 0 55px;

    display: grid;

    grid-template-columns: 1fr;

    gap: 45px;
}


/* =========================
   FOOTER BRAND
========================= */

.footer-brand {
    max-width: 330px;
}


.footer-brand-icon {
    margin-bottom: 12px;

    color: #e3c180;

    font-size: 2.2rem;
}


.footer-brand h2 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.7rem;

    font-weight: normal;

    color: #f1d79f;
}


.footer-tagline {
    margin: 10px 0 0;

    color: #b8d9f2;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 0.95rem;

    font-style: italic;
}


.footer-description {
    margin: 18px 0 0;

    max-width: 300px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 0.88rem;

    line-height: 1.7;
}


/* =========================
   FOOTER COLUMNS
========================= */

.footer-column h3 {
    margin: 0 0 18px;

    color: #f1d79f;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1rem;

    font-weight: normal;
}


/* =========================
   FOOTER LINKS
========================= */

.footer-links {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 11px;
}


.footer-links a {
    color: rgba(255, 255, 255, 0.74);

    text-decoration: none;

    font-size: 0.88rem;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.footer-links a:hover {
    color: var(--white);

    transform: translateX(4px);
}


/* =========================
   FOOTER CONTACT
========================= */

.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 16px;
}


.footer-contact p {
    margin: 0;

    color: rgba(255, 255, 255, 0.7);

    font-size: 0.86rem;

    line-height: 1.6;
}


.footer-contact strong {
    display: block;

    margin-bottom: 3px;

    color: var(--white);

    font-size: 0.82rem;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.7);

    text-decoration: none;

    transition: color 0.2s ease;
}

.footer-contact-link:hover {
    color: var(--white);
}

/* =========================
   FOOTER SOCIAL
========================= */

.footer-social-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 15px;
}


.footer-social-link {
    display: inline-block;
    margin-bottom: 0;
    color: #b8d9f2;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
}


.footer-social-link:hover {
    text-decoration: underline;
}


.footer-booking p {
    max-width: 270px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.86rem;

    line-height: 1.6;
}


/* =========================
   FOOTER BOOK BUTTON
========================= */

.footer-book-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 12px 22px;

    border-radius: 28px;

    background: var(--gold);

    color: var(--white);

    text-decoration: none;

    font-size: 0.88rem;

    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.footer-book-button:hover {
    background: var(--gold-dark);

    transform: translateY(-2px);
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, 0.1);
}


.footer-bottom-container {
    width: 90%;
    max-width: 1250px;

    margin: 0 auto;

    padding: 22px 0;

    display: flex;

    flex-direction: column;

    gap: 8px;

    text-align: center;
}


.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.5);

    font-size: 0.75rem;
}


.footer-made-with {
    color: #b8d9f2 !important;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-style: italic;
}


@media (max-width: 599px) {

    .services-section::before {
        width: 240px;
        height: 130px;

        right: -95px;
        top: 35px;

        opacity: 0.35;
    }


    .about-section::before {
        width: 250px;
        height: 140px;

        left: -105px;
        bottom: 45px;

        opacity: 0.35;
    }


    .contact-section::before {
        width: 250px;
        height: 140px;

        right: -105px;
        top: 65px;

        opacity: 0.35;
    }


    .mommy-cloud,
    .location-cloud {
        opacity: 0.7;
    }


    .cloud-one {
        left: -80px;
    }


    .cloud-two {
        right: -85px;
    }


    .location-cloud-one {
        left: -80px;
    }


    .location-cloud-two {
        right: -90px;
    }

}

/* =========================
   TABLET
========================= */

@media (min-width: 600px) {

    .hero-buttons {
        flex-direction: row;
    }

    .button {
        min-width: 190px;
    }

    /* SERVICES */
    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .services-cta {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 32px 40px;
    }

    .mommy-buttons {
        flex-direction: row;
        align-items: center;
    }

    .about-buttons {
        flex-direction: row;
        align-items: center;
    }

    .about-experience-badge {
        right: -20px;

        width: 135px;
        height: 135px;
    }

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

    .gallery-item-large {
        grid-column:
            span 2;
    }

    .gallery-item-wide {
        grid-column:
            span 2;
    }

    .gallery-cta {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 32px 40px;
    }

    .contact-buttons {
        flex-direction: row;
    }

    .contact-booking-strip {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 38px 42px;
    }

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

}


/* =========================
   DESKTOP
========================= */

@media (min-width: 950px) {

    .services-grid {
        grid-template-columns:
            repeat(3, 1fr);
        gap: 26px;
    }

    .service-card {
        min-height: 365px;
        padding: 38px 32px;
    }

    .nav-container {
        min-height: 92px;
    }

    .menu-toggle {
        display: none;
    }

    .main-nav {
        position: static;
        width: auto;
        padding: 0;
        background: transparent;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 4px;
        border: none;
        box-shadow: none;
    }

    .main-nav a {
        width: auto;
        padding: 10px 12px;
        font-size: 0.92rem;
    }

    .main-nav .nav-book-button {
        width: auto;
        margin-top: 0;
        margin-left: 14px;
        padding: 12px 24px;
    }

    .hero {
        min-height: calc(100vh - 88px);
    }

    .hero-container {
        padding: 90px 0;
        display: grid;
        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(330px, 0.85fr);

        align-items: center;
        gap: 70px;
    }

    .hero-card {
        min-height: 430px;
    }

    .mommy-me-container {
        grid-template-columns:
            minmax(350px, 0.9fr)
            minmax(0, 1.1fr);

        gap: 85px;
    }

    .mommy-me-section {
        padding: 120px 0;
    }

    .mommy-me-visual {
        min-height: 520px;
    }

    .mommy-visual-card {
        min-height: 460px;
    }

    .about-section {
        padding: 120px 0;
    }

    .about-container {
        grid-template-columns:
            minmax(350px, 0.9fr)
            minmax(0, 1.1fr);

        gap: 95px;
    }

    .about-visual {
        margin: 0;
    }

    .about-photo-frame {
        min-height: 570px;
    }

    .about-experience-badge {
        right: -35px;
        bottom: 55px;
    }

    .gallery-section {
        padding: 120px 0;
    }

    .gallery-grid {
        grid-template-columns:
            repeat(3, 1fr);

        grid-auto-rows: 260px;

        gap: 24px;
    }

    .gallery-item {
        min-height: 0;
    }

    .gallery-placeholder,
    .gallery-image {
        min-height: 0;
        height: 100%;
    }

    .gallery-item-large {
        grid-column:
            span 2;

        grid-row:
            span 2;
    }

    .gallery-item-wide {
        grid-column:
            span 2;
    }

    .contact-section {
        padding: 120px 0 80px;
    }

    .contact-grid {
        grid-template-columns:
            minmax(350px, 0.9fr)
            minmax(0, 1.1fr);

        gap: 85px;
        align-items: center;
    }

    .location-card,
    .location-visual {
        min-height: 560px;
    }

    .contact-info {
        padding: 30px 0;
    }

    .footer-container {
        grid-template-columns:
            1.4fr 0.8fr 0.9fr 1fr;
        gap: 60px;
    }

    .footer-bottom-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

}