:root {
    --brown: #8f633d;
    --brown-dark: #6e492c;
    --brown-light: #c29a72;
    --ink: #201d1a;
    --charcoal: #292725;
    --cream: #f5f0e9;
    --cream-deep: #e9dfd3;
    --white: #fff;
    --muted: #716b66;
    --line: #e4ddd5;
    --green: #087c6c;
    --shadow: 0 18px 50px rgba(37, 28, 21, .12);
    --radius: 3px;
    --container: 1180px;
    --font-sans: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: var(--font-sans); font-size: 16px; line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.18; }
h1, h2, h3 { font-family: var(--font-sans); letter-spacing: -.025em; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 9999; padding: 10px 16px; background: #fff; color: #000; }
.skip-link:focus { top: 16px; }

.topbar { position: relative; z-index: 110; background: #302f2e; color: #fff; font-size: 13px; }
.topbar-inner { height: 38px; display: flex; align-items: center; justify-content: space-between; }
.topbar-contact, .topbar-right, .socials { display: flex; align-items: center; gap: 26px; }
.topbar a { transition: color .2s ease; }
.topbar a:hover { color: var(--brown-light); }
.topbar-contact span { margin-right: 6px; color: var(--brown-light); }
.topbar-right { color: #c9c5c1; }
.socials { gap: 13px; }
.socials a { color: #a9a5a2; font-size: 12px; font-weight: 700; }

.site-header { position: relative; z-index: 100; background: rgba(255, 255, 255, .98); border-bottom: 1px solid rgba(0, 0, 0, .06); transition: box-shadow .25s ease; }
.site-header.sticky { position: fixed; top: 0; left: 0; right: 0; box-shadow: 0 8px 26px rgba(0, 0, 0, .08); animation: headerDrop .28s ease; }
@keyframes headerDrop { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.nav-wrap { min-height: 88px; display: flex; align-items: center; gap: 34px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 13px; }
.brand-logo { width: 58px; height: 58px; display: grid; place-items: center; overflow: hidden; }
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-mark { width: 54px; height: 54px; display: grid; place-items: center; position: relative; border: 1px solid var(--brown); transform: rotate(45deg); }
.brand-mark::after { content: ""; position: absolute; inset: 5px; border: 1px solid rgba(154, 112, 72, .45); }
.brand-mark span { transform: rotate(-45deg); color: var(--brown-dark); font-family: var(--font-sans); font-weight: 700; font-size: 15px; z-index: 1; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-size: 21px; letter-spacing: -.5px; text-transform: uppercase; }
.brand-copy small { margin-top: 7px; color: var(--brown); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.main-nav { margin-left: auto; height: 88px; display: flex; align-items: stretch; }
.main-nav > a, .nav-dropdown > a { position: relative; display: flex; align-items: center; padding: 0 16px; color: #4a4541; font-size: 13px; font-weight: 600; letter-spacing: .25px; text-transform: uppercase; }
.main-nav > a::after, .nav-dropdown > a::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 20px; height: 1px; background: var(--brown); transform: scaleX(0); transition: transform .25s ease; }
.main-nav > a:hover::after, .nav-dropdown > a:hover::after, .main-nav > a.active::after, .nav-dropdown > a.active::after { transform: scaleX(1); }
.main-nav .active { color: var(--brown-dark); }
.nav-dropdown { position: relative; display: flex; }
.dropdown-chevron { width: 18px; height: 18px; display: grid; place-items: center; margin-left: 7px; border: 1px solid rgba(154,112,72,.28); border-radius: 50%; color: var(--brown-dark); transition: transform .25s ease, background .25s ease, color .25s ease; }
.dropdown-chevron svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.nav-dropdown:hover .dropdown-chevron, .nav-dropdown:focus-within .dropdown-chevron { transform: rotate(180deg); background: var(--brown); border-color: var(--brown); color: #fff; }
.dropdown-menu { position: absolute; left: 0; top: 100%; width: 300px; padding: 9px; background: #fff; border-top: 2px solid var(--brown); box-shadow: 0 20px 45px rgba(43, 31, 21, .15); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s ease; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.dropdown-menu a { display: block; padding: 10px 13px; color: #514b46; font-size: 13px; border-bottom: 1px solid #f0ece8; transition: color .2s, background .2s, padding .2s; }
.dropdown-menu a:last-child { border-bottom: 0; }
.dropdown-menu a:hover { padding-left: 18px; background: var(--cream); color: var(--brown-dark); }
.header-call { flex: 0 0 auto; min-width: 167px; display: flex; align-items: center; gap: 10px; padding: 10px 13px; border: 1px solid var(--brown-light); }
.header-call .call-icon { color: var(--brown); font-size: 20px; }
.header-call span:last-child { display: flex; flex-direction: column; line-height: 1.25; }
.header-call small { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.header-call strong { font-size: 13px; color: var(--brown-dark); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 0; background: none; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }

.hero { position: relative; height: min(720px, calc(100vh - 126px)); min-height: 590px; background: #222; overflow: hidden; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { display: grid; place-items: center; overflow: hidden; background: #211d1a; opacity: 0; visibility: hidden; transform: scale(1.04); transition: opacity .8s ease, visibility .8s, transform 6s ease; }
.hero-slide.active { opacity: 1; visibility: visible; transform: scale(1); }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20, 16, 13, .8), rgba(25, 18, 12, .52) 50%, rgba(18, 14, 11, .42)), linear-gradient(0deg, rgba(0,0,0,.32), transparent 50%); }
.hero-content { position: relative; z-index: 2; color: #fff; text-align: center; display: flex; flex-direction: column; align-items: center; padding-bottom: 10px; }
.hero-emblem { width: 74px; height: 74px; display: grid; place-items: center; margin-bottom: 28px; border: 1px solid rgba(255,255,255,.55); transform: rotate(45deg); }
.hero-emblem span { transform: rotate(-45deg); font-family: var(--font-sans); font-size: 19px; font-weight: 700; }
.hero-eyebrow { margin: 0 0 14px; font-weight: 600; font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: #e4d6c8; }
.hero h1 { margin: 0; font-size: clamp(46px, 6vw, 80px); font-weight: 700; letter-spacing: -.035em; text-shadow: 0 3px 18px rgba(0,0,0,.32); }
.hero-divider { display: flex; align-items: center; width: 180px; gap: 14px; margin: 18px 0; color: var(--brown-light); }
.hero-divider i { height: 1px; flex: 1; background: rgba(255,255,255,.45); }
.hero-divider span { font-size: 10px; }
.hero-description { max-width: 680px; margin-bottom: 30px; font-family: var(--font-sans); font-size: 18px; font-style: normal; font-weight: 400; line-height: 1.7; color: #eee6df; }
.hero-actions { display: flex; gap: 12px; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 12px 24px; border: 1px solid transparent; border-radius: var(--radius); font-size: 12px; font-weight: 700; letter-spacing: .35px; text-transform: uppercase; cursor: pointer; transition: transform .2s, background .2s, border-color .2s, color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brown); color: #fff; border-color: var(--brown); }
.btn-primary:hover { background: var(--brown-dark); border-color: var(--brown-dark); }
.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: var(--brown); border-color: var(--brown); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: #cfc5bb; }
.btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.hero-arrow { position: absolute; z-index: 5; top: 50%; width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.35); background: rgba(0,0,0,.18); color: #fff; border-radius: 50%; font-size: 34px; line-height: 1; cursor: pointer; transition: .2s; }
.hero-arrow:hover { background: var(--brown); border-color: var(--brown); }
.hero-prev { left: 30px; }
.hero-next { right: 30px; }
.hero-dots { position: absolute; z-index: 5; bottom: 34px; left: 50%; display: flex; gap: 10px; transform: translateX(-50%); }
.hero-dots button { width: 28px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.42); cursor: pointer; transition: .2s; }
.hero-dots button.active { width: 46px; background: #fff; }
.scroll-cue { position: absolute; z-index: 5; right: 36px; bottom: 26px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.7); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue span { width: 1px; height: 35px; background: rgba(255,255,255,.55); }

.trust-strip { position: relative; z-index: 6; margin-top: 0; background: var(--cream); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 112px; display: flex; align-items: center; justify-content: center; gap: 14px; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border: 0; }
.trust-grid strong { font-family: var(--font-sans); font-size: 30px; font-weight: 700; color: var(--brown-dark); }
.trust-grid span { max-width: 90px; line-height: 1.3; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

.about-grid { display: grid; grid-template-columns: .96fr 1.04fr; gap: 90px; align-items: center; }
.about-visual { position: relative; padding: 0 0 44px 44px; }
.about-visual::before { content: ""; position: absolute; left: 0; bottom: 0; width: 76%; height: 75%; background: var(--cream); }
.about-main-image { position: relative; height: 580px; overflow: hidden; box-shadow: var(--shadow); }
.about-main-image img { width: 100%; height: 100%; object-fit: cover; }
.experience-badge { position: absolute; z-index: 2; left: 0; bottom: 0; width: 150px; height: 150px; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--brown); color: #fff; box-shadow: 0 15px 30px rgba(72,43,22,.25); }
.experience-badge strong { font: 700 42px/1 var(--font-sans); }
.experience-badge span { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; line-height: 1.5; }
.wood-stamp { position: absolute; z-index: 2; right: -28px; top: 40px; width: 108px; height: 108px; display: grid; place-content: center; text-align: center; border: 1px solid rgba(255,255,255,.7); outline: 1px solid var(--brown); outline-offset: 5px; border-radius: 50%; background: var(--brown-dark); color: #fff; font-size: 8px; letter-spacing: 1.5px; line-height: 1.4; transform: rotate(8deg); }
.wood-stamp b { color: var(--brown-light); }
.section-kicker { display: block; margin-bottom: 13px; color: var(--brown); font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; }
.section-kicker.light { color: #fff; }
.about-copy h2, .section-heading h2, .process-intro h2, .contact-copy h2, .contact-form-info h2 { margin-bottom: 21px; font-size: clamp(36px, 4vw, 52px); font-weight: 600; }
.about-copy .lead, .detail-content .lead { font-size: 17px; color: var(--brown-dark); font-family: var(--font-sans); font-style: normal; font-weight: 500; line-height: 1.7; }
.rich-text { color: var(--muted); }
.rich-text p { margin-bottom: 14px; }
.rich-text h2, .rich-text h3 { margin-top: 30px; font-size: 28px; color: var(--ink); }
.rich-text ul { padding-left: 20px; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin: 28px 0 34px; }
.feature-list > div { display: flex; gap: 12px; }
.feature-list > div > span { width: 27px; height: 27px; flex: 0 0 auto; display: grid; place-items: center; background: var(--cream); color: var(--brown); border-radius: 50%; font-weight: 700; }
.feature-list p { display: flex; flex-direction: column; margin: 0; line-height: 1.4; }
.feature-list strong { font-size: 13px; }
.feature-list small { margin-top: 3px; color: var(--muted); font-size: 12px; }
.signature-row { display: flex; align-items: center; gap: 32px; }
.signature { font-family: var(--font-sans); font-size: 16px; font-style: normal; font-weight: 600; line-height: 1.25; color: var(--brown-dark); }
.signature small { font-size: 12px; }

.services-section { background: var(--cream); }
.section-heading { margin-bottom: 54px; }
.section-heading.centered { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2 { margin-bottom: 15px; }
.section-heading p { color: var(--muted); margin: 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card { position: relative; background: #fff; box-shadow: 0 8px 30px rgba(30,20,12,.06); border-bottom: 3px solid transparent; transition: transform .3s, border-color .3s, box-shadow .3s; transition-delay: var(--delay, 0ms); }
.service-card:hover { transform: translateY(-8px); border-color: var(--brown); box-shadow: var(--shadow); }
.service-image { position: relative; display: block; height: 230px; overflow: hidden; }
.service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.28), transparent 55%); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.service-card:hover .service-image img { transform: scale(1.06); }
.service-number { position: absolute; z-index: 2; right: 17px; bottom: 11px; color: rgba(255,255,255,.85); font-family: var(--font-sans); font-size: 28px; font-weight: 600; }
.service-card-body { position: relative; padding: 31px 29px 28px; }
.service-icon { position: absolute; right: 25px; top: -29px; width: 58px; height: 58px; display: grid; place-items: center; border: 5px solid #fff; background: var(--brown); color: #fff; font-size: 23px; }
.service-card h3 { margin: 0 55px 12px 0; font-size: 19px; font-family: var(--font-sans); font-weight: 700; line-height: 1.35; }
.service-card h3 a:hover { color: var(--brown); }
.service-card p { min-height: 72px; margin-bottom: 15px; color: var(--muted); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--brown-dark); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.text-link.light { color: #fff; }
.center-action { margin-top: 42px; text-align: center; }

.process-section { padding: 85px 0; position: relative; overflow: hidden; background: var(--charcoal); color: #fff; }
.process-section::before { content: "BM"; position: absolute; right: -45px; bottom: -90px; font: 700 260px/1 var(--font-sans); color: rgba(255,255,255,.025); }
.process-grid { position: relative; display: grid; grid-template-columns: 300px 1fr; gap: 70px; align-items: center; }
.process-intro h2 { font-size: 39px; }
.process-intro p { color: #bcb7b3; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-step { min-height: 240px; position: relative; padding: 22px; border-left: 1px solid rgba(255,255,255,.13); }
.process-step b { position: absolute; right: 12px; top: 0; color: rgba(255,255,255,.07); font: 700 55px/1 var(--font-sans); }
.process-step > span { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 45px; border: 1px solid rgba(194,154,114,.65); color: var(--brown-light); font-size: 22px; transform: rotate(45deg); }
.process-step h3 { font: 700 17px var(--font-sans); }
.process-step p { color: #aaa5a0; font-size: 13px; line-height: 1.6; }

.heading-row { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.heading-row > div { max-width: 650px; }
.heading-row .btn { margin-bottom: 8px; }
.projects-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 12px; }
.project-card { position: relative; padding: 0; border: 0; overflow: hidden; cursor: pointer; background: #ddd; text-align: left; }
.project-card.project-wide { grid-column: span 2; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.project-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: end; padding: 25px; color: #fff; background: linear-gradient(0deg, rgba(20,13,8,.85), rgba(20,13,8,0) 70%); opacity: .9; transition: .3s; }
.project-overlay small { color: #d6b996; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.project-overlay strong { font: 700 17px var(--font-sans); }
.project-overlay i { position: absolute; right: 20px; top: 20px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-style: normal; transform: scale(.7); opacity: 0; transition: .3s; }
.project-card:hover img { transform: scale(1.07); }
.project-card:hover .project-overlay { background: linear-gradient(0deg, rgba(88,54,29,.9), rgba(20,13,8,.12)); }
.project-card:hover .project-overlay i { opacity: 1; transform: scale(1); }

.reviews-section { background: var(--cream); overflow: hidden; }
.reviews-shell { position: relative; }
.reviews-track { display: flex; gap: 22px; overflow: auto; scroll-snap-type: x mandatory; scrollbar-width: none; scroll-behavior: smooth; padding: 8px 4px 25px; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 calc((100% - 44px) / 3); min-height: 310px; position: relative; padding: 38px 32px; background: #fff; box-shadow: 0 10px 30px rgba(40,27,17,.06); scroll-snap-align: start; }
.quote-mark { position: absolute; right: 25px; top: 5px; color: var(--cream-deep); font: 700 76px var(--font-sans); }
.stars { color: #e3a746; letter-spacing: 3px; font-size: 13px; }
.review-meta { min-height: 22px; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.google-review-badge { position: relative; z-index: 1; padding: 4px 8px; border: 1px solid #e5e0da; color: #5f6368; background: #fff; font-size: 9px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; transition: .2s; }
.google-review-badge:hover { border-color: #4285f4; color: #1a73e8; }
.review-card > p { min-height: 130px; margin: 24px 0; color: #615b56; font-family: var(--font-sans); font-size: 14px; font-style: normal; line-height: 1.75; }
.reviewer { display: flex; align-items: center; gap: 13px; }
.reviewer > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--brown-dark); color: #fff; font-weight: 700; }
.reviewer-photo { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 50%; object-fit: cover; background: var(--cream-deep); }
.reviewer div { display: flex; flex-direction: column; }
.reviewer strong { font-size: 13px; }
.reviewer small { color: var(--muted); font-size: 10px; }
.review-arrow { position: absolute; z-index: 2; top: 50%; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 50%; font-size: 25px; cursor: pointer; transform: translateY(-50%); box-shadow: 0 5px 20px rgba(0,0,0,.08); }
.review-arrow:hover { background: var(--brown); color: #fff; }
.review-prev { left: -64px; }
.review-next { right: -64px; }

.contact-section { position: relative; padding: 100px 0; color: #fff; background: linear-gradient(90deg, rgba(36,29,24,.94), rgba(36,29,24,.89)), url('../img/bm-hero-workshop.webp') center/cover; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.contact-copy p { max-width: 480px; color: #c9c2bc; }
.contact-options { display: flex; gap: 20px; margin-top: 35px; }
.contact-options a { display: flex; align-items: center; gap: 12px; min-width: 190px; }
.contact-options a > span { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); color: var(--brown-light); border-radius: 50%; }
.contact-options div { display: flex; flex-direction: column; }
.contact-options small { color: #aaa29b; font-size: 10px; text-transform: uppercase; }
.contact-options strong { font-size: 14px; }
.quote-form { padding: 42px; background: #fff; color: var(--ink); box-shadow: 0 30px 60px rgba(0,0,0,.22); }
.form-title span { color: var(--brown); font-size: 10px; font-weight: 700; letter-spacing: 2px; }
.form-title h3 { margin: 4px 0 24px; font: 700 24px var(--font-sans); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.quote-form label { display: block; margin-bottom: 15px; }
.quote-form label > span { display: block; margin-bottom: 6px; font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid #ded8d2; border-radius: 0; background: #faf9f7; outline: none; padding: 12px 14px; color: var(--ink); font-size: 14px; transition: .2s; }
.quote-form input, .quote-form select { height: 48px; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--brown); background: #fff; box-shadow: 0 0 0 3px rgba(154,112,72,.09); }
.quote-form textarea { resize: vertical; }
.quote-form .btn { width: 100%; }
.form-note { display: block; margin-top: 10px; text-align: center; color: #8a817a; font-size: 10px; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.form-alert { margin-bottom: 20px; padding: 12px 15px; border: 1px solid #b8d9bf; background: #edf8ef; color: #2f6638; font-size: 13px; }
.form-alert.error { border-color: #e2b2ae; background: #fff0ef; color: #8c2922; }
.form-alert p { margin: 0; }

.map-section { padding: 100px 0; background: var(--cream); content-visibility: auto; contain-intrinsic-size: 760px; }
.map-section.contact-map-section { background: #fff; border-top: 1px solid var(--line); }
.map-layout { display: grid; grid-template-columns: .72fr 1.28fr; min-height: 460px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-map-section .map-layout { background: var(--cream); }
.map-copy { display: flex; flex-direction: column; justify-content: center; padding: 52px 46px; }
.map-copy h2 { margin-bottom: 18px; font-size: clamp(34px, 4vw, 48px); font-weight: 700; }
.map-copy > p { margin-bottom: 27px; color: var(--muted); }
.map-details { display: grid; gap: 14px; margin-bottom: 30px; }
.map-details > div { display: flex; align-items: center; gap: 13px; }
.map-details > div > span { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--cream); color: var(--brown-dark); font-size: 18px; }
.contact-map-section .map-details > div > span { background: #fff; }
.map-details p { display: flex; flex-direction: column; margin: 0; line-height: 1.45; }
.map-details small { color: var(--brown); font-size: 9px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
.map-details strong { margin-top: 3px; font-size: 13px; font-weight: 600; }
.map-copy .btn { align-self: flex-start; }
.map-frame { position: relative; min-height: 460px; overflow: hidden; background: #ded8d2; }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.footer-cta { padding: 48px 0; background: var(--brown); color: #fff; }
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-cta h2 { margin: 0; font-size: 32px; }
.footer-cta-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.site-footer { padding: 76px 0 0; background: #211f1d; color: #ccc6c1; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr 1fr 1.1fr; gap: 65px; padding-bottom: 55px; }
.brand-light .brand-copy strong, .brand-light .brand-mark span { color: #fff; }
.brand-light .brand-mark { border-color: #a98462; }
.footer-about p { max-width: 320px; margin: 30px 0 20px; color: #9e9994; font-size: 14px; }
.footer-socials { display: flex; gap: 15px; }
.footer-socials a { color: #c6a47e; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.site-footer h3 { margin: 8px 0 25px; color: #fff; font: 700 15px var(--font-sans); letter-spacing: 0; }
.footer-links, .contact-list { padding: 0; margin: 0; list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: #a39e99; font-size: 13px; transition: .2s; }
.footer-links a::before { content: "›"; margin-right: 8px; color: var(--brown-light); }
.footer-links a:hover { color: #fff; padding-left: 3px; }
.contact-list li { display: flex; gap: 12px; margin-bottom: 19px; }
.contact-list li > span { color: var(--brown-light); }
.contact-list div { display: flex; flex-direction: column; color: #c2bcb7; font-size: 13px; }
.contact-list small { color: #8d8782; font-size: 10px; text-transform: uppercase; }
.contact-list a:hover { color: #fff; }
.footer-bottom { min-height: 66px; display: flex; align-items: center; border-top: 1px solid rgba(255,255,255,.08); color: #a8a29d; font-size: 11px; }
.brand-light .brand-copy small { color: #d7b998; }
.footer-bottom p { margin: 0; }
.footer-bottom a:hover { color: #aaa; }
.whatsapp-float { position: fixed; z-index: 90; right: 18px; bottom: 18px; min-height: 58px; display: flex; align-items: center; gap: 11px; padding: 9px 18px; background: var(--green); color: #fff; box-shadow: 0 8px 25px rgba(0,0,0,.2); border-radius: 2px; }
.whatsapp-icon { width: 34px; height: 34px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%; }
.whatsapp-icon svg { width: 19px; height: 19px; display: block; fill: currentColor; }
.whatsapp-label { display: flex; flex-direction: column; line-height: 1.3; font-size: 13px; font-weight: 600; }
.whatsapp-label small { color: #fff; font-size: 8px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; opacity: 1; }
.back-to-top { position: fixed; z-index: 80; right: 22px; bottom: 90px; width: 40px; height: 40px; border: 0; background: var(--ink); color: #fff; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }

.page-hero { min-height: 430px; display: flex; align-items: center; position: relative; color: #fff; background: linear-gradient(90deg, rgba(26,20,16,.85), rgba(26,20,16,.45)), var(--page-image) center/cover; }
.page-hero.compact { min-height: 330px; }
.page-hero .container { padding-top: 20px; }
.page-hero span { color: #d7b998; font-size: 11px; font-weight: 700; letter-spacing: 2px; }
.page-hero h1 { margin: 10px 0 25px; font-size: clamp(44px, 6vw, 70px); }
.page-hero nav { display: flex; align-items: center; gap: 12px; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.page-hero nav a { color: #d9d2cb; }
.page-hero nav a:hover { color: #fff; }
.page-hero nav i { color: var(--brown-light); font-style: normal; }
.page-hero nav b { font-weight: 500; color: #fff; }
.values-section { padding: 90px 0; background: var(--charcoal); color: #fff; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.values-grid article { position: relative; padding: 25px 55px; border-left: 1px solid rgba(255,255,255,.12); }
.values-grid article:first-child { border: 0; }
.values-grid span { color: rgba(255,255,255,.1); font: 700 52px var(--font-sans); }
.values-grid h3 { font: 700 20px var(--font-sans); }
.values-grid p { color: #aaa5a0; font-size: 13px; }
.why-us { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.why-grid h2 { font-size: 43px; }
.why-grid > div:first-child p { color: var(--muted); }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why-list > div { display: flex; gap: 14px; padding: 22px; background: #fff; border-left: 2px solid var(--brown); }
.why-list b { color: var(--brown); }
.why-list span { display: flex; flex-direction: column; }
.why-list strong { font: 700 15px var(--font-sans); }
.why-list small { margin-top: 5px; color: var(--muted); font-size: 11px; }
.full-grid { grid-template-columns: repeat(3, 1fr); }
.service-banner { padding: 65px 0; background: linear-gradient(90deg, rgba(91,56,31,.95), rgba(73,45,26,.9)), url('../img/bm-hero-workshop.webp') center/cover; color: #fff; }
.service-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.service-banner span { color: #d9c0a4; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.service-banner h2 { margin: 5px 0 0; font-size: 34px; }
.service-detail { background: #fff; }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 60px; align-items: start; }
.detail-cover { width: 100%; height: 440px; object-fit: cover; margin-bottom: 45px; }
.detail-content > h1 { font-size: 45px; }
.rich-text.detailed { color: #5e5955; font-size: 16px; }
.detail-guarantees { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 35px; }
.detail-guarantees div { display: flex; align-items: center; gap: 8px; padding: 15px; background: var(--cream); font-size: 11px; }
.detail-guarantees span { color: var(--brown); }
.detail-sidebar { position: sticky; top: 120px; }
.sidebar-card { border: 1px solid var(--line); padding: 30px; }
.sidebar-card h3 { margin-bottom: 20px; font: 700 19px var(--font-sans); }
.sidebar-card ul { list-style: none; padding: 0; margin: 0; }
.sidebar-card li { border-bottom: 1px solid var(--line); }
.sidebar-card li:last-child { border: 0; }
.sidebar-card a { min-height: 50px; display: grid; grid-template-columns: 27px 1fr auto; gap: 8px; align-items: center; font-size: 11px; font-weight: 600; }
.sidebar-card a span { color: var(--brown); }
.sidebar-card a i { font-style: normal; color: #aaa; }
.sidebar-card a:hover { color: var(--brown-dark); }
.sidebar-contact { margin-top: 24px; padding: 35px 30px; background: linear-gradient(rgba(40,31,25,.92), rgba(40,31,25,.92)), url('../img/bm-hero-workshop.webp') center/cover; color: #fff; }
.sidebar-contact > span { color: #d4b797; font-size: 9px; font-weight: 700; letter-spacing: 2px; }
.sidebar-contact h3 { margin: 8px 0 15px; font: 700 23px var(--font-sans); }
.sidebar-contact p { color: #bab3ad; font-size: 12px; }
.sidebar-contact .btn { width: 100%; }
.sidebar-phone { display: block; margin-top: 18px; text-align: center; color: #d9c2aa; font-size: 13px; }
.gallery-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin: -20px 0 40px; }
.gallery-summary { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 22px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.gallery-summary strong { color: var(--brown-dark); font: 700 23px var(--font-sans); }
.gallery-summary i { width: 34px; height: 1px; background: var(--line); }
.gallery-filters button { padding: 9px 18px; border: 1px solid var(--line); background: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; cursor: pointer; }
.gallery-filters button.active, .gallery-filters button:hover { background: var(--brown); border-color: var(--brown); color: #fff; }
.gallery-grid { columns: 3; column-gap: 16px; }
.gallery-item { width: 100%; position: relative; display: block; margin: 0 0 16px; padding: 0; border: 0; background: #ddd; break-inside: avoid; cursor: pointer; overflow: hidden; }
.gallery-item img { width: 100%; min-height: 250px; max-height: 480px; object-fit: cover; transition: transform .5s; }
.gallery-item span { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: end; padding: 25px; text-align: left; color: #fff; background: linear-gradient(0deg, rgba(24,16,10,.85), transparent 65%); opacity: .85; }
.gallery-item small { color: #d7ba99; font-size: 10px; text-transform: uppercase; letter-spacing: 2px; }
.gallery-item strong { font: 700 18px var(--font-sans); }
.gallery-item em { max-width: 90%; margin-top: 5px; color: rgba(255,255,255,.78); font-size: 11px; font-style: normal; line-height: 1.45; opacity: 0; transform: translateY(5px); transition: .3s; }
.gallery-item i { position: absolute; right: 20px; top: 20px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-style: normal; opacity: 0; transform: scale(.7); transition: .3s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover i { opacity: 1; transform: scale(1); }
.gallery-item:hover em { opacity: 1; transform: none; }
.gallery-item.hidden { display: none; }
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 60px; }
.contact-cards > * { min-height: 210px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 25px; text-align: center; border: 1px solid var(--line); background: #fff; transition: .3s; }
.contact-cards > a:hover { transform: translateY(-5px); border-color: var(--brown); box-shadow: var(--shadow); }
.contact-cards > * > span { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 14px; border-radius: 50%; background: var(--cream); color: var(--brown); font-size: 20px; }
.contact-cards small { color: var(--brown); font-size: 10px; text-transform: uppercase; letter-spacing: 2px; }
.contact-cards strong { margin: 5px 0; font: 700 16px var(--font-sans); }
.contact-cards em { color: var(--muted); font-size: 11px; font-style: normal; }
.contact-form-shell { display: grid; grid-template-columns: .8fr 1.2fr; box-shadow: var(--shadow); }
.contact-form-info { padding: 55px 45px; background: var(--charcoal); color: #fff; }
.contact-form-info p { color: #aaa5a0; }
.contact-form-info ul { padding: 0; list-style: none; color: #d8d1cb; font-size: 13px; }
.contact-form-info li { margin: 10px 0; }
.contact-form-shell .quote-form { box-shadow: none; }
.thank-you-page, .not-found { min-height: 600px; display: grid; place-items: center; padding: 80px 20px; background: var(--cream); }
.thank-you-card, .not-found > div { max-width: 650px; padding: 60px; background: #fff; box-shadow: var(--shadow); text-align: center; }
.success-icon { width: 76px; height: 76px; display: grid; place-items: center; margin: 0 auto 25px; border-radius: 50%; background: #eaf7ee; color: #318a4c; font-size: 34px; }
.thank-you-card h1 { font-size: 52px; }
.thank-you-card p { color: var(--muted); }
.thank-actions { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.not-found strong { color: var(--brown); font: 700 76px var(--font-sans); }
.not-found h1 { margin-bottom: 30px; }
.lightbox { position: fixed; z-index: 1000; inset: 0; display: none; align-items: center; justify-content: center; padding: 55px 90px 82px; background: rgba(12,10,9,.94); }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1180px, 88vw); max-height: 78vh; object-fit: contain; box-shadow: 0 25px 70px rgba(0,0,0,.34); }
.lightbox-close { position: absolute; right: 24px; top: 16px; width: 48px; height: 48px; display: grid; place-items: center; border: 0; background: transparent; color: #fff; font-size: 42px; line-height: 1; cursor: pointer; opacity: .8; transition: opacity .2s, transform .2s; }
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }
.lightbox-nav { position: absolute; z-index: 2; top: 50%; width: 56px; height: 56px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; cursor: pointer; transform: translateY(-50%); transition: background .2s, border-color .2s, transform .2s; }
.lightbox-nav svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.lightbox-nav:hover { border-color: var(--brown-light); background: var(--brown); transform: translateY(-50%) scale(1.05); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-nav[hidden] { display: none; }
.lightbox-caption { position: absolute; left: 50%; bottom: 25px; width: min(900px, calc(100% - 150px)); color: #fff; font: 600 14px/1.5 var(--font-sans); text-align: center; transform: translateX(-50%); }
.lightbox-counter { position: absolute; right: 30px; bottom: 27px; color: rgba(255,255,255,.65); font-size: 12px; font-weight: 700; letter-spacing: 1px; }

.reveal { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
    .container { width: min(calc(100% - 40px), 1040px); }
    .brand-copy strong { font-size: 18px; }
    .main-nav > a, .nav-dropdown > a { padding-inline: 11px; font-size: 12px; }
    .main-nav > a::after, .nav-dropdown > a::after { left: 11px; right: 11px; }
    .header-call { display: none; }
    .review-prev { left: -20px; }
    .review-next { right: -20px; }
    .process-grid { gap: 35px; }
    .process-step { padding: 16px; }
}

@media (max-width: 900px) {
    .topbar-email, .topbar-right > span { display: none; }
    .site-header.sticky { top: 0; }
    .nav-wrap { min-height: 76px; }
    .brand-mark { width: 46px; height: 46px; }
    .brand-copy strong { font-size: 16px; }
    .menu-toggle { display: block; margin-left: auto; }
    .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .main-nav { position: fixed; inset: 114px 0 0; height: auto; display: block; padding: 20px; background: #fff; opacity: 0; visibility: hidden; transform: translateX(100%); transition: .28s ease; overflow: auto; }
    .site-header.sticky .main-nav { top: 76px; }
    .main-nav.open { opacity: 1; visibility: visible; transform: none; }
    .main-nav > a, .nav-dropdown > a { min-height: 54px; padding: 0 5px; border-bottom: 1px solid var(--line); font-size: 13px; }
    .main-nav > a::after, .nav-dropdown > a::after { display: none; }
    .nav-dropdown { display: block; }
    .nav-dropdown > a { justify-content: space-between; }
    .dropdown-chevron { width: 24px; height: 24px; margin-left: auto; }
    .dropdown-menu { position: static; width: 100%; padding: 0 0 10px 15px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; }
    .nav-dropdown:focus-within .dropdown-menu, .nav-dropdown.menu-expanded .dropdown-menu { display: block; }
    .nav-dropdown.menu-expanded .dropdown-chevron { transform: rotate(180deg); background: var(--brown); border-color: var(--brown); color: #fff; }
    .hero { height: 650px; min-height: 0; }
    .hero h1 { font-size: clamp(40px, 8vw, 62px); letter-spacing: -.03em; }
    .hero-arrow { display: none; }
    .scroll-cue { display: none; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-grid > div:nth-child(2) { border-right: 0; }
    .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .about-grid, .contact-grid, .detail-grid, .why-grid, .contact-form-shell { grid-template-columns: 1fr; }
    .about-grid { gap: 55px; }
    .about-main-image { height: 520px; }
    .services-grid, .full-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .process-intro { max-width: 560px; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-step { border-bottom: 1px solid rgba(255,255,255,.12); }
    .projects-mosaic { grid-template-columns: 1fr 1fr; }
    .review-card { flex-basis: calc((100% - 22px) / 2); }
    .contact-grid { gap: 45px; }
    .map-layout { grid-template-columns: 1fr; }
    .map-frame { min-height: 420px; }
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-grid > div:nth-child(2) { display: none; }
    .detail-sidebar { position: static; }
    .gallery-grid { columns: 2; }
    .contact-cards { grid-template-columns: 1fr 1fr; }
    .values-grid article { padding-inline: 30px; }
    .whatsapp-label { display: none; }
    .whatsapp-float { width: 56px; height: 56px; min-height: 0; padding: 10px; border-radius: 50%; }
    .whatsapp-icon { width: 36px; height: 36px; border: 0; }
    .whatsapp-icon svg { width: 28px; height: 28px; }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), 100%); }
    .section { padding: 75px 0; }
    .topbar-inner { justify-content: center; }
    .topbar-right { display: none; }
    .topbar-contact { width: 100%; justify-content: center; }
    .brand-copy strong { font-size: 14px; }
    .brand-copy small { font-size: 8px; }
    .main-nav { top: 114px; }
    .hero { height: 620px; }
    .hero-content { padding-bottom: 40px; }
    .hero-emblem { width: 60px; height: 60px; margin-bottom: 23px; }
    .hero-eyebrow { font-size: 10px; letter-spacing: 2px; }
    .hero h1 { font-size: 40px; letter-spacing: -.025em; }
    .hero-description { font-size: 16px; }
    .hero-actions { width: 100%; flex-direction: column; align-items: center; }
    .hero-actions .btn { width: min(100%, 310px); }
    .hero-dots { bottom: 20px; }
    .trust-grid > div { min-height: 90px; gap: 8px; }
    .trust-grid strong { font-size: 25px; }
    .trust-grid span { font-size: 9px; }
    .about-visual { padding: 0 0 35px 25px; }
    .about-main-image { height: 420px; }
    .experience-badge { width: 125px; height: 125px; }
    .experience-badge strong { font-size: 36px; }
    .wood-stamp { display: none; }
    .about-copy h2, .section-heading h2, .process-intro h2, .contact-copy h2, .contact-form-info h2 { font-size: 34px; }
    .feature-list { grid-template-columns: 1fr; }
    .signature-row { align-items: flex-start; flex-direction: column; }
    .services-grid, .full-grid { grid-template-columns: 1fr; }
    .service-image { height: 245px; }
    .process-steps { grid-template-columns: 1fr; }
    .process-step { min-height: 190px; padding: 20px 20px 20px 25px; }
    .process-step > span { margin-bottom: 25px; }
    .heading-row { align-items: flex-start; flex-direction: column; }
    .projects-mosaic { display: block; }
    .project-card { width: 100%; height: 280px; display: block; margin-bottom: 12px; }
    .review-card { flex-basis: 88%; }
    .review-arrow { display: none; }
    .contact-options { flex-direction: column; }
    .quote-form { padding: 30px 22px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-cta-inner, .service-banner .container { flex-direction: column; align-items: flex-start; }
    .footer-cta-actions { width: 100%; flex-direction: column; }
    .footer-cta-actions .btn { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .footer-grid > div:nth-child(2) { display: block; }
    .page-hero, .page-hero.compact { min-height: 300px; }
    .page-hero h1 { font-size: 40px; }
    .page-hero nav { flex-wrap: wrap; }
    .values-grid { grid-template-columns: 1fr; }
    .values-grid article { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
    .why-list { grid-template-columns: 1fr; }
    .detail-cover { height: 300px; }
    .detail-content > h1 { font-size: 36px; }
    .detail-guarantees { grid-template-columns: 1fr; }
    .gallery-grid { columns: 1; }
    .gallery-summary { flex-wrap: wrap; }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-cards > * { min-height: 180px; }
    .contact-form-info { padding: 42px 25px; }
    .map-section { padding: 70px 0; contain-intrinsic-size: 900px; }
    .map-copy { padding: 38px 25px; }
    .map-copy h2 { font-size: 34px; }
    .map-copy .btn { width: 100%; }
    .map-frame { min-height: 360px; }
    .thank-you-card { padding: 45px 25px; }
    .thank-actions { flex-direction: column; }
    .lightbox { padding: 60px 12px 105px; }
    .lightbox img { max-width: calc(100vw - 24px); max-height: 72vh; }
    .lightbox-close { right: 8px; top: 7px; }
    .lightbox-nav { top: auto; bottom: 38px; width: 44px; height: 44px; transform: none; }
    .lightbox-nav:hover { transform: scale(1.04); }
    .lightbox-prev { left: 16px; }
    .lightbox-next { right: 16px; }
    .lightbox-caption { bottom: 91px; width: calc(100% - 32px); font-size: 13px; }
    .lightbox-counter { right: 50%; bottom: 51px; transform: translateX(50%); }
}

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

/* Blog */
.blog-page-hero{--page-image:url('../img/bm-about-workshop.webp')}
.blog-list-section{background:#f7f5f1}
.blog-layout{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:58px;align-items:start}
.blog-heading{margin-bottom:34px}
.blog-heading h2{max-width:760px}
.blog-heading p{max-width:760px;margin:0;color:var(--muted)}
.blog-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:26px}
.blog-grid.compact{grid-template-columns:repeat(3,minmax(0,1fr))}
.blog-card{min-width:0;overflow:hidden;border:1px solid #e4dfd9;background:#fff;box-shadow:0 12px 35px rgba(37,29,23,.055);transition:transform .25s ease,box-shadow .25s ease}
.blog-card:hover{transform:translateY(-5px);box-shadow:0 18px 42px rgba(37,29,23,.1)}
.blog-card-image{position:relative;display:block;aspect-ratio:16/10;overflow:hidden;background:#27221e}
.blog-card-image img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.blog-card:hover .blog-card-image img{transform:scale(1.045)}
.blog-card-image>span{position:absolute;left:14px;top:14px;padding:7px 10px;background:var(--brown);color:#fff;font-size:9px;font-weight:700;letter-spacing:1px;text-transform:uppercase}
.blog-card-body{padding:25px 24px 23px}
.blog-card-meta{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin-bottom:12px;color:#8b8178;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.45px}
.blog-card-meta a,.blog-card-meta span{color:var(--brown)}
.blog-card-meta i{font-style:normal;color:#c5bbb1}
.blog-card h2{margin:0 0 13px;font:700 21px/1.38 var(--font-sans);letter-spacing:-.025em}
.blog-card h2 a{transition:color .2s}
.blog-card h2 a:hover{color:var(--brown)}
.blog-card p{min-height:76px;margin:0;color:#6e6761;font-size:14px;line-height:1.7}
.blog-card-footer{display:flex;align-items:center;justify-content:space-between;gap:15px;margin-top:19px;padding-top:17px;border-top:1px solid #eee9e4}
.blog-card-footer>span{color:#918980;font-size:11px}
.blog-card-footer .text-link{font-size:10px}
.blog-sidebar{display:flex;flex-direction:column;gap:24px;position:sticky;top:110px}
.blog-sidebar>section{padding:26px;border:1px solid #e4dfd9;background:#fff;box-shadow:0 10px 28px rgba(37,29,23,.045)}
.blog-sidebar>section>h3{margin:0 0 19px;padding-bottom:15px;border-bottom:1px solid #ebe6e1;font:700 18px var(--font-sans)}
.blog-sidebar ul{margin:0;padding:0;list-style:none}
.blog-sidebar li+li{border-top:1px solid #f0ece8}
.blog-sidebar li a{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:12px 2px;color:#5d5752;font-size:13px;transition:.2s}
.blog-sidebar li a:hover,.blog-sidebar li a.active{color:var(--brown);padding-left:5px}
.blog-sidebar li b{min-width:27px;height:27px;display:grid;place-items:center;border-radius:50%;background:#f3eee9;font-size:10px}
.latest-blog-list{display:flex;flex-direction:column}
.latest-blog-list>a{display:grid;grid-template-columns:36px 1fr;gap:12px;padding:13px 0}
.latest-blog-list>a+a{border-top:1px solid #f0ece8}
.latest-blog-list>a>span{color:#c19a73;font:700 18px var(--font-sans)}
.latest-blog-list div{display:flex;flex-direction:column;gap:4px}
.latest-blog-list strong{font-size:13px;line-height:1.4;transition:color .2s}
.latest-blog-list a:hover strong{color:var(--brown)}
.latest-blog-list small{color:#989087;font-size:10px}
.blog-sidebar .blog-sidebar-cta{border:0;background:var(--brown-dark);color:#fff}
.blog-sidebar-cta>span{color:#d4b28f;font-size:9px;font-weight:700;letter-spacing:1.8px}
.blog-sidebar .blog-sidebar-cta h3{margin:9px 0 12px;padding:0;border:0;font-size:23px;line-height:1.35}
.blog-sidebar-cta p{margin:0 0 20px;color:#c8beb6;font-size:13px;line-height:1.65}
.blog-pagination{display:flex;justify-content:center;gap:8px;margin-top:40px}
.blog-pagination a{width:43px;height:43px;display:grid;place-items:center;border:1px solid #ded7d0;background:#fff;color:#5a524b;font-size:13px;font-weight:700;transition:.2s}
.blog-pagination a:hover,.blog-pagination a.active{border-color:var(--brown);background:var(--brown);color:#fff}
.blog-empty{padding:70px 25px;border:1px solid #e4dfd9;background:#fff;text-align:center}
.blog-empty>span{display:block;color:var(--brown);font-size:38px}
.blog-empty h2{margin:12px 0 8px;font-size:28px}
.blog-empty p{margin:0 0 24px;color:var(--muted)}

.blog-article-header{padding:76px 0 62px;background:#f4efe9;text-align:center}
.container.narrow{max-width:970px}
.article-breadcrumb{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:9px;margin-bottom:27px;color:#847a72;font-size:11px;text-transform:uppercase;letter-spacing:.6px}
.article-breadcrumb a:hover{color:var(--brown)}
.article-category{display:inline-flex;margin-bottom:18px;padding:8px 12px;background:#e9dbce;color:var(--brown-dark);font-size:10px;font-weight:700;letter-spacing:1px;text-transform:uppercase}
.blog-article-header h1{max-width:940px;margin:0 auto;font:700 clamp(38px,5vw,64px)/1.17 var(--font-sans);letter-spacing:-.045em}
.blog-article-header p{max-width:760px;margin:23px auto 0;color:#675f58;font-size:18px;line-height:1.7}
.article-meta{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:10px;margin-top:25px;color:#857b72;font-size:12px}
.article-meta i{font-style:normal;color:#c4b8ad}
.article-cover-wrap{margin-top:50px}
.article-cover{width:100%;max-height:650px;object-fit:cover;box-shadow:0 20px 55px rgba(27,22,18,.13)}
.article-layout{display:grid;grid-template-columns:minmax(0,820px) 300px;justify-content:center;gap:68px;padding-top:60px;padding-bottom:85px;align-items:start}
.article-content{font-size:17px;line-height:1.85;color:#49443f}
.article-content>p:first-child{font-size:20px;color:#302b27}
.article-content h2{margin:45px 0 18px;font:700 31px/1.35 var(--font-sans);letter-spacing:-.03em}
.article-content h3{margin:35px 0 14px;font:700 24px/1.4 var(--font-sans)}
.article-content h4{margin:29px 0 12px;font-size:19px}
.article-content p{margin:0 0 22px}
.article-content ul,.article-content ol{margin:0 0 25px;padding-left:25px}
.article-content li{margin:9px 0;padding-left:5px}
.article-content blockquote{margin:34px 0;padding:23px 27px;border-left:4px solid var(--brown);background:#f5f1ed;color:#473f38;font-size:19px;font-weight:500}
.article-content a{color:var(--brown);text-decoration:underline;text-underline-offset:3px}
.article-tags{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin-top:45px;padding-top:24px;border-top:1px solid var(--line)}
.article-tags strong{margin-right:5px;font-size:13px}
.article-tags span{padding:6px 9px;background:#f2ede8;color:#766b62;font-size:11px}
.article-share{display:flex;align-items:center;justify-content:space-between;gap:25px;margin-top:32px;padding:28px;background:#292622;color:#fff}
.article-share div{display:flex;flex-direction:column;gap:5px}
.article-share span{color:#bdb5ae;font-size:12px}
.article-share strong{font:600 18px var(--font-sans)}
.article-sidebar{position:sticky;top:110px;display:flex;flex-direction:column;gap:18px}
.article-back-link{padding:15px;border:1px solid var(--line);text-align:center;color:#6f675f;font-size:12px;font-weight:600}
.article-back-link:hover{border-color:var(--brown);color:var(--brown)}
.related-blog{background:#f7f5f1}
.related-blog .blog-card p{min-height:70px}

@media(max-width:1100px){
    .blog-layout{grid-template-columns:1fr;gap:42px}
    .blog-sidebar{position:static;display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}
    .blog-sidebar .blog-sidebar-cta{grid-column:1/-1}
    .article-layout{grid-template-columns:minmax(0,760px);gap:40px}
    .article-sidebar{position:static;display:grid;grid-template-columns:1fr auto;align-items:end}
    .blog-grid.compact{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:700px){
    .blog-grid,.blog-grid.compact{grid-template-columns:1fr}
    .blog-sidebar{grid-template-columns:1fr}
    .blog-sidebar .blog-sidebar-cta{grid-column:auto}
    .blog-card-body{padding:22px 19px}
    .blog-card h2{font-size:20px}
    .blog-article-header{padding:52px 0 45px}
    .blog-article-header h1{font-size:36px}
    .blog-article-header p{font-size:16px}
    .article-cover-wrap{margin-top:28px;padding:0}
    .article-layout{padding-top:42px;padding-bottom:55px}
    .article-content{font-size:16px}
    .article-content>p:first-child{font-size:18px}
    .article-content h2{font-size:27px}
    .article-content h3{font-size:22px}
    .article-share{align-items:flex-start;flex-direction:column}
    .article-share .btn{width:100%}
    .article-sidebar{grid-template-columns:1fr}
}

.dropdown-menu a.active{background:#f7f2ec;color:var(--brown-dark);padding-left:17px}
.footer-links .footer-sub-link a{padding-left:14px;color:#8f8984;font-size:12px}
.footer-links .footer-sub-link a::before{content:"—";margin-right:7px;color:#755238}
