:root {
    --ink: #392a27;
    --ink-soft: #5c4944;
    --rose: #b66b4d;
    --rose-dark: #8f4934;
    --gold: #d8a66b;
    --cream: #fff8f1;
    --cream-deep: #f4e5d9;
    --blush: #f5e0db;
    --white: #ffffff;
    --muted: #7c6c67;
    --line: #eadbd0;
    --success: #2b7a53;
    --shadow: 0 22px 60px rgba(57, 42, 39, .12);
    --shadow-soft: 0 12px 35px rgba(57, 42, 39, .08);
    --radius: 22px;
    --radius-sm: 12px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }
.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 9999; padding: 10px 15px; background: var(--ink); color: var(--white); border-radius: 8px; }
.skip-link:focus { top: 12px; }

h1, h2, h3, h4 { margin: 0 0 .65em; font-family: Georgia, 'Times New Roman', serif; line-height: 1.14; letter-spacing: -.025em; }
h1 { font-size: clamp(2.7rem, 6.4vw, 5.35rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.65rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
p { margin: 0 0 1.25em; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; color: var(--rose-dark); font-size: .77rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { width: 34px; height: 1px; content: ''; background: currentColor; }
.lead { max-width: 720px; color: var(--ink-soft); font-size: clamp(1.03rem, 1.7vw, 1.22rem); }
.section { padding: clamp(72px, 10vw, 118px) 0; }
.section-tight { padding: 68px 0; }
.section-cream { background: var(--cream); }
.section-blush { background: linear-gradient(135deg, #fff9f5, #f7e6df); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 44px; }
.section-heading > div { max-width: 770px; }
.section-heading p { max-width: 630px; margin-bottom: 0; color: var(--muted); }
.text-center { text-align: center; }
.text-center .eyebrow { justify-content: center; }
.text-center .eyebrow::after { width: 34px; height: 1px; content: ''; background: currentColor; }
.text-center .lead { margin-inline: auto; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 9px; padding: 14px 24px; border: 1px solid var(--rose); border-radius: 999px; background: var(--rose); color: var(--white); font-weight: 800; line-height: 1.1; cursor: pointer; transition: .25s ease; }
.button:hover { transform: translateY(-2px); border-color: var(--rose-dark); background: var(--rose-dark); box-shadow: 0 12px 30px rgba(143, 73, 52, .22); }
.button-outline { border-color: rgba(255,255,255,.55); background: transparent; color: var(--white); }
.button-outline:hover { border-color: var(--white); background: var(--white); color: var(--ink); }
.button-dark { border-color: var(--ink); background: var(--ink); }
.button-dark:hover { border-color: #211716; background: #211716; }
.button-light { border-color: var(--white); background: var(--white); color: var(--ink); }
.button-light:hover { border-color: var(--cream); background: var(--cream); }
.button-small { min-height: 42px; padding: 11px 18px; font-size: .9rem; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--rose-dark); font-weight: 800; }
.text-link::after { content: '→'; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }

.announcement-bar { position: relative; z-index: 31; background: var(--ink); color: #f7ebe4; font-size: .78rem; }
.announcement-inner { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 24px; }
.announcement-inner p { margin: 0; letter-spacing: .04em; }
.announcement-contact { display: flex; gap: 10px; align-items: center; }
.announcement-contact a:hover { color: var(--gold); }
.site-header { position: sticky; z-index: 30; top: 0; border-bottom: 1px solid transparent; background: rgba(255, 255, 255, .95); backdrop-filter: blur(13px); transition: .25s ease; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 26px rgba(57,42,39,.06); }
.nav-wrap { display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; width: 290px; max-width: 44vw; }
.brand img { width: 100%; }
.primary-nav { display: flex; align-items: center; gap: clamp(15px, 2vw, 27px); font-size: .91rem; font-weight: 800; }
.primary-nav > a:not(.button) { position: relative; padding: 33px 0 29px; }
.primary-nav > a:not(.button)::after { position: absolute; right: 0; bottom: 24px; left: 0; height: 2px; content: ''; background: var(--rose); transform: scaleX(0); transition: transform .2s ease; }
.primary-nav > a:hover::after, .primary-nav > a.active::after { transform: scaleX(1); }
.primary-nav > a.active { color: var(--rose-dark); }
.nav-toggle { display: none; width: 45px; height: 45px; padding: 10px; border: 0; border-radius: 50%; background: var(--cream); cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--ink); transition: .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-alert { padding: 12px 0; background: #edf8f1; color: var(--success); font-weight: 700; text-align: center; }
.site-alert.error { background: #fff0ef; color: #9d3f3b; }

.hero { position: relative; min-height: 715px; overflow: hidden; display: grid; align-items: center; background: var(--ink); color: var(--white); }
.hero::before { position: absolute; inset: 0; content: ''; background: linear-gradient(90deg, rgba(38,26,23,.94) 0%, rgba(38,26,23,.76) 44%, rgba(38,26,23,.22) 72%, rgba(38,26,23,.12) 100%); z-index: 1; }
.hero::after { position: absolute; right: -120px; bottom: -170px; width: 510px; height: 510px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; content: ''; z-index: 1; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 2; max-width: 780px; padding: 100px 0 112px; }
.hero .eyebrow { color: #f2c59d; }
.hero h1 { max-width: 800px; text-wrap: balance; }
.hero-text { max-width: 660px; color: #f1e5df; font-size: clamp(1.08rem, 1.9vw, 1.27rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 31px; }
.hero-badge { position: absolute; z-index: 3; right: max(4vw, calc((100vw - var(--container))/2)); bottom: 48px; width: 184px; height: 184px; display: grid; place-items: center; padding: 24px; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; background: rgba(43,40,37,.72); backdrop-filter: blur(8px); text-align: center; box-sizing: border-box; }
.hero-badge > div { display: grid; place-items: center; gap: 10px; width: 100%; min-width: 0; }
.hero-badge strong { display: block; margin: 0; color: #fff; font-family: Georgia,serif; font-size: clamp(1.55rem, 2.15vw, 1.9rem); font-weight: 700; line-height: 1.14; letter-spacing: 0; }
.hero-badge span { display: block; margin: 0; color: #edd1bb; font-size: .75rem; font-weight: 800; line-height: 1.55; letter-spacing: .105em; text-transform: uppercase; overflow-wrap: normal; word-break: normal; }

.trust-strip { position: relative; z-index: 3; margin-top: -31px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 23px 24px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { flex: 0 0 auto; width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); color: var(--rose-dark); font-family: Georgia,serif; font-weight: 800; }
.trust-item strong { display: block; font-family: Georgia,serif; font-size: 1.03rem; }
.trust-item span { display: block; color: var(--muted); font-size: .78rem; line-height: 1.35; }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 21px; }
.category-card { position: relative; min-height: 385px; overflow: hidden; border-radius: var(--radius); background: var(--ink); box-shadow: var(--shadow-soft); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.category-card::after { position: absolute; inset: 0; content: ''; background: linear-gradient(180deg, transparent 30%, rgba(35,23,20,.92) 100%); }
.category-card-content { position: absolute; z-index: 2; right: 25px; bottom: 25px; left: 25px; color: var(--white); }
.category-card h3 { margin-bottom: 6px; }
.category-card p { margin: 0; color: #e9dcd6; font-size: .88rem; }
.category-card:hover img { transform: scale(1.06); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(45px, 8vw, 100px); }
.about-media { position: relative; padding: 0 48px 48px 0; }
.about-media::before { position: absolute; z-index: 0; right: 0; bottom: 0; width: 72%; height: 72%; border-radius: var(--radius); content: ''; background: var(--cream-deep); }
.about-media-main { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-note { position: absolute; z-index: 2; right: 0; bottom: 20px; width: 220px; padding: 24px; border-radius: 18px; background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.about-note strong { display: block; margin-bottom: 5px; font-family: Georgia,serif; font-size: 1.35rem; }
.about-note span { color: #e9d4c9; font-size: .83rem; }
.check-list { display: grid; gap: 13px; padding: 0; margin: 28px 0 34px; list-style: none; }
.check-list li { position: relative; padding-left: 35px; color: var(--ink-soft); }
.check-list li::before { position: absolute; left: 0; top: 2px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; content: '✓'; background: var(--blush); color: var(--rose-dark); font-size: .78rem; font-weight: 900; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: .28s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-image { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--cream); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-image img { transform: scale(1.055); }
.product-tag { position: absolute; top: 16px; left: 16px; padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--rose-dark); font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.product-body { padding: 24px; }
.product-body h3 { margin-bottom: 10px; font-size: 1.45rem; }
.product-body p { min-height: 81px; color: var(--muted); font-size: .92rem; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-top: 17px; border-top: 1px solid var(--line); }
.product-price { font-family: Georgia,serif; font-size: 1.3rem; font-weight: 800; }
.product-price small { color: var(--muted); font-family: Arial,sans-serif; font-size: .68rem; font-weight: 600; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { padding: 33px 26px; border: 1px solid rgba(182,107,77,.18); border-radius: var(--radius); background: rgba(255,255,255,.68); transition: .25s ease; }
.service-card:hover { transform: translateY(-5px); background: var(--white); box-shadow: var(--shadow-soft); }
.service-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 18px; background: var(--rose); color: var(--white); font-family: Georgia,serif; font-size: 1.05rem; font-weight: 800; }
.service-card p { margin: 0; color: var(--muted); font-size: .91rem; }

.split-banner { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.split-banner-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 570px; }
.split-banner-copy { display: grid; align-content: center; padding: 80px max(50px, calc((100vw - var(--container))/2)); padding-right: clamp(40px, 7vw, 100px); }
.split-banner-copy p { color: #eadbd4; }
.split-banner-image { min-height: 480px; }
.split-banner-image img { width: 100%; height: 100%; object-fit: cover; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin: 30px 0; }
.stat { padding: 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 15px; }
.stat strong { display: block; color: #f2c59d; font-family: Georgia,serif; font-size: 1.65rem; }
.stat span { color: #d9c8c0; font-size: .76rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 1/1; border: 0; border-radius: 18px; padding: 0; background: var(--cream); cursor: zoom-in; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-overlay { position: absolute; inset: auto 0 0; padding: 28px 22px 19px; background: linear-gradient(transparent, rgba(38,26,23,.86)); color: var(--white); text-align: left; transform: translateY(15px); opacity: 0; transition: .25s ease; }
.gallery-overlay strong { display: block; font-family: Georgia,serif; font-size: 1.15rem; }
.gallery-overlay span { color: #ead8d0; font-size: .75rem; }
.gallery-item:hover img { transform: scale(1.055); }
.gallery-item:hover .gallery-overlay { transform: none; opacity: 1; }
.filter-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin: 0 0 38px; }
.filter-button { padding: 10px 17px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink-soft); font-weight: 800; cursor: pointer; }
.filter-button.active, .filter-button:hover { border-color: var(--rose); background: var(--rose); color: var(--white); }
.image-modal { width: min(920px, calc(100% - 28px)); max-height: calc(100vh - 40px); padding: 0; border: 0; border-radius: 20px; background: var(--ink); color: var(--white); box-shadow: 0 30px 100px rgba(0,0,0,.38); }
.image-modal::backdrop { background: rgba(20,12,10,.82); backdrop-filter: blur(5px); }
.image-modal img { width: 100%; max-height: 75vh; object-fit: contain; }
.modal-caption { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; }
.modal-close { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: transparent; color: var(--white); cursor: pointer; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { position: relative; padding: 33px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.testimonial-card::before { content: '“'; color: var(--blush); font-family: Georgia,serif; font-size: 5.8rem; line-height: .6; position: absolute; top: 34px; right: 25px; }
.stars { margin-bottom: 17px; color: var(--gold); letter-spacing: .1em; }
.testimonial-card blockquote { position: relative; margin: 0 0 25px; color: var(--ink-soft); font-family: Georgia,serif; font-size: 1.08rem; }
.testimonial-card strong { display: block; }
.testimonial-card span { color: var(--muted); font-size: .82rem; }

.cta-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.35fr .65fr; align-items: center; gap: 30px; padding: clamp(40px, 7vw, 75px); border-radius: 30px; background: var(--rose); color: var(--white); box-shadow: var(--shadow); }
.cta-card::before, .cta-card::after { position: absolute; border: 1px solid rgba(255,255,255,.23); border-radius: 50%; content: ''; }
.cta-card::before { width: 260px; height: 260px; right: -80px; top: -100px; }
.cta-card::after { width: 170px; height: 170px; left: -70px; bottom: -90px; }
.cta-card > * { position: relative; z-index: 1; }
.cta-card p { max-width: 690px; margin-bottom: 0; color: #f8e9e3; }
.cta-actions { display: flex; justify-content: flex-end; }

.page-hero { position: relative; min-height: 430px; display: grid; align-items: end; overflow: hidden; padding: 90px 0 72px; background: var(--ink); color: var(--white); }
.page-hero::after { position: absolute; inset: 0; content: ''; background: linear-gradient(90deg, rgba(35,23,20,.9), rgba(35,23,20,.42)); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-content { position: relative; z-index: 2; max-width: 780px; }
.page-hero h1 { font-size: clamp(2.7rem, 5vw, 4.55rem); }
.page-hero p { max-width: 680px; color: #eee1db; font-size: 1.1rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 18px; color: #e8c8b5; font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumbs a:hover { color: var(--white); }

.prose { color: var(--ink-soft); }
.prose p { white-space: pre-line; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { padding: 30px; border-radius: var(--radius); background: var(--cream); }
.value-card span { display: block; margin-bottom: 18px; color: var(--rose); font-family: Georgia,serif; font-size: 2.2rem; font-weight: 800; }
.value-card p { margin: 0; color: var(--muted); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: process; }
.process-card { position: relative; padding: 31px 25px; border-top: 2px solid var(--line); counter-increment: process; }
.process-card::before { display: grid; width: 47px; height: 47px; place-items: center; margin-bottom: 22px; border-radius: 50%; content: counter(process, decimal-leading-zero); background: var(--ink); color: var(--white); font-family: Georgia,serif; }
.process-card p { color: var(--muted); font-size: .9rem; }

.content-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(35px, 7vw, 80px); }
.form-card, .contact-card { padding: clamp(27px, 4vw, 42px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; color: var(--ink); font-size: .83rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 11px; outline: none; background: #fffdfa; padding: 13px 14px; color: var(--ink); transition: .2s ease; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(182,107,77,.13); }
.field-hint { color: var(--muted); font-size: .75rem; }
.contact-list { display: grid; gap: 17px; margin-top: 25px; }
.contact-list-item { display: grid; grid-template-columns: 47px 1fr; gap: 14px; align-items: start; }
.contact-list-icon { width: 47px; height: 47px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); color: var(--rose-dark); font-weight: 900; }
.contact-list-item strong { display: block; }
.contact-list-item span, .contact-list-item a { color: var(--muted); font-size: .91rem; }
.contact-list-item a:hover { color: var(--rose-dark); }
.notice { padding: 15px 17px; border-left: 3px solid var(--rose); border-radius: 8px; background: var(--cream); color: var(--ink-soft); font-size: .87rem; }

.empty-state { padding: 50px 24px; border: 1px dashed var(--line); border-radius: var(--radius); color: var(--muted); text-align: center; }

.site-footer { padding-top: 75px; background: #2c211f; color: #eaddd7; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .85fr 1.1fr; gap: 48px; padding-bottom: 58px; }
.footer-brand img { width: 280px; max-width: 100%; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: .94; }
.footer-brand p { max-width: 360px; color: #cbb9b2; }
.site-footer h3 { color: var(--white); font-size: 1.15rem; }
.footer-links, .footer-contact { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; color: #cbb9b2; font-size: .88rem; }
.footer-links a:hover, .footer-contact a:hover { color: #f0c29f; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-links a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--white); background: rgba(255,255,255,.035); transition: transform .22s ease, border-color .22s ease, background-color .22s ease, color .22s ease; }
.social-links a svg { width: 20px; height: 20px; display: block; overflow: visible; }
.social-links a:hover,
.social-links a:focus-visible { border-color: var(--gold); background: var(--gold); color: var(--ink); transform: translateY(-2px); outline: none; }
.social-links a:focus-visible { box-shadow: 0 0 0 3px rgba(246, 146, 30, .28); }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.11); color: #aa9892; font-size: .76rem; }
.footer-bottom p { margin: 0; }
.back-to-top, .whatsapp-float { position: fixed; z-index: 25; bottom: 22px; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; box-shadow: 0 11px 28px rgba(0,0,0,.19); transition: .25s ease; }
.back-to-top { left: 20px; border: 1px solid var(--line); background: var(--white); color: var(--ink); font-size: 1.2rem; opacity: 0; visibility: hidden; transform: translateY(10px); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.whatsapp-float { right: 20px; background: #24d366; color: var(--white); }
.whatsapp-float svg { width: 28px; height: 28px; }
.back-to-top:hover, .whatsapp-float:hover { transform: translateY(-4px); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
    .hero-badge { width: 170px; height: 170px; padding: 21px; right: 30px; bottom: 38px; }
    .hero-badge strong { font-size: 1.55rem; }
    .hero-badge span { font-size: .68rem; line-height: 1.5; letter-spacing: .09em; }
    .primary-nav { gap: 14px; }
    .brand { width: 245px; }
    .category-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 980px) {
    .announcement-inner { justify-content: center; }
    .announcement-contact { display: none; }
    .nav-wrap { min-height: 78px; }
    .brand { width: 245px; max-width: 72vw; }
    .nav-toggle { display: block; }
    .primary-nav { position: fixed; z-index: 40; top: 116px; right: 0; bottom: 0; width: min(390px, 92vw); display: flex; align-items: stretch; flex-direction: column; gap: 0; overflow-y: auto; padding: 24px; background: var(--ink); color: var(--white); transform: translateX(105%); transition: transform .28s ease; box-shadow: -20px 20px 50px rgba(0,0,0,.2); }
    .primary-nav.open { transform: none; }
    .primary-nav > a:not(.button) { padding: 16px 3px; border-bottom: 1px solid rgba(255,255,255,.12); }
    .primary-nav > a:not(.button)::after { display: none; }
    .primary-nav > a.active { color: #f4c8a8; }
    .nav-cta { margin-top: 20px; }
    .hero { min-height: 650px; }
    .hero::before { background: linear-gradient(90deg, rgba(38,26,23,.92), rgba(38,26,23,.58)); }
    .hero-badge { display: none; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(2) { border-right: 0; }
    .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .about-grid, .content-grid { grid-template-columns: 1fr; }
    .about-media { max-width: 680px; }
    .split-banner-grid { grid-template-columns: 1fr; }
    .split-banner-copy { padding: 75px max(18px, calc((100vw - var(--container))/2)); }
    .split-banner-image { height: 500px; }
    .testimonial-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .cta-card { grid-template-columns: 1fr; }
    .cta-actions { justify-content: flex-start; }
}

@media (max-width: 720px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .announcement-inner p { font-size: .7rem; text-align: center; }
    .section { padding: 72px 0; }
    .section-heading { align-items: start; flex-direction: column; margin-bottom: 32px; }
    .hero { min-height: 610px; }
    .hero-content { padding: 75px 0 90px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .button { width: 100%; }
    .trust-strip { margin-top: 0; }
    .trust-grid { border-radius: 0; box-shadow: none; }
    .trust-item { padding: 19px 13px; }
    .category-grid, .product-grid, .services-grid, .testimonial-grid, .values-grid { grid-template-columns: 1fr; }
    .category-card { min-height: 360px; }
    .about-media { padding: 0 25px 35px 0; }
    .about-note { width: 195px; padding: 20px; }
    .stats-row { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.wide { grid-column: span 2; }
    .process-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .field.full { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: 1 / -1; }
    .footer-bottom { align-items: center; flex-direction: column; text-align: center; }
    .page-hero { min-height: 360px; padding-bottom: 55px; }
}

@media (max-width: 480px) {
    .brand { width: 220px; }
    .primary-nav { top: 116px; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
    .trust-item:last-child { border-bottom: 0; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.wide { grid-column: auto; aspect-ratio: 1/1; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand, .footer-grid > div:last-child { grid-column: auto; }
    .cta-card { padding: 36px 25px; }
    .back-to-top, .whatsapp-float { width: 48px; height: 48px; bottom: 16px; }
    .back-to-top { left: 14px; }
    .whatsapp-float { right: 14px; }
}


/* =========================================================
   Mavis orange / charcoal typography and colour refresh
   Layout, spacing, radii and component structure intentionally
   remain unchanged from the original CMS design.
   ========================================================= */
:root {
    --ink: #2b2825;
    --ink-soft: #4f4a46;
    --rose: #e88f2a;
    --rose-dark: #c56f0f;
    --gold: #f2aa4c;
    --cream: #faf3eb;
    --cream-deep: #f1e2d0;
    --blush: #f8ead9;
    --white: #ffffff;
    --muted: #6f6964;
    --line: #ead8c5;
    --shadow: 0 22px 60px rgba(43, 40, 37, .13);
    --shadow-soft: 0 12px 35px rgba(43, 40, 37, .09);
}
body {
    color: var(--ink);
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
}
h1, h2, h3, h4 {
    font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
    font-weight: 800;
    letter-spacing: .012em;
}
.eyebrow {
    color: var(--rose-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    letter-spacing: .08em;
}
.section-blush { background: linear-gradient(135deg, #fffaf4, #f7eadb); }
.announcement-bar { background: var(--ink); color: #fff3e7; }
.announcement-contact a:hover { color: var(--gold); }
.site-header.scrolled { box-shadow: 0 8px 26px rgba(43,40,37,.08); }
.hero::before { background: linear-gradient(90deg, rgba(35,32,30,.94) 0%, rgba(35,32,30,.76) 44%, rgba(35,32,30,.22) 72%, rgba(35,32,30,.12) 100%); }
.hero .eyebrow, .hero-badge span { color: #ffc77f; }
.hero-text { color: #f7eee7; }
.button:hover { box-shadow: 0 12px 30px rgba(197,111,15,.24); }
.field input:focus, .field textarea:focus, .field select:focus { box-shadow: 0 0 0 3px rgba(232,143,42,.16); }
.site-footer { background: #211f1d; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.social-links a:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }

/* =========================================================
   Complete public-site responsive hardening
   Keeps the existing design while preventing layout breaks
   on small phones, tablets, laptops and large screens.
   ========================================================= */

/* Safe shrinking and wrapping across every component */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

main,
section,
header,
footer,
.container,
.nav-wrap,
.section-heading,
.about-grid,
.content-grid,
.split-banner-grid,
.footer-grid,
.product-grid,
.category-grid,
.services-grid,
.gallery-grid,
.testimonial-grid,
.values-grid,
.process-grid,
.trust-grid,
.form-grid {
    min-width: 0;
}

:is(.nav-wrap, .section-heading, .about-grid, .content-grid, .split-banner-grid, .footer-grid,
.product-grid, .category-grid, .services-grid, .gallery-grid, .testimonial-grid, .values-grid,
.process-grid, .trust-grid, .form-grid) > * {
    min-width: 0;
}

h1,
h2,
h3,
h4,
p,
li,
a,
span,
strong,
blockquote,
label {
    overflow-wrap: anywhere;
}

.button,
.text-link,
.filter-button {
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

.container {
    padding-inline: 0;
}

/* Header and mobile navigation */
.site-header {
    isolation: isolate;
}

.nav-wrap {
    position: relative;
}

.brand {
    min-width: 0;
}

.brand img {
    height: auto;
    max-height: 76px;
    object-fit: contain;
    object-position: left center;
}

body.menu-open::before {
    position: fixed;
    z-index: 29;
    inset: 0;
    content: '';
    background: rgba(20, 18, 17, .58);
    backdrop-filter: blur(2px);
}

/* Fluid media and card heights */
.category-card,
.product-card,
.service-card,
.value-card,
.process-card,
.testimonial-card,
.form-card,
.contact-card,
.cta-card {
    min-width: 0;
}

.category-card img,
.product-image img,
.gallery-item img,
.about-media-main,
.split-banner-image img,
.page-hero img,
.hero-bg {
    max-width: none;
}

.contact-list-item > div:last-child,
.contact-list-item a,
.contact-list-item span,
.footer-contact a {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.field input,
.field textarea,
.field select {
    min-width: 0;
    max-width: 100%;
}

/* Remove fixed content heights that create awkward mobile cards */
.product-body p {
    min-height: 0;
}

/* Touch devices must still show gallery labels */
@media (hover: none), (pointer: coarse) {
    .gallery-overlay {
        opacity: 1;
        transform: none;
    }

    .product-card:hover,
    .service-card:hover,
    .category-card:hover img,
    .product-card:hover .product-image img,
    .gallery-item:hover img {
        transform: none;
    }
}

@media (max-width: 1180px) {
    .container {
        width: min(calc(100% - 40px), var(--container));
    }

    .nav-wrap {
        gap: 18px;
    }

    .brand {
        width: clamp(210px, 23vw, 265px);
    }

    .primary-nav {
        gap: 13px;
        font-size: .86rem;
    }

    .primary-nav .button-small {
        padding-inline: 16px;
    }

    .hero-content {
        max-width: min(720px, 72vw);
    }

    .split-banner-copy {
        padding-left: max(30px, calc((100vw - var(--container))/2));
    }
}

@media (max-width: 980px) {
    .announcement-bar {
        z-index: 31;
    }

    .announcement-inner {
        min-height: 0;
        padding-block: 8px;
    }

    .announcement-inner p {
        line-height: 1.45;
    }

    .site-header {
        z-index: 35;
    }

    .nav-wrap {
        min-height: 76px;
    }

    .brand {
        width: clamp(205px, 45vw, 250px);
        max-width: calc(100% - 64px);
    }

    .brand img {
        max-height: 64px;
    }

    .nav-toggle {
        position: relative;
        z-index: 43;
        flex: 0 0 46px;
        display: block;
        width: 46px;
        height: 46px;
    }

    .primary-nav {
        position: absolute;
        z-index: 42;
        top: 100%;
        right: -20px;
        bottom: auto;
        width: min(390px, calc(100vw - 28px));
        max-height: calc(100vh - 92px);
        max-height: calc(100dvh - 92px);
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 18px 22px 24px;
        border-radius: 0 0 0 20px;
        background: var(--ink);
        color: var(--white);
        box-shadow: -20px 24px 55px rgba(0,0,0,.28);
        transform: translateX(calc(100% + 28px));
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: transform .28s ease, opacity .2s ease, visibility .28s;
    }

    .primary-nav.open {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .primary-nav > a:not(.button) {
        flex: 0 0 auto;
        padding: 15px 3px;
        border-bottom: 1px solid rgba(255,255,255,.12);
        line-height: 1.35;
    }

    .nav-cta {
        width: 100%;
        margin-top: 18px;
    }

    .hero {
        min-height: clamp(570px, 78vh, 680px);
    }

    .hero-content {
        max-width: 700px;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 8vw, 4.6rem);
    }

    .hero-text {
        max-width: 590px;
    }

    .category-card {
        min-height: clamp(320px, 48vw, 390px);
    }

    .about-grid,
    .content-grid {
        gap: 52px;
    }

    .about-media {
        width: min(100%, 680px);
        margin-inline: auto;
    }

    .split-banner-copy {
        padding: 72px max(28px, calc((100vw - var(--container))/2));
    }

    .split-banner-image {
        height: auto;
        min-height: 420px;
        max-height: 560px;
    }

    .footer-grid {
        gap: 38px;
    }
}

@media (max-width: 760px) {
    :root {
        --radius: 18px;
    }

    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    h1 {
        font-size: clamp(2.25rem, 11.2vw, 3.45rem);
        line-height: 1.05;
    }

    h2 {
        font-size: clamp(1.9rem, 8.7vw, 2.75rem);
        line-height: 1.09;
    }

    h3 {
        font-size: clamp(1.25rem, 5.8vw, 1.65rem);
    }

    .section,
    .section-tight {
        padding-block: 62px;
    }

    .section-heading {
        gap: 17px;
        margin-bottom: 30px;
    }

    .section-heading .text-link,
    .section-heading > .text-link {
        align-self: flex-start;
    }

    .eyebrow {
        gap: 8px;
        max-width: 100%;
        font-size: .72rem;
        line-height: 1.45;
    }

    .eyebrow::before,
    .text-center .eyebrow::after {
        flex: 0 0 24px;
        width: 24px;
    }

    .hero {
        min-height: 580px;
        align-items: end;
    }

    .hero::before {
        background: linear-gradient(90deg, rgba(31,29,27,.94), rgba(31,29,27,.68));
    }

    .hero-bg {
        object-position: 60% center;
    }

    .hero-content {
        max-width: 100%;
        padding: 72px 0 78px;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(2.35rem, 11.5vw, 3.55rem);
    }

    .hero-text {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-actions {
        width: 100%;
        margin-top: 25px;
    }

    .hero-actions .button {
        min-height: 50px;
    }

    .trust-strip {
        margin-top: 0;
    }

    .trust-grid {
        width: 100%;
        border-radius: 0;
    }

    .trust-item {
        min-height: 96px;
        padding: 18px 16px;
    }

    .category-grid,
    .product-grid,
    .services-grid,
    .testimonial-grid,
    .values-grid,
    .process-grid {
        gap: 18px;
    }

    .category-card {
        min-height: clamp(310px, 92vw, 405px);
    }

    .category-card-content {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .about-grid,
    .content-grid {
        gap: 42px;
    }

    .about-media {
        padding: 0;
    }

    .about-media::before {
        right: -8px;
        bottom: -10px;
        width: 68%;
        height: 68%;
    }

    .about-media-main {
        aspect-ratio: 4 / 4.8;
    }

    .about-note {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 26px);
        margin: -34px auto 0;
        padding: 19px 20px;
    }

    .product-body,
    .service-card,
    .value-card,
    .process-card,
    .testimonial-card {
        padding: 24px 21px;
    }

    .product-meta {
        flex-wrap: wrap;
    }

    .split-banner-copy {
        padding: 62px 15px;
    }

    .split-banner-copy > * {
        width: min(100%, calc(var(--container) - 0px));
        margin-left: auto;
        margin-right: auto;
    }

    .split-banner-image {
        min-height: 330px;
        max-height: 430px;
    }

    .stats-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 9px;
    }

    .stat {
        padding: 14px 10px;
    }

    .stat strong {
        font-size: 1.3rem;
    }

    .stat span {
        font-size: .7rem;
        line-height: 1.35;
    }

    .gallery-grid {
        gap: 12px;
    }

    .gallery-overlay {
        padding: 38px 16px 14px;
    }

    .cta-card {
        gap: 25px;
        padding: 38px 24px;
        border-radius: 22px;
    }

    .cta-actions,
    .cta-actions .button {
        width: 100%;
    }

    .page-hero {
        min-height: 345px;
        padding: 68px 0 48px;
    }

    .page-hero img {
        object-position: 58% center;
    }

    .page-hero h1 {
        font-size: clamp(2.25rem, 10vw, 3.3rem);
    }

    .page-hero p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .breadcrumbs {
        gap: 7px;
        font-size: .72rem;
        line-height: 1.45;
    }

    .form-card,
    .contact-card {
        padding: 26px 20px;
    }

    .field {
        margin-bottom: 13px;
    }

    .field input,
    .field textarea,
    .field select {
        min-height: 48px;
        padding: 12px 13px;
        font-size: 16px;
    }

    .field textarea {
        min-height: 135px;
    }

    .contact-list-item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
    }

    .contact-list-icon {
        width: 42px;
        height: 42px;
    }

    .footer-grid {
        gap: 32px 24px;
    }

    .footer-brand img {
        width: min(280px, 82vw);
    }

    .image-modal {
        width: calc(100% - 18px);
        max-height: calc(100dvh - 18px);
        border-radius: 14px;
    }

    .image-modal img {
        max-height: calc(100dvh - 92px);
    }

    .modal-caption {
        gap: 10px;
        padding: 12px 14px;
    }

    .modal-caption strong {
        min-width: 0;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .announcement-inner {
        padding-block: 7px;
    }

    .announcement-inner p {
        font-size: .66rem;
        letter-spacing: .015em;
    }

    .nav-wrap {
        min-height: 70px;
    }

    .brand {
        width: clamp(180px, 57vw, 220px);
        max-width: calc(100% - 58px);
    }

    .brand img {
        max-height: 58px;
    }

    .nav-toggle {
        flex-basis: 43px;
        width: 43px;
        height: 43px;
        padding: 9px;
    }

    .primary-nav {
        right: -12px;
        width: calc(100vw - 24px);
        max-height: calc(100vh - 78px);
        max-height: calc(100dvh - 78px);
        border-radius: 0 0 0 16px;
        padding-inline: 20px;
    }

    .hero {
        min-height: 560px;
    }

    .hero-bg {
        object-position: 64% center;
    }

    .hero-content {
        padding: 60px 0 64px;
    }

    .hero h1 {
        font-size: clamp(2.15rem, 12vw, 3rem);
    }

    .hero-actions {
        gap: 10px;
    }

    .button {
        width: 100%;
        min-height: 50px;
        padding: 13px 18px;
    }

    .button-small {
        min-height: 46px;
    }

    .text-link {
        width: auto;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:nth-child(2),
    .trust-item:nth-child(-n+2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
    }

    .category-card {
        min-height: min(390px, 105vw);
    }

    .about-note {
        width: calc(100% - 18px);
    }

    .check-list li {
        padding-left: 32px;
    }

    .check-list li::before {
        width: 22px;
        height: 22px;
    }

    .product-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .product-meta .text-link {
        align-self: flex-start;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .stat {
        padding: 15px 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item.wide {
        grid-column: auto;
        aspect-ratio: 4 / 3;
    }

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

    .filter-button {
        width: 100%;
        padding-inline: 10px;
        font-size: .82rem;
    }

    .process-card {
        border-top: 1px solid var(--line);
    }

    .form-card .button,
    .contact-card .button,
    form > .button {
        width: 100%;
    }

    .notice {
        padding: 14px 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-grid > div:last-child {
        grid-column: auto;
    }

    .site-footer {
        padding-top: 58px;
    }

    .footer-bottom {
        gap: 7px;
        padding-block: 18px;
    }

    .back-to-top,
    .whatsapp-float {
        bottom: max(14px, env(safe-area-inset-bottom));
        width: 47px;
        height: 47px;
    }
}

@media (max-width: 380px) {
    .container {
        width: min(calc(100% - 20px), var(--container));
    }

    .brand {
        width: 174px;
    }

    .primary-nav {
        right: -10px;
        width: calc(100vw - 20px);
    }

    h1,
    .hero h1,
    .page-hero h1 {
        font-size: 2.05rem;
    }

    h2 {
        font-size: 1.82rem;
    }

    .section,
    .section-tight {
        padding-block: 52px;
    }

    .hero {
        min-height: 535px;
    }

    .hero-content {
        padding-bottom: 55px;
    }

    .category-card {
        min-height: 340px;
    }

    .product-body,
    .service-card,
    .value-card,
    .process-card,
    .testimonial-card,
    .form-card,
    .contact-card {
        padding-inline: 18px;
    }

    .cta-card {
        padding: 32px 19px;
    }

    .filter-row {
        grid-template-columns: 1fr;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

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

/* Responsive product category selector */
.filter-select-form {
    display: none;
}

@media (max-width: 760px) {
    .filter-controls {
        margin-bottom: 30px;
    }

    .filter-row.filter-desktop {
        display: none;
    }

    .filter-select-form {
        display: block;
        width: min(100%, 520px);
        margin: 0 auto;
    }

    .filter-select-label {
        display: block;
        margin: 0 0 9px 4px;
        color: var(--rose);
        font-size: .72rem;
        font-weight: 900;
        letter-spacing: .13em;
        line-height: 1.2;
        text-transform: uppercase;
    }

    .filter-select-shell {
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(238, 141, 37, .35);
        border-radius: 16px;
        background: var(--white);
        box-shadow: 0 12px 28px rgba(48, 35, 28, .09);
        transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    }

    .filter-select-shell::before {
        position: absolute;
        inset: 0 auto 0 0;
        width: 5px;
        background: var(--rose);
        content: '';
        pointer-events: none;
    }

    .filter-select-shell::after {
        position: absolute;
        top: 50%;
        right: 20px;
        width: 9px;
        height: 9px;
        border-right: 2px solid var(--rose);
        border-bottom: 2px solid var(--rose);
        content: '';
        pointer-events: none;
        transform: translateY(-68%) rotate(45deg);
    }

    .filter-select-shell:focus-within {
        border-color: var(--rose);
        box-shadow: 0 0 0 4px rgba(238, 141, 37, .14), 0 14px 32px rgba(48, 35, 28, .11);
        transform: translateY(-1px);
    }

    .filter-select {
        width: 100%;
        min-height: 58px;
        margin: 0;
        padding: 0 54px 0 20px;
        border: 0;
        outline: 0;
        appearance: none;
        -webkit-appearance: none;
        background: transparent;
        color: var(--ink-soft);
        font: inherit;
        font-size: .95rem;
        font-weight: 850;
        line-height: 1.25;
        cursor: pointer;
    }

    .filter-select option {
        color: var(--ink-soft);
        background: var(--white);
    }

    .filter-submit {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 420px) {
    .filter-controls {
        margin-bottom: 24px;
    }

    .filter-select {
        min-height: 54px;
        padding-left: 17px;
        font-size: .9rem;
    }

    .filter-select-shell::after {
        right: 18px;
    }
}


/* =========================================================
   CakeZone theme alignment: contrast and typography
   Exact reference font family combination:
   Open Sans (body), Oswald (headings/controls), Pacifico (accents)
   ========================================================= */
:root {
    --ink: #2b2825;
    --ink-soft: #45403c;
    --rose: #e88f2a;
    --rose-dark: #a64f00;
    --gold: #e88f2a;
    --cream: #faf3eb;
    --cream-deep: #f1dec8;
    --blush: #f6e4d2;
    --white: #ffffff;
    --muted: #625b55;
    --line: #dfc9b1;
    --shadow: 0 22px 60px rgba(43, 40, 37, .15);
    --shadow-soft: 0 12px 34px rgba(43, 40, 37, .10);
}

body {
    color: var(--ink-soft);
    background: var(--white);
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-weight: 400;
    line-height: 1.65;
}

h1,
h2,
h3,
h4 {
    color: var(--ink);
    font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
    font-style: normal;
    letter-spacing: .012em;
}

h1,
h2 {
    font-weight: 700;
}

h3,
h4 {
    font-weight: 600;
}

h1 { line-height: 1.04; }
h2 { line-height: 1.09; }
h3,
h4 { line-height: 1.2; }

p,
li,
.field input,
.field textarea,
.field select {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

.eyebrow {
    gap: 0;
    color: var(--rose-dark);
    font-family: "Pacifico", cursive;
    font-size: clamp(1.08rem, 1.8vw, 1.42rem);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.35;
    text-transform: none;
}

.eyebrow::before,
.text-center .eyebrow::after {
    display: none;
}

.primary-nav,
.button,
.text-link,
.filter-button,
.filter-select-label,
.filter-select,
.product-tag,
.breadcrumbs,
.product-price,
.trust-item strong,
.about-note strong,
.service-icon,
.stat strong,
.gallery-overlay strong,
.testimonial-card strong,
.value-card span,
.process-card::before,
.site-footer h3 {
    font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
}

.primary-nav {
    color: var(--ink);
    font-size: .96rem;
    font-weight: 600;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.primary-nav > a:not(.button)::after {
    height: 3px;
    background: var(--rose);
}

.primary-nav > a.active,
.primary-nav > a:hover {
    color: var(--rose-dark);
}

.button {
    border-color: var(--rose);
    background: var(--rose);
    color: var(--ink);
    font-weight: 600;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.button:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(43, 40, 37, .22);
}

.button-dark {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.button-dark:hover {
    border-color: var(--rose);
    background: var(--rose);
    color: var(--ink);
}

.button-outline {
    border-color: rgba(255, 255, 255, .72);
    background: transparent;
    color: var(--white);
}

.button-outline:hover {
    border-color: var(--rose);
    background: var(--rose);
    color: var(--ink);
}

.button-light {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
}

.button-light:hover {
    border-color: var(--rose);
    background: var(--rose);
    color: var(--ink);
}

.text-link {
    color: var(--rose-dark);
    font-weight: 600;
    letter-spacing: .025em;
}

.announcement-bar {
    border-bottom: 2px solid var(--rose);
    background: var(--ink);
    color: #f7eee5;
}

.announcement-contact a:hover {
    color: #ffb75f;
}

.site-header {
    background: rgba(255, 255, 255, .98);
}

.site-header.scrolled {
    border-color: var(--line);
    box-shadow: 0 8px 26px rgba(43, 40, 37, .10);
}

.nav-toggle {
    background: var(--cream);
}

.nav-toggle span {
    background: var(--ink);
}

.hero,
.page-hero,
.split-banner {
    background: var(--ink);
}

.hero::before {
    background: linear-gradient(90deg, rgba(43, 40, 37, .96) 0%, rgba(43, 40, 37, .80) 44%, rgba(43, 40, 37, .28) 74%, rgba(43, 40, 37, .16) 100%);
}

.hero h1,
.page-hero h1,
.split-banner h2,
.cta-card h2,
.category-card h3,
.gallery-overlay strong {
    color: var(--white);
}

.hero .eyebrow,
.page-hero .eyebrow,
.split-banner .eyebrow {
    color: #f5a54a;
}

.hero-text,
.page-hero p {
    color: #f4ece5;
}

.hero-badge {
    border: 2px solid rgba(232, 143, 42, .82);
    background: rgba(43, 40, 37, .84);
}

.hero-badge strong {
    color: var(--white);
    font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: .015em;
}

.hero-badge span {
    color: #ffb458;
    font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
    font-weight: 600;
}

.trust-grid {
    background: var(--ink);
    box-shadow: var(--shadow);
}

.trust-item {
    border-color: rgba(255, 255, 255, .14);
}

.trust-icon {
    background: var(--rose);
    color: var(--ink);
    font-weight: 700;
}

.trust-item strong {
    color: var(--white);
    font-weight: 600;
    letter-spacing: .015em;
}

.trust-item span {
    color: #d8cdc4;
}

.section-cream {
    background: var(--cream);
}

.section-blush {
    background: linear-gradient(135deg, #fffdf9, var(--cream));
}

.section-heading p,
.lead,
.prose,
.check-list li,
.product-body p,
.service-card p,
.value-card p,
.process-card p,
.testimonial-card blockquote,
.contact-list-item span,
.contact-list-item a {
    color: var(--muted);
}

.category-card::after {
    background: linear-gradient(180deg, rgba(43, 40, 37, .03) 25%, rgba(43, 40, 37, .95) 100%);
}

.category-card p,
.gallery-overlay span {
    color: #eadfd6;
}

.about-media::before {
    background: var(--cream-deep);
}

.about-note {
    border-bottom: 5px solid var(--rose);
    background: var(--ink);
}

.about-note strong {
    color: var(--white);
    font-weight: 600;
}

.about-note span {
    color: #dfd2c8;
}

.check-list li::before {
    background: var(--rose);
    color: var(--ink);
}

.product-card,
.form-card,
.contact-card,
.testimonial-card {
    border-color: var(--line);
}

.product-tag {
    background: var(--rose);
    color: var(--ink);
    font-weight: 600;
    letter-spacing: .06em;
}

.product-price {
    color: var(--ink);
    font-weight: 700;
}

.product-price small {
    color: var(--muted);
    font-family: "Open Sans", Arial, sans-serif;
}

.service-card {
    border-color: var(--line);
    background: rgba(255, 255, 255, .88);
}

.service-icon {
    background: var(--rose);
    color: var(--ink);
    font-weight: 700;
}

.stat {
    border-color: rgba(232, 143, 42, .46);
}

.stat strong {
    color: #f4a448;
    font-weight: 600;
}

.stat span {
    color: #ddd1c8;
}

.filter-button {
    border-color: #d8b894;
    background: var(--white);
    color: var(--ink);
    font-weight: 600;
    letter-spacing: .03em;
}

.filter-button.active,
.filter-button:hover {
    border-color: var(--rose);
    background: var(--rose);
    color: var(--ink);
}

.filter-select-label {
    color: var(--rose-dark);
    font-weight: 600;
    letter-spacing: .07em;
}

.filter-select-shell {
    border-color: #d8b894;
    background: var(--cream);
}

.filter-select-shell::before {
    background: var(--rose);
}

.filter-select-shell::after {
    border-color: var(--ink);
}

.filter-select {
    color: var(--ink);
    font-weight: 600;
    letter-spacing: .025em;
}

.filter-select option {
    color: var(--ink);
    background: var(--white);
}

.value-card {
    border: 1px solid var(--line);
    border-top: 4px solid var(--rose);
    background: var(--white);
}

.value-card span {
    color: var(--rose-dark);
    font-weight: 700;
}

.process-card::before {
    background: var(--rose);
    color: var(--ink);
    font-weight: 700;
}

.stars {
    color: #c86400;
}

.testimonial-card::before {
    color: var(--cream-deep);
    font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
}

.testimonial-card blockquote {
    font-family: "Open Sans", Arial, sans-serif;
}

.testimonial-card strong {
    color: var(--ink);
    font-weight: 600;
}

.cta-card {
    border-top: 5px solid var(--rose);
    background: var(--ink);
    color: var(--white);
}

.cta-card::before,
.cta-card::after {
    border-color: rgba(232, 143, 42, .34);
}

.cta-card .eyebrow {
    color: #f5a54a !important;
}

.cta-card p {
    color: #e3d8cf;
}

.cta-card .button-light {
    border-color: var(--rose);
    background: var(--rose);
    color: var(--ink);
}

.cta-card .button-light:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
}

.page-hero::after {
    background: linear-gradient(90deg, rgba(43, 40, 37, .94), rgba(43, 40, 37, .50));
}

.breadcrumbs {
    color: #f2be82;
    font-weight: 600;
}

.field label {
    color: var(--ink);
    font-weight: 700;
}

.field input,
.field textarea,
.field select {
    border-color: #d9c2a8;
    background: #fffefa;
    color: var(--ink);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(232, 143, 42, .18);
}

.contact-list-icon {
    background: var(--rose);
    color: var(--ink);
}

.notice {
    border-left-color: var(--rose);
    background: var(--cream);
}

.site-footer {
    border-top: 5px solid var(--rose);
    background: #211f1d;
    color: #e5dbd3;
}

.site-footer h3 {
    color: #f1a247;
    font-weight: 600;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.footer-brand p,
.footer-links,
.footer-contact {
    color: #cfc2b9;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffb458;
}

.social-links a:hover {
    border-color: var(--rose);
    background: var(--rose);
    color: var(--ink);
}

.back-to-top {
    border-color: var(--rose);
    background: var(--rose);
    color: var(--ink);
}

@media (max-width: 980px) {
    .primary-nav {
        color: var(--white);
    }

    .primary-nav > a.active,
    .primary-nav > a:hover {
        color: #ffb458;
    }
}

@media (max-width: 760px) {
    .eyebrow {
        font-size: 1.08rem;
    }

    .trust-item,
    .trust-item:nth-child(2),
    .trust-item:nth-child(-n+2) {
        border-color: rgba(255, 255, 255, .14);
    }
}
