:root {
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --display: 'Fraunces', 'Times New Roman', serif;

    --charcoal: #313234;
    --charcoal-deep: #1a1b1c;
    --brand: #423620;
    --brand-deep: #2e2616;
    --brand-mid: #5a4a32;
    --brand-light: #6b5840;
    --brand-soft: #c4b59a;
    --brand-pale: #ebe4d8;
    --brand-glow: rgba(66,54,32,0.12);
    --cream: #faf8f5;
    --fog: #f3efe8;
    --white: #ffffff;
    --muted: #736d65;
    --line: rgba(49,50,52,0.09);
    --shadow-sm: 0 2px 8px rgba(26,27,28,0.05);
    --shadow-md: 0 16px 48px rgba(26,27,28,0.09);
    --shadow-lg: 0 28px 70px rgba(26,27,28,0.13);
    --radius: 20px;
    --radius-sm: 14px;
    --max: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.65;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

.wrap {
    width: min(var(--max), calc(100% - 2.25rem));
    margin-inline: auto;
}

/* ——— NAV ——— */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0.9rem 0;
    background: rgba(250,248,245,0.8);
    backdrop-filter: blur(18px) saturate(1.3);
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nav.is-solid {
    background: rgba(250,248,245,0.96);
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-links a:not(.nav-cta) {
    padding: 0.5rem 0.9rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    border-radius: 10px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--brand);
    background: var(--brand-glow);
}

.nav-cta {
    margin-left: 0.35rem;
    padding: 0.62rem 1.2rem;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.8125rem;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(66,54,32,0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(66,54,32,0.35);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.45rem;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    color: #fff;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(66,54,32,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(66,54,32,0.35);
}

.btn-ghost {
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--charcoal);
    box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
    border-color: var(--brand-soft);
    color: var(--brand);
    box-shadow: var(--shadow-md);
}

.btn-arrow { transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ——— SHARED ——— */
section { padding: 5rem 0; position: relative; }

.section-head {
    max-width: 34rem;
    margin-bottom: 2.75rem;
}

.section-head.center {
    margin-inline: auto;
    text-align: center;
}

.section-head.center .lead { margin-inline: auto; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-light);
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.75rem;
    background: var(--brand-pale);
    border-radius: 999px;
}

.eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
}

h2 {
    font-family: var(--display);
    font-weight: 600;
    font-optical-sizing: auto;
    font-size: clamp(1.85rem, 3.6vw, 2.65rem);
    line-height: 1.12;
    letter-spacing: -0.028em;
    margin-bottom: 0.75rem;
    color: var(--charcoal-deep);
}

.lead {
    color: var(--muted);
    font-size: 1rem;
    font-weight: 400;
    max-width: 32rem;
    line-height: 1.7;
}

/* ——— WHATSAPP FLOAT ——— */
.wa-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1rem 0.65rem 0.65rem;
    background: #22c55e;
    color: #fff;
    font-weight: 600;
    font-size: 0.8125rem;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, background 0.2s ease;
    animation: riseIn 0.7s 0.8s ease both;
}

.wa-float:hover {
    background: #16a34a;
    transform: translateY(-3px);
}

.wa-float-icon {
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
}

.wa-float-icon svg { width: 1.25rem; height: 1.25rem; }
/* ——— INNER PAGES ——— */
body.is-inner {
    background: var(--fog);
}

body.is-inner .nav {
    background: rgba(250,248,245,0.96);
    border-bottom-color: var(--line);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 7.25rem 0 3.25rem;
    background:
        radial-gradient(1200px 420px at 85% -10%, rgba(196,181,154,0.28), transparent 55%),
        linear-gradient(165deg, #2a2316 0%, var(--brand) 48%, #1c1810 100%);
    color: #f7f1e8;
}

.page-hero-glow {
    position: absolute;
    width: 28rem;
    height: 28rem;
    left: -8rem;
    bottom: -12rem;
    background: rgba(196,181,154,0.2);
    filter: blur(70px);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero-mark {
    position: absolute;
    right: -2%;
    bottom: -18%;
    font-family: var(--display);
    font-size: clamp(7rem, 18vw, 13rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.page-hero .wrap { position: relative; z-index: 1; }

.page-hero .legal-crumb {
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.35rem;
}

.page-hero .legal-crumb a { color: rgba(255,255,255,0.72); }
.page-hero .legal-crumb a:hover { color: #fff; }

.eyebrow-on-dark {
    background: rgba(255,255,255,0.1);
    color: var(--brand-pale);
}

.eyebrow-on-dark::before { background: var(--brand-soft); }

.page-hero h1 {
    font-family: var(--display);
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: clamp(2.35rem, 5vw, 3.6rem);
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: #fff;
    max-width: 14ch;
    margin: 0.45rem 0 0.9rem;
}

.page-hero-lede {
    max-width: 36rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(247,241,232,0.72);
}

.page-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.35rem;
    margin-top: 1.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}

.page-hero-meta a {
    color: var(--brand-pale);
    border-bottom: 1px solid rgba(196,181,154,0.45);
    padding-bottom: 1px;
}

.page-hero-meta a:hover { color: #fff; }

.page-body { padding: 0 0 4.5rem; }

.page-shell {
    display: grid;
    grid-template-columns: 15.5rem minmax(0, 1fr);
    gap: 1.5rem;
    margin-top: -2.1rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.page-rail {
    position: sticky;
    top: 5.35rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem 0.75rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.page-rail-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-light);
    padding: 0.35rem 0.7rem 0.55rem;
}

.page-rail a {
    padding: 0.48rem 0.7rem;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted);
    transition: background 0.2s ease, color 0.2s ease;
}

.page-rail a:hover {
    background: var(--fog);
    color: var(--brand);
}

.page-rail a[aria-current="page"] {
    background: var(--brand-pale);
    color: var(--brand-deep);
    font-weight: 700;
}

.page-rail-cta {
    margin-top: 0.65rem;
    text-align: center;
    background: var(--brand) !important;
    color: #fff !important;
    font-weight: 600 !important;
}

.page-rail-cta:hover { background: var(--brand-deep) !important; }

.page-paper {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 2.35rem 2.5rem 2.6rem;
    box-shadow: var(--shadow-md);
}

.legal-crumb {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    font-weight: 500;
}

.legal-prose h2 {
    font-family: var(--font);
    font-optical-sizing: auto;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--charcoal-deep);
    margin: 2rem 0 0.75rem;
    padding-top: 1.65rem;
    border-top: 1px solid var(--line);
}

.legal-prose h2:first-of-type {
    margin-top: 0.35rem;
    padding-top: 0;
    border-top: 0;
}

.legal-prose h3 {
    font-size: 0.95rem;
    font-weight: 650;
    margin: 1.35rem 0 0.45rem;
    color: var(--brand-mid);
}

.legal-prose p,
.legal-prose li {
    color: var(--muted);
    font-size: 0.975rem;
    line-height: 1.8;
}

.legal-prose p + p { margin-top: 0.85rem; }

.legal-prose ul {
    margin: 0.7rem 0 1rem;
    padding: 0.85rem 1rem 0.85rem 1.85rem;
    background: var(--cream);
    border-radius: 14px;
    border: 1px solid var(--line);
}

.legal-prose li { margin: 0.4rem 0; }

.legal-prose a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-prose a:hover { color: var(--brand-deep); }

.legal-prose code {
    font-size: 0.85em;
    background: var(--brand-pale);
    padding: 0.1em 0.4em;
    border-radius: 6px;
    color: var(--brand-deep);
}

.legal-prose .btn,
.about-cta .btn {
    display: inline-flex;
    margin-top: 0.35rem;
    text-decoration: none;
    color: #fff;
}

.legal-prose .btn:hover,
.about-cta .btn:hover { color: #fff; }

.legal-prose strong { color: var(--charcoal); font-weight: 650; }

.page-stage { display: flex; flex-direction: column; gap: 1.15rem; }

.about-intro {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.about-intro h2 { margin-bottom: 0.9rem; }

.about-intro p {
    color: var(--muted);
    line-height: 1.75;
}

.about-intro p + p { margin-top: 0.8rem; }

.about-facts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-facts li {
    padding: 1rem 1.1rem;
    background: var(--cream);
    border-radius: 14px;
    border: 1px solid var(--line);
}

.about-facts strong {
    display: block;
    font-size: 0.9rem;
    color: var(--charcoal-deep);
    margin-bottom: 0.15rem;
}

.about-facts span {
    font-size: 0.8125rem;
    color: var(--muted);
}

.about-supply {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow-sm);
}

.about-supply .section-head { margin-bottom: 1.35rem; }

.about-kit {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.about-kit li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.95rem 1rem;
    background: var(--cream);
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.45;
}

.about-kit span {
    font-family: var(--display);
    font-weight: 600;
    color: var(--brand);
    font-size: 0.95rem;
}

.about-note {
    margin-top: 1.15rem;
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
}

.about-office {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}

.about-office h2 { margin-bottom: 0.7rem; }
.about-office p { color: var(--muted); line-height: 1.7; }

.about-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.about-contacts a {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: var(--cream);
    border: 1px solid var(--line);
    color: var(--charcoal-deep);
    font-weight: 600;
    font-size: 0.9rem;
}

.about-contacts a:hover { border-color: var(--brand-soft); }

.about-contacts small {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-light);
    margin-bottom: 0.2rem;
}

.about-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    background:
        linear-gradient(135deg, var(--brand-deep), var(--brand));
    color: #fff;
    border: 0;
}

.about-cta h2 { color: #fff; margin-bottom: 0.35rem; }
.about-cta p { color: rgba(255,255,255,0.7); max-width: 28rem; }
.about-cta .btn {
    background: #fff;
    color: var(--brand-deep) !important;
    box-shadow: none;
}

.error-panel { text-align: center; padding: 3rem 2rem; }

.error-code {
    font-family: var(--display);
    font-size: clamp(4.5rem, 12vw, 7rem);
    font-weight: 600;
    line-height: 0.9;
    color: var(--brand-pale);
    margin-bottom: 1.5rem;
}

.error-panel .cta-row { justify-content: center; margin-bottom: 0; }

/* ——— FOOTER ——— */
footer {
    padding: 2.75rem 0 1.5rem;
    background: var(--charcoal-deep);
    color: rgba(255,255,255,0.45);
    font-size: 0.8125rem;
    font-weight: 500;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr;
    gap: 2rem 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-wordmark {
    display: inline-block;
    font-family: var(--display);
    font-size: 1.65rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 0.55rem;
}

.footer-brand-block p {
    max-width: 18rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.4);
}

.footer-heading {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.85rem;
}

.footer-grid nav {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-grid nav a,
.footer-legal a {
    color: rgba(255,255,255,0.55);
    transition: color 0.2s ease;
}

.footer-grid nav a:hover,
.footer-legal a:hover,
.footer-grid nav a[aria-current="page"],
.footer-legal a[aria-current="page"] {
    color: #fff;
}

.footer-base {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.25rem;
}

.footer-initiative {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-initiative span { color: rgba(255,255,255,0.35); }

.footer-logo img {
    height: 24px;
    width: auto;
    opacity: 0.85;
}

/* ——— MOTION ——— */
@keyframes riseIn {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.flow-item.reveal:nth-child(2) { transition-delay: 0.08s; }
.flow-item.reveal:nth-child(3) { transition-delay: 0.16s; }
.benefit-grid li.reveal:nth-child(2) { transition-delay: 0.08s; }
.benefit-grid li.reveal:nth-child(3) { transition-delay: 0.16s; }

/* ——— RESPONSIVE ——— */
@media (max-width: 900px) {
    .nav-links li:not(:last-child):not(.nav-home-item) { display: none; }
    .page-hero { padding: 6.5rem 0 2.75rem; }
    .page-hero h1 { max-width: none; }
    .page-hero-mark { display: none; }
    .page-shell {
        grid-template-columns: 1fr;
        margin-top: -1.4rem;
    }
    .page-rail {
        position: static;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.35rem;
        padding: 0.65rem;
        -webkit-overflow-scrolling: touch;
    }
    .page-rail-label,
    .page-rail-cta { display: none; }
    .page-rail a {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 0.4rem 0.8rem;
        border-radius: 999px;
        background: var(--fog);
    }
    .page-paper { padding: 1.5rem 1.25rem 1.75rem; }
    .about-intro,
    .about-office,
    .about-kit { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
    .footer-brand-block { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
    .wa-float { padding: 0.7rem; border-radius: 50%; }
    .wa-float-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .reveal { opacity: 1; transform: none; }
}
