:root {
  --gold: #fbb900;
  --gold-deep: #a47700;
  --ink: #171815;
  --ink-soft: #1d1f1b;
  --surface: #232520;
  --surface-raised: #2a2c26;
  --surface-light: #33352f;
  --cream: #f3efe5;
  --cream-muted: #d2cbbd;
  --muted: #aaa394;
  --text-dark: #2a2c26;
  --line: rgba(243, 239, 229, 0.13);
  --line-strong: rgba(243, 239, 229, 0.24);
  --header-height: 92px;
  --container: 1240px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ink);
  color: var(--cream);
  font-family: "Segoe UI", Verdana, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

code {
  font-family: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--gold);
  color: var(--text-dark);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(15, 16, 14, 0.88), rgba(15, 16, 14, 0.63));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: height 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(23, 24, 21, 0.95);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

.brand {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand__surface {
  display: block;
  width: 190px;
  aspect-ratio: 928 / 324;
}

.brand__surface img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.site-nav > a:not(.button) {
  position: relative;
  padding: 12px 0;
  color: rgba(243, 239, 229, 0.8);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button).is-active {
  color: var(--cream);
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  display: block;
  width: 25px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle__icon {
  position: relative;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle__icon::before {
  top: -7px;
}

.menu-toggle__icon::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  border-radius: 1px;
  background: var(--gold);
  color: var(--text-dark);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #ffd044;
  border-color: #ffd044;
}

.button--small {
  min-height: 42px;
  padding: 10px 17px;
}

.button--ghost {
  border-color: rgba(243, 239, 229, 0.48);
  background: transparent;
  color: var(--cream);
}

.button--ghost:hover {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--text-dark);
}

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

.button--dark:hover {
  border-color: #2a2c26;
  background: #2a2c26;
  color: var(--cream);
}

.button--outline-dark {
  border-color: rgba(23, 24, 21, 0.48);
  background: transparent;
  color: var(--text-dark);
}

.button--outline-dark:hover {
  border-color: var(--ink);
  background: rgba(23, 24, 21, 0.08);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 21px;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow--dark {
  color: var(--text-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: max(760px, 100svh);
  place-items: center start;
  overflow: hidden;
  scroll-margin-top: 0;
  background: var(--ink);
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(10, 11, 9, 0.92) 0%, rgba(10, 11, 9, 0.79) 31%, rgba(10, 11, 9, 0.22) 67%, rgba(10, 11, 9, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 45%, rgba(0, 0, 0, 0.58));
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 68px);
  padding-bottom: 90px;
}

.hero h1,
.section-heading h2,
.showroom-copy h2,
.contact-copy h2,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 930px;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.35);
}

.hero h1 span,
.section-heading h2 span,
.showroom-copy h2 span,
.contact-copy h2 span {
  color: var(--gold);
}

.hero__lead {
  max-width: 650px;
  margin: 31px 0 0;
  color: rgba(243, 239, 229, 0.8);
  font-size: clamp(1.03rem, 1.4vw, 1.24rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: var(--cream-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  text-transform: uppercase;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 0s linear 180ms;
}

.cookie-consent-decided .scroll-cue {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.scroll-cue__indicator {
  position: relative;
  display: block;
  width: 18px;
  height: 38px;
}

.scroll-cue__indicator::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 28px;
  content: "";
  animation: scroll-down 1.8s ease-in-out infinite;
  background: var(--gold);
}

.scroll-cue__indicator::after {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 12px;
  height: 12px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  content: "";
  transform: translateX(-50%) rotate(45deg);
  transform-origin: center;
}

.section {
  padding-block: clamp(88px, 10vw, 142px);
}

.section--intro {
  background: var(--ink-soft);
}

.section-heading {
  margin-bottom: clamp(48px, 7vw, 82px);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(45px, 8vw, 118px);
}

.section-heading h2,
.showroom-copy h2,
.contact-copy h2 {
  font-size: clamp(2.55rem, 4.8vw, 5rem);
}

.section-heading--split > p,
.section-heading--center > p,
.showroom-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--cream-muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

.section-heading--center {
  max-width: 830px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center h2 {
  margin-bottom: 27px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.13);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(251, 185, 0, 0.45);
  box-shadow: var(--shadow);
}

.service-card__media {
  position: relative;
  height: clamp(260px, 26vw, 390px);
  margin: 0;
  overflow: hidden;
  background: #25251f;
}

.service-card__media picture,
.service-card__media img {
  width: 100%;
  height: 100%;
}

.service-card__media img {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card__media.service-card__media--malerei img {
  object-position: center 42%;
}

.service-card:hover .service-card__media img {
  transform: scale(1.035);
}

.service-card__number {
  position: absolute;
  bottom: 13px;
  left: 18px;
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-card__content {
  padding: clamp(25px, 3vw, 39px);
}

.service-card h3,
.value-card h3,
.reference-card h3,
.history-block h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.service-card p,
.value-card p,
.reference-card p {
  margin: 17px 0 0;
  color: var(--cream-muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.parallax {
  --parallax-offset: 0px;
  position: relative;
  display: grid;
  min-height: clamp(480px, 60vw, 670px);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.parallax__media {
  position: absolute;
  z-index: -3;
  inset: -14%;
  transform: translate3d(0, var(--parallax-offset), 0) scale(1.06);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax--parkett.is-image-ready .parallax__media {
  background-image: image-set(
    url("/assets/images/parallax-parkett-960.webp") 1x,
    url("/assets/images/parallax-parkett-1920.webp") 2x
  );
}

.parallax--wand.is-image-ready .parallax__media {
  background-image: image-set(
    url("/assets/images/parallax-malerei-960.webp") 1x,
    url("/assets/images/parallax-malerei-1980.webp") 2x
  );
}

.parallax__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 15, 13, 0.87), rgba(14, 15, 13, 0.36) 65%, rgba(14, 15, 13, 0.54));
}

.parallax--wand .parallax__shade {
  background: linear-gradient(90deg, rgba(14, 15, 13, 0.44), rgba(14, 15, 13, 0.54) 38%, rgba(14, 15, 13, 0.88));
}

.parallax__content {
  position: relative;
  z-index: 2;
}

.parallax__content--right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.parallax__content--right .eyebrow {
  flex-direction: row-reverse;
}

.parallax__statement {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
  text-shadow: 0 7px 28px rgba(0, 0, 0, 0.42);
}

.parallax__statement span {
  color: var(--gold);
}

.section--why {
  background: var(--ink);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-card {
  min-height: 260px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.value-card:hover {
  background: rgba(251, 185, 0, 0.035);
}

.value-card__index {
  display: block;
  margin-bottom: 50px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.history-block {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(35px, 7vw, 100px);
  margin-top: clamp(82px, 10vw, 138px);
  padding: clamp(35px, 6vw, 74px);
  border: 1px solid rgba(251, 185, 0, 0.3);
  background: linear-gradient(135deg, rgba(251, 185, 0, 0.07), rgba(251, 185, 0, 0.015));
}

.history-block__copy p {
  margin: 0 0 20px;
  color: var(--cream-muted);
  font-size: 1.04rem;
}

.history-block__years {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 12px;
  background: var(--line);
}

.history-block__years span {
  padding: 22px;
  background: var(--ink);
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.history-block__years strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.section--references {
  background: var(--surface);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reference-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, var(--surface-raised), #20221e);
}

.reference-card::before {
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(251, 185, 0, 0.1);
  border-radius: 50%;
  content: "";
}

.reference-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 65px;
}

.reference-card__type {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.reference-card__mark {
  color: rgba(251, 185, 0, 0.1);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 0.8;
}

.reference-card ul {
  position: relative;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.reference-card li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--cream);
  font-size: 0.88rem;
}

.section--partners {
  background: var(--cream);
  color: var(--text-dark);
}

.section--partners .section-heading h2 span {
  color: var(--gold-deep);
}

.section--partners .section-heading p {
  color: #68645c;
}

.section--partners .section-heading .eyebrow {
  color: #765600;
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.partner-logo {
  display: grid;
  flex: 0 0 calc((100% - 50px) / 6);
  min-height: 132px;
  place-items: center;
  padding: 20px;
  border: 1px solid #ded8cb;
  background: #fffdf8;
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.partner-logo:hover {
  transform: translateY(-4px);
  border-color: var(--gold-deep);
  box-shadow: 0 15px 34px rgba(42, 35, 22, 0.1);
}

.partner-logo img {
  width: auto;
  max-width: 118px;
  max-height: 72px;
  object-fit: contain;
}

.partner-logo__dark-surface {
  box-sizing: border-box;
  display: grid;
  width: min(100%, 146px);
  place-items: center;
  padding: 11px 12px;
  border-radius: 3px;
  background: #25272d;
}

.partner-logo__dark-surface img {
  max-width: 100%;
  max-height: 44px;
}

.section--showroom {
  background: var(--ink-soft);
}

.showroom-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(48px, 9vw, 128px);
}

.showroom-copy > p {
  max-width: 580px;
  margin-top: 29px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  width: 39px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: width 180ms ease;
}

.text-link:hover::after {
  width: 62px;
}

.showroom-panel {
  display: grid;
  border-top: 1px solid var(--line);
}

.showroom-panel > div {
  display: grid;
  grid-template-columns: 42px 0.65fr 1fr;
  align-items: baseline;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.showroom-panel__number {
  color: var(--gold);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.showroom-panel strong {
  font-size: 1.32rem;
}

.showroom-panel p {
  margin: 0;
  color: var(--muted);
}

.section--faq {
  background: var(--surface);
}

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

.faq-card {
  position: relative;
  min-height: 280px;
  padding: clamp(29px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--surface-raised), #20221e);
}

.faq-card::after {
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(251, 185, 0, 0.09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.faq-card__number {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.faq-card h3 {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 0 18px;
  font-size: clamp(1.28rem, 2.2vw, 1.8rem);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.faq-card p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0;
  color: var(--cream-muted);
}

.faq-card a {
  color: var(--gold);
  font-weight: 700;
}

.contact-section {
  padding-block: clamp(85px, 10vw, 138px);
  background: var(--gold);
  color: var(--text-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: clamp(46px, 10vw, 150px);
}

.contact-copy h2 span {
  color: var(--text-dark);
  -webkit-text-stroke: 1px rgba(42, 44, 38, 0.3);
}

.contact-copy > p {
  max-width: 590px;
  margin-top: 28px;
  color: rgba(42, 44, 38, 0.8);
}

.contact-card {
  padding: clamp(31px, 5vw, 54px);
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 30px 64px rgba(77, 52, 0, 0.24);
}

.contact-card__name {
  margin: 0 0 26px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card address {
  margin-bottom: 30px;
  color: var(--cream-muted);
  font-style: normal;
}

.contact-card__main-link {
  display: block;
  width: fit-content;
  margin: 8px 0;
  font-size: clamp(1.15rem, 2.1vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.contact-card__main-link:hover {
  color: var(--gold);
}

.contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.contact-card .button--dark {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--text-dark);
}

.contact-card .button--dark:hover {
  border-color: #ffd044;
  background: #ffd044;
}

.contact-card .button--outline-dark {
  border-color: rgba(243, 239, 229, 0.38);
  color: var(--cream);
}

.contact-card .button--outline-dark:hover {
  border-color: var(--cream);
  background: rgba(243, 239, 229, 0.08);
}

.site-footer {
  padding-top: 54px;
  background: #10110f;
  color: var(--cream-muted);
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 43px;
  border-bottom: 1px solid var(--line);
}

.site-footer__top p {
  max-width: 430px;
  margin: 0;
  color: var(--cream);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: right;
}

.brand--footer .brand__surface {
  width: 180px;
  min-width: 0;
  min-height: 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr;
  gap: 42px;
  padding-block: 48px;
}

.site-footer__brand {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer address {
  margin-top: 11px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.86rem;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.site-footer__nav a,
.footer-link {
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.82rem;
  line-height: 1.7;
  text-align: left;
  text-decoration: none;
}

.site-footer__nav a:hover,
.footer-link:hover {
  color: var(--gold);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 19px 23px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
}

.cookie-banner {
  position: fixed;
  z-index: 2000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 1px;
  background: linear-gradient(110deg, rgba(251, 185, 0, 0.75), rgba(243, 239, 229, 0.16));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
}

.cookie-banner__content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 25px 28px;
  background: rgba(29, 31, 27, 0.98);
}

.cookie-banner h2 {
  margin: 0 0 5px;
  color: var(--cream);
  font-size: 1.12rem;
}

.cookie-banner p {
  max-width: 760px;
  margin: 0;
  color: var(--cream-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.cookie-banner p a {
  color: var(--gold);
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner .button {
  min-height: 43px;
  padding: 10px 14px;
  white-space: nowrap;
}

.cookie-dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(251, 185, 0, 0.35);
  border-radius: 0;
  background: var(--surface);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.cookie-dialog::backdrop {
  background: rgba(7, 8, 7, 0.78);
  backdrop-filter: blur(6px);
}

.cookie-dialog form {
  position: relative;
  padding: clamp(28px, 6vw, 52px);
}

.cookie-dialog h2 {
  margin: 0;
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  letter-spacing: -0.04em;
}

.cookie-dialog > form > p:not(.eyebrow) {
  color: var(--cream-muted);
}

.cookie-dialog code {
  color: var(--gold);
  font-size: 0.86em;
}

.cookie-dialog__close {
  position: absolute;
  top: 15px;
  right: 17px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
}

.cookie-option span:first-child {
  display: flex;
  flex-direction: column;
}

.cookie-option small {
  margin-top: 3px;
  color: var(--muted);
}

.cookie-option > span:last-child {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cookie-dialog__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 27px;
}

/* Rechtliche Seiten */
.legal-page {
  background: var(--ink-soft);
}

.legal-main {
  min-height: 70svh;
  padding: calc(var(--header-height) + 55px) 0 110px;
}

.legal-layout {
  max-width: 950px;
}

.breadcrumb {
  margin: 0 0 55px;
  color: var(--muted);
  font-size: 0.78rem;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb span {
  margin-inline: 8px;
}

.legal-hero {
  max-width: 800px;
  margin-bottom: 42px;
}

.legal-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  hyphens: auto;
  overflow-wrap: anywhere;
}

.legal-hero__intro {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--cream-muted);
  font-size: 1.08rem;
}

.legal-card {
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  background: var(--surface);
}

.legal-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.legal-card h2:not(:first-child) {
  margin-top: 42px;
}

.legal-card p,
.legal-card address {
  color: var(--cream-muted);
}

.legal-card address {
  font-style: normal;
}

.legal-card a {
  color: var(--gold);
}

.legal-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 35px 0 0;
  background: var(--line);
}

.legal-details div {
  padding: 18px;
  background: var(--ink-soft);
}

.legal-details dt {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-details dd {
  margin: 5px 0 0;
  color: var(--cream);
  font-weight: 700;
}

.legal-copy section + section {
  margin-top: 45px;
  padding-top: 45px;
  border-top: 1px solid var(--line);
}

.legal-backlink {
  margin: 0;
}

.document-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 30px;
}

.document-card__icon {
  display: grid;
  width: 84px;
  height: 104px;
  place-items: center;
  border: 1px solid rgba(251, 185, 0, 0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.document-card__content .eyebrow {
  margin-bottom: 9px;
}

.document-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.document-card__actions .button {
  color: var(--text-dark);
}

.document-card__actions .button--ghost {
  color: var(--cream);
}

@keyframes scroll-down {
  0% {
    opacity: 0;
    transform: translate(-50%, -8px) scaleY(0.25);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px) scaleY(0.75);
  }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 82px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: var(--header-height) 0 auto;
    display: flex;
    max-height: calc(100svh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    padding: 24px;
    transform: translateY(-120%);
    border-top: 1px solid var(--line);
    background: rgba(23, 24, 21, 0.99);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform 230ms ease, opacity 180ms ease, visibility 0s linear 230ms;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav > a:not(.button) {
    padding: 16px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 20px;
  }

  .brand__surface {
    width: 164px;
    min-width: 0;
    min-height: 0;
  }

  .partner-grid {
    gap: 10px;
  }

  .partner-logo {
    flex-basis: calc((100% - 30px) / 4);
  }

  .cookie-banner__content {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    flex-wrap: wrap;
  }
}

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

  .hero {
    min-height: 780px;
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(10, 11, 9, 0.9), rgba(10, 11, 9, 0.55)), linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7));
  }

  .section-heading--split,
  .showroom-layout,
  .contact-layout,
  .history-block {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    align-items: start;
    gap: 32px;
  }

  .service-grid,
  .reference-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-card__media {
    height: clamp(310px, 60vw, 500px);
  }

  .service-card__media img {
    object-position: center 55%;
  }

  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .history-block__years {
    grid-template-columns: 1fr;
  }

  .reference-card {
    min-height: auto;
  }

  .parallax__content--right {
    align-items: flex-start;
    text-align: left;
  }

  .parallax__content--right .eyebrow {
    flex-direction: row;
  }

  .parallax__media {
    inset: 0;
    transform: none !important;
  }

  .parallax--parkett.is-image-ready .parallax__media {
    background-image: url("/assets/images/parallax-parkett-960.webp");
  }

  .parallax--wand.is-image-ready .parallax__media {
    background-image: url("/assets/images/parallax-malerei-960.webp");
  }

  .showroom-layout {
    gap: 50px;
  }

  .contact-layout {
    gap: 40px;
  }

  .site-footer__grid {
    grid-template-columns: 1.3fr 0.7fr 0.8fr;
  }
}

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

  .hero {
    min-height: 760px;
  }

  .hero__content {
    padding-top: calc(var(--header-height) + 50px);
  }

  .hero h1 {
    font-size: clamp(2.1rem, 10.5vw, 4rem);
  }

  .hero__lead {
    font-size: 0.96rem;
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .scroll-cue {
    bottom: 14px;
    gap: 7px;
    font-size: 0.62rem;
  }

  .section-heading h2,
  .showroom-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .service-card__media {
    height: 280px;
  }

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

  .value-card {
    min-height: 230px;
  }

  .history-block {
    padding: 28px;
  }

  .parallax {
    min-height: 510px;
  }

  .parallax__statement {
    font-size: clamp(2.3rem, 11vw, 3.7rem);
  }

  .partner-grid {
    gap: 10px;
  }

  .partner-logo {
    flex-basis: calc((100% - 10px) / 2);
    min-height: 112px;
    padding: 14px;
  }

  .showroom-panel > div {
    grid-template-columns: 34px 0.75fr 1fr;
    gap: 10px;
  }

  .contact-card__actions,
  .contact-card__actions .button {
    width: 100%;
  }

  .site-footer__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__top p {
    text-align: left;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .cookie-banner {
    right: 8px;
    bottom: 8px;
    left: 8px;
  }

  .cookie-banner__content {
    gap: 18px;
    padding: 20px;
  }

  .cookie-banner__actions,
  .cookie-banner .button {
    width: 100%;
  }

  .cookie-dialog__actions,
  .cookie-dialog__actions .button {
    width: 100%;
  }

  .cookie-dialog__actions {
    flex-direction: column;
  }

  .cookie-option {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .legal-main {
    padding-bottom: 82px;
  }

  .legal-details {
    grid-template-columns: 1fr;
  }

  .document-card {
    grid-template-columns: 1fr;
  }

  .document-card__actions,
  .document-card__actions .button {
    width: 100%;
  }
}

@media (max-width: 350px) {
  .site-header__inner > .button {
    display: none;
  }
}

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

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

  .parallax__media {
    transform: none !important;
  }
}
