
:root {
  --bg: #F4EBD7;
  --paper: #ffffff;
  --text: #2f2b27;
  --muted: #6f665d;
  --green: #4f6f42;
  --green-dark: #31472b;
  --accent: #8a6a4f;
  --line: rgba(49,71,43,.18);
  --shadow: 0 22px 60px rgba(49,71,43,.12);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: #F4EBD7;
  color: var(--text);
  line-height: 1.75;
  font-size: 18px;
}

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

a {
  color: inherit;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248,244,238,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  font-family: Arial, sans-serif;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--green-dark);
}

.hero {
  min-height: 82vh;
  display: grid;
  place-items: center;
  padding: 80px 22px;
  position: relative;
  background-image:
    linear-gradient(rgba(0,0,0,.44), rgba(0,0,0,.28)),
    url("../images/hero-iris.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-card {
  max-width: 980px;
  color: white;
  text-align: left;
}

.kicker {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  margin-bottom: 18px;
  opacity: .9;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.05;
  margin: 0 0 26px;
  font-weight: 500;
}

.hero p {
  max-width: 820px;
  font-size: 21px;
  margin: 0 0 18px;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-block;
  font-family: Arial, sans-serif;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  font-weight: 700;
}

.button.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.75);
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 22px;
}

.section {
  margin-bottom: 92px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(280px,.92fr);
  gap: 44px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(280px,.92fr) minmax(0,1.08fr);
}

.card,
.service {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 54px);
}

.service {
  margin-bottom: 34px;
}

.image-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 10px solid #fff;
}

.image-card img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

h2 {
  margin: 0 0 24px;
  color: var(--green-dark);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 500;
}

h3 {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 30px;
  line-height: 1.25;
  font-weight: 500;
}

h4 {
  margin: 30px 0 12px;
  color: var(--accent);
  font-size: 23px;
  line-height: 1.3;
}

p {
  margin: 0 0 18px;
}

.lead {
  font-size: 21px;
  color: var(--muted);
}

.quote {
  margin: 24px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--green);
  background: #eef3ea;
  border-radius: 18px;
  font-size: 22px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
}

.contact-form button {
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  background: var(--green-dark);
  color: #fff;
  cursor: pointer;
}

.notice {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: var(--muted);
}

.footer {
  background: var(--green-dark);
  color: #fff;
  padding: 44px 22px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
}

.footer a {
  color: #fff;
  margin-left: 18px;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 70px 22px;
}

@media (max-width: 900px) {
  .nav-inner {
    display: block;
  }

  .nav-links {
    margin-top: 12px;
  }

  .split,
  .split.reverse,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .image-card img {
    height: 360px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 17px;
  }

  .hero {
    min-height: 74vh;
  }

  main {
    padding-top: 56px;
  }
}





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

@media (max-width: 900px) {
  

  
}


.hero .name-line {
  font-family: Arial, sans-serif;
  font-size: 22px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: rgba(255,255,255,.95);
}

@media (max-width: 700px) {
  .hero .name-line {
    font-size: 18px;
  }
}









@media (max-width: 900px) {
  

  
}


/* Final geprüfte Praxis-Galerie: Desktop 3 Spalten */
.praxis-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin-top: 34px !important;
  width: 100% !important;
}

.praxis-gallery-item {
  margin: 0 !important;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 10px solid #fff;
  background: #fff;
}

.praxis-gallery-item img {
  width: 100% !important;
  height: 280px !important;
  object-fit: cover !important;
  display: block !important;
}

@media (max-width: 760px) {
  .praxis-gallery {
    grid-template-columns: 1fr !important;
  }

  .praxis-gallery-item img {
    height: 240px !important;
  }
}


/* Farbkorrektur Wunschfarbe */
:root {
  --rose: #D2A0B4;
  --rose-dark: #b77d96;
}

h1, h2, h3, h4,
.logo,
.nav-links a:hover {
  color: var(--rose-dark) !important;
}

.contact-form button,
.button {
  background: var(--rose) !important;
  color: #ffffff !important;
}

.footer {
  background: var(--rose) !important;
  color: #ffffff !important;
}

.footer a {
  color: #ffffff !important;
}


/* kleinere Überschriften Datenschutz / Impressum */
.legal-page h1 {
  font-size: 40px !important;
}

.legal-page h2 {
  font-size: 26px !important;
  margin-top: 34px !important;
}

.legal-page h3 {
  font-size: 22px !important;
}


.small-hero {
  min-height: 45vh !important;
}

.footer-links {
  display:flex;
  gap:20px;
  justify-content:center;
  margin-top:10px;
}

.footer-links a {
  color:#fff;
  text-decoration:none;
}

.card hr {
  border:none;
  border-top:1px solid rgba(0,0,0,.08);
  margin:36px 0;
}


/* FAQ Hero harmonischer */
.faq-hero-clean {
  padding: 150px 20px 70px;
  background: #F4EBD7;
}

.faq-hero-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(4px);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.faq-hero-card h1 {
  margin-bottom: 16px;
}

.faq-hero-card p {
  font-size: 20px;
  margin-bottom: 32px;
}

.faq-back-button,
.faq-bottom-back {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 700px) {
  .faq-hero-clean {
    padding-top: 120px;
  }

  .faq-hero-card {
    padding: 40px 24px;
  }

  .faq-hero-card p {
    font-size: 18px;
  }
}


/* FAQ Hero im Stil der Startseite */
.faq-hero-indexstyle {
  min-height: 58vh !important;
  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
    url("../images/hero-iris.jpg") center center / cover no-repeat;
}

.faq-hero-box {
  width: min(1100px, 92%);
  margin: 0 auto;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 28px;
  padding: 60px 50px;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.faq-hero-box h1,
.faq-hero-box p,
.faq-hero-box .kicker {
  color: #fff !important;
}

.faq-hero-box p {
  font-size: 21px;
  margin-top: 18px;
  margin-bottom: 34px;
}

.faq-hero-box .kicker {
  margin-bottom: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .92;
}

@media (max-width: 760px) {
  .faq-hero-box {
    width: 92%;
    padding: 42px 24px;
  }

  .faq-hero-box p {
    font-size: 18px;
  }
}


/* Einheitliches Menü & Footer */
.header {
  position: sticky;
  top: 0;
  z-index: 9999;
}

.nav-links a {
  transition: opacity .2s ease;
}

.nav-links a:hover {
  opacity: .75;
}


/* EXAKT EINHEITLICHE OBERE MENÜLEISTE AUF ALLEN SEITEN */
.site-nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  width: 100% !important;
  background: #F4EBD7 !important;
  border-bottom: 1px solid rgba(0,0,0,.08) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.site-nav .nav-inner {
  max-width: 1220px !important;
  margin: 0 auto !important;
  padding: 18px 28px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 32px !important;
}

.site-nav .logo {
  font-family: Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #C17C9B !important;
  text-decoration: none !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.site-nav .nav-links {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 22px !important;
  font-family: Arial, sans-serif !important;
  font-size: 14px !important;
  line-height: 1 !important;
  margin: 0 !important;
}

.site-nav .nav-links a {
  color: #5f554d !important;
  text-decoration: none !important;
  font-weight: 400 !important;
  white-space: nowrap !important;
}

.site-nav .nav-links a:hover {
  color: #C17C9B !important;
  opacity: 1 !important;
}

@media (max-width: 850px) {
  .site-nav .nav-inner {
    display: block !important;
    padding: 16px 22px !important;
  }

  .site-nav .nav-links {
    margin-top: 12px !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
  }
}


/* HERO IRIS STARTSEITE WIEDERHERGESTELLT */
.hero-iris {
  position: relative;
  min-height: 88vh;
  background:
    linear-gradient(rgba(0,0,0,.42), rgba(0,0,0,.42)),
    url("../images/hero-iris.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-iris .overlay {
  position: absolute;
  inset: 0;
}

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

.hero-box {
  width: min(1100px, 92%);
  margin: 0 auto;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(7px);
  border-radius: 30px;
  padding: 70px 60px;
  box-shadow: 0 20px 60px rgba(0,0,0,.20);
}

.hero-box .kicker {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 14px;
  margin-bottom: 16px;
}

.hero-box h1 {
  color: #ffffff;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 28px;
}

.hero-box p {
  color: rgba(255,255,255,.94);
  font-size: 21px;
  line-height: 1.7;
  max-width: 820px;
  margin-bottom: 38px;
}

.hero-button {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 760px) {
  .hero-iris {
    min-height: 78vh;
  }

  .hero-box {
    width: 92%;
    padding: 42px 24px;
  }

  .hero-box p {
    font-size: 18px;
  }
}


/* FINAL GEPRÜFT: Hero-Iris-Banner auf der Startseite */
.hero-iris-section {
  position: relative !important;
  min-height: 88vh !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background-image:
    linear-gradient(rgba(0,0,0,.42), rgba(0,0,0,.42)),
    url("../images/hero-iris.jpg") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.hero-iris-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
}

.hero-iris-content {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  padding: 90px 20px !important;
}

.hero-iris-box {
  width: min(1100px, 92%) !important;
  margin: 0 auto !important;
  background: rgba(255,255,255,.13) !important;
  border: 1px solid rgba(255,255,255,.24) !important;
  backdrop-filter: blur(7px) !important;
  border-radius: 30px !important;
  padding: 70px 60px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.22) !important;
}

.hero-iris-box .kicker {
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: .16em !important;
  font-size: 13px !important;
  margin-bottom: 16px !important;
  font-family: Arial, sans-serif !important;
}

.hero-iris-box .hero-name {
  font-family: Arial, sans-serif !important;
  font-size: 22px !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  margin-bottom: 20px !important;
  color: rgba(255,255,255,.95) !important;
}

.hero-iris-box h1 {
  color: #ffffff !important;
  font-size: clamp(42px, 6vw, 76px) !important;
  line-height: 1.05 !important;
  margin: 0 0 28px !important;
  font-weight: 500 !important;
}

.hero-iris-box p {
  color: rgba(255,255,255,.96) !important;
  font-size: 21px !important;
  line-height: 1.7 !important;
  max-width: 840px !important;
  margin: 0 0 34px !important;
}

.hero-iris-box .button-row {
  display: flex !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

.hero-iris-box .button {
  display: inline-block !important;
  padding: 15px 28px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  font-family: Arial, sans-serif !important;
  font-weight: 700 !important;
}

.hero-iris-box .button.secondary {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.75) !important;
  color: #ffffff !important;
}

@media (max-width: 760px) {
  .hero-iris-section {
    min-height: 78vh !important;
  }

  .hero-iris-box {
    width: 92% !important;
    padding: 42px 24px !important;
  }

  .hero-iris-box .hero-name {
    font-size: 17px !important;
  }

  .hero-iris-box p {
    font-size: 18px !important;
  }
}


.footer-flex {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
  text-align:center;
}

.footer-copy {
  color:#fff;
}

.footer-links {
  display:flex;
  align-items:center;
  gap:10px;
}

.footer-links span {
  color:#fff;
}

.footer-links a {
  color:#fff;
  text-decoration:none;
}

@media (max-width:700px){
  .footer-flex{
    flex-direction:column;
    gap:10px;
  }
}


/* Impressum Whitebox */
.legal-box {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(6px);
  border-radius: 28px;
  padding: 55px;
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  max-width: 950px;
  margin: 0 auto;
}

.legal-box h1 {
  margin-top: 0;
}

.legal-box ul {
  padding-left: 20px;
}

@media (max-width: 768px) {
  .legal-box {
    padding: 32px 24px;
  }
}
