@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500&family=Great+Vibes&family=Allison&display=swap');

:root {
    /* Force light colour scheme — disables OS-level dark mode on all browsers/devices */
    color-scheme: light;

    /* Color Palette — Warm & Soft Maternal */
    --color-bg-primary:   #FCF8F4;          /* Ivory cream */
    --color-bg-secondary: #F5EDE5;          /* Warm linen */
    --color-bg-hero:      #F9F2EC;          /* Soft peach-white */
    --color-text-main:    #5C4033;          /* Warm espresso (no black) */
    --color-text-muted:   #8B6A5A;          /* Warm mocha */
    --color-accent-sage:  #9CA89E;          /* Sage green (kept from original) */
    --color-accent-warm:  #C8956C;          /* Warm terracotta */
    --color-accent-gold:  #C9A96E;          /* Soft gold */
    --color-accent-peach: #E8C4A8;          /* Skin / peach */
    --color-accent-blush: #EBDAD2;          /* Blush rose */
    --color-accent-beige: #EDE0D4;          /* Warm beige */
    --color-icon-warm:    #C8956C;          /* Icon terracotta */

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body:    'Inter', sans-serif;
    --font-script:  'Great Vibes', cursive;
    --font-signature: 'Allison', cursive;

    /* Spacing & Layout */
    --container-width: 1200px;
    --section-padding: 100px 20px;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-primary);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    color-scheme: light; /* Prevent dark mode on mobile browsers */
}

/* ── Page Load Animations ── */
@keyframes fadeInUpInitial {
    0%   { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInImageInitial {
    0%   { opacity: 0; transform: scale(0.96); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes waveDrift {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(-20px); }
    100% { transform: translateX(0); }
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text-main);
}

h1 { font-size: 4.5rem; letter-spacing: -0.02em; }
h2 { font-size: 3rem; margin-bottom: 1.5rem; text-align: center; }
h3 { font-size: 1.8rem; margin-bottom: 1rem; }

p { font-size: 1.05rem; color: var(--color-text-muted); margin-bottom: 1rem; }

.script-text {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--color-accent-gold);
    margin-top: -10px;
    margin-bottom: 20px;
}

.text-center { text-align: center; }

/* ── Layout Utilities ── */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section { padding: var(--section-padding); }

.bg-secondary { background-color: var(--color-bg-secondary); }

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--color-accent-sage);
    color: #FFFFFF;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid var(--color-accent-sage);
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--color-accent-sage);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-main);
    border: 1px solid var(--color-text-main);
}

.btn-outline:hover {
    background-color: var(--color-accent-warm);
    border-color: var(--color-accent-warm);
    color: #FFFFFF;
}

/* ── Navbar ── */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(252, 248, 244, 0.96);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--color-accent-blush);
    opacity: 0;
    animation: fadeInUpInitial 1s ease-out 0s forwards;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--color-text-main);
}

.nav-brand img { height: 40px; }

.nav-brand span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-text-main);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover { color: var(--color-accent-warm); }

/* ── Hero Section — Warm redesign matching reference ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg-hero);
}



.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    padding-right: 40px;
    opacity: 0;
    animation: fadeInUpInitial 1.2s ease-out 0.2s forwards;
}

/* Thin gold separator line below title */
.hero-separator {
    width: 50px;
    height: 1px;
    background: var(--color-accent-gold);
    margin: 28px 0;
    opacity: 0.6;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 200px 200px 120px 120px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(200, 149, 108, 0.12);
    opacity: 0;
    animation: fadeInImageInitial 1.5s ease-out 0.4s forwards;
}

.hero-image-wrapper img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    display: block;
}

/* Warm gradient wave at the bottom of hero */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
    animation: waveDrift 18s ease-in-out infinite;
}

/* ── Features / Icon Grid (below hero) ── */
.features-strip {
    background-color: var(--color-bg-primary);
    padding: 70px 20px;
    border-bottom: 1px solid var(--color-accent-beige);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 0;
    position: relative;
}

/* Vertical dividers between items */
.feature-item {
    text-align: center;
    padding: 30px 40px;
    position: relative;
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: var(--color-accent-beige);
}

/* Warm skin-toned icon area */
.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent-peach);
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.feature-icon:hover {
    background-color: var(--color-accent-blush);
    transform: translateY(-4px);
}

.feature-icon i {
    font-size: 1.6rem;
    color: var(--color-accent-warm);
}

/* SVG icons: warm skin color */
.feature-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--color-accent-warm);
    fill: none;
    stroke-width: 1.5;
}

.feature-item h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--color-text-main);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ── Services Section ── */
.image-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 50px;
}

.image-card {
    position: relative;
    z-index: 1;
    height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px 40px;
    text-align: left;
    color: #FFFFFF;
    transition: transform 0.4s ease;
}

.image-card:hover { transform: scale(0.98); }

.image-card img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform 10s ease;
}

.image-card:hover img { transform: scale(1.05); }

/* Warm gradient overlay instead of black */
.image-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        to top,
        rgba(92, 64, 51, 0.90) 0%,
        rgba(139, 106, 90, 0.40) 60%,
        rgba(249, 242, 236, 0) 100%
    );
    z-index: -1;
}

.image-card .phase {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-accent-peach);
    margin-bottom: 15px;
    display: block;
}

.image-card h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(92, 64, 51, 0.3);
}

.image-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(92, 64, 51, 0.4);
}

.image-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.image-card ul li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
}

.image-card ul li i {
    color: var(--color-accent-peach);
    margin-right: 15px;
    font-size: 1.1rem;
}

/* ── Approach Section ── */
.approach-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.approach-image { position: relative; }

.approach-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
}

.approach-image::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 100%; height: 100%;
    border: 1px solid var(--color-accent-gold);
    border-radius: 10px;
    z-index: -1;
    opacity: 0.5;
}

/* ── Contact Section ── */
.contact-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid var(--color-accent-beige);
    background-color: var(--color-bg-secondary);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-main);
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent-warm);
}

/* ── Testimonials Banner ── */
.testimonials-banner {
    padding: 60px 20px;
    border-top: 1px solid var(--color-accent-beige);
    border-bottom: 1px solid var(--color-accent-beige);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 2px solid var(--color-accent-peach);
    padding: 3px;
}

.testimonial-item .quote {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--color-text-main);
    line-height: 1.5;
    margin-bottom: 15px;
}

.testimonial-item .author {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent-warm);
    font-weight: 500;
}

/* ── Footer ── */
.footer {
    background: linear-gradient(135deg, #9CA89E 0%, #B5C0B7 100%);
    color: #FFFFFF;
    padding: 80px 20px 40px;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    font-family: var(--font-heading);
    font-size: 2rem;
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer p {
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 30px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    margin-left: 20px;
}

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
    position: fixed;
    width: 60px; height: 60px;
    bottom: 40px; right: 40px;
    background-color: var(--color-accent-sage);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: float-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #7A897C;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: #FFF;
}

@keyframes float-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(156, 168, 158, 0.7); }
    70%  { box-shadow: 0 0 0 15px rgba(156, 168, 158, 0); }
    100% { box-shadow: 0 0 0 0 rgba(156, 168, 158, 0); }
}

/* ── Fade In On Scroll ── */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* ── Hero Text Classes ── */
.hero-logo {
    max-width: 380px;
    margin-bottom: 10px;
    display: block;
}

.hero-title {
    font-size: 4.2rem;
    line-height: 1;
    margin-bottom: 0;
    color: var(--color-text-main);
}

.hero-subtitle {
    font-size: 4rem;
    margin-top: 0px;
    margin-bottom: 20px;
    color: var(--color-accent-gold);
}

.hero-desc {
    font-size: 1.15rem;
    margin-top: 12px;
    margin-bottom: 40px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-main);
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .hero-content, .approach-section {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 3.5rem; }

    .hero-image-wrapper img,
    .approach-image img { height: 400px; }

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

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

@media (max-width: 768px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px !important;
    }

    .nav-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        gap: 10px;
    }

    .nav-brand img  { height: 30px; }
    .nav-brand span { font-size: 1.2rem; }

    .menu-btn { display: block; z-index: 1002; }
    .nav-book-btn { display: none; }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0;
        width: 100%;
        background-color: rgba(252, 248, 244, 0.98);
        padding: 0; gap: 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.4s ease-out;
    }

    .nav-links.active {
        max-height: 350px;
        padding: 20px 0;
        opacity: 1;
    }

    .nav-links a {
        text-align: center;
        font-size: 1.1rem;
        padding: 10px 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease-out 0.2s, transform 0.3s ease-out 0.2s;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .hero { padding-top: 100px; }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-right: 0;
    }

    .hero-separator { margin: 20px auto; }

    .hero-logo {
        max-width: 250px;
        margin-bottom: 10px;
    }

    .hero-title   { font-size: 3rem; }
    .hero-subtitle { font-size: 3rem; margin-bottom: 10px; }

    .hero-desc {
        font-size: 1.1rem;
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .hero-image-wrapper {
        border-radius: 120px 120px 80px 80px;
        margin: 0 20px;
    }

    .hero-image-wrapper img { height: 350px; }

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

    .feature-item:not(:last-child)::after { display: none; }

    .image-card-grid { grid-template-columns: 1fr; }

    .image-card {
        height: 100vh;
        border-radius: 0;
        padding: 60px 30px;
    }

    .footer-bottom { flex-direction: column; gap: 15px; }

    .testimonials-grid { grid-template-columns: 1fr; gap: 30px; }

    .whatsapp-float {
        width: 50px; height: 50px;
        bottom: 20px; right: 20px;
        font-size: 24px;
    }
}

/* ══════════════════════════════════════════
   Animal Rescue Section
══════════════════════════════════════════ */
.rescue-section {
    background: linear-gradient(160deg, #FAF4EE 0%, #F0E8DF 100%);
    padding: 110px 20px;
    position: relative;
    overflow: hidden;
}

/* Subtle paw watermark in background */
.rescue-section::before {
    content: '';
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(200, 149, 108, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.rescue-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ── Text column ── */
.rescue-eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent-warm);
    margin-bottom: 14px;
    font-weight: 500;
}

.rescue-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--color-text-main);
    text-align: left;
    margin-bottom: 0;
    line-height: 1.1;
}

.rescue-divider {
    width: 55px;
    height: 1.5px;
    background: linear-gradient(to right, var(--color-accent-gold), transparent);
    margin: 24px 0 28px;
}

.rescue-lead {
    font-size: 1.2rem;
    color: var(--color-text-main);
    line-height: 1.75;
    margin-bottom: 22px;
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
}

.rescue-lead strong {
    color: var(--color-accent-warm);
    font-style: normal;
    font-weight: 600;
}

.rescue-text p strong {
    color: var(--color-text-main);
    font-weight: 500;
}

/* Pull-quote block */
.rescue-quote {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.6);
    border-left: 3px solid var(--color-accent-gold);
    border-radius: 0 10px 10px 0;
    padding: 20px 24px;
    margin: 30px 0;
    backdrop-filter: blur(4px);
}

.rescue-quote-icon {
    color: var(--color-accent-warm);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.rescue-quote span {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--color-text-main);
    line-height: 1.6;
}

.rescue-quote cite {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent-warm);
    font-style: normal;
    font-weight: 500;
}

.rescue-closing {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 0;
}

/* ── Portrait column ── */
.rescue-portraits {
    position: relative;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
}

.portrait-card {
    flex: 1;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Second card offset down for stagger */
.portrait-card--offset {
    margin-top: 50px;
}

.portrait-img-wrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(200, 149, 108, 0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-color: var(--color-bg-secondary);
}

.portrait-img-wrap:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(200, 149, 108, 0.25);
}

.portrait-img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.portrait-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 10px 8px;
    text-align: center;
}

.portrait-name {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--color-accent-warm);
    line-height: 1;
}

.portrait-sub {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* Floating badge */
.rescue-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-accent-warm) 0%, var(--color-accent-gold) 100%);
    color: #FFFFFF;
    border-radius: 50px;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(200, 149, 108, 0.35);
    white-space: nowrap;
}

.rescue-badge i {
    font-size: 1.1rem;
}

/* ── Rescue responsive ── */
@media (max-width: 992px) {
    .rescue-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .rescue-title { font-size: 2.6rem; }

    .rescue-portraits {
        justify-content: center;
        max-width: 480px;
        margin: 0 auto;
    }

    .portrait-img-wrap img { height: 220px; }
}

@media (max-width: 600px) {
    .rescue-portraits {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .portrait-card,
    .portrait-card--offset {
        max-width: 280px;
        margin-top: 0;
        width: 100%;
    }

    .portrait-img-wrap img { height: 280px; }

    .rescue-badge {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 10px;
    }
}


/* ═══════════════════════════════════════════════
   PACKAGES & GUIDES SECTION
═══════════════════════════════════════════════ */
.packages-section {
    background-color: var(--color-bg-primary);
    padding: 120px 20px;
    background-image:
        radial-gradient(circle at 8% 5%, rgba(201,169,110,0.08) 0, transparent 60px),
        radial-gradient(circle at 92% 8%, rgba(201,169,110,0.08) 0, transparent 60px);
}
.packages-header { margin-bottom: 70px; }
.packages-header h2 {
    font-size: 3rem;
    letter-spacing: 2px;
    margin: 0;
}
.packages-subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-top: 14px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.package-card {
    background: var(--color-bg-hero);
    border-radius: 24px;
    padding: 50px 32px 36px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(92,64,51,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(92,64,51,0.12);
}
.package-popular { background: #F7EFE6; }
.package-premium {
    background: linear-gradient(160deg, #F9F2EC 0%, #F2E4D2 100%);
    border: 1px solid rgba(201,169,110,0.25);
}

.package-label {
    align-self: center;
    background: var(--color-accent-gold);
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 3px;
    padding: 6px 22px;
    border-radius: 30px;
    margin-bottom: 22px;
    text-transform: uppercase;
    font-weight: 500;
}
.package-popular .package-label { background: var(--color-accent-warm); }
.package-premium .package-label { background: #8B6A40; }

.package-crown {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--color-accent-gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(201,169,110,0.4);
}

.package-title {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
    color: var(--color-text-main);
}
.package-duration {
    text-align: center;
    font-size: 1rem;
    letter-spacing: 4px;
    color: var(--color-text-muted);
    margin: 6px 0 14px;
    font-weight: 500;
}

.package-divider {
    text-align: center;
    color: var(--color-accent-gold);
    font-size: 0.7rem;
    margin: 4px 0 18px;
    position: relative;
}
.package-divider::before,
.package-divider::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--color-accent-gold);
    vertical-align: middle;
    margin: 0 10px;
    opacity: 0.5;
}

.package-tagline {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.6;
    margin-bottom: 28px;
    padding: 0 8px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    flex-grow: 1;
}
.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
}
.package-features li + li {
    border-top: 1px solid rgba(201,169,110,0.15);
}
.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(232,196,168,0.35);
    color: var(--color-accent-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.package-premium .feature-icon {
    background: rgba(201,169,110,0.25);
    color: #8B6A40;
}
.package-features strong {
    display: block;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.package-features p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin: 0;
}

.package-badge {
    margin: 18px -32px -36px;
    background: var(--color-accent-warm);
    color: #fff;
    text-align: center;
    padding: 14px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    border-radius: 0 0 24px 24px;
    font-weight: 500;
}
.package-badge i { margin-right: 6px; }

.packages-footer {
    margin-top: 70px;
    background: var(--color-bg-secondary);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.packages-footer h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
}
.packages-footer p {
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 14px;
}
.packages-guarantee {
    font-family: var(--font-body);
    color: var(--color-accent-gold) !important;
    letter-spacing: 2px;
    font-weight: 500;
    margin: 24px auto !important;
    text-transform: uppercase;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 980px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 480px;
        margin: 0 auto;
    }
}
@media (max-width: 600px) {
    .packages-section { padding: 80px 16px; }
    .packages-header h2 { font-size: 2.2rem; }
    .package-card { padding: 40px 24px 28px; }
    .package-title { font-size: 1.5rem; }
    .package-badge { margin: 18px -24px -28px; }
}

/* ═══════════════════════════════════════════════
   DAY-BY-DAY SUPPORT SECTION
═══════════════════════════════════════════════ */
.support-section {
    padding: 120px 20px;
}

/* Purpose card */
.purpose-card {
    background: var(--color-bg-hero);
    border-radius: 28px;
    padding: 40px 50px;
    display: flex;
    gap: 36px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(92,64,51,0.06);
    border: 1px solid rgba(232,196,168,0.4);
}
.purpose-icon {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(232,196,168,0.4);
    color: var(--color-accent-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
}
.purpose-text p { margin-bottom: 8px; color: var(--color-text-muted); }
.purpose-text p strong { color: var(--color-text-main); font-weight: 500; }

/* Heading */
.support-heading {
    font-size: 2.4rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.support-heading em {
    font-family: var(--font-script);
    color: var(--color-accent-gold);
    text-transform: none;
    letter-spacing: 0;
    font-style: normal;
    font-size: 1.1em;
}

/* 8 pillars grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.support-item {
    text-align: center;
    padding: 10px;
}
.support-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: rgba(232,196,168,0.35);
    color: var(--color-accent-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.7rem;
    transition: transform 0.3s ease, background 0.3s ease;
}
.support-item:hover .support-icon {
    transform: translateY(-4px);
    background: rgba(232,196,168,0.55);
}
.support-item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-main);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 12px;
}
.support-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Promise card */
.promise-card {
    margin-top: 70px;
    background: var(--color-bg-hero);
    border-radius: 28px;
    padding: 40px 50px;
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    gap: 40px;
    align-items: center;
    border: 1px solid rgba(232,196,168,0.4);
}
.promise-left p { color: var(--color-text-muted); margin-bottom: 0; }
.promise-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}
.promise-bullets li {
    color: var(--color-text-main);
    padding: 8px 0;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.promise-bullets i {
    color: var(--color-accent-peach);
    font-size: 0.8rem;
}
.promise-callout {
    background: #fff;
    border: 2px dashed var(--color-accent-peach);
    border-radius: 18px;
    padding: 22px 26px;
    text-align: center;
    min-width: 180px;
}
.promise-callout p { color: var(--color-accent-warm) !important; margin: 0; }

/* Responsive */
@media (max-width: 1000px) {
    .support-grid { grid-template-columns: repeat(2, 1fr); }
    .promise-card {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .promise-bullets li { justify-content: center; }
    .promise-callout { justify-self: center; }
}
@media (max-width: 700px) {
    .support-section { padding: 80px 16px; }
    .purpose-card {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
        gap: 20px;
    }
    .support-heading { font-size: 1.7rem; letter-spacing: 2px; }
    .support-grid { grid-template-columns: 1fr; gap: 30px; max-width: 360px; }
    .promise-card { padding: 32px 20px; }
}

/* ═══════════════════════════════════════════════
   ABOUT / BRAND IDENTITY SECTION
═══════════════════════════════════════════════ */
.about-brand-section {
    position: relative;
    background: linear-gradient(180deg, #FCF8F4 0%, #FAF5EF 100%);
    padding: 110px 20px 80px;
    overflow: hidden;
}
.about-brand-section .about-purpose-card {
    margin-top: 60px;
    background: #FCF8F4;
    border: 1px solid var(--color-accent-peach);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(92,64,51,0.04);
}

/* Decorative leaves */
.about-leaves {
    position: absolute;
    color: var(--color-accent-peach);
    opacity: 0.3;
    font-size: 3rem;
    pointer-events: none;
}
.about-leaves i { display: block; }
.about-leaves i + i { margin-top: 8px; transform: rotate(45deg); }
.about-leaves-left  { top: 80px; left: 20px; transform: rotate(-20deg); }
.about-leaves-right { bottom: 80px; right: 20px; transform: rotate(160deg); }

/* Brand grid */
.about-brand-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-brand-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Moon SVG Container */
.about-moon-svg-container {
    width: 90px;
    height: 90px;
    margin-bottom: 12px;
}
.about-moon-svg {
    width: 100%;
    height: 100%;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 4.4rem;
    letter-spacing: 6px;
    line-height: 1;
    margin: 0;
    color: var(--color-text-main);
    font-weight: 400;
}
.about-subtitle {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 12px;
    color: var(--color-accent-warm);
    margin: 14px 0 0;
    font-weight: 300;
}

/* Signature script styling */
.about-signature-text {
    font-family: var(--font-signature);
    font-size: 5.6rem;
    color: var(--color-accent-warm);
    margin: 12px 0 2px;
    line-height: 0.85;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.signature-heart {
    width: 2.4rem;
    height: 2.4rem;
    stroke: var(--color-accent-warm);
    stroke-width: 1.6;
    margin-left: 10px;
    transform: rotate(6deg) translateY(-2px);
    display: inline-block;
}

/* Roles with side-lines */
.about-roles-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    width: 100%;
    max-width: 520px;
}
.about-roles-line {
    flex: 1;
    height: 1px;
    background: var(--color-accent-warm);
    opacity: 0.5;
    max-width: 80px;
}
.about-roles-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--color-text-main);
    line-height: 1.8;
    font-weight: 400;
}
.about-roles-text div + div {
    margin-top: 2px;
}

/* Blended Photo */
.about-brand-photo {
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    position: relative;
    background: transparent;
}
.about-brand-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: auto;
    -webkit-mask-image: radial-gradient(circle at 65% 45%, rgba(0,0,0,1) 32%, rgba(0,0,0,0) 82%);
    mask-image: radial-gradient(circle at 65% 45%, rgba(0,0,0,1) 32%, rgba(0,0,0,0) 82%);
}

/* Purpose Card SVG & Details */
.purpose-illustration {
    flex-shrink: 0;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mother-baby-svg {
    width: 100%;
    height: auto;
    display: block;
}
.purpose-title-text {
    font-family: var(--font-signature);
    font-size: 3.4rem;
    color: var(--color-accent-warm);
    margin-bottom: 12px;
    line-height: 0.85;
    display: flex;
    align-items: center;
}
.purpose-title-heart {
    width: 1.6rem;
    height: 1.6rem;
    stroke: var(--color-accent-warm);
    stroke-width: 1.6;
    margin-left: 8px;
    transform: rotate(5deg) translateY(-2px);
    display: inline-block;
}
.purpose-body-paragraph {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
}
.purpose-body-paragraph strong {
    color: var(--color-text-main);
    font-weight: 500;
}
.purpose-body-paragraph.text-normal {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .about-brand-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-title { font-size: 3.2rem; letter-spacing: 4px; }
    .about-subtitle { font-size: 1.3rem; letter-spacing: 8px; }
    .about-signature-text { font-size: 4.4rem; }
    .signature-heart { width: 1.8rem; height: 1.8rem; }
    .about-leaves { font-size: 2rem; }
    .about-brand-photo {
        max-width: 420px;
        margin: 0 auto;
    }
    .about-brand-photo img {
        -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 80%);
        mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 80%);
    }
}
@media (max-width: 700px) {
    .about-brand-section .about-purpose-card {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
        gap: 24px;
    }
    .purpose-illustration {
        width: 90px;
        margin: 0 auto;
    }
    .purpose-title-text {
        font-size: 2.8rem;
        justify-content: center;
    }
    .purpose-title-heart {
        width: 1.3rem;
        height: 1.3rem;
    }
}
@media (max-width: 500px) {
    .about-brand-section { padding: 75px 16px 60px; }
    .about-title { font-size: 2.4rem; letter-spacing: 3px; }
    .about-subtitle { font-size: 1.1rem; letter-spacing: 6px; }
    .about-signature-text { font-size: 3.8rem; }
    .about-roles-line { max-width: 45px; }
    .about-roles-text { font-size: 0.75rem; letter-spacing: 2px; }
}
