:root {
  --ink: #121314;
  --ink-soft: #232529;
  --paper: #f4f4f1;
  --white: #ffffff;
  --line: #d7d7d2;
  --muted: #65686d;
  --accent: #123c54;
  --accent-dark: #0a2a3d;
  --accent-light: #83adc2;
  --whatsapp: #25d366;
  --shell: min(1180px, calc(100% - 40px));
  --shadow: 0 24px 70px rgba(0, 0, 0, .16);
  --mobile-bar-height: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { max-width: 100%; scroll-behavior: smooth; scroll-padding-top: 105px; -webkit-text-size-adjust: 100%; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.65; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 999; padding: 10px 16px; color: var(--white); background: var(--accent); }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.topbar { color: #ddd; background: #080909; font-size: .8rem; }
.topbar__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar__links { display: flex; align-items: center; gap: 20px; }
.topbar a:hover { color: var(--white); }
.topbar__whatsapp { order: -1; min-height: 28px; display: inline-flex; align-items: center; padding: 5px 13px; color: #071d0e; background: var(--whatsapp); border-radius: 999px; font-weight: 900; line-height: 1; }
.topbar .topbar__whatsapp:hover { color: #071d0e; background: #45e77e; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(18,19,20,.12); backdrop-filter: blur(14px); }
.nav-wrap { height: 82px; display: flex; align-items: center; gap: 32px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; background: var(--white); }
.brand img { width: 222px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 34px); margin-left: auto; font-size: .9rem; font-weight: 700; }
.desktop-nav a { position: relative; padding-block: 12px; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 7px; height: 2px; background: var(--accent); transition: right .2s ease; }
.desktop-nav a:hover::after { right: 0; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 22px; border: 1px solid transparent; border-radius: 0; font-weight: 800; letter-spacing: .01em; cursor: pointer; transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--compact { min-height: 44px; padding: 10px 18px; font-size: .88rem; }
.button--dark { color: var(--white); background: var(--ink); }
.button--dark:hover { background: var(--accent); }
.button--accent { color: var(--white); background: var(--accent); box-shadow: 8px 8px 0 rgba(18,19,20,.12); }
.button--accent:hover { background: var(--accent-dark); box-shadow: 5px 5px 0 rgba(18,19,20,.12); }
.button--outline-light { color: var(--white); border-color: rgba(255,255,255,.5); background: transparent; }
.button--outline-light:hover { color: var(--ink); border-color: var(--white); background: var(--white); }
.button--whatsapp { color: #071d0e; background: var(--whatsapp); }
.menu-toggle { width: 48px; height: 48px; display: none; place-items: center; padding: 12px; border: 0; background: var(--ink); cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 3px 0; background: var(--white); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-5px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 116px 0 auto; display: none; padding: 22px 20px 32px; background: var(--white); border-bottom: 4px solid var(--accent); box-shadow: var(--shadow); }
.mobile-menu.is-open { display: grid; }
.mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 800; font-size: 1.1rem; }

.eyebrow { margin: 0 0 18px; color: var(--accent); font-size: .78rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 2px; margin-right: 10px; vertical-align: middle; background: currentColor; }
.eyebrow--light { color: var(--accent-light); }
h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: -.035em; }
h1, h2 { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-weight: 700; text-transform: uppercase; }
h1 { font-size: clamp(3.25rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4.8rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }

.hero { position: relative; overflow: hidden; background: linear-gradient(130deg, #fff 0 54%, #e8e8e4 54%); }
.hero::before { content: ""; position: absolute; left: -40px; top: 42px; width: 180px; height: 360px; opacity: .045; background: repeating-linear-gradient(106deg, transparent 0 24px, #000 25px 33px); transform: skewX(-8deg); }
.hero__grid { min-height: min(750px, calc(100svh - 116px)); display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(45px, 7vw, 100px); padding-block: clamp(65px, 8vw, 100px); }
.hero__copy { position: relative; z-index: 2; }
.hero h1 span { color: var(--accent); }
.hero__lead { max-width: 640px; margin: 26px 0 34px; color: #3b3d40; font-size: clamp(1.08rem, 1.6vw, 1.3rem); line-height: 1.55; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; border-bottom: 2px solid var(--ink); }
.text-link:hover { color: var(--accent); border-color: var(--accent); }
.hero__facts { display: flex; gap: clamp(24px, 4vw, 52px); margin: 55px 0 0; }
.hero__facts div { padding-left: 14px; border-left: 3px solid var(--accent); }
.hero__facts dt { color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero__facts dd { margin: 1px 0 0; font-size: 1.35rem; font-weight: 900; line-height: 1.2; }
.hero__visual { position: relative; }
.hero__image-wrap { position: relative; box-shadow: var(--shadow); }
.hero__image-wrap::before { content: ""; position: absolute; inset: -15px 18px 18px -15px; z-index: -1; border: 2px solid var(--ink); }
.hero__image-wrap::after { content: ""; position: absolute; inset: auto 0 0; height: 38%; background: linear-gradient(transparent, rgba(0,0,0,.5)); pointer-events: none; }
.hero__image-wrap img { width: 100%; aspect-ratio: 1.34; object-fit: cover; filter: saturate(.85) contrast(1.04); }
.hero__stamp { position: absolute; right: -24px; bottom: -28px; z-index: 2; display: grid; min-width: 170px; padding: 14px 20px; color: var(--white); background: var(--ink); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero__stamp span { color: var(--accent-light); font-size: 1.55rem; letter-spacing: .02em; }
.ticker { overflow: hidden; color: var(--white); background: var(--ink); }
.ticker__track { width: max-content; min-width: 100%; display: flex; align-items: center; justify-content: center; gap: 25px; padding: 16px 26px; font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.ticker i { width: 5px; height: 5px; background: var(--accent); transform: rotate(45deg); }

.section { padding-block: clamp(80px, 10vw, 140px); }
.section--light { background: var(--paper); }
.section--white { background: var(--white); }
.section--dark { color: var(--white); background: var(--ink); }
.section-head { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 56px; }
.section-head > p { max-width: 500px; margin: 0; color: var(--muted); font-size: 1.06rem; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 260px; display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: clamp(28px, 4vw, 48px); background: var(--white); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .25s ease, background .25s ease; }
.service-card:hover { color: var(--white); background: var(--ink-soft); }
.service-card--featured { color: var(--white); background: var(--accent); }
.service-card__number { color: var(--accent); font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.service-card--featured .service-card__number { color: rgba(255,255,255,.75); }
.service-card h3 { margin-bottom: 18px; }
.service-card p { margin: 0; color: var(--muted); }
.service-card:hover p, .service-card--featured p { color: rgba(255,255,255,.8); }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 22px 0 0; padding: 0; list-style: none; }
.tag-list li { padding: 5px 10px; border: 1px solid rgba(255,255,255,.45); font-size: .72rem; font-weight: 800; text-transform: uppercase; }

.split-section { position: relative; overflow: hidden; }
.split-section::after { content: ""; position: absolute; right: -5%; top: -15%; width: 38%; height: 130%; opacity: .05; background: repeating-linear-gradient(105deg, transparent 0 28px, #fff 29px 40px); pointer-events: none; }
.split-section__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: clamp(60px, 9vw, 120px); }
.split-section__visual { position: relative; }
.split-section__visual::before { content: ""; position: absolute; inset: 22px -22px -22px 22px; border: 2px solid rgba(255,255,255,.2); }
.split-section__visual img { position: relative; width: 100%; aspect-ratio: 1.25; object-fit: cover; filter: grayscale(.15) contrast(1.04); }
.image-label { position: absolute; left: -18px; bottom: 26px; padding: 10px 15px; color: var(--white); background: var(--accent); font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.split-section__copy h2 { max-width: 600px; margin-bottom: 30px; }
.split-section__copy p { color: #c3c5c7; }
.split-section__copy .button { margin-top: 20px; }

.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(55px, 10vw, 150px); }
.about-copy { padding-top: 38px; }
.lead-copy { margin-bottom: 24px; color: var(--ink); font-size: clamp(1.35rem, 2vw, 1.7rem); font-weight: 800; line-height: 1.35; }
.about-copy > p:not(.lead-copy) { color: var(--muted); }
.inline-contact { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 40px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.inline-contact span { color: var(--muted); font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.inline-contact strong { font-size: 1.08rem; }
.inline-contact:hover strong { color: var(--accent); }

.section--gallery { color: var(--white); background: #25272a; }
.section-head--gallery > p { color: #b9bbbd; }
.gallery-social { display: inline-block; margin-top: 8px; color: var(--white); font-size: .82rem; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.55); }
.gallery-social:hover { color: var(--accent-light); border-color: var(--accent-light); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 12px; }
.gallery-item { position: relative; min-width: 0; overflow: hidden; padding: 0; border: 0; background: #111; cursor: zoom-in; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 42% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.76)); }
.gallery-item span { position: absolute; left: 18px; bottom: 14px; z-index: 1; color: var(--white); font-size: .78rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.gallery-item:hover img { transform: scale(1.055); filter: saturate(1.12); }

.documents { padding-block: 54px; color: var(--white); background: var(--accent); }
.documents__inner { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 60px; }
.documents .eyebrow { color: rgba(255,255,255,.75); }
.documents h2 { font-family: Arial, Helvetica, sans-serif; font-size: clamp(1.6rem, 3vw, 2.4rem); text-transform: none; }
.document-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.document-links a { display: flex; align-items: center; gap: 14px; padding: 17px; border: 1px solid rgba(255,255,255,.5); font-weight: 800; }
.document-links a:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.document-links span { padding: 4px 6px; color: var(--accent); background: var(--white); font-size: .65rem; font-weight: 900; }
.document-links a:hover span { color: var(--white); background: var(--accent); }

.contact-section { padding-block: clamp(80px, 10vw, 130px); color: var(--white); background: linear-gradient(120deg, #141516 0 58%, #1c1e20 58%); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 9vw, 120px); }
.contact-copy h2 { max-width: 520px; margin-bottom: 28px; }
.contact-copy > p:not(.eyebrow) { max-width: 520px; color: #bbbfc1; }
.whatsapp-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; max-width: 520px; margin: 34px 0; padding: 18px; color: #071d0e; background: var(--whatsapp); }
.whatsapp-card:hover { background: #45e77e; }
.whatsapp-card__icon { width: 42px; height: 42px; display: grid; place-items: center; border: 2px solid currentColor; border-radius: 50%; font-weight: 900; }
.whatsapp-card small, .whatsapp-card strong { display: block; }
.whatsapp-card small { font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.whatsapp-card strong { font-size: 1.05rem; }
.contact-details { display: grid; gap: 13px; font-style: normal; }
.contact-details a { display: grid; }
.contact-details small { color: #8e9295; font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.contact-details strong { font-size: 1rem; }
.contact-details a:hover strong { color: var(--accent-light); }
.contact-form { padding: clamp(25px, 4vw, 46px); color: var(--ink); background: var(--white); box-shadow: var(--shadow); }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 20px; font-size: .82rem; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 2px solid #c8c9c8; border-radius: 0; padding: 12px 3px; color: var(--ink); background: #fff; outline: none; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.check-label { grid-template-columns: auto 1fr !important; align-items: start; gap: 10px !important; color: var(--muted); font-size: .76rem !important; font-weight: 400 !important; line-height: 1.5; }
.check-label input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); }
.check-label a { color: var(--ink); text-decoration: underline; }
.form-status { min-height: 24px; margin: 2px 0 12px; color: var(--accent); font-size: .82rem; font-weight: 800; }
.form-status.is-error { color: #a52424; }
.form-status.is-success { color: #176b37; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.form-actions button:disabled { cursor: wait; opacity: .65; }
.form-note { margin: 16px 0 0; color: #777; font-size: .72rem; line-height: 1.45; }

.site-footer { padding-top: 70px; color: #bbb; background: #090a0a; }
.footer-main { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 50px; padding-bottom: 60px; }
.brand--footer { align-self: start; max-width: 230px; padding: 7px; }
.footer-main > div { display: grid; align-content: start; gap: 7px; }
.footer-title { margin: 0 0 8px; color: var(--white); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.footer-main a:not(.brand) { font-size: .86rem; }
.footer-main a:hover { color: var(--white); }
.footer-main a.footer-whatsapp { justify-self: start; width: max-content; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; margin-top: 7px; padding: 10px 16px; color: #071d0e; background: var(--whatsapp); border-radius: 999px; font-size: .9rem; font-weight: 900; line-height: 1; white-space: nowrap; transition: background .2s ease, transform .2s ease; }
.footer-main a.footer-whatsapp:hover { color: #071d0e; background: #45e77e; transform: translateY(-1px); }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid #303234; font-size: .78rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--white); }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 58px; height: 58px; display: grid; place-items: center; color: #071d0e; background: var(--whatsapp); border-radius: 50%; font-weight: 900; filter: drop-shadow(0 8px 20px rgba(0,0,0,.28)); transition: transform .2s ease, background .2s ease; }
.floating-whatsapp:hover { background: #45e77e; transform: translateY(-2px); }
.floating-whatsapp b { font-size: 1.2rem; }
.mobile-contact-bar { display: none; }
.lightbox { width: min(900px, calc(100% - 30px)); max-height: 90vh; padding: 0; border: 0; background: #080808; box-shadow: var(--shadow); }
.lightbox::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(4px); }
.lightbox img { width: 100%; max-height: 86vh; object-fit: contain; }
.lightbox__close { position: absolute; right: 10px; top: 10px; z-index: 2; width: 42px; height: 42px; border: 0; color: var(--white); background: rgba(0,0,0,.72); font-size: 1.8rem; cursor: pointer; }

/* Innenseiten */
.subpage-hero { position: relative; overflow: hidden; padding-block: clamp(65px, 9vw, 120px); color: var(--white); background: var(--ink); }
.subpage-hero::after { content: ""; position: absolute; right: -4%; top: -50%; width: 42%; height: 210%; opacity: .06; background: repeating-linear-gradient(105deg, transparent 0 30px, #fff 31px 43px); transform: rotate(-4deg); }
.subpage-hero .shell { position: relative; z-index: 1; }
.subpage-hero h1 { max-width: 900px; font-size: clamp(3.1rem, 7vw, 6.2rem); }
.subpage-hero p:last-child { max-width: 700px; margin: 24px 0 0; color: #c7c9ca; font-size: 1.1rem; }
.breadcrumbs { margin-bottom: 28px; color: #9da0a2; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--white); }
.legal-section { padding-block: clamp(65px, 9vw, 110px); background: var(--white); }
.legal-grid { display: grid; grid-template-columns: 240px minmax(0, 760px); justify-content: center; gap: clamp(50px, 8vw, 100px); }
.legal-aside { align-self: start; position: sticky; top: 128px; display: grid; gap: 10px; padding-top: 8px; }
.legal-aside a { padding: 8px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: .8rem; font-weight: 800; }
.legal-aside a:hover { color: var(--accent); }
.legal-content h2 { margin: 55px 0 18px; font-family: Arial, Helvetica, sans-serif; font-size: clamp(1.55rem, 2.8vw, 2.15rem); line-height: 1.2; text-transform: none; letter-spacing: -.02em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 32px 0 10px; font-size: 1.08rem; letter-spacing: -.01em; }
.legal-content p, .legal-content li { color: #4f5256; }
.legal-content a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-content ul { padding-left: 20px; }
.legal-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 28px 0 38px; background: var(--line); border: 1px solid var(--line); }
.legal-facts div { padding: 19px; background: var(--paper); }
.legal-facts dt { color: var(--muted); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.legal-facts dd { margin: 4px 0 0; font-weight: 800; }
.notice-box { margin: 32px 0; padding: 22px; border-left: 4px solid var(--accent); background: var(--paper); }
.notice-box p:last-child { margin-bottom: 0; }
.simple-cta { padding-block: 52px; color: var(--white); background: var(--accent); }
.simple-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.simple-cta h2 { font-family: Arial, Helvetica, sans-serif; font-size: clamp(1.6rem, 3vw, 2.4rem); text-transform: none; }
.simple-cta p { margin: 8px 0 0; color: rgba(255,255,255,.82); }
.simple-cta .button { flex: 0 0 auto; }
.partner-intro { max-width: 760px; margin-bottom: 45px; color: var(--muted); font-size: 1.08rem; }
.partner-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.partner-card { min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; gap: 25px; padding: 28px; background: var(--white); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partner-card:hover { color: var(--white); background: var(--ink); }
.partner-card small { color: var(--muted); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.partner-card:hover small { color: #aaa; }
.partner-card strong { max-width: 240px; font-size: 1.2rem; line-height: 1.25; }
.partner-card span { color: var(--accent); font-size: .78rem; font-weight: 900; }

/* Hosserhoiz */
.wood-page { --accent: #d6672b; --accent-dark: #aa471c; --accent-light: #ee8d4f; --paper: #f3efe9; }
.wood-hero { overflow: hidden; color: var(--white); background: #17130f; }
.wood-hero__grid { min-height: min(720px, calc(100svh - 116px)); display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; }
.wood-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(65px, 8vw, 105px) clamp(35px, 7vw, 90px) clamp(65px, 8vw, 105px) max(24px, calc((100vw - 1180px) / 2)); }
.wood-hero__copy h1 { margin-bottom: 25px; font-size: clamp(3.1rem, 6.4vw, 6rem); }
.wood-hero__copy h1 span { color: #ee8d4f; }
.wood-hero__copy > p:not(.eyebrow) { max-width: 600px; color: #c7c0b8; font-size: 1.12rem; }
.wood-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 24px; }
.wood-hero__visual { position: relative; min-height: 500px; }
.wood-hero__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #17130f 0, transparent 22%), linear-gradient(0deg, rgba(0,0,0,.5), transparent 45%); pointer-events: none; }
.wood-hero__visual > img { width: 100%; height: 100%; object-fit: cover; }
.wood-brand-photo { position: absolute; left: clamp(20px, 4vw, 55px); bottom: 35px; z-index: 2; width: 148px; aspect-ratio: 1; border: 7px solid rgba(255,255,255,.9); object-fit: cover; box-shadow: 0 18px 40px rgba(0,0,0,.35); }
.wood-strip { padding-block: 22px; color: #21160f; background: #e6d7c6; }
.wood-strip__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.wood-strip div { display: grid; gap: 3px; padding-left: 16px; border-left: 3px solid var(--accent); }
.wood-strip strong { font-size: .92rem; }
.wood-strip span { color: #705f53; font-size: .78rem; }
.wood-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.wood-card { padding: clamp(26px, 3.5vw, 42px); background: var(--white); border-top: 4px solid var(--accent); }
.wood-card h3 { margin-bottom: 16px; }
.wood-card p { margin: 0; color: var(--muted); }
.wood-gallery { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: repeat(2, 330px); gap: 12px; }
.wood-gallery figure { position: relative; overflow: hidden; margin: 0; background: #21160f; }
.wood-gallery figure:first-child { grid-row: 1 / 3; }
.wood-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.wood-gallery figure:hover img { transform: scale(1.04); }
.wood-gallery figcaption { position: absolute; inset: auto 12px 12px; padding: 7px 10px; color: var(--white); background: rgba(23,19,15,.83); font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.delivery-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(55px, 9vw, 120px); }
.delivery-image { position: relative; }
.delivery-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow); }
.delivery-copy h2 { margin-bottom: 26px; }
.delivery-copy > p { color: var(--muted); }
.delivery-list { display: grid; gap: 0; margin: 30px 0; padding: 0; list-style: none; counter-reset: delivery; }
.delivery-list li { position: relative; padding: 17px 0 17px 45px; border-top: 1px solid var(--line); counter-increment: delivery; }
.delivery-list li:last-child { border-bottom: 1px solid var(--line); }
.delivery-list li::before { content: counter(delivery, decimal-leading-zero); position: absolute; left: 0; top: 18px; color: var(--accent); font-size: .72rem; font-weight: 900; }
.wood-contact { padding-block: clamp(70px, 9vw, 110px); color: var(--white); background: linear-gradient(120deg, #1a140f, #2a1d14); }
.wood-contact__inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; }
.wood-contact h2 { max-width: 760px; }
.wood-contact p { max-width: 680px; margin: 20px 0 0; color: #c8bfb8; }
.wood-contact__actions { display: grid; gap: 10px; min-width: 240px; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .nav-cta { margin-left: auto; }
  .menu-toggle { display: block; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 45px; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2; }
}

@media (max-width: 800px) {
  :root { --shell: min(100% - 30px, 680px); }
  html { scroll-padding-top: 78px; }
  body { padding-bottom: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom, 0px)); }
  .topbar { display: none; }
  .nav-wrap { height: 76px; }
  .brand img { width: 184px; }
  .nav-cta { display: none; }
  .mobile-menu { inset-block-start: 76px; max-height: calc(100dvh - 76px - var(--mobile-bar-height) - env(safe-area-inset-bottom, 0px)); overflow-y: auto; overscroll-behavior: contain; }
  .hero { background: linear-gradient(180deg, #fff 0 61%, #e8e8e4 61%); }
  .hero__grid { min-height: 0; grid-template-columns: 1fr; gap: 48px; padding-top: 52px; padding-bottom: 72px; }
  .hero__copy { max-width: 650px; }
  .hero__lead { font-size: 1.05rem; }
  .hero__visual { width: calc(100% - 12px); margin-left: 12px; }
  .hero__image-wrap img { aspect-ratio: 4 / 3; }
  .hero__stamp { right: -8px; }
  .ticker__track { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .section { padding-block: 72px; }
  .section-head, .split-section__grid, .about-grid, .documents__inner, .contact-grid { grid-template-columns: 1fr; }
  .section-head { gap: 20px; margin-bottom: 38px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .split-section__grid { gap: 52px; }
  .split-section__copy { order: -1; }
  .about-copy { padding-top: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--tall { grid-row: span 1; }
  .documents__inner { gap: 30px; }
  .document-links { grid-template-columns: 1fr; }
  .contact-section { padding-block: 72px; background: var(--ink); }
  .contact-grid { gap: 46px; }
  .contact-form { padding: 28px 24px; }
  .contact-form input, .contact-form select, .contact-form textarea { min-height: 50px; font-size: 16px; }
  .contact-form textarea { min-height: 132px; }
  .form-actions .button { min-height: 54px; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-main > div:last-child { grid-column: auto; }
  .brand--footer { grid-column: 1 / -1; }
  .floating-whatsapp { display: none; }
  .mobile-contact-bar { position: fixed; inset-inline: 0; bottom: 0; z-index: 999; width: 100%; height: auto; min-height: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom, 0px)); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding-bottom: env(safe-area-inset-bottom, 0px); background: var(--ink); box-shadow: 0 -8px 30px rgba(0,0,0,.16); isolation: isolate; transform: translateZ(0); }
  .mobile-contact-bar a { min-width: 0; min-height: var(--mobile-bar-height); display: grid; place-items: center; padding: 12px 8px; color: var(--white); background: var(--ink); font-size: .95rem; font-weight: 900; line-height: 1.1; white-space: nowrap; touch-action: manipulation; }
  .mobile-contact-bar a:last-child { color: #071d0e; background: var(--whatsapp); }
  body:has(input:focus, textarea:focus, select:focus) .mobile-contact-bar { display: none; }
  .subpage-hero { padding-block: 62px; }
  .legal-section { padding-block: 64px; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-aside { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
  .simple-cta__inner { align-items: flex-start; flex-direction: column; }
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wood-hero__grid, .delivery-grid { grid-template-columns: 1fr; }
  .wood-hero__copy { padding-block: 58px; padding-inline: max(24px, calc((100vw - 680px) / 2)); }
  .wood-hero__visual { min-height: 420px; }
  .wood-hero__visual::after { background: linear-gradient(0deg, rgba(0,0,0,.65), transparent 55%); }
  .wood-products { grid-template-columns: 1fr; }
  .wood-gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 240px); }
  .wood-gallery figure:first-child { grid-row: span 2; }
  .wood-contact__inner { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  :root { --shell: calc(100% - 24px); }
  .nav-wrap { gap: 14px; }
  .brand img { width: 154px; }
  h1 { max-width: 100%; font-size: clamp(2.65rem, 13.5vw, 4rem); line-height: 1; overflow-wrap: anywhere; text-wrap: balance; }
  h2 { font-size: clamp(2rem, 10.5vw, 3.1rem); line-height: 1.05; text-wrap: balance; }
  h3 { line-height: 1.15; }
  .hero__grid { gap: 42px; padding-top: 44px; padding-bottom: 64px; }
  .hero__lead { margin-block: 20px 28px; }
  .hero__actions { align-items: stretch; gap: 20px; }
  .hero__actions .button { width: 100%; }
  .text-link { width: max-content; }
  .hero__facts { gap: 18px; margin-top: 42px; }
  .hero__facts div { padding-left: 9px; }
  .hero__facts dd { font-size: 1.1rem; }
  .hero__image-wrap::before { inset: -9px 12px 12px -9px; }
  .hero__stamp { min-width: 140px; padding: 10px 14px; }
  .service-card { min-height: 0; grid-template-columns: 38px 1fr; gap: 12px; padding: 28px 20px; }
  .inline-contact { align-items: flex-start; flex-direction: column; gap: 4px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 255px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-actions .button { width: 100%; }
  .contact-form { padding: 24px 18px; }
  .whatsapp-card { grid-template-columns: auto minmax(0, 1fr); }
  .whatsapp-card > span:last-child { display: none; }
  .contact-details a, .legal-content a { overflow-wrap: anywhere; }
  .site-footer { padding-top: 56px; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; }
  .brand--footer, .footer-main > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-block: 20px; }
  .legal-facts { grid-template-columns: 1fr; }
  .legal-aside { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .wood-strip__inner { grid-template-columns: 1fr; gap: 15px; }
  .wood-hero__copy { padding-block: 48px; }
  .wood-hero__visual { min-height: 340px; }
  .wood-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(5, 240px); }
  .wood-gallery figure:first-child { grid-row: auto; }
  .wood-contact__actions { min-width: 0; }
}

@media (hover: none) {
  .service-card:not(.service-card--featured):hover { color: var(--ink); background: var(--white); }
  .service-card:not(.service-card--featured):hover p { color: var(--muted); }
  .partner-card:hover { color: var(--ink); background: var(--white); }
  .partner-card:hover small { color: var(--muted); }
  .gallery-item:hover img, .wood-gallery figure:hover img { transform: none; filter: none; }
  .button:hover { transform: none; }
}

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