:root {
  --cream: #f5f0e3;
  --cream-raised: #fbf8f1;
  --forest: #2b534c;
  --forest-soft: #5c7a73;
  --ochre: #a9702f;
  --ochre-dark: #8c5b25;
  --sage: #dce4da;
  --line: rgba(43, 83, 76, 0.16);
  --max-width: 1100px;
  --radius: 10px;
  --shadow-sm: 0 1px 2px rgba(30, 48, 44, 0.06), 0 2px 8px rgba(30, 48, 44, 0.05);
  --shadow: 0 4px 12px rgba(30, 48, 44, 0.08), 0 12px 28px rgba(30, 48, 44, 0.08);
  --shadow-hover: 0 8px 18px rgba(30, 48, 44, 0.1), 0 20px 36px rgba(30, 48, 44, 0.1);

  /* Nachtruhe — dark section palette (hero, testimonials, QAT) */
  --night: #142621;
  --night-deep: #0e1b17;
  --copper: #c17a3f;
  --copper-bright: #d69456;
  --cream-on-night: #f2ede1;
  --muted-on-night: #b9b2a0;
  --line-on-night: rgba(242, 237, 225, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Seravek", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--forest);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Noto Serif", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: var(--forest);
}

p {
  margin: 0 0 1em;
}

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

a {
  color: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* Buttons & links */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 10px;
  background: var(--ochre);
  color: var(--cream-raised);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(140, 91, 37, 0.25), 0 6px 16px rgba(140, 91, 37, 0.18);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  background: var(--ochre-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(140, 91, 37, 0.28), 0 10px 22px rgba(140, 91, 37, 0.2);
}

.btn:active {
  transform: translateY(0);
}

.link-cta {
  color: var(--forest);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}

.link-cta:hover {
  border-color: var(--ochre);
  color: var(--ochre-dark);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

/* Header / nav */
header.site-header {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--forest);
}

.logo .dot {
  color: var(--ochre);
}

nav.main-nav {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

nav.main-nav a {
  color: var(--forest);
  text-decoration: none;
}

nav.main-nav a:hover,
nav.main-nav a[aria-current="page"] {
  color: var(--ochre-dark);
}

/* Hero */
.hero {
  padding: 4.5rem 0 5rem;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 2.75rem);
  margin-bottom: 1.1rem;
}

.hero .sub {
  font-size: 1.08rem;
  color: var(--forest-soft);
  max-width: 46ch;
  margin-bottom: 2.1rem;
}

.hero-media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: linear-gradient(155deg, rgba(43, 83, 76, 0.9), rgba(43, 83, 76, 0.65));
  box-shadow: var(--shadow);
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Full-bleed video hero (Startseite) — Video über volle Breite, links
   ausgeblendet damit der Text lesbar bleibt, rechts normal sichtbar */
.hero.hero-video {
  position: relative;
  padding: 0;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  z-index: 0;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(14, 27, 23, 0.95) 0%,
    rgba(14, 27, 23, 0.85) 20%,
    rgba(14, 27, 23, 0.55) 45%,
    rgba(14, 27, 23, 0.22) 65%,
    rgba(14, 27, 23, 0) 85%
  );
}

.hero.hero-video .container {
  position: relative;
  z-index: 2;
  display: block;
}

.hero-video .hero-text {
  max-width: 46ch;
}

@media (max-width: 860px) {
  .hero.hero-video {
    min-height: 520px;
  }

  .hero-video .hero-scrim {
    background: linear-gradient(
      to right,
      rgba(14, 27, 23, 0.97) 0%,
      rgba(14, 27, 23, 0.9) 35%,
      rgba(14, 27, 23, 0.55) 60%,
      rgba(14, 27, 23, 0.18) 82%,
      rgba(14, 27, 23, 0) 100%
    );
  }
}

.photo-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(43, 83, 76, 0.9), rgba(43, 83, 76, 0.65)),
    repeating-linear-gradient(45deg, rgba(245, 240, 227, 0.06) 0 2px, transparent 2px 14px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 2rem;
}

/* Photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.photo-strip img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.photo-strip.pair {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 700px) {
  .photo-strip {
    grid-template-columns: 1fr 1fr;
  }
}

/* Page hero (non-home pages, no split layout) */
.page-hero {
  padding: 3.5rem 0 1rem;
}

.page-hero .eyebrow {
  margin-bottom: 0.5rem;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  max-width: 28ch;
}

.page-hero .sub {
  font-size: 1.05rem;
  color: var(--forest-soft);
  max-width: 60ch;
  margin-top: 1rem;
}

/* Generic section rhythm */
.section {
  padding: 3.8rem 0;
}

.band {
  background: var(--sage);
}

/* Nachtruhe — dark treatment for hero / testimonial / QAT sections */
.night {
  background: var(--night);
  color: var(--cream-on-night);
}

.night h1,
.night h2,
.night h3 {
  color: var(--cream-on-night);
}

.night .eyebrow {
  color: var(--copper-bright);
}

.night .sub,
.night .lede,
.night p {
  color: var(--muted-on-night);
}

.night .section-title {
  color: var(--cream-on-night);
}

.night .section-sub {
  color: var(--muted-on-night);
}

.night .link-cta {
  color: var(--cream-on-night);
  border-color: var(--line-on-night);
}

.night .link-cta:hover {
  color: var(--copper-bright);
  border-color: var(--copper-bright);
}

.night .btn {
  background: var(--copper);
  color: var(--night-deep);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3), 0 6px 16px rgba(0, 0, 0, 0.22);
}

.night .btn:hover {
  background: var(--copper-bright);
}

.night .pull-quote {
  border-left-color: var(--copper);
}

.night .pull-quote p {
  color: var(--cream-on-night);
}

.night .pull-quote cite {
  color: var(--muted-on-night);
}

.night .source-tag {
  color: var(--muted-on-night);
}

.night .testimonial-card {
  background: var(--night-deep);
  border-color: var(--line-on-night);
}

.night .testimonial-card blockquote {
  color: var(--cream-on-night);
}

.night .testimonial-card figcaption {
  color: var(--muted-on-night);
}

.night .testimonial-name {
  color: var(--cream-on-night);
}

.night .hero-media {
  background: linear-gradient(155deg, rgba(20, 38, 33, 0.9), rgba(14, 27, 23, 0.65));
}

.night.page-hero {
  padding: 4rem 0 2.4rem;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-soft);
  margin-bottom: 0.4rem;
}

.section-title {
  text-align: center;
  font-size: 1.55rem;
  margin-bottom: 0.6rem;
}

.section-sub {
  text-align: center;
  color: var(--forest-soft);
  max-width: 56ch;
  margin: 0 auto 2.4rem;
}

/* Intro / two-column */
.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
}

.intro-grid h2 {
  font-size: 1.55rem;
  margin-bottom: 1.2rem;
}

.lede {
  font-size: 1.02rem;
  color: var(--forest-soft);
  max-width: 52ch;
  margin-bottom: 1.4rem;
}

ul.clean {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

ul.clean li {
  padding-left: 1.3rem;
  position: relative;
  font-size: 0.98rem;
}

ul.clean li::before {
  content: "\2013";
  position: absolute;
  left: 0;
  color: var(--ochre);
  font-weight: 700;
}

/* Cards (offer overview, tiers) */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--cream-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}

.card p {
  font-size: 0.92rem;
  color: var(--forest-soft);
  margin: 0 0 1.3rem;
}

.card .btn,
.card .link-cta {
  margin-top: auto;
  align-self: flex-start;
}

/* Tier cards (Einzelarbeit) */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tier-card {
  background: var(--cream-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.tier-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.tier-card.flagship {
  border-color: var(--ochre);
  border-width: 2px;
  box-shadow: var(--shadow);
}

.tier-card.flagship:hover {
  box-shadow: var(--shadow-hover);
}

.tier-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ochre-dark);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.tier-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.tier-card p {
  font-size: 0.93rem;
  color: var(--forest-soft);
}

.tier-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0.8rem 0 1.3rem;
  font-variant-numeric: tabular-nums;
}

.tier-price .old {
  font-size: 0.9rem;
  color: var(--forest-soft);
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 0.4rem;
}

.tier-card .btn {
  margin-top: auto;
  text-align: center;
}

/* Steps (Ablauf einer Sitzung) */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.2rem;
}

.steps .time {
  font-size: 0.72rem;
  color: var(--ochre-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.steps h3 {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.steps p {
  font-size: 0.88rem;
  color: var(--forest-soft);
  margin: 0;
}

/* Kennenlerngespräch embed block */
.embed-block {
  background: var(--cream-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  text-align: center;
}

.embed-block h2 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.embed-block .lede {
  margin: 0 auto 1.6rem;
  text-align: left;
}

.embed-frame-wrap {
  min-height: 640px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.embed-frame-wrap iframe {
  width: 100%;
  min-height: 640px;
  border: 0;
}

.embed-hint {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--forest-soft);
}

.embed-alt {
  margin-top: 1.4rem;
  font-size: 0.9rem;
}

/* Pull quote */
.pull-quote {
  max-width: 62ch;
  margin: 0 auto 2.5rem;
  padding-left: 1.6rem;
  border-left: 3px solid var(--ochre);
}

.pull-quote p {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Noto Serif", Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--forest);
  margin: 0 0 0.8rem;
}

.pull-quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--forest-soft);
}

.source-tag {
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--forest-soft);
  opacity: 0.85;
}

/* Testimonial slider */
.testimonial-slider {
  overflow-x: auto;
  scroll-snap-type: x proximity;
  margin: 0 -1.75rem;
  padding: 0.3rem 1.75rem 1rem;
  -webkit-overflow-scrolling: touch;
}

.testimonial-track {
  display: flex;
  gap: 1.25rem;
}

.testimonial-track .testimonial-card {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;
}

/* Zig-zag image/text rows */
.zigzag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.zigzag.reverse .zigzag-media {
  order: -1;
}

.zigzag-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 860px) {
  .zigzag {
    grid-template-columns: 1fr;
  }

  .zigzag.reverse .zigzag-media {
    order: 0;
  }
}

/* Timeline (Ablauf einer Sitzung) */
.timeline {
  position: relative;
  max-width: 640px;
  margin: 2.4rem auto 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ochre);
  box-shadow: 0 0 0 3px var(--cream);
}

.band .timeline-item::before {
  box-shadow: 0 0 0 3px var(--sage);
}

.timeline-item .time {
  font-size: 0.72rem;
  color: var(--ochre-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.timeline-item h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.timeline-item p {
  font-size: 0.92rem;
  color: var(--forest-soft);
  margin: 0;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  margin: 0;
  background: var(--cream-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.55;
}

.testimonial-card figcaption {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--forest-soft);
}

.testimonial-name {
  display: block;
  font-weight: 700;
  color: var(--forest);
}

@media (max-width: 800px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--ochre);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin: 0.9rem 0 0;
  color: var(--forest-soft);
}

/* Trust strip */
.trust-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--sage);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.8rem;
  flex-wrap: wrap;
}

.trust-portrait {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--cream-raised);
}

.trust-strip img {
  height: 64px;
  width: auto;
  flex-shrink: 0;
}

.trust-strip p {
  margin: 0;
  font-size: 0.95rem;
}

/* Location cards (Kurse) */
.location-card {
  background: var(--cream-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.8rem;
}

.location-card.secondary {
  background: transparent;
  border-style: dashed;
  padding: 1.4rem 1.8rem;
}

.location-card .status {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ochre-dark);
  background: var(--cream);
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  margin-bottom: 0.8rem;
}

.location-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.location-card p {
  font-size: 0.94rem;
  color: var(--forest-soft);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Contact embed (forms.app click-to-load) */
.contact-embed {
  text-align: center;
  background: var(--cream-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem 1.5rem;
}

.contact-embed iframe {
  width: 100%;
  min-height: 720px;
  border: 0;
  border-radius: var(--radius);
}

.contact-hint {
  margin: 0.9rem 0 0;
  font-size: 0.85rem;
  color: var(--forest-soft);
}

/* Footer */
footer.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--forest-soft);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.footer-links a {
  color: var(--forest-soft);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ochre-dark);
  text-decoration: underline;
}

/* Legal pages */
.legal {
  max-width: 70ch;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.legal h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.legal h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
}

.legal a {
  color: var(--ochre-dark);
}

@media (max-width: 860px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .cards,
  .tiers {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  nav.main-nav {
    gap: 1.1rem;
    font-size: 0.88rem;
  }
}
