:root {
    --emerald: #1b4d35;
    --emerald-deep: #143827;
    --gold: #c9a84c;
    --gold-soft: #e2c878;
    --ink: #111827;
    --muted: #4b5563;
    --paper: #ffffff;
    --paper-alt: #f9f9f6;
    --line: rgba(27, 77, 53, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Outfit", system-ui, sans-serif;
}

body.menu-open {
    overflow: hidden;
}

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

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

h1,
h2,
h3,
.logo,
.phone-number {
    font-family: "Cormorant Garamond", Georgia, serif;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1 {
    color: var(--emerald);
    font-size: clamp(3.25rem, 8vw, 6.7rem);
    font-weight: 300;
    line-height: 0.98;
}

h2 {
    color: var(--emerald);
    font-size: clamp(2.6rem, 6vw, 5.25rem);
    font-weight: 300;
    line-height: 1.03;
}

h3 {
    color: var(--emerald);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.1;
}

strong {
    font-weight: 600;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 5rem;
    padding: 0 6vw;
    color: var(--emerald);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(27, 77, 53, 0.08);
    box-shadow: 0 12px 40px rgba(17, 24, 39, 0.06);
    backdrop-filter: blur(18px);
}

.logo {
    color: var(--emerald);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.32em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.2rem, 3vw, 2.7rem);
    font-size: 0.95rem;
    font-weight: 500;
}

.site-nav a:not(.nav-cta) {
    position: relative;
    opacity: 0.78;
}

.site-nav a:not(.nav-cta)::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.45rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s ease;
    content: "";
}

.site-nav a.is-active {
    color: var(--emerald);
    opacity: 1;
}

.site-nav a.is-active::after,
.site-nav a:not(.nav-cta):hover::after {
    transform: scaleX(1);
}

.site-nav a:hover {
    opacity: 1;
    color: var(--gold);
}

.nav-cta,
.button,
.sticky-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 600;
}

.nav-cta {
    min-height: 2.65rem;
    padding: 0 1.25rem;
    background: var(--emerald);
    color: #fff;
}

.menu-button {
    display: none;
}

.section {
    width: min(100%, 82rem);
    margin: 0 auto;
    padding: clamp(4.5rem, 9vw, 8rem) 6vw;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    align-items: center;
    gap: clamp(3rem, 6vw, 5rem);
    padding-top: 8rem;
}

.lead,
.section-heading p,
.intro p,
.two-column p,
.trust-list p,
.service-card li,
.values p,
.site-footer p {
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    font-weight: 300;
    line-height: 1.65;
}

.lead {
    max-width: 37rem;
    margin-top: 2rem;
}

.eyebrow {
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.divider {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.divider::before,
.divider::after {
    width: 2.25rem;
    height: 1px;
    background: currentColor;
    content: "";
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.3rem;
}

.button-row.center {
    justify-content: center;
}

.button {
    min-height: 3.45rem;
    padding: 0 1.8rem;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.primary {
    background: var(--emerald);
    color: #fff;
}

.primary:hover {
    background: var(--emerald-deep);
}

.secondary {
    border: 1px solid var(--emerald);
    color: var(--emerald);
}

.secondary:hover {
    background: var(--emerald);
    color: #fff;
}

.gold {
    background: var(--gold);
    color: var(--emerald);
}

.gold:hover {
    background: var(--gold-soft);
}

.light-outline {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
}

.light-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

.note {
    margin-top: 1.6rem;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-media {
    position: relative;
}

.hero-media::before {
    position: absolute;
    inset: -0.9rem;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 1.7rem;
    content: "";
}

.hero-media img {
    position: relative;
    width: 100%;
    height: min(39rem, 65vh);
    min-height: 28rem;
    border-radius: 1.45rem;
    object-fit: cover;
}

.status-card {
    position: absolute;
    left: -1.5rem;
    bottom: -1.5rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    max-width: 19rem;
    padding: 1rem 1.15rem;
    background: #fff;
    border: 1px solid rgba(27, 77, 53, 0.08);
    border-radius: 1rem;
    box-shadow: 0 24px 55px rgba(27, 77, 53, 0.18);
}

.status-card span:last-child {
    display: block;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.status-card strong {
    display: block;
    color: var(--emerald);
    margin-top: 0.2rem;
}

.pulse {
    width: 0.65rem;
    height: 0.65rem;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--emerald);
    box-shadow: 0 0 0 0 rgba(27, 77, 53, 0.45);
    animation: pulse 1.6s infinite;
}

.band {
    width: 100%;
    max-width: none;
    background: var(--paper-alt);
    border: 1px solid rgba(27, 77, 53, 0.08);
    border-left: 0;
    border-right: 0;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2.5rem, 7vw, 6rem);
}

.two-column > * {
    width: min(100%, 39rem);
    justify-self: end;
}

.two-column > *:last-child {
    justify-self: start;
}

.line-list {
    display: grid;
    gap: 1rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.line-list li,
.service-card li {
    position: relative;
    padding-left: 2rem;
}

.line-list li::before,
.service-card li::before {
    position: absolute;
    top: 0.85em;
    left: 0;
    width: 1.1rem;
    height: 1px;
    background: var(--gold);
    content: "";
}

.intro,
.section-heading {
    max-width: 54rem;
}

.intro h2,
.section-heading h2 {
    margin-top: 1.2rem;
}

.intro p,
.section-heading p:last-child {
    margin-top: 1.6rem;
}

.dark-section {
    width: 100%;
    max-width: none;
    background: var(--emerald);
    color: #fff;
}

.dark-section .section-heading,
.dark-section .steps {
    width: min(100%, 82rem);
    margin-inline: auto;
}

.dark-section h2,
.dark-section h3 {
    color: #fff;
}

.dark-section p {
    color: rgba(255, 255, 255, 0.72);
}

.dark-section .eyebrow,
.steps span {
    color: var(--gold);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.2rem;
    overflow: hidden;
}

.steps article {
    padding: clamp(2rem, 4vw, 3rem);
    background: var(--emerald);
}

.steps article + article {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.steps span,
.values span {
    display: block;
    margin-bottom: 1.4rem;
    color: var(--gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 3rem;
}

.steps p {
    margin-top: 1rem;
}

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

.services-page-grid {
    padding-top: 0;
}

.service-card {
    display: flex;
    min-height: 100%;
    overflow: hidden;
    background: var(--paper-alt);
    border: 1px solid rgba(27, 77, 53, 0.1);
    border-radius: 1rem;
}

.service-card.large {
    grid-column: span 2;
}

.service-card img {
    width: min(42%, 28rem);
    object-fit: cover;
}

.service-card > div {
    padding: clamp(2rem, 4vw, 3rem);
}

.service-card h3 {
    margin-top: 0.8rem;
}

.service-card ul {
    display: grid;
    gap: 0.8rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.values {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.values article {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
}

.values span {
    margin-bottom: 0.5rem;
    font-size: 2.3rem;
}

.trust {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(2.5rem, 6vw, 5rem);
}

.trust-list {
    display: grid;
    gap: 2rem;
}

.trust-list article {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
}

.trust-list p {
    margin-top: 0.6rem;
}

.contact {
    text-align: center;
}

.contact .divider {
    justify-content: center;
}

.contact h2,
.contact .lead {
    margin-inline: auto;
}

.contact h2 {
    margin-top: 1.7rem;
}

.contact h1 {
    margin-top: 1.7rem;
}

.phone-number {
    display: inline-block;
    margin-top: 3.2rem;
    color: var(--emerald);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    line-height: 1;
}

.phone-number:hover {
    color: var(--gold);
}

.page-main {
    padding-top: 5rem;
}

.page-header {
    padding-bottom: 3.5rem;
}

.page-header h1 {
    max-width: 54rem;
    margin-top: 1.5rem;
}

.about-hero {
    padding-top: 4rem;
}

.split-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 2rem;
    border-top: 1px solid var(--line);
}

.split-cta h2 {
    margin-top: 1rem;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.split-cta p:not(.eyebrow) {
    max-width: 37rem;
    margin-top: 1rem;
    color: var(--muted);
    font-size: 1.12rem;
    font-weight: 300;
    line-height: 1.65;
}

.final-cta {
    position: relative;
    overflow: hidden;
    width: min(calc(100% - 12vw), 82rem);
    margin-bottom: 6rem;
    padding: clamp(4rem, 8vw, 7rem) 6vw;
    background: var(--emerald);
    border-radius: 1.75rem;
    text-align: center;
}

.final-cta::before {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: radial-gradient(var(--gold) 1px, transparent 1px);
    background-size: 24px 24px;
    content: "";
}

.final-cta > * {
    position: relative;
}

.final-cta h2 {
    max-width: 62rem;
    margin: 1.5rem auto 0;
    color: #fff;
    font-size: clamp(3.3rem, 9vw, 7.8rem);
    line-height: 0.98;
}

.final-cta h2 strong {
    color: var(--gold);
}

.final-cta p:not(.eyebrow) {
    max-width: 40rem;
    margin: 1.7rem auto 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.18rem;
    font-weight: 300;
    line-height: 1.6;
}

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

.feed-grid a {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(27, 77, 53, 0.08);
    border-radius: 0.85rem;
}

.feed-grid a::after {
    position: absolute;
    inset: 0;
    background: rgba(27, 77, 53, 0);
    transition: background 0.3s ease;
    content: "";
}

.feed-grid a:hover::after {
    background: rgba(27, 77, 53, 0.45);
}

.feed-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s ease;
}

.feed-grid a:hover img {
    transform: scale(1.06);
}

.mini-cta {
    border-top: 1px solid var(--line);
    text-align: center;
}

.mini-cta h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.mini-cta .button {
    margin-top: 2.2rem;
}

.contact-main {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.social-row {
    margin-top: 5.5rem;
}

.social-row a {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.4rem;
    padding: 0 1.2rem;
    border: 1px solid rgba(27, 77, 53, 0.18);
    border-radius: 999px;
    color: var(--emerald);
}

.social-row a:hover {
    background: var(--emerald);
    color: #fff;
}

.sticky-whatsapp {
    position: fixed;
    z-index: 15;
    right: 1.4rem;
    bottom: 1.4rem;
    min-height: 3.1rem;
    padding: 0 1.25rem;
    background: var(--emerald);
    color: #fff;
    box-shadow: 0 14px 35px rgba(20, 56, 39, 0.28);
}

.site-footer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
    padding: 4.5rem 6vw 1.5rem;
    background: var(--emerald);
    color: #fff;
}

.site-footer .footer-logo,
.site-footer h2 {
    color: var(--gold);
}

.site-footer h2 {
    margin-bottom: 1.2rem;
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.site-footer a:not(.logo) {
    display: block;
    margin-top: 0.8rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
}

.site-footer a:hover {
    color: var(--gold);
}

.site-footer p {
    max-width: 19rem;
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.copyright {
    grid-column: 1 / -1;
    max-width: none;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
}

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

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

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 0.7rem rgba(27, 77, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(27, 77, 53, 0);
    }
}

@media (max-width: 860px) {
    .site-header {
        min-height: 4.5rem;
    }

    .menu-button {
        position: relative;
        z-index: 22;
        display: grid;
        gap: 0.35rem;
        width: 2.75rem;
        height: 2.75rem;
        place-content: center;
        background: transparent;
        border: 0;
        color: var(--emerald);
    }

    .menu-button span {
        display: block;
        width: 1.35rem;
        height: 2px;
        background: currentColor;
        transition: transform 0.2s ease;
    }

    .site-header.is-open .menu-button span:first-child {
        transform: translateY(0.22rem) rotate(45deg);
    }

    .site-header.is-open .menu-button span:last-child {
        transform: translateY(-0.22rem) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        inset: 4.5rem 0 auto;
        display: none;
        padding: 1.5rem 6vw 2rem;
        background: #fff;
        border-bottom: 1px solid rgba(27, 77, 53, 0.08);
        box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
    }

    .site-header.is-open .site-nav {
        display: grid;
        gap: 1rem;
    }

    .site-nav a:not(.nav-cta) {
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: 2rem;
    }

    .nav-cta {
        width: max-content;
    }

    .hero,
    .two-column,
    .trust,
    .steps,
    .service-grid,
    .site-footer,
    .split-cta {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 7rem;
    }

    .hero-media img {
        height: 28rem;
    }

    .status-card {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }

    .two-column > *,
    .two-column > *:last-child {
        justify-self: center;
    }

    .steps article + article {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-left: 0;
    }

    .service-card.large {
        grid-column: auto;
    }

    .service-card,
    .service-card.large {
        display: block;
    }

    .service-card img {
        width: 100%;
        height: 15rem;
    }

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

    .final-cta {
        width: calc(100% - 2.5rem);
    }
}

@media (max-width: 520px) {
    .section {
        padding-inline: 1.25rem;
    }

    .site-header {
        padding-inline: 1.25rem;
    }

    .button,
    .button-row {
        width: 100%;
    }

    .button-row.center {
        align-items: stretch;
    }

    .sticky-whatsapp {
        right: 1rem;
        bottom: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .pulse {
        animation: none;
    }
}
