/* =========================================================
   NOVATURF – Zentrale Stylesheet-Datei
   Datei: assets/css/style.css
   Bildpfade in CSS gehen von /assets/css/style.css aus:
   ../img/bildname.webp
========================================================= */

:root {
  --green-dark: #183d2b;
  --green: #2f7d46;
  --green-soft: #6f9d35;
  --green-light: #e8f3ea;
  --sand: #f5f5f2;
  --sand-warm: #f6f1e8;
  --text: #26332b;
  --muted: #657267;
  --white: #ffffff;
  --border: #dce6dd;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.04);
  --radius: 28px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(90%, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 95px 0;
}

.section-light {
  background: var(--sand);
}

.section-sand {
  background: var(--sand-warm);
}

.section-green,
.section-dark {
  background: var(--green-dark);
  color: var(--white);
}

.kicker,
.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--green-soft);
}

h1,
h2,
h3 {
  line-height: 1.1;
  color: inherit;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.7rem, 6vw, 3.3rem);
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}

h2 {
  max-width: 820px;
  font-size: clamp(2.1rem, 4.5vw, 1.7rem);
  letter-spacing: -0.045em;
  margin-bottom: 24px;
  color: var(--green-dark);
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #ffffff;
}

p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-green p,
.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.section-green h2,
.section-dark h2 {
  color: var(--white);
}

.intro,
.section-intro {
  max-width: 760px;
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 42px;
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(47, 125, 70, 0.28);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-dark);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  color: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

/* =========================================================
   HEADER / NAVIGATION
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}


.main-nav,
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
}

.main-nav a,
.nav a {
  position: relative;
  color: inherit;
  text-decoration: none;
  padding: 8px 0;
}

.main-nav a::after,
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.25s ease;
}

.main-nav a:hover,
.nav a:hover {
  color: var(--green);
}

.main-nav a:hover::after,
.nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(47, 125, 70, 0.22);
  transition: 0.25s ease;
}

.header-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* =========================================================
   STARTSEITE / LANDINGPAGE
========================================================= */

/* HERO MIT HTML-BILD */

.hero-with-image {
  position: relative;
  min-height: calc(88vh - 86px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--green-dark);
}

.hero-with-image picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(24, 61, 43, 0.92),
    rgba(24, 61, 43, 0.58)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
}

.hero-content p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.22rem;
}

.hero-content .eyebrow {
  color: #b8e7bf;
}

.hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.22rem;
}

.hero .eyebrow,
.hero .kicker {
  color: #b8e7bf;
}

.hero-card {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 850px;
}

.hero-card-item {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-card-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.hero-card-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-icon,
.benefit-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.8rem;
  margin-bottom: 22px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.image-box {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  min-height: 460px;
  background: url("../img/kunstrasen-detail.webp") center/cover no-repeat;
}

.image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24));
}

.highlight-box {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.highlight-box ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.highlight-box li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-weight: 600;
}

.highlight-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.step {
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}

.step span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  opacity: 0.9;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.benefit-item {
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.use-cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.use-case {
  min-height: 260px;
  padding: 32px;
  border-radius: 28px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.use-case::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.68));
}

.use-case-content {
  position: relative;
  z-index: 1;
}

.use-case p {
  color: rgba(255, 255, 255, 0.82);
}

.case-garden {
  background-image: url("../img/kunstrasen-im-modernen-garten.webp");
}

.case-balcony {
  background-image: url("../img/kunstrasen-auf-terrasse.webp");
}

.case-family {
  background-image: url("../img/kunstrasen-mit-haustieren.webp");
}

.case-pool {
  background-image: url("../img/kunstrasen-am-pool.webp");
}

.quote-box {
  padding: 42px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 32px;
}

.quote-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
}

.quote-box strong {
  display: block;
  margin-top: 26px;
  color: var(--white);
}

/* Warum Kunstrasen SEO-Section */

.why-turf-section {
  padding: 100px 0;
  background: #f5f5f2;
}

.why-turf-grid {
  display: grid;
  grid-template-columns: 1.02fr 1.18fr;
  gap: 64px;
  align-items: start;
}

.why-turf-content h2 {
  font-size: clamp(2.6rem, 5.4vw, 2.7rem);
  line-height: 1.04;
  margin-bottom: 24px;
  color: var(--green-dark);
  letter-spacing: -0.055em;
}

.why-turf-content h2 span {
  color: var(--green-soft);
}

.why-turf-content .section-intro {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--muted);
}

.benefit-list-seo {
  display: flex;
  flex-direction: column;
}

.benefit-item-seo {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 25px 0;
  border-top: 1px solid #d8ddd4;
}

.benefit-item-seo:first-child {
  border-top: none;
  padding-top: 0;
}

.benefit-icon-seo {
  width: 58px;
  height: 58px;
  color: var(--green-soft);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.benefit-icon-seo svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-item-seo h3 {
  margin-bottom: 8px;
  font-size: 1.42rem;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}

.benefit-item-seo p {
  max-width: 520px;
  font-size: 1.03rem;
  line-height: 1.65;
  color: var(--muted);
}

.why-turf-images {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 112px;
}

.image-large,
.image-small,
.image-card {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #e5e5e0;
  box-shadow: var(--shadow);
}

.image-large img,
.image-small img,
.image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-large:hover img,
.image-small:hover img,
.image-card:hover img {
  transform: scale(1.035);
}

.image-large img {
  aspect-ratio: 16 / 10;
}

.image-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.image-small img {
  aspect-ratio: 1 / 1;
}

.image-card img {
  aspect-ratio: 4 / 3;
}

/* =========================================================
   FERIENANWESEN-SEITE
========================================================= */

.holiday-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(24, 61, 43, 0.62), rgba(24, 61, 43, 0.55)),
    url("../img/kunstrasen-ferienhaus.webp") center/cover no-repeat;
}

.holiday-hero .kicker {
  color: #c4edb5;
}

.holiday-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.22rem;
  line-height: 1.7;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 900px;
  margin-top: 44px;
}

.hero-fact {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-fact strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.hero-fact span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.text-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.text-list div {
  padding: 20px 22px;
  border-radius: 20px;
  background: var(--green-light);
  border: 1px solid var(--border);
}

.text-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-dark);
}

.text-list span {
  color: var(--muted);
  font-size: 0.98rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.benefit-card {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.benefit-card p {
  font-size: 1rem;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
}

.compare-box {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.compare-box h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.compare-box ul {
  list-style: none;
  display: grid;
  gap: 13px;
}

.compare-box li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.8);
}

.compare-box li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
}

.minus li::before {
  content: "–";
  color: #f0b3a8;
}

.plus li::before {
  content: "✓";
  color: #c4edb5;
}

.cta-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 58px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(24, 61, 43, 0.94), rgba(47, 125, 70, 0.9)),
    url("../img/kunstrasen-pool-tessin.webp") center/cover no-repeat;
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  color: var(--white);
  margin-left: auto;
  margin-right: auto;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
  margin: 0 auto;
}

.cta-box .btn-row {
  justify-content: center;
}

/* =========================================================
   KONTAKTSEITE
========================================================= */

.contact-hero {
  padding: 90px 0 60px;
  background:
    linear-gradient(120deg, rgba(24, 61, 43, 0.52), rgba(24, 61, 43, 0.12)),
    url("../img/kunstrasenverlegung.webp") center/cover no-repeat;
  color: var(--white);
}

.contact-hero .kicker {
  color: #b8e7bf;
}

.contact-hero h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 6vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}

.contact-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255);
  font-size: 1.2rem;
}

.contact-page {
  padding: 90px 0;
  background: var(--sand);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 112px;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--green-dark);
  margin-bottom: 22px;
}

.contact-info p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 34px;
}

.info-cards {
  display: grid;
  gap: 16px;
}

.info-card {
  padding: 24px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.info-card strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.08rem;
  margin-bottom: 5px;
}

.info-card span {
  color: var(--muted);
  font-size: 0.98rem;
}

.contact-direct {
  margin-top: 28px;
  padding: 28px;
  border-radius: 24px;
  background: var(--green-dark);
  color: var(--white);
}

.contact-direct h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: var(--white);
}

.contact-direct p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
  font-size: 1rem;
}

.contact-direct a {
  display: block;
  margin-top: 8px;
  color: #d8f2c0;
  font-weight: 800;
}

.contact-form {
  padding: 44px;
  border-radius: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-title {
  margin-bottom: 30px;
}

.form-title h2 {
  color: var(--green-dark);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
}

.form-title p {
  color: var(--muted);
  font-size: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--green-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #d4dccf;
  background: #fbfcfa;
  border-radius: 16px;
  padding: 15px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: 0.25s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(47, 125, 70, 0.12);
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin: 8px 0 28px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.privacy-check input {
  margin-top: 3px;
  accent-color: var(--green);
}

.submit-btn,
.contact-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 17px 28px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(47, 125, 70, 0.25);
  transition: 0.25s ease;
}

.submit-btn:hover,
.contact-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.required-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

/* =========================================================
   FAQ
========================================================= */

.faq-list {
  max-width: 900px;
  margin-top: 36px;
}

details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 26px;
  margin-bottom: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--green-dark);
  font-size: 1.08rem;
}

details p {
  margin-top: 14px;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 36px 0;
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner strong {
  color: var(--white);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .why-turf-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .why-turf-images {
    position: static;
  }
}

@media (max-width: 980px) {
  .hero-card,
  .grid-3,
  .steps,
  .benefit-list,
  .hero-facts,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .comparison,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact-info {
    position: static;
  }

  .image-box {
    min-height: 360px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    height: auto;
    padding: 18px 0;
    flex-wrap: wrap;
  }

  .main-nav,
  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
  }

  .header-cta {
    margin-left: auto;
  }
}

@media (max-width: 720px) {
  .section,
  .why-turf-section,
  .contact-page {
    padding: 70px 0;
  }

  .hero,
  .holiday-hero {
    min-height: auto;
    padding: 90px 0 70px;
  }

  .contact-hero {
    padding: 70px 0 50px;
  }

  .hero-card,
  .grid-3,
  .steps,
  .benefit-list,
  .use-cases,
  .hero-facts,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item-seo {
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 22px 0;
  }

  .benefit-icon-seo {
    width: 48px;
    height: 48px;
  }

  .benefit-icon-seo svg {
    width: 40px;
    height: 40px;
  }

  .benefit-item-seo h3 {
    font-size: 1.25rem;
  }

  .image-small-grid,
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .card,
  .highlight-box,
  .quote-box,
  .benefit-card,
  .cta-box,
  .contact-form {
    padding: 28px;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .header-inner {
    align-items: flex-start;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .header-cta {
    width: 100%;
    margin-left: 0;
  }

  .main-nav,
  .nav {
    gap: 14px;
    font-size: 0.9rem;
  }
}

/* Logo als Bild */
.site-header .logo {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
}

.site-header .logo img {
  display: block;
  height: 58px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

/* MOBILE HAMBURGER NAVIGATION */

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 999px;
  transition: 0.25s ease;
}

.mobile-nav-cta {
  display: none;
}

@media (max-width: 860px) {
  .header-inner {
    position: relative;
    height: 76px;
    padding: 0;
    flex-wrap: nowrap;
  }

  .site-header .logo img {
    height: 48px !important;
    max-width: 190px !important;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    z-index: 999;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid #edf1ea;
    font-size: 1rem;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a::after {
    display: none;
  }

  .mobile-nav-cta {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    padding: 14px 18px !important;
    border-radius: 999px;
    background: var(--green);
    color: #ffffff !important;
    font-weight: 800;
    border-bottom: none !important;
  }

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

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

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

@media (max-width: 540px) {
  .header-inner {
    height: 72px;
  }

  .main-nav {
    top: 72px;
  }

  .site-header .logo img {
    height: 42px !important;
    max-width: 170px !important;
  }
}
/* STARTSEITE HERO MIT HTML-BILD */

.home-hero {
  position: relative;
  min-height: calc(88vh - 86px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--green-dark);
}

.home-hero-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.home-hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(24, 61, 43, 0.12) 0%,
    rgba(24, 61, 43, 0.72) 45%,
    rgba(24, 61, 43, 0.35) 100%
  );
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  padding: 105px 0 85px;
}

.home-hero-inner h1 {
  max-width: 850px;
  font-size: clamp(2.6rem, 6vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.home-hero-inner p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.22rem;
}

.home-hero-inner .eyebrow {
  color: #b8e7bf;
}

@media (max-width: 680px) {
  .home-hero {
    min-height: auto;
  }

  .home-hero-inner {
    padding: 90px 0 65px;
  }

  .home-hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(24, 61, 43, 0.94) 0%,
      rgba(24, 61, 43, 0.78) 100%
    );
  }
}
/* DANKE-SEITE */

.thank-you-page {
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  padding: 100px 0;
  background:
    linear-gradient(120deg, rgba(24, 61, 43, 0.12), rgba(24, 61, 43, 0.18)),
    url("../img/kunstrasen-lugano.webp") center/cover no-repeat;
}

.thank-you-box {
  max-width: 780px;
  padding: 58px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

.thank-you-box .kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.thank-you-box h1 {
  margin-bottom: 22px;
  color: var(--green-dark);
  font-size: clamp(2.4rem, 5vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.thank-you-box p {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.thank-you-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 680px) {
  .thank-you-page {
    padding: 70px 0;
    min-height: auto;
  }

  .thank-you-box {
    padding: 32px;
    border-radius: 26px;
  }

  .thank-you-actions .btn {
    width: 100%;
  }
}
