:root {
  --ink: #202124;
  --muted: #5e5a52;
  --paper: #f7f3ec;
  --paper-soft: #fbf8f2;
  --line: #ded5c8;
  --accent: #7a6847;
  --accent-dark: #554a36;
  --sage: #566653;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(47, 39, 28, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 243, 236, 0.94)),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(160px, 230px) 1fr auto;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  padding: 1rem clamp(1rem, 4vw, 5rem);
  background: rgba(251, 248, 242, 0.93);
  border-bottom: 1px solid rgba(222, 213, 200, 0.72);
  backdrop-filter: blur(16px);
}

.brand {
  width: clamp(155px, 18vw, 225px);
  text-decoration: none;
}

.brand img {
  width: 100%;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  color: #32312d;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.38rem;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button-light {
  color: var(--white);
  background: rgba(149, 130, 91, 0.76);
  border-color: rgba(255, 255, 255, 0.08);
}

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

.hero,
.process,
.products,
.benefits,
.faq {
  padding: clamp(2.6rem, 6vw, 5.5rem) clamp(1rem, 4vw, 5rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(29rem, 0.92fr) minmax(31rem, 1.18fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
  min-height: calc(100svh - 78px);
  padding-top: clamp(2rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(222, 213, 200, 0.68);
}

.hero-copy {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 0.72rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

.hero-title {
  margin: 0 0 1.1rem;
  max-width: min(100%, 760px);
  color: #1f2022;
  font-size: clamp(3.6rem, 5.8vw, 6.8rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.lead {
  margin: 0 0 1.3rem;
  color: #2e2d2a;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-weight: 700;
  line-height: 1.45;
}

.hero-copy p:not(.eyebrow):not(.lead) {
  margin: 0;
  color: #3f3b35;
  font-size: clamp(1rem, 1.16vw, 1.15rem);
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 20px 34px rgba(54, 48, 41, 0.16));
}

.hero-visual figcaption {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.section-heading {
  max-width: 55rem;
  margin: 0 auto clamp(1.6rem, 3vw, 2.7rem);
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.1;
}

.process {
  background: rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(222, 213, 200, 0.68);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 150px;
  padding: 1.1rem;
  background: rgba(251, 248, 242, 0.94);
}

.process-item:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -0.7rem;
  z-index: 2;
  width: 1.4rem;
  height: 1.4rem;
  color: var(--accent-dark);
  font-size: 1.8rem;
  line-height: 1;
  content: "›";
  transform: translateY(-50%);
}

.process-item img {
  width: 74px;
  aspect-ratio: 1;
  object-fit: contain;
}

.process-item strong {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.9rem;
  text-transform: none;
}

.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1.12fr) minmax(250px, 0.76fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 1260px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(1rem, 2vw, 1.35rem);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(222, 213, 200, 0.9);
  box-shadow: 0 14px 34px rgba(47, 39, 28, 0.07);
}

.product-copy h3,
.faq h3 {
  margin: 0 0 0.28rem;
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  line-height: 1.2;
}

.product-copy p,
.product-note,
.product-description {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-card img {
  width: 100%;
  margin: 1rem 0;
  object-fit: contain;
}

.product-card-large img {
  aspect-ratio: 1536 / 515;
}

.product-card-compact {
  align-items: center;
  text-align: center;
}

.product-card-compact img {
  width: min(78%, 280px);
  aspect-ratio: 1122 / 1402;
  margin-top: 0.5rem;
}

.product-description {
  max-width: 26rem;
  margin-top: 0.75rem;
  text-align: left;
}

.benefits {
  padding-top: clamp(2rem, 4vw, 3.8rem);
  background: rgba(255, 255, 255, 0.34);
  border-top: 1px solid rgba(222, 213, 200, 0.62);
  border-bottom: 1px solid rgba(222, 213, 200, 0.62);
}

.visually-balanced {
  max-width: 65rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.3vw, 2rem);
  max-width: 1220px;
  margin: 0 auto;
}

.benefit-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 1rem;
  align-items: center;
}

.benefit-item img {
  width: 68px;
  aspect-ratio: 1;
  object-fit: contain;
}

.benefit-title {
  display: block;
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
}

.faq article {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(222, 213, 200, 0.9);
}

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

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.6rem, 4vw, 2.4rem) clamp(1rem, 6vw, 9rem);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(35, 32, 24, 0.73), rgba(43, 39, 29, 0.58)),
    url("Bilder_Webseite/14.png") center / cover no-repeat;
}

.cta h2 {
  margin: 0 0 0.3rem;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: minmax(148px, 190px) 1fr;
  }

  .site-header > .button {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 48rem;
  }

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

  .process-item:nth-child(2)::after {
    display: none;
  }

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

  .product-card-compact {
    grid-column: 1 / -1;
  }

  .product-card-compact img {
    width: min(48%, 280px);
  }

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

@media (max-width: 720px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.9rem;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .process,
  .products,
  .benefits,
  .faq {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero-title {
    font-size: clamp(3rem, 14vw, 4.9rem);
  }

  .process-list,
  .product-grid,
  .benefit-grid,
  .faq-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .process-item::after {
    display: none;
  }

  .process-item,
  .benefit-item {
    grid-template-columns: 64px 1fr;
  }

  .process-item img,
  .benefit-item img {
    width: 64px;
  }

  .product-card-compact img {
    width: min(72%, 250px);
  }

  .cta {
    text-align: left;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .main-nav {
    gap: 0.75rem;
    font-size: 0.74rem;
  }

  .button {
    width: 100%;
  }

  .hero-title {
    font-size: clamp(2.65rem, 13vw, 3.4rem);
    letter-spacing: 0.01em;
  }

  .process-item,
  .benefit-item {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}
