:root {
    --bg: #f7f1e8;
    --surface: #fffdf8;
    --surface-strong: #f1e5d2;
    --text: #2f3b35;
    --muted: #66746d;
    --primary: #6b8b77;
    --primary-deep: #486455;
    --accent: #b87b52;
    --line: rgba(74, 96, 83, 0.12);
    --shadow: 0 18px 50px rgba(66, 78, 70, 0.12);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(184, 123, 82, 0.08), transparent 28%),
        linear-gradient(180deg, #fcfaf6 0%, var(--bg) 100%);
    line-height: 1.65;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(252, 250, 246, 0.86);
    border-bottom: 1px solid rgba(107, 139, 119, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 86px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-logo {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid rgba(107, 139, 119, 0.12);
    box-shadow: var(--shadow);
}

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

.brand-text strong {
    font-size: 1.05rem;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.82rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-nav a {
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    color: var(--muted);
    transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--primary-deep);
}

.site-nav .nav-cta,
.btn,
.btn-secondary {
    padding: 0.95rem 1.45rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-nav .nav-cta,
.btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    box-shadow: 0 16px 30px rgba(72, 100, 85, 0.22);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-deep);
    border: 1px solid rgba(72, 100, 85, 0.12);
}

.site-nav .nav-cta:hover,
.btn:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 0;
    background: rgba(107, 139, 119, 0.1);
    border-radius: 16px;
    padding: 0.8rem;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-deep);
    margin: 5px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.page-hero,
.section {
    padding: 5.5rem 0;
}

.page-hero.hero-home {
    padding-top: 4rem;
}

.hero-grid,
.split-grid,
.contact-grid,
.location-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(107, 139, 119, 0.1);
    color: var(--primary-deep);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 1.05;
    margin: 0 0 1rem;
    color: #24322c;
}

h1 {
    font-size: clamp(2.7rem, 5vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

.hero-copy p.lead,
.section-intro {
    font-size: 1.08rem;
    max-width: 60ch;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-card,
.image-frame,
.card,
.step,
.contact-card,
.info-list,
.map-card,
.cta-band {
    background: rgba(255, 253, 248, 0.9);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 1.5rem;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: auto -10% -22% auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(184, 123, 82, 0.18), transparent 60%);
}

.hero-photo,
.profile-photo {
    width: 100%;
    border-radius: 28px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
}

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

.hero-badges span,
.pill-list span {
    padding: 0.75rem 0.9rem;
    border-radius: 18px;
    background: rgba(107, 139, 119, 0.08);
    color: var(--primary-deep);
    font-weight: 600;
    text-align: center;
}

.section-header {
    margin-bottom: 2rem;
}

.grid-3,
.grid-4 {
    display: grid;
    gap: 1.4rem;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.step,
.contact-card,
.map-card,
.cta-band,
.info-list {
    border-radius: var(--radius);
    padding: 1.6rem;
}

.card h3,
.step h3 {
    margin-bottom: 0.65rem;
}

.card p:last-child,
.step p:last-child,
.contact-card p:last-child {
    margin-bottom: 0;
}

.accent-panel {
    padding: 2rem;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(107, 139, 119, 0.12), rgba(184, 123, 82, 0.08));
    border: 1px solid rgba(107, 139, 119, 0.12);
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.2rem;
}

.step-number {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(184, 123, 82, 0.16);
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 1rem;
}

.info-list {
    display: grid;
    gap: 1rem;
}

.info-item strong {
    display: block;
    color: #24322c;
    margin-bottom: 0.2rem;
}

.map-embed {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 28px;
}

.cta-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(72, 100, 85, 0.96), rgba(184, 123, 82, 0.92));
    color: #fff;
}

.cta-band h2,
.cta-band p {
    color: #fff;
    margin-bottom: 0.4rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

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

.contact-form label {
    display: grid;
    gap: 0.45rem;
    color: #24322c;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(72, 100, 85, 0.16);
    background: rgba(255, 255, 255, 0.96);
    border-radius: 18px;
    padding: 0.95rem 1rem;
    color: var(--text);
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(107, 139, 119, 0.28);
    outline-offset: 2px;
    border-color: var(--primary);
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.alert {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    font-weight: 600;
}

.alert-success {
    background: rgba(107, 139, 119, 0.12);
    color: var(--primary-deep);
}

.alert-error {
    background: rgba(184, 123, 82, 0.14);
    color: #8f5235;
}

.site-footer {
    padding: 2.2rem 0 6rem;
    border-top: 1px solid rgba(107, 139, 119, 0.1);
    background: rgba(255, 252, 246, 0.88);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 1.5rem;
}

.footer-grid h2 {
    font-size: 1.8rem;
    margin-bottom: 0.35rem;
}

.footer-grid p {
    margin-bottom: 0.4rem;
}

.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.15rem;
    border-radius: 999px;
    background: #1fa855;
    color: #fff;
    box-shadow: 0 18px 35px rgba(18, 89, 45, 0.28);
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 860px) {
    .menu-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: 24px;
        background: rgba(255, 252, 246, 0.98);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 0.55rem 0;
    }

    .hero-grid,
    .split-grid,
    .contact-grid,
    .location-grid,
    .footer-grid,
    .grid-3,
    .form-row {
        grid-template-columns: 1fr;
    }

    .page-hero,
    .section {
        padding: 4rem 0;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2.65rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-badges,
    .grid-4,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        min-height: 78px;
    }

    .brand-text small {
        display: none;
    }

    .whatsapp-float {
        right: 0.75rem;
        bottom: 0.75rem;
        padding: 0.9rem 1rem;
    }

    .whatsapp-float span {
        display: none;
    }
}
