
:root {
    --bg-top: #fffbeb;
    --bg-mid: #ecfdf5;
    --bg-bot: #bbf7d0;
    --text-main: #111827;
    --text-muted: #4b5563;
    --text-soft: #6b7280;
    --accent: #065f46;
    --accent-light: #a7f3d0;
    --card-bg: rgba(255, 255, 255, 0.75);
    --border-subtle: #e5e7eb;
    --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
    min-height: 100vh;
    color: var(--text-main);
    background: linear-gradient(to bottom, var(--bg-top), var(--bg-mid), var(--bg-bot));
}

.content {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem 4rem;
}

/* NAVBAR */

.nav {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid var(--accent-light);
}

.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.brand-icon {
    width: 50px;
    height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

    .nav-links a {
        text-decoration: none;
        color: var(--text-muted);
    }

        .nav-links a:hover {
            color: var(--accent);
        }

.nav-cta {
    padding: 0.5rem 0.9rem;
    border-radius: 0.75rem;
    background: var(--accent);
    color: white !important;
    box-shadow: 0 10px 20px rgba(22, 101, 52, 0.35);
}

    .nav-cta:hover {
        background: black !important;
    }

@media (max-width: 768px) {
    .nav-links a:not(.nav-cta) {
        display: none;
    }
}

/* HERO */

.hero {
    padding: 3.5rem 0 2rem;
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero {
        grid-template-columns: 1.1fr 1fr;
    }
}

.hero-text h1 {
    font-size: 2.4rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 3rem;
    }
}

.accent {
    color: var(--accent);
}

.hero-text p {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 36rem;
}

.hero-badges {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

    .hero-badges span {
        border-radius: 999px;
        border: 1px solid var(--border-subtle);
        padding: 0.3rem 0.75rem;
        font-size: 0.8rem;
        background: rgba(255, 255, 255, 0.8);
    }

.hero-actions {
    margin-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn {
    border-radius: 0.9rem;
    padding: 0.7rem 1.1rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

    .btn.primary {
        background: var(--accent);
        color: #fff;
        box-shadow: 0 14px 30px rgba(22, 101, 52, 0.4);
    }

        .btn.primary:hover {
            background: #064e3b;
        }

    .btn.secondary {
        background: #fff;
        border: 1px solid #d1d5db;
        color: var(--text-main);
    }

        .btn.secondary:hover {
            background: #f9fafb;
        }

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    aspect-ratio: 4 / 3;
    border-radius: 1.7rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--accent-light);
    background-image: url("/img/gallery4.jpg");
    background-size: cover;
    background-position: center;
}

.hero-tag {
    position: absolute;
    left: -0.75rem;
    bottom: -0.75rem;
    transform: rotate(-2deg);
    background: #fff;
    border-radius: 0.9rem;
    padding: 0.4rem 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
    font-size: 0.85rem;
}

.sparkle {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #fef3c7, #f97316);
}

@media (max-width: 640px) {
    .hero-tag {
        position: static;
        transform: none;
        margin-top: 0.75rem;
    }
}

/* SECTIONS GENERIC */

.section {
    padding-top: 4rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

    .section-header h2 {
        font-size: 1.9rem;
        font-weight: 700;
        margin: 0;
        color: var(--text-main);
    }

.leaf-icon,
.gift-icon,
.star-icon,
.map-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #bbf7d0, #22c55e);
}

.section-grid-2 {
    display: grid;
    gap: 1.2rem;
}

@media (min-width: 900px) {
    .section-grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.card {
    background: var(--card-bg);
    border-radius: 1.25rem;
    border: 1px solid var(--border-subtle);
    padding: 1.25rem 1.4rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
}

    .card.small {
        box-shadow: none;
    }

    .card.mini {
        padding: 0.9rem 1rem;
    }

    .card h2 {
        margin-top: 0;
        margin-bottom: 0.4rem;
        font-size: 1.5rem;
        color: var(--accent);
    }

    .card h3 {
        margin: 0 0 0.2rem;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .card p,
    .card li {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .card ul {
        margin: 0.2rem 0 0 1rem;
        padding: 0;
    }

/* SERVICES GRID */

.card-grid-4 {
    display: grid;
    gap: 1rem;
}

@media (min-width: 900px) {
    .card-grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* PACKAGES */

.card-grid-3 {
    display: grid;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .card-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}

    .card-head h3 {
        font-size: 1.05rem;
        margin: 0;
    }

.pill {
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    padding: 0.2rem 0.65rem;
    font-size: 0.75rem;
    color: var(--text-soft);
    white-space: nowrap;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.6rem;
}

    .tag-row span {
        border-radius: 999px;
        border: 1px solid var(--border-subtle);
        padding: 0.2rem 0.6rem;
        font-size: 0.75rem;
        background: rgba(255, 255, 255, 0.9);
    }

.section-note {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-soft);
}

/* TESTIMONIALS */

.quote {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.quote-name {
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* GALLERY */

.gallery-grid {
    display: grid;
    gap: 0.8rem;
}

@media (min-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.gallery-tile {
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
    border: 1px solid var(--border-subtle);
    background-image: url("/img/gallery3.jpg");
    background-size: cover;
    background-position: center;
}

/* CONTACT */

.contact {
    padding-bottom: 4rem;
}

.contact-grid {
    display: grid;
    gap: 1.2rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.contact-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.contact-form {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .contact-form {
        grid-template-columns: 1fr 1fr;
    }
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

    .field.full {
        grid-column: 1 / -1;
    }

    .field label {
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--text-soft);
    }

    .field input,
    .field textarea {
        border-radius: 0.8rem;
        border: 1px solid #d1d5db;
        padding: 0.55rem 0.75rem;
        font: inherit;
        color: var(--text-main);
        background: #fff;
    }

    .field textarea {
        min-height: 140px;
        resize: vertical;
    }

.contact-footer {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.25rem;
    flex-wrap: wrap;
}

.response-time {
    font-size: 0.85rem;
    color: var(--text-soft);
}

.contact-stack {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

    .contact-stack a {
        color: var(--accent);
        text-decoration: none;
    }

        .contact-stack a:hover {
            text-decoration: underline;
        }

/* FOOTER */

.footer {
    border-top: 1px solid var(--accent-light);
    background: rgba(255, 255, 255, 0.75);
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1rem 1.25rem 1.4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-soft);
}

.footer-links {
    display: flex;
    gap: 0.9rem;
}

    .footer-links a {
        text-decoration: none;
        color: var(--accent);
    }

        .footer-links a:hover {
            text-decoration: underline;
        }
