:root {
  --green: #244536;
  --light: #f8f5ee;
  --soft: #ede8dd;
  --text: #333333;
  --muted: #77736c;
  --white: #ffffff;
  --accent: #b9828f;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.7;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 3px 18px rgba(0,0,0,.04);
}
.header-inner {
  min-height: 86px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.brand {
  color: #1f3f31;
  text-decoration: none;
  display: grid;
  line-height: 1.12;
  white-space: nowrap;
}
.brand-main {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 31px;
  letter-spacing: .01em;
}
.brand-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7b766f;
  margin-top: 4px;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 52px);
}
.nav a {
  position: relative;
  color: #262626;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  line-height: 86px;
  transition: color .18s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 27px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}
.nav a.active, .nav a:hover { color: var(--green); }
.nav a.active::after, .nav a:hover::after { transform: scaleX(1); }
.menu-toggle, .menu-button { display: none; }

.start-hero {
  min-height: calc(100vh - 86px);
  background: url('AdobeStock_135148666-1920w.jpeg') center center / cover no-repeat;
  position: relative;
  display: grid;
}
.start-hero-overlay {
  display: grid;
  align-items: center;
  min-height: inherit;
  padding: clamp(85px, 12vw, 155px) clamp(20px, 8vw, 120px);
  background: linear-gradient(90deg, rgba(248,245,238,.88) 0%, rgba(248,245,238,.68) 42%, rgba(248,245,238,.14) 100%);
}
.start-hero-content { max-width: 720px; }
.start-hero h1 {
  color: var(--green);
  font-size: clamp(72px, 10vw, 148px);
  line-height: .9;
  letter-spacing: -.045em;
  margin-bottom: 28px;
}
.start-hero p {
  max-width: 650px;
  font-size: clamp(17px, 1.45vw, 21px);
  color: #333333;
  margin-bottom: 30px;
}
.start-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}
.opening-hours {
  display: grid;
  gap: 3px;
  color: var(--green);
  font-weight: 600;
}
.opening-hours strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 6px;
}

.hero {
  min-height: 70vh;
  display: grid;
  align-items: center;
  padding: clamp(80px, 12vw, 150px) clamp(20px, 8vw, 120px);
  background: linear-gradient(rgba(248,245,238,.76), rgba(248,245,238,.76)), url('https://le-de.cdn-website.com/2963ae7bef5849cb829d06920257bb67/dms3rep/multi/opt/WhatsApp-Image-2024-09-20-at-16.08.44-Kopie_plus_Ki-22e341ed-1920w.jpg') center/cover;
}
.hero-copy { max-width: 790px; }
h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--green);
  line-height: .95;
  margin: 0 0 24px;
  font-weight: 700;
}
h1 {
  font-size: clamp(78px, 13vw, 170px);
  letter-spacing: -.04em;
}
h2 { font-size: clamp(48px, 7vw, 94px); }
p { margin: 0 0 22px; }
.hero p, .content-panel p, .delivery p, .more p { font-size: clamp(16px, 1.4vw, 19px); }
.button, .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
}
.text-link { background: transparent; color: var(--green); margin-top: 22px; }
.section {
  padding: clamp(70px, 10vw, 125px) clamp(20px, 6vw, 95px);
}
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}
.reverse { grid-template-columns: 1.1fr .9fr; background: var(--white); }
.main-image, .delivery img {
  width: 100%;
  height: min(62vw, 650px);
  object-fit: cover;
  display: block;
}
.content-panel { max-width: 860px; }
.image-grid {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}
.three { grid-template-columns: repeat(3, 1fr); }
.four { grid-template-columns: repeat(2, 1fr); }
figure { margin: 0; background: var(--soft); }
figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
figcaption {
  padding: 16px 12px 18px;
  text-align: center;
  font-weight: 700;
  color: var(--green);
}
.delivery {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  padding: clamp(70px, 10vw, 125px) clamp(20px, 6vw, 95px);
  background: var(--soft);
}
.more {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 125px) clamp(20px, 6vw, 95px);
}
.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding: clamp(55px, 8vw, 90px) clamp(20px, 6vw, 95px);
  background: var(--green);
  color: var(--white);
}
.footer h2 { color: var(--white); font-size: clamp(42px, 6vw, 76px); }
address { display: grid; gap: 12px; align-content: center; font-style: normal; }
address a { color: var(--white); text-decoration: none; font-weight: 700; }

.contact-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
  padding: clamp(70px, 10vw, 125px) clamp(20px, 6vw, 95px);
  background: var(--white);
}
.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
}
.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}
.form-row { display: grid; gap: 8px; }
.two-cols { grid-template-columns: 1fr 1fr; gap: 18px; }
label {
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
}
input, textarea {
  width: 100%;
  border: 1px solid rgba(36,69,54,.22);
  background: var(--light);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  border-radius: 0;
}
input:focus, textarea:focus {
  outline: 2px solid rgba(36,69,54,.22);
  border-color: var(--green);
}
textarea { resize: vertical; }
.map-card {
  background: var(--soft);
  padding: clamp(24px, 4vw, 42px);
}
.map-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--green);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  margin: 0 0 12px;
}
.map-card iframe {
  width: 100%;
  min-height: 470px;
  border: 0;
  display: block;
  margin-top: 24px;
  filter: grayscale(.12);
}
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.instagram-link svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .header-inner { min-height: 74px; }
  .start-hero { min-height: calc(100vh - 74px); }
  .start-hero-overlay { background: linear-gradient(rgba(248,245,238,.82), rgba(248,245,238,.7)); }
  .brand-main { font-size: 26px; }
  .menu-button {
    display: grid;
    gap: 5px;
    width: 34px;
    cursor: pointer;
  }
  .menu-button span { display: block; height: 2px; background: var(--green); }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 18px 26px rgba(0,0,0,.08);
  }
  .nav a {
    line-height: 1;
    padding: 19px clamp(20px, 4vw, 54px);
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .nav a::after { display: none; }
  .menu-toggle:checked ~ .nav { display: flex; }
  .split, .reverse, .delivery, .footer, .contact-section { grid-template-columns: 1fr; }
  .three { grid-template-columns: 1fr 1fr; }
  .two-cols { grid-template-columns: 1fr; }
  .main-image, .delivery img { height: 420px; }
}
@media (max-width: 560px) {
  .three, .four { grid-template-columns: 1fr; }
  .start-hero h1 { font-size: 62px; }
  h1 { font-size: 68px; }
  .map-card iframe { min-height: 340px; }
}

/* Feinschliff Startseite: Stil ähnlich zur alten Seite */
.start-hero-content {
  max-width: 760px;
}
.start-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(76px, 10.5vw, 150px);
  font-weight: 700;
  line-height: .86;
  letter-spacing: -.045em;
}
.start-hero p {
  max-width: 660px;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.75;
}
.start-actions {
  align-items: flex-start;
  gap: clamp(24px, 4vw, 48px);
}
.opening-hours {
  min-width: 270px;
  color: var(--green);
  line-height: 1.25;
}
.opening-hours strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 700;
  line-height: .95;
  margin: 0 0 14px;
}
.hours-row {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 12px;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 700;
  letter-spacing: .01em;
  margin: 4px 0;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 190;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.back-to-top:hover { transform: translateY(-2px); }

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: 980px;
  margin: 0 auto;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  background: rgba(255,255,255,.98);
  color: var(--text);
  border: 1px solid rgba(36,69,54,.18);
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
}
.cookie-banner.show { display: flex; }
.cookie-banner strong {
  display: block;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 6px;
}
.cookie-banner p { margin: 0; line-height: 1.45; }
.cookie-banner button {
  border: 0;
  background: var(--green);
  color: var(--white);
  padding: 13px 24px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .start-hero-overlay {
    padding: 90px 24px 70px;
  }
  .start-actions {
    flex-direction: column;
  }
  .hours-row {
    grid-template-columns: 90px 1fr;
  }
}
@media (max-width: 560px) {
  .start-hero {
    min-height: auto;
  }
  .start-hero h1 {
    font-size: clamp(58px, 18vw, 82px);
  }
  .start-hero p {
    font-size: 16px;
    line-height: 1.65;
  }
  .button {
    width: 100%;
  }
  .opening-hours {
    min-width: 0;
    width: 100%;
  }
  .hours-row {
    grid-template-columns: 1fr;
    gap: 0;
    font-size: 16px;
  }
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px;
  }
  .cookie-banner button { width: 100%; }
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}


/* Leistungen Hintergrund angepasst */
#leistungen,
.leistungen,
.leistungen-section{
    background:#244536 !important;
}
#leistungen h1,#leistungen h2,#leistungen h3,#leistungen p,#leistungen li,
.leistungen h1,.leistungen h2,.leistungen h3,.leistungen p,.leistungen li,
.leistungen-section h1,.leistungen-section h2,.leistungen-section h3,
.leistungen-section p,.leistungen-section li{
    color:#ffffff !important;
}


/* Finale Anpassungen */
#leistungen.hero {
  background: #244536 !important;
}
#leistungen.hero h1,
#leistungen.hero p {
  color: #ffffff !important;
}
.elegant-footer {
  display: block;
  background: #244536;
  color: #ffffff;
  padding: clamp(48px, 7vw, 82px) clamp(20px, 6vw, 95px) 28px;
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr .8fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}
.elegant-footer h2,
.elegant-footer h3,
.elegant-footer p,
.elegant-footer a,
.elegant-footer span {
  color: #ffffff;
}
.elegant-footer h2 {
  margin-bottom: 8px;
  font-size: clamp(40px, 5vw, 68px);
}
.elegant-footer h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  margin: 0 0 18px;
}
.elegant-footer p { margin-bottom: 12px; }
.footer-links a {
  display: block;
  margin: 0 0 10px;
  text-decoration: none;
  font-weight: 700;
}
.footer-links a:hover,
.elegant-footer a:hover { text-decoration: none; }
.footer-bottom {
  max-width: 1180px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.legal-page {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(38px, 7vw, 88px) 22px;
}
.legal-page h1 {
  font-size: clamp(54px, 8vw, 104px);
}
.legal-page h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-top: 34px;
}
.legal-card {
  background: #ffffff;
  padding: clamp(22px, 4vw, 42px);
  margin: 22px 0;
  border: 1px solid rgba(36,69,54,.12);
}
.legal-page a { color: #244536; font-weight: 700; }
.legal-back { display: inline-block; margin-bottom: 28px; text-decoration: none; }
.privacy-page p { background: #ffffff; padding: 18px 20px; border-left: 4px solid #244536; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .elegant-footer { padding-bottom: 24px; }
}





/* Final: Menü nicht unterstrichen */
nav a,
nav a:hover,
nav a:focus,
nav a.active,
.nav a,
.nav a:hover,
.nav a:focus,
.nav a.active,
.navbar a,
.navbar a:hover,
.navbar a:focus,
.navbar a.active,
.menu a,
.menu a:hover,
.menu a:focus,
.menu a.active,
.header-menu a,
.header-menu a:hover,
.header-menu a:focus,
.header-menu a.active {
  text-decoration: none !important;
}

/* Datenschutz-Zustimmung im Kontaktformular */
.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 20px;
  font-size: 14px;
  line-height: 1.5;
  color: inherit;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: #244536;
}
