:root {
    --rose-50: #fff7f8;
    --rose-100: #fdecef;
    --rose-200: #f8d9df;
    --rose-300: #efbec9;
    --rose-700: #8f4f60;
    --mauve-900: #412733;
    --sage-100: #e6efe9;
    --sage-500: #4a7966;
    --paper: #fffdfb;
    --ink: #2f2630;
    --ink-soft: #5f5360;
    --shadow: 0 18px 45px rgba(64, 30, 45, 0.11);
    --radius-lg: 22px;
    --radius-md: 14px;
    --content-width: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 5%, rgba(248, 217, 223, 0.85) 0, rgba(248, 217, 223, 0) 26%),
        radial-gradient(circle at 80% 0%, rgba(230, 239, 233, 0.9) 0, rgba(230, 239, 233, 0) 24%),
        linear-gradient(160deg, #fff8fa 0%, #fffdfb 42%, #fff7f8 100%);
    line-height: 1.6;
}

h1, h2, h3 {
    margin-top: 0;
    color: var(--mauve-900);
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 2.8vw, 3rem);
    margin-bottom: 0.75rem;
}

h3 {
    font-size: clamp(1.35rem, 2.1vw, 1.8rem);
    margin-bottom: 0.55rem;
}

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

a {
    color: var(--rose-700);
}

.top-nav {
    position: static;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid rgba(143, 79, 96, 0.13);
}

.top-nav-inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--mauve-900);
    text-decoration: none;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(130deg, #c87f92, #8f4f60);
    font-size: 0.95rem;
    font-weight: 700;
}

.logo-image {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(143, 79, 96, 0.24);
    border-radius: 10px;
    background: #fff;
    color: var(--mauve-900);
    cursor: pointer;
    padding: 10px;
}

.nav-toggle .line {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle .line + .line {
    margin-top: 5px;
}

.nav-toggle[aria-expanded="true"] .line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    overflow-x: auto;
    scrollbar-width: thin;
}

.nav-links a {
    display: inline-block;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    color: var(--mauve-900);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    background: var(--rose-100);
    color: var(--rose-700);
    transform: translateY(-1px);
}

.hero {
    --hero-parallax-offset: 0px;
    position: relative;
    isolation: isolate;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: clamp(2.8rem, 6vw, 6rem) 1rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    z-index: -2;
    pointer-events: none;
    background-image: url("mother-daughter-scaled-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center calc(10% + var(--hero-parallax-offset));
    transform: translateX(-50%);
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    z-index: -1;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-50%);
}

.hero > div:first-child,
.hero > div:first-child * {
/*             color: #fff; */
    text-shadow: 0 0 20px rgba(255, 255, 255, 1.0);
}

.hero-panel {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(253, 236, 239, 0.62));
    border: 1px solid rgba(143, 79, 96, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.55rem;
    box-shadow: var(--shadow);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.77rem;
    font-weight: 700;
    color: var(--rose-700);
    margin-bottom: 0.65rem;
}

.hero-lead {
    font-size: clamp(1.06rem, 1.85vw, 1.2rem);
    max-width: 55ch;
    margin-bottom: 1.25rem;
    color: var(--mauve-900);
}

.hero-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--ink-soft);
}

.hero-list li {
    margin-bottom: 0.45rem;
}

.hero-card {
    background: var(--paper);
    border: 1px solid rgba(74, 121, 102, 0.22);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: var(--shadow);
}

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

.pill {
    display: inline-block;
    margin-bottom: 0.7rem;
    border-radius: 999px;
    padding: 0.35rem 0.78rem;
    background: var(--sage-100);
    color: var(--sage-500);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: clamp(2.4rem, 4vw, 4rem) 1rem;
    scroll-margin-top: 96px;
}

.section-card {
    background: rgba(255, 253, 251, 0.92);
    border: 1px solid rgba(143, 79, 96, 0.14);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: clamp(1.35rem, 2.5vw, 2.1rem);
}

.section-subtitle {
    font-weight: 700;
    color: var(--rose-700);
    margin-bottom: 1rem;
}

.section-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: clamp(1.4rem, 3vw, 2.4rem);
    align-items: start;
    margin-bottom: 1.9rem;
}

.section-intro--media-first {
    grid-template-columns: minmax(280px, 0.96fr) minmax(0, 1.04fr);
}

.section-split {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: clamp(1.4rem, 3vw, 2.4rem);
    align-items: start;
    margin-bottom: 1.9rem;
}

.section-split-copy {
    display: grid;
    gap: 1.5rem;
    align-content: start;
}

.section-intro-copy > :last-child {
    margin-bottom: 0;
}

.section-column-block > :last-child {
    margin-bottom: 0;
}

.section-column-block .feature-grid {
    margin-top: 0.95rem;
}

.section-heading-spaced {
    margin-top: 1.5rem;
}

.section-heading-tight {
    margin-top: 1.3rem;
}

.section-callout {
    margin-top: 1rem;
}

.section-photo-card {
    position: relative;
    margin: 0;
    padding: 0.85rem;
    border-radius: calc(var(--radius-lg) + 6px);
    border: 1px solid rgba(143, 79, 96, 0.16);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(253, 236, 239, 0.82));
    box-shadow: 0 22px 54px rgba(64, 30, 45, 0.14);
    overflow: hidden;
    isolation: isolate;
}

.section-photo-card::before {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -90px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 239, 233, 0.88) 0, rgba(230, 239, 233, 0) 72%);
    z-index: -1;
}

.section-photo-card--sage {
    background: linear-gradient(145deg, rgba(230, 239, 233, 0.84), rgba(255, 255, 255, 0.98));
}

.section-photo-card--sage::before {
    background: radial-gradient(circle, rgba(248, 217, 223, 0.82) 0, rgba(248, 217, 223, 0) 72%);
}

.section-photo-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-lg) - 4px);
    object-fit: cover;
    box-shadow: 0 16px 40px rgba(64, 30, 45, 0.16);
}

.section-photo-card--portrait {
    width: 100%;
    max-width: 430px;
    justify-self: end;
}

.section-photo-card--portrait img {
    aspect-ratio: auto;
    object-position: center 18%;
}

.section-photo-card--landscape img {
    aspect-ratio: 3 / 2;
}

.section-photo-card--landscape {
    width: 100%;
    max-width: 520px;
    justify-self: end;
}

.section-intro--media-first .section-photo-card--landscape {
    justify-self: start;
}

.section-photo-badge {
    position: absolute;
    top: 1.35rem;
    left: 1.35rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(143, 79, 96, 0.18);
    background: rgba(255, 253, 251, 0.9);
    color: var(--rose-700);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.section-photo-card figcaption {
    margin-top: 0.85rem;
    padding: 0 0.2rem 0.1rem;
    color: var(--mauve-900);
    font-size: 0.93rem;
    font-weight: 600;
    line-height: 1.5;
}

.feature-grid {
    margin-top: 1.2rem;
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-item {
    background: linear-gradient(140deg, rgba(253, 236, 239, 0.6), rgba(255, 255, 255, 0.8));
    border: 1px solid rgba(143, 79, 96, 0.14);
    border-radius: var(--radius-md);
    padding: 0.9rem 1rem;
    color: var(--mauve-900);
    font-weight: 600;
}

.quote-grid,
.process-grid,
.nanny-grid {
    margin-top: 1.2rem;
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-card,
.process-card,
.nanny-card {
    background: #fff;
    border: 1px solid rgba(143, 79, 96, 0.14);
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: 0 12px 30px rgba(64, 30, 45, 0.08);
}

.quote-attribution {
    display: block;
    margin-top: 0.55rem;
    color: var(--rose-700);
    font-weight: 700;
    font-size: 0.92rem;
}

.step-number {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 0.55rem;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(140deg, #ca8195, #8f4f60);
}

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

.process-card ul {
    margin: 0.45rem 0 0;
    padding-left: 1.1rem;
    color: var(--ink-soft);
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    font-weight: 700;
    color: var(--rose-700);
    border-bottom: 1px solid transparent;
}

.cta-link:hover,
.cta-link:focus-visible {
    border-color: var(--rose-700);
}

.form-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.1rem;
}

.field {
    display: grid;
    gap: 0.34rem;
}

.field-full {
    grid-column: 1 / -1;
}

label {
    color: var(--mauve-900);
    font-weight: 600;
    font-size: 0.95rem;
}

input,
select,
textarea {
    width: 100%;
    font: inherit;
    color: var(--ink);
    padding: 0.72rem 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(143, 79, 96, 0.32);
    background: #fff;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
    min-height: 132px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--rose-700);
    box-shadow: 0 0 0 4px rgba(200, 127, 146, 0.18);
}

.error {
    color: #a43a53;
    font-size: 0.82rem;
    min-height: 1.1em;
}

.status-box {
    margin-top: 1rem;
    padding: 0.78rem 0.9rem;
    border-radius: 10px;
    display: none;
    font-weight: 600;
}

.status-box.success {
    display: block;
    color: #1f5d45;
    background: rgba(74, 121, 102, 0.12);
    border: 1px solid rgba(74, 121, 102, 0.32);
}

.status-box.error {
    display: block;
    color: #8f203d;
    background: rgba(164, 58, 83, 0.11);
    border: 1px solid rgba(164, 58, 83, 0.3);
}

.button-row {
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    border: 0;
    border-radius: 999px;
    padding: 0.74rem 1.25rem;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 180ms ease, filter 180ms ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(140deg, #ca8195, #8f4f60);
}

.btn-secondary {
    color: var(--sage-500);
    background: var(--sage-100);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.02);
}

.fine-print {
    margin-top: 0.85rem;
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.jobs-card {
    background: linear-gradient(145deg, rgba(230, 239, 233, 0.5), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(74, 121, 102, 0.25);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.social-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(230, 239, 233, 0.55));
    border: 1px solid rgba(74, 121, 102, 0.25);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.social-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.social-embed {
    padding: 0.35rem;
    border-radius: 24px;
    border: 1px solid rgba(143, 79, 96, 0.18);
    background: #fff;
    box-shadow: 0 16px 32px rgba(71, 88, 82, 0.08);
}

.social-embed iframe {
    display: block;
    width: 100%;
    min-height: 640px;
    border: 0;
    border-radius: 20px;
    background: #fff;
}

.instagram-media {
    display: block !important;
    box-sizing: border-box !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.footer-nav {
    margin: 1rem 0;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.footer-nav a {
    display: inline-block;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(143, 79, 96, 0.16);
    background: rgba(255, 255, 255, 0.78);
    color: var(--mauve-900);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    background: var(--rose-100);
    color: var(--rose-700);
    transform: translateY(-1px);
}

footer {
    padding: 2rem 1rem 2.8rem;
    text-align: center;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .section-intro,
    .section-intro--media-first {
        grid-template-columns: 1fr;
    }

    .section-split {
        grid-template-columns: 1fr;
    }

    .section-photo-card--portrait {
        max-width: none;
        justify-self: stretch;
    }

    .section-photo-card--landscape {
        max-width: none;
        justify-self: stretch;
    }

    .feature-grid,
    .quote-grid,
    .process-grid,
    .nanny-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }

    .top-nav-inner {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.65rem;
    }

    .brand {
        align-self: auto;
    }

    .top-nav-inner nav {
        width: 100%;
        display: flex;
        justify-content: center;
        order: 3;
    }

    .js-nav-ready .top-nav-inner nav {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: max-height 220ms ease, opacity 200ms ease, transform 220ms ease;
    }

    .js-nav-ready .top-nav-inner nav.is-open {
        max-height: 110px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-toggle {
        display: inline-block;
        align-self: auto;
    }

    .logo-image {
        width: 150px;
        height: 150px;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 0.25rem;
    }

    .nav-toggle--floating {
        position: fixed;
        top: max(1rem, env(safe-area-inset-top));
        right: 1rem;
        z-index: 1200;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(61, 38, 45, 0.18);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav-toggle--floating.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .top-nav.is-offscreen .top-nav-inner nav {
        position: fixed;
        top: calc(max(1rem, env(safe-area-inset-top)) + 52px);
        right: 1rem;
        z-index: 1199;
        width: min(280px, calc(100vw - 2rem));
        padding: 0.75rem;
        justify-content: stretch;
        background: #fff;
        border: 1px solid rgba(143, 79, 96, 0.2);
        border-radius: 14px;
        box-shadow: 0 18px 45px rgba(61, 38, 45, 0.2);
    }

    .top-nav.is-offscreen .nav-links {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        overflow: visible;
        padding: 0;
    }

    .top-nav.is-offscreen .nav-links a {
        display: block;
        width: 100%;
    }

    .js-nav-ready .top-nav.is-offscreen .top-nav-inner nav.is-open {
        max-height: calc(100vh - 6rem);
        overflow-y: auto;
    }
}

@media (max-width: 720px) {
    .section-photo-badge {
        top: 1rem;
        left: 1rem;
    }

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

@media (prefers-reduced-motion: reduce) {
    .nav-toggle--floating {
        transition: none;
    }
}
