:root {
    --color-seafoam: #e0f7fa;
    --color-teal: #008080;
    --color-deep-ocean: #004c4c;
    --color-sand: #fcfcfc;
    --color-slate: #4a5568;
    --color-ink: #1a202c;
    --font-base: 'Nunito', sans-serif;
    --spacing-sm: 1rem;
    --spacing-md: 2.5rem;
    --spacing-lg: 5rem;
}

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

body {
    font-family: var(--font-base);
    color: var(--color-ink);
    background-color: var(--color-sand);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-deep-ocean);
}

.sprout-bounds {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Header */
.sprout-top-bar {
    position: sticky;
    top: 0;
    background-color: rgba(252, 252, 252, 0.95);
    backdrop-filter: blur(8px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 128, 128, 0.1);
    padding: 1rem 0;
}

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

.brand-mark {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-deep-ocean);
}

.sprout-nav-links {
    display: flex;
    gap: 1.5rem;
}

.sprout-nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-slate);
}

.sprout-nav-links a:hover {
    color: var(--color-teal);
}

.ghost-link {
    opacity: 0.6;
}

/* Hero */
.intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    background: linear-gradient(135deg, var(--color-seafoam) 0%, var(--color-sand) 100%);
}

.intro-text-pane {
    padding: var(--spacing-lg) var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.intro-text-pane h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--color-deep-ocean);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.intro-text-pane p {
    font-size: 1.125rem;
    color: var(--color-slate);
    margin-bottom: 2rem;
    max-width: 480px;
}

.wave-action {
    display: inline-block;
    background-color: var(--color-teal);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.wave-action:hover {
    background-color: var(--color-deep-ocean);
    color: white;
    transform: translateY(-2px);
}

.micro-note {
    margin-top: 2rem;
    font-size: 0.85rem !important;
    color: var(--color-slate);
    border-left: 3px solid var(--color-teal);
    padding-left: 0.75rem;
}

.intro-visual-pane img {
    height: 100%;
}

/* Contact */
.reach-out-zone {
    padding: var(--spacing-lg) 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--color-deep-ocean);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--color-slate);
    margin-bottom: 2rem;
}

.contact-img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.inquiry-form {
    background: var(--color-sand);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.input-wrap {
    margin-bottom: 1.5rem;
}

.input-wrap label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-deep-ocean);
}

.input-wrap input,
.input-wrap textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0,128,128,0.2);
    border-radius: 8px;
    font-family: var(--font-base);
    background: white;
}

.input-wrap input:focus,
.input-wrap textarea:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(0,128,128,0.1);
}

.disclaimer-noise {
    display: block;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--color-slate);
    line-height: 1.4;
}

/* Services */
.care-offerings {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-seafoam);
}

.section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
}

.section-head h2 {
    font-size: 2.5rem;
    color: var(--color-deep-ocean);
    margin-bottom: 1rem;
}

.section-head p {
    color: var(--color-slate);
}

.offerings-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.care-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,76,76,0.05);
    transition: transform 0.3s ease;
}

.care-card:hover {
    transform: translateY(-5px);
}

.care-card img {
    height: 200px;
}

.care-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--color-deep-ocean);
}

.care-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-slate);
    font-size: 0.95rem;
}

/* About */
.clinic-roots {
    padding: var(--spacing-lg) 0;
    background-color: white;
}

.flex-row-center {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.roots-visual, .roots-story {
    flex: 1;
}

.roots-visual img {
    border-radius: 24px;
    box-shadow: -20px 20px 0 var(--color-seafoam);
}

.roots-story h2 {
    font-size: 2.5rem;
    color: var(--color-deep-ocean);
    margin-bottom: 1.5rem;
}

.roots-story p {
    color: var(--color-slate);
    margin-bottom: 1rem;
}

.highlight-text {
    color: var(--color-teal);
}

.stat-box {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--color-sand);
    border-left: 4px solid var(--color-teal);
    border-radius: 0 12px 12px 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-deep-ocean);
    line-height: 1;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-teal);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-slate);
    margin-top: 0.5rem;
}

.micro-details h4 {
    color: var(--color-deep-ocean);
    margin-bottom: 0.5rem;
}

.micro-details ol {
    padding-left: 1.25rem;
    color: var(--color-slate);
}

.micro-details li {
    margin-bottom: 0.25rem;
}

/* Testimonials */
.parent-praise {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-sand);
}

.parent-praise h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-deep-ocean);
    margin-bottom: 3rem;
}

.praise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.praise-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote {
    font-style: italic;
    color: var(--color-slate);
    margin-bottom: 1.5rem;
    position: relative;
}

.quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--color-seafoam);
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    opacity: 0.5;
    z-index: 0;
}

.praise-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1;
}

.praise-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.praise-author span {
    font-weight: 600;
    color: var(--color-deep-ocean);
    font-size: 0.9rem;
}

/* Footer */
.sprout-base {
    background-color: var(--color-ink);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
}

.footer-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.base-col h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.base-col p {
    margin-bottom: 0.5rem;
}

.base-col a {
    color: rgba(255,255,255,0.7);
}

.base-col a:hover {
    color: var(--color-seafoam);
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
    .intro-split {
        grid-template-columns: 1fr;
    }
    .intro-visual-pane {
        order: -1;
    }
    .intro-text-pane {
        padding: 3rem 1.5rem;
    }
    .intro-text-pane h1 {
        font-size: 2.5rem;
    }
    .contact-grid, .flex-row-center {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 2rem;
    }
    .roots-visual {
        order: -1;
    }
}
@media (max-width: 600px) {
    .sprout-nav-links {
        display: none;
    }
    .brand-mark {
        margin: 0 auto;
    }
}