:root {
    --ink: #1d1b19;
    --charcoal: #2a2724;
    --brown-950: #2b2118;
    --brown-900: #38291d;
    --brown-800: #523822;
    --brown-700: #6c4a2d;
    --brown-600: #815d3b;
    --brown-500: #a57b50;
    --sand-300: #d5b98e;
    --sand-200: #e7d5b7;
    --sand-100: #f3eadb;
    --cream: #fbf8f2;
    --white: #ffffff;
    --muted: #6b6660;
    --line: rgba(43, 33, 24, 0.14);
    --success: #23633e;
    --success-bg: #e9f5ed;
    --danger: #8b2c2c;
    --danger-bg: #fbecec;
    --shadow-sm: 0 8px 24px rgba(43, 33, 24, 0.08);
    --shadow-md: 0 20px 50px rgba(43, 33, 24, 0.12);
    --shadow-lg: 0 34px 90px rgba(43, 33, 24, 0.18);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 30px;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    background: var(--cream);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--sand-300); color: var(--brown-950); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 9999;
    background: var(--brown-950);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.topbar { background: var(--brown-950); color: rgba(255,255,255,.8); font-size: .84rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar__links { display: flex; align-items: center; gap: 24px; }
.topbar a { color: var(--white); text-decoration: none; white-space: nowrap; }
.topbar a:hover { text-decoration: underline; text-underline-offset: 3px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(251, 248, 242, .94);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(43,33,24,.07); }
.site-header__inner { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--brown-950); text-decoration: none; min-width: max-content; }
.brand img { width: 72px; height: 72px; object-fit: contain; border-radius: 50%; background: var(--white); box-shadow: 0 8px 20px rgba(43,33,24,.08); }
.brand__text { display: grid; line-height: 1.12; }
.brand__text strong { font-size: 1.1rem; letter-spacing: .04em; text-transform: uppercase; }
.brand__text small { margin-top: 5px; color: var(--brown-600); font-size: .71rem; letter-spacing: .18em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav > a:not(.button) {
    position: relative;
    padding: 10px 12px;
    color: var(--charcoal);
    font-size: .94rem;
    font-weight: 650;
    text-decoration: none;
}
.site-nav > a:not(.button)::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 5px;
    height: 2px;
    background: var(--brown-600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}
.site-nav > a:not(.button):hover::after,
.site-nav > a.is-active::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--brown-950); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 13px 22px;
    border: 1px solid var(--brown-700);
    border-radius: 999px;
    background: var(--brown-700);
    color: var(--white);
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(108,74,45,.2);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--brown-800); box-shadow: 0 16px 32px rgba(108,74,45,.28); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible { outline: 3px solid rgba(165,123,80,.38); outline-offset: 3px; }
.button--outline { background: transparent; color: var(--brown-800); box-shadow: none; }
.button--outline:hover { background: var(--brown-950); color: var(--white); }
.button--light { background: var(--white); border-color: var(--white); color: var(--brown-950); box-shadow: 0 14px 32px rgba(0,0,0,.16); }
.button--light:hover { background: var(--sand-100); }
.button--small { min-height: 42px; padding: 10px 16px; font-size: .88rem; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--brown-700); font-weight: 800; text-decoration: none; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.hero { position: relative; overflow: hidden; padding: 76px 0 82px; background: linear-gradient(145deg, #f7f0e5 0%, #fff 58%, #eee1cf 100%); border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; right: -180px; top: -220px; border: 1px solid rgba(108,74,45,.14); border-radius: 50%; box-shadow: 0 0 0 70px rgba(108,74,45,.035), 0 0 0 140px rgba(108,74,45,.025); }
.hero__grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(390px, .94fr); align-items: center; gap: 66px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--brown-700); font-size: .82rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.hero h1 { max-width: 800px; margin: 0; color: var(--brown-950); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.75rem, 5.6vw, 5.2rem); font-weight: 600; letter-spacing: -.045em; line-height: .98; }
.hero__lead { max-width: 690px; margin: 27px 0 0; color: #57514b; font-size: clamp(1.05rem, 1.7vw, 1.22rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.meta-pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.68); color: var(--brown-900); font-size: .82rem; font-weight: 750; }
.meta-pill::before { content: "✓"; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--brown-700); color: white; font-size: .7rem; }
.hero__visual { position: relative; min-height: 540px; padding: 16px 0 10px 44px; }
.hero__panel { position: relative; height: 514px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(150deg, #3b2c20, #1f1b18); box-shadow: var(--shadow-lg); }
.hero__panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(20,16,13,.72)); pointer-events: none; }
.hero__panel img { width: 100%; height: 100%; object-fit: contain; padding: 56px 54px 90px; filter: drop-shadow(0 28px 28px rgba(0,0,0,.35)); transform: scale(1.07); }
.hero__caption { position: absolute; z-index: 2; left: 36px; right: 36px; bottom: 29px; display: flex; align-items: end; justify-content: space-between; gap: 18px; color: white; }
.hero__caption strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.42rem; }
.hero__caption span { color: rgba(255,255,255,.72); font-size: .84rem; }
.hero__logo-card { position: absolute; z-index: 3; left: -18px; top: -12px; width: 158px; padding: 12px; border-radius: 24px; background: var(--white); box-shadow: var(--shadow-md); transform: rotate(-4deg); }
.hero__logo-card img { border-radius: 50%; }
.hero__trust-card { position: absolute; z-index: 3; right: -30px; bottom: 0; max-width: 224px; padding: 20px; border: 1px solid rgba(255,255,255,.55); border-radius: 18px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-md); backdrop-filter: blur(16px); }
.hero__trust-card strong { display: block; color: var(--brown-900); font-size: 1.04rem; }
.hero__trust-card p { margin: 7px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }

.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-strip__inner { min-height: 104px; display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); align-items: center; gap: 22px; }
.trust-strip__intro { color: var(--muted); font-size: .9rem; }
.trust-item { padding-left: 22px; border-left: 1px solid var(--line); }
.trust-item strong { display: block; color: var(--brown-900); font-size: .96rem; }
.trust-item span { color: var(--muted); font-size: .82rem; }

.section { padding: 94px 0; }
.section--white { background: var(--white); }
.section--dark { background: var(--brown-950); color: var(--white); }
.section--sand { background: var(--sand-100); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.section-heading__copy { max-width: 750px; }
.section-heading h2, .page-hero h1, .content-heading { margin: 0; color: var(--brown-950); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.65rem); font-weight: 600; letter-spacing: -.035em; line-height: 1.07; }
.section--dark .section-heading h2 { color: var(--white); }
.section-heading p { max-width: 690px; margin: 16px 0 0; color: var(--muted); font-size: 1.05rem; }
.section--dark .section-heading p { color: rgba(255,255,255,.68); }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 330px; overflow: hidden; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.service-card__number { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 45px; border-radius: 50%; background: var(--sand-100); color: var(--brown-700); font-size: .82rem; font-weight: 850; }
.service-card h3 { margin: 0; color: var(--brown-900); font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; line-height: 1.18; }
.service-card p { margin: 16px 0 24px; color: var(--muted); font-size: .92rem; }
.service-card::after { content: ""; position: absolute; width: 110px; height: 110px; right: -45px; bottom: -48px; border: 18px solid rgba(165,123,80,.08); border-radius: 50%; }

.split-feature { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; align-items: center; }
.split-feature__media { position: relative; min-height: 570px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(145deg, #d6bd98, #f3eadb); box-shadow: var(--shadow-md); }
.split-feature__media img { width: 100%; height: 100%; min-height: 570px; object-fit: contain; padding: 55px; filter: drop-shadow(0 28px 24px rgba(43,33,24,.22)); }
.split-feature__badge { position: absolute; left: 26px; bottom: 26px; max-width: 250px; padding: 19px; border-radius: 16px; background: rgba(43,33,24,.92); color: white; box-shadow: var(--shadow-md); }
.split-feature__badge strong { display: block; font-size: 1.1rem; }
.split-feature__badge span { display: block; margin-top: 5px; color: rgba(255,255,255,.68); font-size: .82rem; }
.split-feature__copy h2 { margin: 0; color: var(--brown-950); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 600; letter-spacing: -.035em; line-height: 1.08; }
.split-feature__copy > p { margin: 21px 0 0; color: var(--muted); font-size: 1.05rem; }
.check-list { display: grid; gap: 15px; margin: 31px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 40px; color: #49443f; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--brown-700); color: white; font-size: .78rem; font-weight: 900; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.process-step { position: relative; padding: 0 27px 0 0; counter-increment: step; }
.process-step:not(:last-child)::after { content: ""; position: absolute; top: 25px; left: 64px; right: 18px; height: 1px; background: rgba(255,255,255,.22); }
.process-step__number { position: relative; z-index: 2; display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: var(--brown-900); color: var(--sand-200); font-weight: 850; }
.process-step h3 { margin: 24px 0 10px; color: var(--white); font-size: 1.04rem; }
.process-step p { margin: 0; color: rgba(255,255,255,.64); font-size: .9rem; }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 23px; }
.product-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card__image { position: relative; aspect-ratio: 1.35 / 1; overflow: hidden; background: linear-gradient(145deg, #f4ecdf, #e5d3b7); }
.product-card__image img { width: 100%; height: 100%; object-fit: contain; padding: 28px; transition: transform .35s ease; filter: drop-shadow(0 18px 15px rgba(43,33,24,.16)); }
.product-card:hover .product-card__image img { transform: scale(1.04); }
.product-card__tag { position: absolute; left: 16px; top: 16px; padding: 7px 10px; border-radius: 999px; background: rgba(43,33,24,.88); color: white; font-size: .71rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.product-card__body { display: flex; flex: 1; flex-direction: column; padding: 25px; }
.product-card h3 { margin: 0; color: var(--brown-900); font-family: Georgia, "Times New Roman", serif; font-size: 1.42rem; line-height: 1.16; }
.product-card__description { margin: 13px 0 18px; color: var(--muted); font-size: .91rem; }
.feature-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 23px; padding: 0; list-style: none; }
.feature-list li { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--brown-800); font-size: .73rem; font-weight: 700; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.product-card__price { color: var(--brown-700); font-size: .82rem; font-weight: 850; }
.product-card[hidden] { display: none; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.filter-button { padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--brown-800); font-weight: 750; }
.filter-button:hover, .filter-button.is-active { border-color: var(--brown-700); background: var(--brown-700); color: white; }

.compliance-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 64px; align-items: center; }
.compliance-copy h2 { margin: 0; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 600; letter-spacing: -.035em; line-height: 1.08; }
.compliance-copy > p { margin: 20px 0 0; color: rgba(255,255,255,.68); }
.compliance-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.compliance-card { min-height: 210px; padding: 27px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); background: rgba(255,255,255,.055); }
.compliance-card__mark { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 28px; border-radius: 50%; background: var(--sand-300); color: var(--brown-950); font-weight: 900; }
.compliance-card h3 { margin: 0; color: var(--white); font-size: 1.08rem; }
.compliance-card p { margin: 10px 0 0; color: rgba(255,255,255,.62); font-size: .88rem; }

.cta-band { padding: 72px 0; background: linear-gradient(120deg, var(--brown-700), var(--brown-950)); color: white; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 44px; }
.cta-band h2 { max-width: 760px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.45rem); font-weight: 600; letter-spacing: -.035em; line-height: 1.08; }
.cta-band p { margin: 14px 0 0; color: rgba(255,255,255,.7); }

.page-hero { position: relative; overflow: hidden; padding: 74px 0; background: var(--sand-100); border-bottom: 1px solid var(--line); }
.page-hero::after { content: ""; position: absolute; width: 340px; height: 340px; right: -90px; top: -140px; border: 50px solid rgba(108,74,45,.07); border-radius: 50%; }
.page-hero__inner { position: relative; z-index: 1; max-width: 850px; }
.page-hero p { max-width: 720px; margin: 19px 0 0; color: var(--muted); font-size: 1.08rem; }
.breadcrumbs { display: flex; gap: 8px; margin-bottom: 19px; color: var(--brown-700); font-size: .82rem; font-weight: 750; }
.breadcrumbs a { text-decoration: none; }

.about-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.about-intro__logo { position: sticky; top: 132px; display: grid; place-items: center; min-height: 520px; padding: 50px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); }
.about-intro__logo img { width: min(390px, 100%); }
.about-copy h2 { margin: 0; color: var(--brown-950); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.55rem); font-weight: 600; line-height: 1.08; letter-spacing: -.035em; }
.about-copy p { color: var(--muted); }
.about-statements { display: grid; gap: 16px; margin-top: 31px; }
.statement-card { padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.statement-card h3 { margin: 0 0 9px; color: var(--brown-800); }
.statement-card p { margin: 0; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.value-card { padding: 26px; border-top: 3px solid var(--brown-600); background: var(--white); box-shadow: var(--shadow-sm); }
.value-card h3 { margin: 0 0 10px; color: var(--brown-900); }
.value-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.contact-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(310px, .8fr); gap: 42px; align-items: start; }
.form-card, .contact-sidebar { border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.form-card { padding: 34px; }
.form-card h2 { margin: 0; color: var(--brown-950); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.form-card > p { margin: 11px 0 28px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.form-group { display: grid; gap: 8px; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { color: var(--brown-900); font-size: .86rem; font-weight: 800; }
.form-group label span { color: var(--danger); }
.form-control { width: 100%; min-height: 49px; padding: 12px 14px; border: 1px solid #cfc7bd; border-radius: 10px; background: #fffefd; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease; }
.form-control:focus { border-color: var(--brown-600); box-shadow: 0 0 0 4px rgba(165,123,80,.12); outline: none; }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-help { color: var(--muted); font-size: .75rem; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .83rem; }
.checkbox input { flex: 0 0 auto; margin-top: 4px; accent-color: var(--brown-700); }
.checkbox a { color: var(--brown-700); font-weight: 750; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-actions { display: flex; align-items: center; gap: 15px; margin-top: 25px; }
.form-actions small { color: var(--muted); }
.contact-sidebar { overflow: hidden; }
.contact-sidebar__head { padding: 28px; background: var(--brown-950); color: white; }
.contact-sidebar__head h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; }
.contact-sidebar__head p { margin: 8px 0 0; color: rgba(255,255,255,.66); font-size: .88rem; }
.contact-list { margin: 0; padding: 0; list-style: none; }
.contact-list li { padding: 22px 26px; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list strong { display: block; color: var(--brown-900); font-size: .86rem; }
.contact-list a, .contact-list span { display: block; margin-top: 5px; color: var(--muted); text-decoration: none; }
.contact-list a:hover { color: var(--brown-700); }
.alert { margin-bottom: 24px; padding: 17px 19px; border: 1px solid; border-radius: 12px; }
.alert--success { border-color: #9fceb0; background: var(--success-bg); color: var(--success); }
.alert--error { border-color: #e3abab; background: var(--danger-bg); color: var(--danger); }
.alert ul { margin: 8px 0 0; padding-left: 19px; }
.success-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 13px; }

.privacy-content { max-width: 860px; }
.privacy-content h2 { margin-top: 42px; color: var(--brown-900); }
.privacy-content p, .privacy-content li { color: var(--muted); }

.empty-state { grid-column: 1 / -1; padding: 46px; border: 1px dashed var(--line); border-radius: var(--radius-md); background: var(--white); text-align: center; }
.empty-state h3 { margin: 0; color: var(--brown-900); }
.empty-state p { margin: 8px 0 0; color: var(--muted); }

.site-footer { padding-top: 62px; background: #1d1814; color: rgba(255,255,255,.68); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .95fr .9fr; gap: 48px; padding-bottom: 52px; }
.footer-brand img { width: 104px; height: 104px; border-radius: 50%; background: white; }
.footer-brand p { max-width: 330px; margin: 18px 0 0; }
.site-footer h2 { margin: 0 0 18px; color: white; font-size: .88rem; letter-spacing: .09em; text-transform: uppercase; }
.site-footer a, .site-footer p { display: block; margin: 0 0 10px; color: rgba(255,255,255,.66); font-size: .87rem; text-decoration: none; }
.site-footer a:hover { color: var(--sand-300); }
.footer-whatsapp { color: var(--sand-300) !important; font-weight: 800; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; font-size: .79rem; }
.footer-bottom div { display: flex; gap: 18px; }
.footer-bottom a { margin: 0; font-size: .79rem; }

@media (max-width: 1040px) {
    .topbar__inner > span { display: none; }
    .topbar__inner { justify-content: flex-end; }
    .hero__grid { grid-template-columns: 1fr 440px; gap: 36px; }
    .hero__visual { min-height: 490px; padding: 20px 8px 10px 28px; }
    .hero__panel { height: 460px; }
    .hero__trust-card { right: 0; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 860px) {
    .container { width: min(calc(100% - 30px), var(--container)); }
    .site-header__inner { min-height: 82px; }
    .brand img { width: 61px; height: 61px; }
    .brand__text strong { font-size: .98rem; }
    .menu-toggle { display: block; }
    .site-nav { position: absolute; left: 15px; right: 15px; top: calc(100% + 8px); display: none; align-items: stretch; flex-direction: column; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow-md); }
    .site-nav.is-open { display: flex; }
    .site-nav > a:not(.button) { padding: 12px 14px; }
    .site-nav > a:not(.button)::after { display: none; }
    .site-nav > a.is-active:not(.button) { border-radius: 9px; background: var(--sand-100); color: var(--brown-900); }
    .hero { padding: 58px 0 68px; }
    .hero__grid { grid-template-columns: 1fr; }
    .hero__visual { width: min(100%, 560px); min-height: auto; margin: 8px auto 0; padding: 20px 0 8px 25px; }
    .hero__panel { height: 470px; }
    .trust-strip__inner { grid-template-columns: 1fr 1fr; padding: 24px 0; }
    .trust-strip__intro { grid-column: 1 / -1; }
    .trust-item:nth-child(2) { border-left: 0; padding-left: 0; }
    .section { padding: 72px 0; }
    .section-heading { align-items: start; flex-direction: column; }
    .split-feature, .compliance-grid, .about-intro, .contact-layout { grid-template-columns: 1fr; gap: 42px; }
    .about-intro__logo { position: static; min-height: auto; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 35px 22px; }
    .process-step:not(:last-child)::after { display: none; }
    .cta-band__inner { align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 610px) {
    .topbar { display: none; }
    .brand__text { display: none; }
    .hero h1 { font-size: clamp(2.55rem, 15vw, 4rem); }
    .hero__visual { min-height: auto; padding: 12px 0 12px 14px; }
    .hero__panel { height: 395px; }
    .hero__panel img { padding: 42px 26px 78px; }
    .hero__logo-card { width: 112px; left: -4px; top: -7px; padding: 8px; }
    .hero__trust-card { right: 4px; bottom: -12px; max-width: 190px; padding: 15px; }
    .hero__caption { left: 22px; right: 22px; bottom: 22px; }
    .hero__caption span { display: none; }
    .trust-strip__inner { grid-template-columns: 1fr; }
    .trust-item { border-left: 0; padding: 0 0 14px; border-bottom: 1px solid var(--line); }
    .trust-item:last-child { border-bottom: 0; }
    .services-grid, .products-grid, .values-grid, .compliance-cards, .process-grid, .form-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 285px; }
    .service-card__number { margin-bottom: 30px; }
    .split-feature__media, .split-feature__media img { min-height: 410px; }
    .split-feature__media img { padding: 34px; }
    .process-step { padding-right: 0; }
    .form-card { padding: 25px 20px; }
    .form-actions { align-items: stretch; flex-direction: column; }
    .form-actions .button { width: 100%; }
    .product-card__footer { align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
