:root {
    --bg: #fcfdf9;
    --bg-soft: #f4f8f2;
    --bg-accent: #eef5f0;
    --surface: #ffffff;
    --surface-strong: #f7faf6;
    --line: rgba(15, 66, 47, 0.11);
    --text: #153524;
    --muted: #5a705f;
    --green: #184f39;
    --green-soft: #2f6c52;
    --shadow: 0 18px 48px rgba(17, 43, 31, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(210, 226, 212, 0.34), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

main {
    display: block;
}

.site-shell {
    min-height: 100vh;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.48rem 0.85rem;
    border-radius: 999px;
    background: var(--bg-accent);
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 50px;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
    cursor: pointer;
}

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

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-soft) 100%);
    box-shadow: 0 14px 30px rgba(24, 79, 57, 0.18);
}

.button--primary:hover {
    box-shadow: 0 18px 38px rgba(24, 79, 57, 0.23);
}

.button--ghost {
    background: #fff;
    border-color: var(--line);
    color: var(--green);
}

.button--ghost:hover {
    background: var(--bg-soft);
}

.text-link {
    color: var(--green);
    font-weight: 800;
}

.topbar {
    border-bottom: 1px solid rgba(15, 66, 47, 0.08);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(10px);
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.topbar__inner p,
.topbar__contact {
    margin: 0;
}

.topbar__contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar__contact a {
    color: var(--green);
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(252, 253, 249, 0.9);
    border-bottom: 1px solid rgba(15, 66, 47, 0.08);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 88px;
}

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

.brand__mark {
    width: 85px;
    height: 85px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand__mark img {
    border-radius: 18px;
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.brand__text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.brand__text strong {
    font-size: 1.05rem;
}

.brand__text small {
    color: var(--muted);
    font-size: 0.78rem;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.site-menu__link {
    color: var(--muted);
    font-weight: 700;
    transition: color 0.2s ease;
}

.site-menu__link:hover,
.site-menu__link.is-active {
    color: var(--green);
}

.site-header__actions {
    display: flex;
    gap: 0.75rem;
}

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.4rem;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--green);
    border-radius: 999px;
}

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

.hero-section__grid,
.page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 2rem;
    align-items: center;
}

.hero-copy h1,
.page-hero h1 {
    margin: 1rem 0 1.1rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.hero-copy p,
.page-hero p,
.about-split__content p,
.about-story p,
.info-panel p,
.product-card__body p,
.category-showcase__content p,
.measurement-callout p,
.site-footer p {
    color: var(--muted);
    line-height: 1.85;
}

.hero-copy__actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

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

.hero-metrics article,
.info-panel,
.image-panel,
.product-card,
.category-showcase__item,
.faq-card,
.offer-slide,
.values-grid article,
.process-steps article,
.trust-strip article,
.site-footer__grid > div,
.empty-state,
.prose-card,
.sticky-panel,
.link-cloud a,
.city-ribbon,
.measurement-callout__inner {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero-metrics article {
    padding: 1.25rem;
}

.hero-metrics strong {
    display: block;
    font-size: 1.8rem;
}

.hero-metrics span {
    color: var(--muted);
}

.hero-visual {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1rem;
}

.hero-visual__primary,
.hero-visual__secondary,
.hero-visual__card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-visual__primary {
    grid-row: span 2;
    min-height: 620px;
}

.hero-visual__secondary {
    min-height: 220px;
}

.hero-visual__primary img,
.hero-visual__secondary img,
.image-panel img,
.about-split__image img,
.product-card__media img,
.category-showcase__media img,
.offer-slide__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual__card {
    padding: 1.5rem;
    background: linear-gradient(160deg, #ffffff, var(--bg-accent));
    border: 1px solid var(--line);
}

.hero-visual__card h2 {
    margin: 0.85rem 0 0.7rem;
    font-size: 1.5rem;
}

.trust-strip,
.section-block {
    padding: 1rem 0 2.5rem;
}

.section-block--soft {
    background: linear-gradient(180deg, rgba(241, 246, 240, 0.72), rgba(252, 253, 249, 0.72));
    border-top: 1px solid rgba(15, 66, 47, 0.05);
    border-bottom: 1px solid rgba(15, 66, 47, 0.05);
}

.trust-strip__grid,
.values-grid,
.product-grid,
.detail-notes,
.site-footer__grid {
    display: grid;
    gap: 1.2rem;
}

.trust-strip__grid,
.values-grid,
.detail-notes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-strip article,
.values-grid article {
    padding: 1.5rem;
}

.trust-strip article span,
.values-grid article span,
.process-steps article strong {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-accent);
    color: var(--green);
    font-weight: 800;
}

.trust-strip h2,
.section-heading h2,
.measurement-callout h2,
.about-split__content h2,
.about-story h2,
.info-panel h2,
.city-ribbon h2,
.empty-state h1,
.empty-state h2,
.prose-card h2,
.sticky-panel h2 {
    margin: 0.9rem 0 0.65rem;
    font-size: clamp(1.7rem, 2vw, 2.5rem);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

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

.category-showcase__item {
    overflow: hidden;
}

.category-showcase__media {
    aspect-ratio: 1.3 / 1;
}

.category-showcase__content {
    padding: 1.35rem;
}

.category-showcase__content span,
.product-card__body span {
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.category-showcase__content h3,
.product-card__body h3 {
    margin: 0 0 0.55rem;
    font-size: 1.3rem;
}

.category-showcase__content small {
    display: block;
    color: var(--muted);
    margin-top: 0.8rem;
    line-height: 1.75;
}

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

.product-card {
    overflow: hidden;
}

.product-card__media {
    display: block;
    aspect-ratio: 1 / 1.02;
    background: var(--surface-strong);
}

.product-card__body {
    padding: 1.35rem;
}

.process-layout,
.about-split,
.about-story,
.desc-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: 1.3rem;
    align-items: start;
}

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

.process-steps article,
.info-panel,
.image-panel,
.about-split__image,
.measurement-callout__inner,
.empty-state,
.prose-card,
.sticky-panel {
    padding: 1.5rem;
}

.process-steps article h3 {
    margin: 0.9rem 0 0.45rem;
}

.offer-slider {
    display: grid;
    gap: 1rem;
}

.offer-slide {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    overflow: hidden;
}

.offer-slide__media {
    min-height: 360px;
}

.offer-slide__content {
    padding: 2rem;
}

.offer-slide__content h3 {
    margin: 0.85rem 0 0.4rem;
    font-size: clamp(1.8rem, 2.4vw, 2.5rem);
}

.offer-slide__content strong {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--green);
    font-size: 1.7rem;
}

.offer-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
}

.offer-slider__button,
.offer-slider__dot {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--green);
}

.offer-slider__button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
}

.offer-slider__dots {
    display: flex;
    gap: 0.5rem;
}

.offer-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
}

.offer-slider__dot.is-active {
    background: var(--green);
}

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

.faq-card {
    overflow: hidden;
}

.faq-card__button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 1.3rem 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 1.02rem;
    cursor: pointer;
}

.faq-card__answer {
    display: none;
    padding: 0 1.4rem 1.4rem;
}

.faq-card.is-open .faq-card__answer {
    display: block;
}

.faq-card__answer p {
    margin: 0;
}

.city-ribbon {
    padding: 1.6rem;
}

.city-ribbon__links,
.link-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.city-ribbon__links a,
.link-cloud a,
.filter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--green);
    font-weight: 700;
}

.filter-row {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 1.3rem;
}

.filter-pill.is-active {
    background: var(--green);
    color: #fff;
}

.page-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.page-hero__chips span,
.check-list li {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: var(--bg-accent);
    color: var(--green);
    padding: 0.7rem 1rem;
    font-weight: 700;
}

.measurement-callout {
    padding: 2rem 0 2.6rem;
}

.measurement-callout__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.site-footer {
    margin-top: 1rem;
    padding: 2rem 0 2.4rem;
    border-top: 1px solid rgba(15, 66, 47, 0.06);
    background: linear-gradient(180deg, rgba(243, 248, 242, 0.65), rgba(255, 255, 255, 0.9));
}

.site-footer__grid {
    grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
    align-items: start;
}

.site-footer__grid > div {
    padding: 1.4rem;
}

.site-footer__grid h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.site-footer__grid a {
    display: block;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.site-footer__brand p {
    margin-bottom: 0;
}

.brand--footer {
    margin-bottom: 1rem;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
}

.site-footer__bottom p {
    margin: 0;
}

.floating-whatsapp {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(15, 66, 47, 0.12);
    box-shadow: 0 18px 35px rgba(23, 73, 53, 0.16);
    z-index: 60;
}

.floating-whatsapp img {
    width: 34px;
    height: 34px;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 80;
    padding: 1rem;
}

.modal.is-open {
    display: flex;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 39, 28, 0.5);
}

.modal__dialog {
    position: relative;
    width: min(720px, 100%);
    max-height: 92vh;
    overflow: auto;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(16, 41, 29, 0.24);
}

.modal__header,
.modal__footer {
    padding: 1.4rem 1.5rem;
    border-bottom: 1px solid rgba(15, 66, 47, 0.08);
}

.modal__footer {
    border-bottom: 0;
    border-top: 1px solid rgba(15, 66, 47, 0.08);
}

.modal__body {
    padding: 1.5rem;
}

.modal__close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
}

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

.guide-card {
    padding: 1.2rem;
    border-radius: 20px;
    background: var(--surface-strong);
    border: 1px solid rgba(15, 66, 47, 0.08);
}

.guide-card span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--green);
    font-weight: 800;
}

.guide-card h3 {
    margin: 0.8rem 0 0.5rem;
}

.guide-note {
    margin-top: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    background: var(--bg-accent);
    color: var(--green);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.page-hero--compact {
    padding-bottom: 1rem;
}

.image-panel,
.about-split__image {
    overflow: hidden;
}

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

.empty-state--hero {
    max-width: 720px;
}

.prose-card h2 {
    font-family: "Cormorant Garamond", serif;
}

.prose-card p,
.prose-card li,
.prose-card span {
    color: var(--muted) !important;
    line-height: 1.9;
}

.prose-card {
    padding: 1.7rem;
}

.sticky-panel {
    position: sticky;
    top: 7rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.1rem 0 0;
    display: grid;
    gap: 0.8rem;
}

.check-list li {
    justify-content: flex-start;
}

.link-cloud a {
    box-shadow: none;
}

@media (max-width: 1080px) {
    .site-menu,
    .site-header__actions {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-menu.is-open {
        display: flex;
        position: absolute;
        top: calc(100% + 0.8rem);
        left: 1rem;
        right: 1rem;
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: var(--shadow);
    }

    .site-header {
        position: sticky;
    }
    .hero-section__grid,
    .page-hero__grid,
    .process-layout,
    .about-split,
    .about-story,
    .desc-layout,
    .offer-slide,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        order: 2;
    }

    .hero-visual {
        order: 1;
        grid-template-columns: 1fr;
    }


    .hero-visual__primary {
        min-height: 420px;
    }

    .product-grid,
    .category-showcase,
    .trust-strip__grid,
    .values-grid,
    .guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .shell-container {
        width: min(calc(100% - 1.2rem), var(--container));
    }

    .topbar__inner,
    .measurement-callout__inner,
    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-metrics,
    .product-grid,
    .category-showcase,
    .trust-strip__grid,
    .values-grid,
    .process-steps,
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual__primary {
        min-height: 320px;
    }

    .site-header__inner {
        min-height: 78px;
    }

    .floating-whatsapp {
        width: 58px;
        height: 58px;
        right: 1rem;
        bottom: 1rem;
    }

    .modal__header,
    .modal__body,
    .modal__footer,
    .info-panel,
    .image-panel,
    .prose-card,
    .sticky-panel,
    .process-steps article,
    .values-grid article,
    .trust-strip article,
    .site-footer__grid > div {
        padding: 1.15rem;
    }
}
