/* ============================================
   Katharina Maria Alram – gemeinsames Design
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --green:  #003327;
  --cream:  #F9F6F3;
  --blue:   #B3C9D6;
  --olive:  #566746;
  --green05: rgba(0,51,39,0.05);
  --green12: rgba(0,51,39,0.12);
  --green25: rgba(0,51,39,0.25);
  --green50: rgba(0,51,39,0.72);
}

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--cream);
  color: var(--green50);
  overflow-x: hidden;
  font-weight: 400;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 4rem;
  background: rgba(249,246,243,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--green12);
}
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo img { width: 38px; height: 38px; border-radius: 50%; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--green);
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: .8rem; font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--green); text-decoration: none;
  opacity: .6; transition: opacity .2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active { border-bottom: 1px solid var(--olive); padding-bottom: 2px; }
.nav-cta {
  font-size: .78rem; font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cream); background: var(--green);
  padding: .6rem 1.5rem; text-decoration: none;
  border-radius: 2px;
  transition: background .25s;
}
.nav-cta:hover { background: var(--olive); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-burger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--green);
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; z-index: 190;
  background: rgba(249,246,243,0.99);
  border-bottom: 1px solid var(--green12);
  box-shadow: 0 12px 30px rgba(0,51,39,0.12);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400;
  color: var(--green); text-decoration: none;
  padding: .85rem 0;
  border-bottom: 1px solid var(--green05);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.active { color: var(--olive); font-style: italic; }

/* ── HERO (Hauptseite) ── */
.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  position: relative;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
}
.hero-eyebrow {
  font-size: .72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--olive); margin-bottom: 2rem;
  display: flex; align-items: center; gap: .8rem;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 28px; height: 1.5px;
  background: var(--olive); flex-shrink: 0;
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--green);
  margin-bottom: .8rem;
}
.hero-h1 em { font-style: italic; color: var(--olive); }
.hero-degrees {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400; font-style: italic;
  color: var(--olive);
  margin-bottom: 2rem;
}
.hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: var(--green50); max-width: 520px;
  margin-bottom: 3rem;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 3.5rem; }
.pill {
  font-size: .7rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green); background: var(--blue);
  padding: .4rem .9rem; border-radius: 2px;
  opacity: .85;
}
.btn-primary {
  font-size: .8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream); background: var(--green);
  padding: .9rem 2rem; text-decoration: none;
  border-radius: 2px; display: inline-flex; align-items: center; gap: .7rem;
  width: fit-content;
  transition: background .25s, gap .25s;
}
.btn-primary:hover { background: var(--olive); gap: 1.1rem; }
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,51,39,0.35) 0%, transparent 45%);
}

/* ── HAUPTSEITE: Wegweiser-Karten ── */
#explore {
  border-top: 1px solid var(--green12);
  padding: 6rem 5rem;
}
.explore-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--green12);
  border: 1px solid var(--green12);
  margin-top: 3rem;
}
.explore-card {
  background: var(--cream);
  padding: 2.2rem 1.8rem;
  text-decoration: none;
  display: flex; flex-direction: column; gap: .8rem;
  transition: background .3s;
}
.explore-card:hover { background: white; }
.explore-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300;
  color: var(--blue); line-height: 1;
}
.explore-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 400;
  color: var(--green); line-height: 1.25;
  flex: 1;
}
.explore-more {
  font-size: .68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--olive);
}

/* ── SHARED ── */
.section-label {
  font-size: .65rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--olive);
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: 2rem;
}
.section-label::before { content: ''; width: 22px; height: 1.5px; background: var(--olive); }
.display-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300; line-height: 1.1;
  color: var(--green);
  margin-bottom: 2rem;
}
.display-h2 em { font-style: italic; color: var(--olive); }
.body-text {
  font-size: .95rem; font-weight: 300; line-height: 1.9;
  color: var(--green50); margin-bottom: 1.2rem;
}
.body-text a { color: var(--olive); }

/* ── SUBPAGE HEADER ── */
.page-head {
  padding: 5rem 5rem 3.5rem;
  border-bottom: 1px solid var(--green12);
}
.page-head .display-h2 { margin-bottom: 0; }

/* ── ÜBER MICH ── */
#about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}
.about-portrait {
  position: relative; overflow: hidden;
  min-height: 620px;
  display: flex; align-items: flex-end;
  padding: 3rem;
}
.about-portrait-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.about-portrait-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,51,39,0.75) 0%, rgba(0,51,39,0.2) 45%, transparent 70%);
  z-index: 1;
}
.about-portrait-content { position: relative; z-index: 2; }
.about-portrait-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream); margin-bottom: .4rem;
}
.about-portrait-title {
  font-size: .7rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(179,201,214,0.8);
}
.about-content {
  padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.about-quals {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--green12);
  display: flex; flex-direction: column; gap: .8rem;
}
.qual-item {
  display: flex; align-items: baseline; gap: 1rem;
  font-size: .88rem; font-weight: 400;
  color: var(--green); line-height: 1.5;
}
.qual-item::before { content: '–'; color: var(--blue); font-weight: 600; flex-shrink: 0; }
.about-sub {
  font-size: .65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--olive); margin: 2rem 0 1rem;
}

/* ── SMARTPHONE & SOCIAL MEDIA ── */
.sp-head {
  padding: 6rem 5rem 4rem;
}
.sp-head .display-h2 { margin-bottom: 0; max-width: 780px; }
.sp-glance {
  background: var(--green);
  padding: 5rem 5rem;
}
.sp-glance .section-label { color: var(--blue); margin-bottom: 3rem; }
.sp-glance .section-label::before { background: var(--blue); }
.glance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(179,201,214,0.18);
  border: 1px solid rgba(179,201,214,0.18);
}
.glance-card {
  background: var(--green);
  padding: 2.4rem 2.6rem;
  display: flex; gap: 1.8rem; align-items: flex-start;
  transition: background .3s;
}
.glance-card:hover { background: rgba(86,103,70,0.35); }
.glance-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300;
  color: rgba(179,201,214,0.5);
  line-height: 1; flex-shrink: 0;
}
.glance-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400; line-height: 1.5;
  color: var(--cream);
}
.sp-body {
  padding: 6rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.sp-quote {
  position: sticky; top: 120px;
  border-left: 3px solid var(--blue);
  padding-left: 2rem;
}
.sp-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 300; font-style: italic;
  line-height: 1.45;
  color: var(--green);
}
.sp-text .body-text + .body-text { margin-top: .6rem; }

/* ── METHODEN / WINGWAVE ── */
#methoden { padding: 6rem 5rem; }
.methoden-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}
.method-block { margin-top: 2.5rem; }
.method-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 400;
  color: var(--green);
  margin-bottom: .8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--green12);
}
.method-block-title:first-child { border-top: none; padding-top: 0; }
.elements-box {
  border: 1px solid var(--green12);
  background: white;
  padding: 2rem;
}
.elements-title {
  font-size: .65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--olive); margin-bottom: 1.4rem;
}
.element-item { margin-bottom: 1.4rem; }
.element-item:last-child { margin-bottom: 0; }
.element-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 500;
  color: var(--green); margin-bottom: .3rem;
}
.element-desc {
  font-size: .82rem; font-weight: 300; line-height: 1.7;
  color: var(--green50);
}
.seal-box {
  margin-top: 2rem;
  display: flex; align-items: center; gap: 1.6rem;
  border: 1px solid var(--green12);
  background: var(--green05);
  padding: 1.6rem 1.8rem;
}
.seal-box img { width: 110px; height: auto; flex-shrink: 0; }
.seal-box p { font-size: .85rem; font-weight: 300; line-height: 1.7; color: var(--green50); margin: 0; }
.seal-box a { color: var(--olive); }

/* ── ANGEBOTE ── */
#angebote { padding: 6rem 5rem; background: var(--green05); }
.offer-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--green12);
  align-items: start;
}
.offer-row:first-of-type { border-top: 1px solid var(--green12); margin-top: 3rem; }
.offer-head { position: sticky; top: 110px; }
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 400;
  color: var(--green); margin-bottom: 1.4rem; line-height: 1.15;
}
.service-desc {
  font-size: .9rem; font-weight: 300; line-height: 1.85;
  color: var(--green50); margin-bottom: 1.6rem;
}
.service-facts {
  list-style: none;
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 1.8rem;
}
.service-facts li {
  font-size: .85rem; font-weight: 400;
  color: var(--green); line-height: 1.5;
  padding: .7rem 0;
  border-bottom: 1px solid var(--green12);
  display: flex; gap: .7rem;
}
.service-facts li:first-child { border-top: 1px solid var(--green12); }
.service-facts li::before { content: '–'; color: var(--blue); font-weight: 600; }
.service-list {
  list-style: none;
  display: flex; flex-direction: column; gap: .45rem;
  margin-bottom: 1.6rem;
}
.service-list li {
  font-size: .85rem; font-weight: 300;
  color: var(--green50); line-height: 1.6;
  display: flex; gap: .6rem;
}
.service-list li::before { content: '–'; color: var(--blue); flex-shrink: 0; }
.offer-label {
  font-size: .62rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--olive); margin: 1.4rem 0 .6rem;
}
.btn-service {
  font-size: .72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--green25);
  padding: .7rem 1.4rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: .6rem;
  width: fit-content;
  transition: background .25s, color .25s, border-color .25s;
}
.btn-service:hover { background: var(--green); color: var(--cream); border-color: var(--green); }

/* ── DEIN WEG ── */
#weg { padding: 6rem 5rem; border-top: 1px solid var(--green12); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--green12);
  border: 1px solid var(--green12);
  margin-top: 3rem;
}
.process-step { background: var(--cream); padding: 3rem 2.5rem; }
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: var(--blue);
  line-height: 1; margin-bottom: 1.5rem;
}
.process-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400;
  color: var(--green); margin-bottom: 1rem; line-height: 1.2;
}
.process-desc {
  font-size: .85rem; font-weight: 300; line-height: 1.75;
  color: var(--green50);
}

/* ── FAQ ── */
#faq { padding: 6rem 5rem; }
.faq-list { max-width: 820px; margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--green12); }
.faq-item:first-of-type { border-top: 1px solid var(--green12); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.6rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400;
  color: var(--green);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--olive); }
.faq-plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-plus::before, .faq-plus::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--olive);
}
.faq-plus::before { width: 14px; height: 1.5px; }
.faq-plus::after { width: 1.5px; height: 14px; transition: transform .3s; }
.faq-item[open] .faq-plus::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-answer {
  padding: 0 0 1.8rem;
  font-size: .9rem; font-weight: 300; line-height: 1.8;
  color: var(--green50);
  max-width: 680px;
}
.faq-answer ul { margin: .8rem 0 0; padding-left: 1.1rem; }
.faq-answer li { margin-bottom: .3rem; }

/* ── TERMIN BUCHEN ── */
#booking {
  border-top: 1px solid var(--green12);
  padding: 6rem 5rem;
  background: var(--green05);
}
.booking-embed { max-width: 1000px; margin: 3rem auto 0; }

/* ── KONTAKT ── */
#contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--green12);
}
.contact-left {
  padding: 6rem 4rem 6rem 5rem;
  border-right: 1px solid var(--green12);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--green);
}
.contact-left .section-label { color: var(--blue); }
.contact-left .section-label::before { background: var(--blue); }
.contact-left .display-h2 { color: var(--cream); }
.contact-left .display-h2 em { color: var(--blue); }
.contact-items { display: flex; flex-direction: column; }
.contact-item {
  display: flex; align-items: baseline; gap: 2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(249,246,243,0.1);
}
.contact-item:first-child { border-top: 1px solid rgba(249,246,243,0.1); }
.ci-label {
  font-size: .6rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); min-width: 80px;
}
.ci-val { font-size: .88rem; color: rgba(249,246,243,0.8); font-weight: 300; }
.contact-right { padding: 6rem 5rem 6rem 4rem; }
.form-field { margin-bottom: 1.5rem; }
.form-label {
  display: block; font-size: .62rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--olive); margin-bottom: .6rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: transparent;
  border: none; border-bottom: 1px solid var(--green12);
  padding: .65rem 0;
  font-family: 'Nunito Sans', sans-serif;
  font-size: .9rem; font-weight: 300;
  color: var(--green); outline: none;
  transition: border-color .25s;
  appearance: none; border-radius: 0;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-bottom-color: var(--green); }
.form-field textarea { resize: none; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.btn-submit {
  margin-top: .5rem;
  font-family: 'Nunito Sans', sans-serif;
  font-size: .78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream); background: var(--green);
  border: none; padding: 1rem 2.2rem;
  cursor: pointer; display: inline-flex; align-items: center; gap: .8rem;
  transition: background .25s, gap .25s;
  border-radius: 2px;
}
.btn-submit:hover { background: var(--olive); gap: 1.2rem; }

/* ── WEITER-NAVIGATION (Unterseiten) ── */
.next-page {
  border-top: 1px solid var(--green12);
  padding: 4rem 5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.next-page-label {
  font-size: .62rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--olive);
}
.next-page a.next-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400;
  color: var(--green); text-decoration: none;
  display: inline-flex; align-items: center; gap: .8rem;
  transition: color .2s, gap .25s;
}
.next-page a.next-link:hover { color: var(--olive); gap: 1.2rem; }

/* ── FOOTER ── */
footer {
  background: var(--green);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  border-top: 2px solid var(--olive);
}
.footer-left {
  padding: 3rem 4rem 3rem 5rem;
  border-right: 1px solid rgba(249,246,243,0.08);
  display: flex; align-items: center; gap: 1.2rem;
}
.footer-logo-img { width: 40px; height: 40px; border-radius: 50%; }
.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 500;
  color: var(--cream); letter-spacing: 0.06em;
}
.footer-logo-sub {
  font-size: .65rem; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(249,246,243,0.35);
  display: block;
}
.footer-right {
  padding: 3rem 5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links a {
  font-size: .68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(249,246,243,0.35); text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-copy { font-size: .65rem; color: rgba(249,246,243,0.2); white-space: nowrap; }

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  nav { padding: 1.1rem 2rem; }
  .nav-links { gap: 1.4rem; }
  .hero-left { padding: 4rem 2.5rem 4rem 3rem; }
  #explore, #booking, #methoden, #angebote, #weg, #faq { padding-left: 3rem; padding-right: 3rem; }
  .sp-head, .sp-glance, .sp-body { padding-left: 3rem; padding-right: 3rem; }
  .about-content { padding: 4.5rem 3rem; }
  .contact-left { padding-left: 3rem; }
  .contact-right { padding-right: 3rem; }
  .methoden-grid { gap: 3rem; }
  .offer-row { grid-template-columns: 280px 1fr; gap: 3rem; }
}
@media (max-width: 960px) {
  nav { padding: .8rem 1.25rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right {
    display: block; order: -1;
    height: min(52vh, 420px);
  }
  .hero-left { padding: 3rem 1.5rem 4rem; }
  .hero-h1 { font-size: clamp(2.6rem, 10vw, 3.6rem); }
  #explore { padding: 4rem 1.5rem; }
  .explore-grid { grid-template-columns: 1fr 1fr; }
  .page-head { padding: 3.5rem 1.5rem 2.5rem; }
  #about, #contact { grid-template-columns: 1fr; }
  .about-portrait { min-height: 380px; }
  .about-content { padding: 4rem 1.5rem; }
  .methoden-grid { grid-template-columns: 1fr; }
  #methoden, #angebote, #weg, #faq, #booking { padding: 4rem 1.5rem; }
  .sp-head { padding: 3.5rem 1.5rem 2.5rem; }
  .sp-glance { padding: 3.5rem 1.5rem; }
  .glance-grid { grid-template-columns: 1fr; }
  .sp-body { padding: 4rem 1.5rem; grid-template-columns: 1fr; gap: 2.5rem; }
  .sp-quote { position: static; }
  .process-grid { grid-template-columns: 1fr; }
  .offer-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .offer-head { position: static; }
  .contact-left, .contact-right { padding: 4rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .next-page { padding: 3rem 1.5rem; flex-direction: column; align-items: flex-start; }
  .booking-embed { margin-top: 2rem; }
  footer { grid-template-columns: 1fr; }
  .footer-left { padding: 2rem 1.5rem; border-right: none; }
  .footer-right { padding: 0 1.5rem 2rem; flex-direction: column; gap: 1rem; align-items: flex-start; }
}
@media (max-width: 600px) {
  .explore-grid { grid-template-columns: 1fr; }
  .seal-box { flex-direction: column; text-align: center; }
  .glance-card { flex-direction: column; gap: .8rem; }
}

/* ============================================
   ERGÄNZUNGEN – nutzen ausschließlich die
   bestehenden Farben, Schriften und Abstände
   ============================================ */

/* ── STARTSEITE: "Maria Alram" in Dunkelgrün statt Olive ── */
.hero-h1 em { color: var(--green); }

/* ── ANFAHRT (Google-Maps-Karte) ── */
#anfahrt {
  padding: 6rem 5rem;
  border-top: 1px solid var(--green12);
}
#anfahrt .body-text { margin-bottom: 2.5rem; }

/* ── DEIN WEG INS COACHING: Zahlen zurückhaltender ── */
#weg .process-step { padding: 2.8rem 2.5rem; }
#weg .process-num {
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 1.4rem;
}
#weg .process-title { font-size: 1.3rem; margin-bottom: .9rem; }

/* ═══════════════════════════════════════════════════════════
   WORKSHOP-SEITEN – zurückgenommene Variante
   Angelehnt an das Teambuilding-Poster, aber ohne die großen
   Farbflächen: runde Ecken, ein blaues Badge, hellblauer
   Ziele-Kasten und eine kompakte grüne Rahmendaten-Karte.
   Kein grünes Kopfband, keine Deko-Formen.
   Gilt nur für Seiten mit .ws-page.
   ═══════════════════════════════════════════════════════════ */
.ws-page {
  padding: 5rem 5rem 6rem;
  background: var(--green05);
}

/* Kopfzeile mit blauem Badge */
.ws-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.ws-badge {
  display: inline-flex; align-items: center; gap: .75rem;
  background: var(--blue);
  color: var(--green);
  border-radius: 999px;
  padding: .5rem 1.2rem .5rem 1.3rem;
  font-size: .8rem; font-weight: 600; line-height: 1.25;
  flex-shrink: 0;
}
.ws-badge img { width: 30px; height: 30px; border-radius: 50%; }

/* Workshop-Karte: schlichte Karte mit feiner Kontur */
.ws-workshop {
  background: white;
  border: 1px solid var(--green12);
  border-radius: 16px;
  padding: 2.6rem 2.8rem 2.4rem;
}
.ws-workshop + .ws-workshop { margin-top: 2rem; }
.ws-w-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 400; line-height: 1.15;
  color: var(--green); margin-bottom: .6rem;
}
.ws-w-claim {
  font-size: 1rem; font-weight: 600; line-height: 1.5;
  color: var(--olive); margin-bottom: 1.6rem;
}
.ws-w-text {
  font-size: .95rem; font-weight: 300; line-height: 1.85;
  color: var(--green50); margin-bottom: 1.1rem;
}
.ws-w-text em { font-style: italic; }

/* Ziele (hellblau) und Rahmendaten (grün, kompakt) */
.ws-split {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 1.4rem; margin-top: 2.2rem; align-items: start;
}
.ws-goals {
  background: var(--blue);
  border-radius: 12px;
  padding: 1.6rem 1.8rem;
}
.ws-goals-title {
  font-size: .95rem; font-weight: 700;
  color: var(--green); margin-bottom: 1rem;
}
.ws-goals ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.ws-goals li {
  display: flex; gap: .7rem;
  font-size: .88rem; font-weight: 400; line-height: 1.55;
  color: var(--green);
}
.ws-goals li::before { content: '–'; font-weight: 700; flex-shrink: 0; }
.ws-facts-card {
  background: var(--green);
  border-radius: 14px;
  padding: 1.6rem 1.8rem;
}
.ws-facts-card dl {
  display: grid; grid-template-columns: auto 1fr;
  gap: .8rem 1.1rem;
}
.ws-facts-card dt { font-size: .88rem; font-weight: 700; color: var(--blue); }
.ws-facts-card dd {
  font-size: .88rem; font-weight: 600;
  color: var(--cream); line-height: 1.5;
}
.ws-facts-card dd small { font-weight: 300; font-size: .9em; }

/* Handlungsknopf */
.ws-cta {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--green); color: var(--cream);
  border-radius: 999px; padding: .85rem 1.9rem;
  font-size: .74rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  text-decoration: none; margin-top: 2rem;
  transition: background .25s, gap .25s;
}
.ws-cta:hover { background: var(--olive); gap: 1.1rem; }

/* Termine-Block */
.ws-page .termine-block {
  border: 1px solid var(--green12);
  border-left: 3px solid var(--blue);
  border-radius: 12px;
  background: var(--green05);
  padding: 1.4rem 1.6rem;
  margin: 2rem 0 0;
}

/* ── ÜBERSICHTSSEITE: drei Karten, farbig nur in der Ziffer ── */
.ws-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.ws-tile {
  display: flex; flex-direction: column; gap: 1rem;
  background: white;
  border: 1px solid var(--green12);
  border-radius: 18px;
  padding: 2.2rem 1.9rem 2rem;
  text-decoration: none;
  transition: transform .25s, border-color .25s;
}
.ws-tile:hover { transform: translateY(-4px); border-color: var(--green25); }
.ws-tile-num {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500;
  flex-shrink: 0;
}
.ws-tile-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; line-height: 1.2;
  color: var(--green);
}
.ws-tile-desc {
  font-size: .87rem; font-weight: 300; line-height: 1.7;
  color: var(--green50); flex: 1;
}
.ws-tile-more {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--olive);
}
.ws-tile.v-green .ws-tile-num { background: var(--green); color: var(--cream); }
.ws-tile.v-blue  .ws-tile-num { background: var(--blue);  color: var(--green); }
.ws-tile.v-olive .ws-tile-num { background: var(--olive); color: var(--cream); }

@media (max-width: 1200px) {
  .ws-page { padding: 4rem 3rem 5rem; }
}
@media (max-width: 960px) {
  .ws-page { padding: 3rem 1.5rem 4rem; }
  .ws-workshop { padding: 2rem 1.5rem 1.8rem; }
  .ws-split { grid-template-columns: 1fr; }
  .ws-cards { grid-template-columns: 1fr; }
}

/* ── ÜBER MICH: kleines, rundes Portrait neben dem Text ── */
#about.about-single { display: block; }
#about.about-single .about-content {
  max-width: 900px;
  margin: 0 auto;
}
.about-intro {
  display: flex; align-items: center; gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.about-photo-round {
  width: 170px; height: 170px; flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover; object-position: center top;
  border: 1px solid var(--green12);
  display: block;
}
.about-intro .display-h2 { margin-bottom: 0; }

/* ── Anklickbare Schwerpunkte ── */
a.qual-item { text-decoration: none; transition: color .2s; }
a.qual-item:hover { color: var(--olive); }
a.qual-item .qual-arrow {
  font-size: .68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--olive); margin-left: .3rem;
  opacity: 0; transition: opacity .2s;
}
a.qual-item:hover .qual-arrow { opacity: 1; }
.schwerpunkt-more {
  font-size: .68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--olive); text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.4rem; width: fit-content;
  transition: gap .25s;
}
.schwerpunkt-more:hover { gap: .9rem; }

/* ── Anklickbare Pills (Startseite) ── */
a.pill {
  text-decoration: none;
  transition: opacity .25s, background .25s, color .25s;
}
a.pill:hover { opacity: 1; background: var(--olive); color: var(--cream); }

/* ── COACHING & BERATUNG / WORKSHOPS (Unterseiten) ── */
#coaching, #workshops { padding: 6rem 5rem; background: var(--green05); }

/* ── TERMINE-BLOCK (pro Workshop, leicht austauschbar) ── */
.termine-block {
  border: 1px solid var(--green12);
  border-left: 3px solid var(--blue);
  background: white;
  padding: 1.4rem 1.6rem;
  margin: 1.6rem 0 1.8rem;
}
.termine-label {
  font-size: .62rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--olive); margin-bottom: .9rem;
}
.termine-list { list-style: none; display: flex; flex-direction: column; }
.termine-list li {
  display: grid; grid-template-columns: 160px 1fr;
  gap: 1rem; padding: .6rem 0;
  font-size: .85rem; font-weight: 300;
  color: var(--green50); line-height: 1.6;
}
.termine-list li + li { border-top: 1px solid var(--green05); }
.termin-date { font-weight: 600; color: var(--green); }
.termine-empty {
  font-size: .85rem; font-weight: 300;
  color: var(--green50); line-height: 1.7;
}

/* ── RÄUMLICHKEITEN-GALERIE ── */
.rooms { padding: 6rem 5rem; border-top: 1px solid var(--green12); }
.rooms-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--green12);
  border: 1px solid var(--green12);
  margin-top: 3rem;
}
.room-figure { margin: 0; background: var(--cream); overflow: hidden; }
.room-figure img {
  width: 100%; aspect-ratio: 16 / 9; height: auto;
  object-fit: cover; display: block;
}
.room-caption {
  font-size: .68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--olive);
  padding: 1rem 1.2rem;
}
.rooms-credit {
  font-size: .7rem; font-weight: 300;
  color: var(--green50); margin-top: 1.4rem;
}

/* ── Redaktioneller Platzhalter-Hinweis ── */
.todo-note {
  border: 1px dashed var(--green25);
  background: var(--green05);
  padding: 1.2rem 1.4rem;
  font-size: .82rem; font-weight: 300; line-height: 1.7;
  color: var(--olive);
  margin-bottom: 1.6rem;
}

@media (max-width: 1200px) {
  #coaching, #workshops, .rooms, #anfahrt { padding-left: 3rem; padding-right: 3rem; }
}
@media (max-width: 960px) {
  #coaching, #workshops, .rooms, #anfahrt { padding: 4rem 1.5rem; }
  .rooms-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .about-intro { flex-direction: column; align-items: flex-start; gap: 1.6rem; }
  .about-photo-round { width: 130px; height: 130px; }
  .termine-list li { grid-template-columns: 1fr; gap: .2rem; }
}

/* ── Räumlichkeiten: Fotos mit runden Ecken ── */
.rooms-grid { background: transparent; border: none; gap: 1.4rem; }  /* Praxisfotos mit runden Ecken */
.room-figure { border-radius: 22px; }

/* ── SCHWERPUNKT-SEITEN: schlichter Textbereich ── */
.sp-simple { padding: .5rem 5rem 5rem; max-width: 880px; }
.sp-lead { margin-bottom: .9rem; }
.sp-list {
  list-style: none;
  display: flex; flex-direction: column; gap: .8rem;
}
.sp-list li {
  display: flex; gap: .8rem;
  font-size: .95rem; font-weight: 300; line-height: 1.8;
  color: var(--green50);
}
.sp-list li::before { content: '–'; color: var(--blue); flex-shrink: 0; }
@media (max-width: 1200px) { .sp-simple { padding: .5rem 3rem 4.5rem; } }
@media (max-width: 960px)  { .sp-simple { padding: .5rem 1.5rem 3.5rem; } }
