/* seiler shiatsu — Design-System
   Farben, Typografie und Layout stammen aus den abgestimmten Entwürfen
   (finale-richtung.html, Website-Vorschau-Aktuell.html, Fortschritt-Stand.md). */

:root {
  --green: #6b9080;
  --green-dark: #4f7263;
  --ocher: #c08a3e;
  --ocher-dark: #a3752f;
  --ink: #2c2a25;
  --cream: #f5f1e7;
  --cream-light: #faf7ef;
  --line: #e2ded1;
  --muted: #7a7565;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Work Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
}
a { color: inherit; }
img, video { max-width: 100%; display: block; }
main { display: block; }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--green-dark);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 8px 0;
  z-index: 200;
  font-size: 0.85rem;
  text-decoration: none;
}
.skip-link:focus { left: 0; top: 0; }

/* ===== Nav ===== */
header.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 231, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
}
.logo-mark { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark img { width: 34px; height: 34px; object-fit: contain; }
.logo-mark span { font-family: var(--font-serif); font-size: 1.2rem; color: var(--ink); font-weight: 500; }

nav.links { display: flex; align-items: center; gap: 26px; font-size: 0.85rem; }
nav.links a { text-decoration: none; color: #5c584c; white-space: nowrap; }
nav.links a:hover { color: var(--green-dark); }
nav.links a.active { color: var(--green-dark); font-weight: 600; }
nav.links a.cta { background: var(--green); color: var(--cream-light); padding: 9px 18px; border-radius: 16px; }
nav.links a.cta:hover { background: var(--green-dark); color: var(--cream-light); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 42px;
  height: 38px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); display: block; }

@media (max-width: 860px) {
  header.topnav { padding: 12px 20px; }
  .nav-toggle { display: flex; }
  nav.links {
    position: fixed;
    top: 63px;
    left: 0;
    right: 0;
    background: var(--cream-light);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s, transform .15s;
  }
  nav.links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  nav.links a { padding: 14px 24px; border-bottom: 1px solid var(--line); }
  nav.links a.cta { margin: 10px 24px; text-align: center; border-radius: 20px; }
}

/* ===== Layout helpers ===== */
main > section, .page-section {
  padding: 70px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
main > section + section, .page-section + .page-section { border-top: 1px solid var(--line); }
@media (max-width: 640px) {
  main > section, .page-section { padding: 48px 22px; }
}

.eyebrow { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ocher-dark); margin-bottom: 14px; }
.sec-title { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 500; margin-bottom: 14px; }
.sec-lead { font-size: 1rem; line-height: 1.6; color: #4a473e; max-width: 640px; margin-bottom: 34px; }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; color: var(--ink); }

.btn { padding: 14px 30px; font-size: 0.88rem; border-radius: 24px; text-decoration: none; display: inline-block; cursor: pointer; border: 1px solid transparent; font-family: var(--font-sans); }
.btn-primary { background: var(--green); color: var(--cream-light); border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-secondary { background: transparent; color: var(--ocher-dark); border-color: var(--ocher); }
.btn-secondary:hover { background: var(--ocher); color: #fff; }
.btn-onlight { background: #fff; color: var(--green-dark); border-color: #fff; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Page hero (Unterseiten) ===== */
.pagehero { padding: 56px 40px 10px; max-width: 1100px; margin: 0 auto; }
.pagehero h1 { font-size: 2.5rem; margin-bottom: 14px; }
.pagehero p.lead { max-width: 640px; font-size: 1.02rem; line-height: 1.65; color: #4a473e; }
.pagehero p.lead + p.lead { margin-top: 14px; }
/* Wenn direkt danach ein schmalerer Inhaltsblock (max-width:800px) folgt, Seitenkopf angleichen, damit Absätze bündig bleiben */
.pagehero:has(+ .page-section[style*="800px"]) { max-width: 800px; }

/* ===== Hero (Home) ===== */
.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; margin-bottom: 56px; }
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; } }
.hero h1 { font-size: 2.8rem; line-height: 1.15; margin-bottom: 20px; }
.hero p.sub { font-size: 1.02rem; line-height: 1.65; max-width: 480px; margin-bottom: 30px; color: #3d3d38; }
.photo-frame { border-radius: 14px; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,0.16); aspect-ratio: 4 / 3; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.frame-photo { border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.frame-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.frame-portrait { aspect-ratio: 4 / 5; }
.frame-wide { aspect-ratio: 16 / 10; }
.frame-standard { aspect-ratio: 4 / 3; }

/* ===== Werdegang / Zusatzqualifikationen ===== */
.werdegang-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin: 16px 0 24px; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--green); border-radius: 10px; padding: 22px 24px; }
.werdegang-columns h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 10px; color: var(--green-dark); }
.timeline { list-style: none; }
.timeline li { display: flex; gap: 10px; padding: 5px 0; border-top: 1px solid var(--line); font-size: 0.78rem; color: #4a473e; line-height: 1.35; }
.timeline li:first-child { border-top: none; }
.timeline .year { flex: 0 0 78px; color: var(--green-dark); font-weight: 600; font-size: 0.72rem; }
.timeline a { color: var(--green-dark); }
.quals { list-style: none; }
.quals li { padding: 4px 0; border-top: 1px solid var(--line); font-size: 0.78rem; color: #4a473e; line-height: 1.35; }
.quals li:first-child { border-top: none; }
@media (max-width: 700px) { .werdegang-columns { grid-template-columns: 1fr; } }

/* ===== Tiles (Schwerpunkte) ===== */
.tiles { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 36px; }
.tile { flex: 1; min-width: 220px; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--green); border-radius: 10px; padding: 22px 20px; text-decoration: none; display: block; color: inherit; transition: box-shadow .15s; }
.tile:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.tile.ocher { border-top-color: var(--ocher); }
.tile h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--green-dark); }
.tile.ocher h3 { color: var(--ocher-dark); }
.tile p { font-size: 0.85rem; color: #5c584c; line-height: 1.45; }

/* ===== Media / radio box ===== */
.media-box { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 24px 26px; margin-bottom: 20px; }
.media-box .eyebrow { margin-bottom: 6px; }
.media-box h3 { font-size: 1.2rem; margin-bottom: 2px; }
.media-box .meta { font-size: 0.8rem; color: #7a7565; margin-bottom: 14px; }
audio { width: 100%; height: 38px; }

/* ===== Meridian block ===== */
.meridian-block { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 36px; align-items: center; margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--line); }
@media (max-width: 900px) {
  .meridian-block { grid-template-columns: 1fr; }
  .meridian-art { max-width: 240px; margin: 0 auto; }
}
.meridian-art { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.meridian-art svg { width: 100%; height: auto; display: block; }
.meridian-text h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--green-dark); }
.meridian-text p { font-size: 0.92rem; line-height: 1.7; color: #4a473e; max-width: 520px; }

/* ===== Cards / grids ===== */
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px; }
@media (max-width: 900px) { .grid2 { grid-template-columns: 1fr; } }
.card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 28px 30px; }
.card h3 { font-size: 1.3rem; color: var(--green-dark); margin-bottom: 16px; }

.kontakt-form { display: flex; flex-direction: column; gap: 16px; }
.kontakt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .kontakt-form-row { grid-template-columns: 1fr; } }
.kontakt-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.kontakt-form input, .kontakt-form textarea { font-family: var(--font-sans); font-size: 0.92rem; padding: 11px 14px; border: 1px solid var(--line); border-radius: 6px; color: var(--ink); background: var(--cream); }
.kontakt-form input:focus, .kontakt-form textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.kontakt-form textarea { resize: vertical; min-height: 60px; font-family: inherit; transition: min-height .25s ease; }
.kontakt-form textarea:focus { min-height: 140px; }
.kontakt-form button { align-self: flex-start; }
.kontakt-form-note { font-size: 0.76rem; color: var(--muted); margin-top: -6px; }
.kontakt-hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

.info-row { display: flex; gap: 16px; padding: 14px 0; align-items: flex-start; border-top: 1px solid var(--line); }
.info-row:first-child { border-top: none; padding-top: 0; }
.info-row:last-child { padding-bottom: 0; }
.info-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--cream); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.05rem; }
.info-row .label { font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-dark); font-weight: 600; margin-bottom: 4px; }
.info-row .value { font-size: 0.96rem; line-height: 1.5; }
.info-row .value a { text-decoration: none; color: var(--ink); border-bottom: 1px solid transparent; transition: border-color .15s, color .15s; }
.info-row .value a:hover { color: var(--green-dark); border-bottom-color: var(--green); }
.hours-grid { display: grid; grid-template-columns: max-content 1fr; column-gap: 16px; row-gap: 5px; }
.hours-grid .hours-day { font-weight: 600; }
.hours-grid .hours-time { color: var(--muted); }

.lead a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 2px; transition: color .15s; }
.lead a:hover { color: var(--ocher-dark); }

.map-wrap { border-radius: 10px; overflow: hidden; border: 1px solid var(--line); min-height: 300px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }

.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 28px; }
@media (max-width: 900px) { .info-cards { grid-template-columns: 1fr; } }
.komp-block { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--green); border-radius: 10px; padding: 26px 28px; margin-bottom: 22px; }
.komp-block.ocher { border-top-color: var(--ocher); }
.komp-block h3 { font-size: 1.2rem; color: var(--green-dark); margin-bottom: 6px; }
.komp-block.ocher h3 { color: var(--ocher-dark); }
.komp-block p { font-size: 0.9rem; line-height: 1.65; color: #4a473e; margin-bottom: 14px; }
.komp-block .komp-terms { font-size: 0.85rem; color: #5c584c; line-height: 1.6; margin-bottom: 14px; }

.info-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 24px 26px; }
.info-card .tag { display: inline-block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 10px; border-radius: 12px; margin-bottom: 12px; }
.tag-svs { background: #eef2ea; color: var(--green-dark); }
.tag-vers { background: #f3e6cd; color: var(--ocher-dark); }
.info-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.info-card p { font-size: 0.88rem; line-height: 1.6; color: #4a473e; margin-bottom: 14px; }
.link-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; text-decoration: none; padding: 10px 18px; border-radius: 20px; background: var(--green); color: var(--cream-light); }
.link-btn:hover { background: var(--green-dark); }

.fineprint { padding: 18px 22px; border-left: 3px solid var(--ocher); background: #fbf6ea; font-size: 0.82rem; line-height: 1.6; color: #6b5527; border-radius: 0 8px 8px 0; margin-bottom: 28px; }
.highlight-box { padding: 20px 24px; border-left: 3px solid var(--green); background: var(--cream-light); border-radius: 0 10px 10px 0; margin: 16px 0 24px; }
.highlight-box p { margin-bottom: 8px; font-size: 0.95rem; }
.highlight-box p:last-child { margin-bottom: 0; }
.flag { padding: 14px 18px; background: #fff3d6; border: 1px solid #e5cf99; border-radius: 8px; font-size: 0.85rem; color: #6b5527; margin-bottom: 28px; line-height: 1.55; }

.policy-list { list-style: none; margin-bottom: 28px; }
.policy-list li { font-size: 0.88rem; line-height: 1.8; padding-left: 18px; position: relative; color: #4a473e; }
.policy-list li::before { content: "—"; position: absolute; left: 0; color: var(--ocher); }

.agb-box { padding: 18px 24px; background: #fff; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 20px; transition: border-color .3s, background-color .3s; }
.agb-check { display: flex; align-items: flex-start; gap: 12px; }
.agb-check input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--green); flex-shrink: 0; }
.agb-check label { font-size: 0.92rem; line-height: 1.55; }
.agb-check a { color: var(--green-dark); text-decoration: underline; }
.agb-box.agb-alert { border-color: #c0503e; background: #fdecea; animation: agbPulse 0.4s ease-in-out 2; }
@keyframes agbPulse { 0%, 100% { box-shadow: none; } 50% { box-shadow: 0 0 0 4px rgba(192,80,62,0.25); } }

/* ===== Preise ===== */
.price-table { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; margin-bottom: 28px; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 20px 26px; border-bottom: 1px solid var(--line); gap: 16px; }
.price-row:last-child { border-bottom: none; }
.price-row .name { font-family: var(--font-serif); font-size: 1.15rem; }
.price-row .desc { font-size: 0.82rem; color: #7a7565; margin-top: 3px; }
.price-row .amount { font-family: var(--font-serif); font-size: 1.3rem; color: var(--green-dark); font-weight: 600; white-space: nowrap; }
.price-row .amount-link { color: inherit; text-decoration: none; border-bottom: 1px dashed var(--green-dark); }
.price-row .amount-link:hover { border-bottom-style: solid; }

/* ===== Buchung ===== */
.booking-embed { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; margin-bottom: 28px; }
.booking-tabs { display: flex; flex-wrap: wrap; gap: 8px; padding: 18px 24px; background: var(--cream); border-bottom: 1px solid var(--line); }
.booking-tab { padding: 8px 18px; border-radius: 20px; border: 1px solid var(--line); background: #fff; color: var(--muted); font-size: 0.85rem; font-family: var(--font-sans); cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.booking-tab.active { background: var(--green); border-color: var(--green); color: #fff; font-weight: 600; }
.agb-hint { margin-top: 8px; font-size: 0.76rem; color: var(--ocher-dark); }

.cta-box { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); border-radius: 10px; padding: 26px 30px; color: var(--cream-light); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.cta-box.ocher { background: linear-gradient(135deg, var(--ocher) 0%, var(--ocher-dark) 100%); }
.cta-box h3 { font-size: 1.35rem; margin-bottom: 6px; color: #fff; }
.cta-box p { font-size: 0.88rem; opacity: 0.92; }

.reviews-strip { padding: 24px 28px; border: 1px dashed var(--ocher); border-radius: 10px; background: #fbf6ea; margin-bottom: 28px; }
.reviews-strip .label { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ocher-dark); margin-bottom: 8px; }
.stars { color: var(--ocher-dark); letter-spacing: 2px; margin-bottom: 8px; font-size: 1rem; }
.reviews-strip p { font-size: 0.82rem; color: #7a7360; font-style: italic; }
.review-rotator { position: relative; }
.review-item { display: none; margin: 0; animation: reviewFade .5s ease; }
.review-item.active { display: block; }
@keyframes reviewFade { from { opacity: 0; } to { opacity: 1; } }

/* ===== Leistungen-Übersicht ===== */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 20px; }
@media (max-width: 900px) { .service-cards { grid-template-columns: 1fr; } }
.service-card { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--green); border-radius: 12px; padding: 26px 24px; text-decoration: none; color: inherit; display: block; }
.service-card:hover { box-shadow: 0 10px 28px rgba(0,0,0,0.08); }
.service-card.ocher { border-top-color: var(--ocher); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--green-dark); }
.service-card.ocher h3 { color: var(--ocher-dark); }
.service-card p { font-size: 0.88rem; color: #4a473e; line-height: 1.55; margin-bottom: 12px; }
.service-card .open { font-size: 0.8rem; color: var(--green-dark); font-weight: 600; }
.service-card.ocher .open { color: var(--ocher-dark); }

/* ===== Draft notice (Entwurfstexte) ===== */
.draft-notice { max-width: 1100px; margin: 20px auto 0; padding: 14px 24px; background: #fff3d6; border: 1px solid #e5cf99; border-radius: 8px; font-size: 0.82rem; color: #6b5527; line-height: 1.55; }
.draft-notice strong { color: #55431a; }
@media (max-width: 640px) { .draft-notice { margin: 16px 16px 0; padding: 14px 18px; } }

/* ===== Legal pages ===== */
.legal h2 { font-size: 1.3rem; margin: 28px 0 10px; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { font-size: 0.92rem; line-height: 1.7; color: #4a473e; margin-bottom: 10px; }
.legal ul { padding-left: 20px; margin-bottom: 10px; }
.legal .placeholder { background: #fff3d6; padding: 1px 6px; border-radius: 4px; color: #6b5527; font-style: normal; }

/* ===== AGB accordion (auf Preise-Seite) ===== */
details#agb-inline { margin-top: 8px; }
details#agb-inline summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; text-decoration: none; padding: 10px 18px; border-radius: 20px; background: var(--cream); border: 1px solid var(--ocher); color: var(--ocher-dark); }
details#agb-inline summary::-webkit-details-marker { display: none; }
details#agb-inline summary::after { content: "›"; transition: transform .15s; }
details#agb-inline[open] summary::after { transform: rotate(90deg); }
details#agb-inline .content { margin-top: 22px; padding: 26px 28px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }

/* ===== Footer ===== */
footer.sitefoot {
  text-align: center;
  padding: 40px 24px 60px;
  font-size: 0.82rem;
  color: var(--muted);
}
footer.sitefoot .foot-links { margin-top: 6px; }
footer.sitefoot a { color: var(--green-dark); text-decoration: none; }
footer.sitefoot a:hover { text-decoration: underline; }
