:root {
  --bg: #fff8ef;
  --bg-soft: #f3e6d5;
  --surface: #ffffff;
  --surface-soft: #fffaf3;
  --text: #231711;
  --muted: #74665b;
  --line: rgba(55, 35, 22, .14);
  --brand: #7a4a2d;
  --brand-dark: #3b2418;
  --brand-mid: #5b341f;
  --gold: #c99355;
  --sand: #e6c8a5;
  --shadow: 0 24px 75px rgba(55, 35, 22, .13);
  --shadow-soft: 0 18px 50px rgba(55, 35, 22, .08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% -10%, rgba(201, 147, 85, .24), transparent 32rem),
    radial-gradient(circle at 90% 15%, rgba(122, 74, 45, .16), transparent 28rem),
    linear-gradient(180deg, var(--bg), #fff 42%, var(--bg));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--brand-dark);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 248, 239, .83);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease, background .2s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 40px rgba(55, 35, 22, .08);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
}

.brand-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-weight: 900;
  letter-spacing: -.06em;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 7px, transparent 7px 14px),
    linear-gradient(145deg, var(--brand-dark), var(--brand));
  box-shadow: 0 18px 42px rgba(59, 36, 24, .24);
}

.brand-text strong,
.brand-text small,
.footer-brand strong,
.footer-brand small {
  display: block;
}

.brand-text strong,
.footer-brand strong {
  font-size: 1.02rem;
  line-height: 1.1;
}

.brand-text small,
.footer-brand small {
  color: var(--muted);
  font-size: .8rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.main-nav a {
  padding: .72rem .9rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: .93rem;
  font-weight: 800;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brand-dark);
  background: rgba(122, 74, 45, .1);
}

.main-nav .nav-cta {
  margin-left: .3rem;
  color: #fff;
  background: var(--brand-dark);
  box-shadow: 0 12px 30px rgba(59, 36, 24, .18);
}

.main-nav .nav-cta:hover {
  color: #fff;
  background: var(--brand);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: calc(100svh - 82px);
  display: grid;
  align-items: center;
  padding: 80px 0;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 70%;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(59,36,24,.05) 1px, transparent 1px),
    linear-gradient(rgba(59,36,24,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to top, black, transparent);
}

.hero-layout,
.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 7.4vw, 6.8rem);
  line-height: .9;
  letter-spacing: -.08em;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -.06em;
}

h3 {
  margin-bottom: .65rem;
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark {
  color: #fff;
  background: var(--brand-dark);
  box-shadow: 0 16px 38px rgba(59, 36, 24, .22);
}

.btn-dark:hover {
  background: var(--brand);
}

.btn-light {
  color: var(--brand-dark);
  background: rgba(255,255,255,.72);
  border-color: var(--line);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 2rem;
}

.hero-facts span {
  padding: .58rem .82rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  color: var(--muted);
  font-size: .88rem;
  font-weight: 850;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 12%, rgba(255,255,255,.42), transparent 18rem),
    linear-gradient(145deg, #d8b181, #734225 58%, #3b2418);
  box-shadow: var(--shadow);
}

.wood-board {
  position: absolute;
  left: 44px;
  right: 44px;
  height: 150px;
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 25px 70px rgba(31,20,13,.2);
  background:
    linear-gradient(90deg, rgba(255,255,255,.18), transparent 18%, rgba(255,255,255,.08) 43%, transparent 70%),
    repeating-linear-gradient(90deg, #6a3b22 0 28px, #8b5532 28px 56px, #b9824d 56px 84px, #744428 84px 112px);
}

.board-a {
  top: 62px;
  transform: rotate(-3deg);
}

.board-b {
  top: 230px;
  transform: rotate(2deg);
  filter: brightness(1.1);
}

.board-c {
  top: 398px;
  transform: rotate(-1.5deg);
  filter: saturate(.85);
}

.hero-badge {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  padding: 1.35rem;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 28px;
  color: #fff;
  background: rgba(35, 23, 17, .74);
  backdrop-filter: blur(16px);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge strong {
  font-size: 1.2rem;
}

.hero-badge span {
  margin-top: .25rem;
  color: rgba(255,255,255,.72);
}

.section {
  padding: 98px 0;
}

.intro-grid,
.split-layout,
.content-grid,
.contact-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.intro-panel,
.info-card,
.page-hero-card,
.cta-box,
.showroom-band,
.map-box,
.contact-details,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
}

.intro-panel,
.info-card,
.cta-box,
.showroom-band,
.map-box,
.contact-details,
.contact-form {
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.intro-panel p,
.section-head p,
.split-copy p,
.content-main p,
.value-card p,
.process-card p,
.service-feature p,
.product-card p,
.cta-box p,
.showroom-band p,
.map-box p {
  color: var(--muted);
}

.quick-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
}

.quick-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}

.quick-card:hover,
.product-mini:hover,
.reference-card:hover,
.product-card:hover,
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.quick-card span,
.service-feature span,
.process-card strong,
.timeline-item span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--brand-dark);
  background: var(--sand);
  font-weight: 900;
}

.quick-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.split-section,
.muted {
  background:
    radial-gradient(circle at 20% 0, rgba(255,255,255,.65), transparent 30rem),
    var(--bg-soft);
}

.split-layout {
  align-items: center;
}

.split-image {
  min-height: 520px;
  overflow: hidden;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.22), transparent),
    repeating-linear-gradient(90deg, #60371f 0 34px, #8f5a35 34px 68px, #c68e57 68px 102px, #744226 102px 136px);
}

.image-master {
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.28), transparent 16rem),
    repeating-linear-gradient(45deg, #5d351f 0 32px, #8a5634 32px 64px, #c48e58 64px 96px);
}

.text-link {
  display: inline-flex;
  margin-top: .75rem;
  color: var(--brand-dark);
  font-weight: 900;
}

.text-link::after {
  content: "→";
  margin-left: .45rem;
  transition: transform .2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.section-head {
  max-width: 770px;
  margin-bottom: 2.4rem;
}

.product-row,
.product-grid,
.gallery-grid,
.values-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}

.product-row {
  grid-template-columns: repeat(4, 1fr);
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid-small {
  grid-template-columns: repeat(3, 1fr);
}

.values-grid,
.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.product-mini,
.product-card,
.reference-card,
.value-card,
.process-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.product-mini {
  overflow: hidden;
  display: grid;
}

.product-mini strong {
  padding: 1rem;
}

.product-surface,
.ref-image {
  display: block;
  min-height: 170px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent),
    repeating-linear-gradient(90deg, #693d24 0 28px, #8a5736 28px 56px, #be8550 56px 84px);
}

.product-card {
  overflow: hidden;
}

.product-card > div {
  padding: 1.15rem 1.15rem .25rem;
}

.product-card .text-link {
  margin: .75rem 1.15rem 1.15rem;
}

.warm {
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent),
    repeating-linear-gradient(90deg, #6c3e23 0 30px, #9c633b 30px 60px, #c98e58 60px 90px);
}

.classic {
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent),
    repeating-linear-gradient(45deg, #624029 0 22px, #8b5c38 22px 44px, #b98252 44px 66px);
}

.modern {
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent),
    repeating-linear-gradient(90deg, #7a7168 0 28px, #9b9185 28px 56px, #cbc1b4 56px 84px);
}

.detail {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.26), transparent 12rem),
    repeating-linear-gradient(135deg, #5b341f 0 26px, #9a623b 26px 52px, #c99355 52px 78px);
}

.showroom-band,
.map-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.page-hero {
  padding: 88px 0 72px;
}

.page-hero-card {
  padding: 2rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,.84), rgba(255,255,255,.56)),
    radial-gradient(circle at 20% 0, rgba(201,147,85,.22), transparent 22rem);
}

.page-hero-card strong,
.page-hero-card span {
  display: block;
}

.page-hero-card strong {
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -.04em;
}

.page-hero-card span {
  margin-top: .75rem;
  color: var(--muted);
}

.content-main {
  max-width: 780px;
}

.check-list {
  display: grid;
  gap: .75rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--muted);
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .06rem;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-size: .72rem;
}

.timeline-list {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
}

.timeline-item span {
  width: auto;
  min-width: 82px;
  padding: 0 .8rem;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.value-card,
.process-card {
  padding: 1.3rem;
}

.service-stack {
  display: grid;
  gap: 1rem;
}

.service-feature {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
}

.service-feature p {
  margin-bottom: 0;
}

.process-card strong {
  margin-bottom: 1.2rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.4rem;
}

.filter-btn {
  padding: .7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.76);
  font-weight: 900;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  color: #fff;
  background: var(--brand-dark);
}

.reference-card {
  overflow: hidden;
}

.reference-card > div {
  display: grid;
  gap: .2rem;
  padding: 1rem;
}

.reference-card small {
  color: var(--muted);
  font-weight: 800;
}

.ref-1 { background: linear-gradient(135deg, rgba(255,255,255,.15), transparent), repeating-linear-gradient(90deg, #704026 0 32px, #b77742 32px 64px, #d6a46d 64px 96px); }
.ref-2 { background: linear-gradient(135deg, rgba(255,255,255,.15), transparent), repeating-linear-gradient(45deg, #4e3324 0 28px, #8f5a38 28px 56px, #bd8959 56px 84px); }
.ref-3 { background: linear-gradient(135deg, rgba(255,255,255,.15), transparent), repeating-linear-gradient(135deg, #5b341f 0 30px, #a96d42 30px 60px, #d6a46d 60px 90px); }
.ref-4 { background: linear-gradient(135deg, rgba(255,255,255,.15), transparent), repeating-linear-gradient(90deg, #8f5f3c 0 36px, #c99057 36px 72px, #e2ba85 72px 108px); }
.ref-5 { background: linear-gradient(135deg, rgba(255,255,255,.15), transparent), repeating-linear-gradient(90deg, #5e5550 0 34px, #8a8179 34px 68px, #bdb3aa 68px 102px); }
.ref-6 { background: linear-gradient(135deg, rgba(255,255,255,.15), transparent), repeating-linear-gradient(45deg, #663d25 0 20px, #9a623b 20px 40px, #c48e58 40px 60px); }
.ref-7 { background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.24), transparent 12rem), repeating-linear-gradient(90deg, #5b341f 0 28px, #7a4a2d 28px 56px, #a66b40 56px 84px); }
.ref-8 { background: linear-gradient(135deg, rgba(255,255,255,.15), transparent), repeating-linear-gradient(90deg, #77716b 0 34px, #aaa39b 34px 68px, #d1cac2 68px 102px); }
.ref-9 { background: linear-gradient(135deg, rgba(255,255,255,.15), transparent), repeating-linear-gradient(0deg, #603820 0 32px, #9e653b 32px 64px, #c48e58 64px 96px); }
.ref-10 { background: linear-gradient(135deg, rgba(255,255,255,.15), transparent), repeating-linear-gradient(45deg, #6a4128 0 14px, #8a5736 14px 28px, #bc8550 28px 42px); }
.ref-11 { background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.24), transparent 13rem), repeating-linear-gradient(90deg, #4c2f20 0 30px, #835232 30px 60px, #b77c49 60px 90px); }
.ref-12 { background: linear-gradient(135deg, rgba(255,255,255,.15), transparent), repeating-linear-gradient(90deg, #4b3323 0 24px, #795439 24px 48px, #a37750 48px 72px); }

.reference-card.is-hidden,
.product-card.is-hidden {
  display: none;
}

.cta-section {
  padding-top: 40px;
}

.cta-box {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(201,147,85,.22), transparent 24rem),
    rgba(255,255,255,.82);
}

.cta-box h2 {
  max-width: 850px;
  margin-inline: auto;
}

.cta-box p {
  max-width: 720px;
  margin-inline: auto;
}

.cta-box .hero-actions {
  justify-content: center;
}

.contact-layout {
  grid-template-columns: .82fr 1.18fr;
}

.contact-details dl {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.contact-details dt {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: .2rem 0 0;
  font-weight: 850;
}

.contact-details a:hover {
  color: var(--brand);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: .45rem;
  color: var(--brand-dark);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: .9rem 1rem;
  color: var(--text);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(122, 74, 45, .12);
}

.form-note {
  color: var(--muted);
  font-size: .9rem;
  margin: 0;
}

.legal-text {
  max-width: 860px;
}

.legal-text h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
}

.site-footer {
  padding: 58px 0 26px;
  color: rgba(255,255,255,.74);
  background:
    radial-gradient(circle at 20% 0, rgba(201,147,85,.2), transparent 22rem),
    #21150f;
}

.site-footer .brand-icon {
  box-shadow: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3rem;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-text {
  max-width: 420px;
  margin-top: 1rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-cols h3 {
  color: #fff;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-cols a,
.footer-cols p {
  display: block;
  margin: .4rem 0;
  color: rgba(255,255,255,.72);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 24px;
  font-size: .92rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 1rem;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--brand-dark);
  box-shadow: 0 16px 38px rgba(59, 36, 24, .24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-box {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 1100;
  width: min(720px, calc(100% - 36px));
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.cookie-box p {
  color: var(--muted);
  margin: 0;
  font-size: .92rem;
}

.cookie-box.hidden {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .btn,
  .quick-card,
  .product-mini,
  .reference-card,
  .product-card,
  .value-card {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero-layout,
  .page-hero-grid,
  .intro-grid,
  .split-layout,
  .content-grid,
  .contact-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .product-row,
  .product-grid,
  .gallery-grid,
  .values-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 82px 20px auto 20px;
    display: grid;
    gap: .35rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .18s ease, transform .18s ease;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 1rem;
  }

  .main-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding: 60px 0 72px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 5rem);
  }

  .hero-visual {
    min-height: 420px;
    border-radius: 32px;
  }

  .wood-board {
    left: 24px;
    right: 24px;
    height: 105px;
  }

  .board-a {
    top: 38px;
  }

  .board-b {
    top: 156px;
  }

  .board-c {
    top: 274px;
  }

  .hero-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .showroom-band,
  .map-box,
  .cookie-box {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .brand-text small {
    display: none;
  }

  .product-row,
  .product-grid,
  .gallery-grid,
  .values-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item,
  .service-feature {
    grid-template-columns: 1fr;
  }

  .page-hero-card strong {
    font-size: 1.7rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin: .75rem 1.15rem 1.15rem;
}

.card-actions .text-link {
  margin: 0;
}

.image-zoom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: .62rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(255,255,255,.82);
  font-weight: 900;
  font-size: .9rem;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.image-zoom-btn::before {
  content: "⌕";
  margin-right: .35rem;
  font-weight: 900;
}

.image-zoom-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  background: var(--brand-dark);
}

.ref-zoom {
  margin: 0 1rem 1rem;
  width: calc(100% - 2rem);
}

.product-surface[data-lightbox-open],
.ref-image[data-lightbox-open] {
  cursor: zoom-in;
  position: relative;
}

.product-surface[data-lightbox-open]::after,
.ref-image[data-lightbox-open]::after {
  content: "Vergrößern";
  position: absolute;
  right: .85rem;
  bottom: .85rem;
  padding: .42rem .65rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(35, 23, 17, .72);
  backdrop-filter: blur(10px);
  font-size: .78rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
}

.product-mini:hover .product-surface[data-lightbox-open]::after,
.product-card:hover .product-surface[data-lightbox-open]::after,
.reference-card:hover .ref-image[data-lightbox-open]::after {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 13, 9, .78);
  backdrop-filter: blur(10px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(860px, calc(100svh - 48px));
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 34px 120px rgba(0,0,0,.38);
  transform: scale(.96);
  transition: transform .2s ease;
}

.lightbox.is-open .lightbox-dialog {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  color: #fff;
  background: rgba(35, 23, 17, .76);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.lightbox-image {
  min-height: 540px;
  background-size: cover;
  background-position: center;
}

.lightbox-caption {
  display: grid;
  gap: .2rem;
  padding: 1.2rem 1.4rem;
  color: var(--text);
  background: #fff;
}

.lightbox-caption strong {
  font-size: 1.25rem;
}

.lightbox-caption span {
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 820px) {
  .lightbox {
    padding: 14px;
  }

  .lightbox-dialog {
    border-radius: 24px;
    max-height: calc(100svh - 28px);
  }

  .lightbox-image {
    min-height: 380px;
  }

  .card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .card-actions .text-link,
  .image-zoom-btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .lightbox-image {
    min-height: 300px;
  }

  .lightbox-caption {
    padding: 1rem;
  }
}
