/* ============================================================
   Cosmatae — page-specific styles
   ============================================================ */

/* ---------- TODO / placeholder marker ---------- */
.todo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  background: rgba(176, 122, 74, 0.10);
  border: 1px dashed rgba(176, 122, 74, 0.6);
  color: var(--copper);
  font-family: var(--mono);
  font-size: 0.78em;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-radius: 4px;
  text-transform: none;
}
.todo::before {
  content: "›";
  opacity: 0.7;
}
.todo-block {
  padding: 24px;
  border: 1px dashed rgba(176, 122, 74, 0.6);
  background: rgba(176, 122, 74, 0.05);
  color: var(--copper);
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  line-height: 1.6;
}
.todo-block strong { color: var(--copper); font-weight: 500; display: block; margin-bottom: 6px; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.78rem; }

/* ---------- Italic serif accent ---------- */
.serif-italic {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--copper);
}

/* ---------- Link arrow ---------- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.link-arrow:hover { color: var(--copper); border-color: var(--copper); }
.link-arrow .arrow { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(3px); }

/* ---------- Section head row ---------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-head > div:first-child { display: grid; gap: 18px; max-width: 56ch; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-block: clamp(36px, 6vw, 80px) 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-bottom: clamp(60px, 8vw, 110px);
}
.hero-copy h1 { margin-top: 22px; }
.hero-logo { display: block; width: 156px; height: auto; margin-bottom: 30px; }
.hero-copy .lede { margin-top: 28px; }
.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: clamp(20px, 4vw, 50px);
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
}
.hero-meta span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 6px;
  display: block;
}

.hero-visual {
  position: relative;
  height: clamp(440px, 60vw, 620px);
}
.ph-hero {
  position: absolute;
  inset: 0 30% 18% 0;
  border-radius: var(--radius-lg);
}
.ph-hero.hero-img {
  width: 70%;
  height: 82%;
  right: auto;
  bottom: auto;
}
.ph-hero-2 {
  position: absolute;
  width: 50%;
  height: 38%;
  right: 0;
  bottom: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-img {
  object-fit: cover;
  display: block;
}
.ph-hero.hero-img { object-position: center 35%; }
.ph-hero-2.hero-img { object-position: center 40%; }
.floating-badge {
  position: absolute;
  left: 24px;
  top: 28px;
  background: var(--paper);
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  font-size: 0.84rem;
}
.floating-badge strong { display: block; color: var(--ink); }
.floating-badge small { display: block; color: var(--ink-soft); font-size: 0.74rem; margin-top: 2px; }
.badge-dot {
  width: 10px; height: 10px;
  background: #5DA66B;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(93, 166, 107, 0.18);
  animation: pulse 2.4s infinite var(--ease);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(93, 166, 107, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(93, 166, 107, 0.04); }
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 70vw; min-height: 360px; max-height: 540px; }
  .floating-badge { left: 16px; top: 16px; }
}

/* Marquee */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: 18px;
  overflow: hidden;
  background: var(--off-white);
}
.marquee-track {
  display: inline-flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
}
.marquee-track span:nth-child(even) { color: var(--champagne); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   INTRO
   ============================================================ */
.intro-section { background: var(--off-white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
@media (max-width: 720px) {
  .intro-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   USPS
   ============================================================ */
.usp-section { background: var(--off-white); }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usp {
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.usp:hover { transform: translateY(-4px); border-color: var(--champagne); }
.usp-num {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--copper);
  letter-spacing: 0.18em;
  margin-bottom: 30px;
}
.usp h3 { margin-bottom: 14px; }
@media (max-width: 880px) {
  .usp-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ZONES (Behandlungsbereiche)
   ============================================================ */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.zone {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--line-soft);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  transition-delay: var(--d, 0ms);
}
.zone:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.zone-img {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}
img.zone-img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.zone-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.zone-body h4 { font-size: 1.25rem; }
.zone-body span { color: var(--ink-soft); font-size: 0.86rem; }
@media (max-width: 880px) {
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .zones-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--off-white); }
.rating-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.rating-summary .stars { display: inline-flex; color: var(--champagne); gap: 2px; }
.rating-summary .stars svg { width: 18px; height: 18px; }
.rating-summary strong { font-family: var(--serif); font-size: 1.5rem; }
.rating-summary span { color: var(--ink-soft); font-size: 0.9rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  margin: 0;
  padding: 36px 32px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.testimonial .quote {
  width: 32px; height: 32px;
  color: var(--champagne);
  opacity: 0.6;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--champagne);
}
.avatar.tone-rose { background: var(--rose); }
.avatar.tone-cream { background: linear-gradient(135deg, #E6D9EA, #B79AC6); }
.avatar.tone-ink { background: linear-gradient(135deg, #6E4E7E, #2A2230); }
.testimonial figcaption strong { display: block; font-size: 0.95rem; }
.testimonial figcaption span { display: block; color: var(--ink-soft); font-size: 0.8rem; }
@media (max-width: 880px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--surface-dark);
  color: var(--off-white);
  padding-block: clamp(56px, 7vw, 100px) clamp(36px, 4vw, 52px);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142,107,160,0.16) 0%, transparent 70%);
  top: -100px; right: -80px;
}
.cta-banner h2 { color: var(--off-white); margin-top: 16px; }
.cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.phone-cta {
  display: block;
  padding: 10px 0 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  width: 100%;
}
.phone-cta span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
}
.phone-cta strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--off-white);
  margin-top: 6px;
}
.phone-cta:hover strong { color: var(--rose); }
@media (max-width: 720px) {
  .cta-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MAP
   ============================================================ */
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.map-info {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  gap: 18px;
}
.map-info li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.map-info span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.map-info strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; }
.map-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--off-white);
}
.map-pin {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--paper);
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  font-size: 0.86rem;
}
.map-pin svg { width: 18px; height: 18px; color: var(--copper); }
@media (max-width: 720px) {
  .map-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  padding-block: clamp(80px, 11vw, 160px) clamp(40px, 6vw, 80px);
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: attr(data-num);
  position: absolute;
  right: clamp(20px, 5vw, 60px);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 1;
  color: rgba(196, 168, 130, 0.18);
  pointer-events: none;
}
.page-header .container { display: grid; gap: 20px; max-width: 900px; position: relative; }
.page-header h1 { margin-top: 10px; }
.page-header .lede { margin-top: 14px; }
.crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.crumbs a:hover { color: var(--copper); }

/* ============================================================
   LEISTUNGEN — Treatments list
   ============================================================ */
.treatments-list {
  display: grid;
  gap: 28px;
}
.treatment {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  padding: clamp(28px, 4vw, 56px);
  background: var(--off-white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
}
.treatment:nth-child(even) { direction: rtl; }
.treatment:nth-child(even) > * { direction: ltr; }
.treatment .ph {
  aspect-ratio: 5 / 4;
  border-radius: var(--radius);
}
.treatment-img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 42%;
  border-radius: var(--radius);
  display: block;
}
.treatment h3 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 14px; }
.treatment ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}
.treatment ul li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.treatment ul li::before {
  content: "";
  margin-top: 9px;
  width: 12px;
  height: 1px;
  background: var(--copper);
}
.treatment .meta {
  display: flex;
  gap: 22px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.treatment .meta div { display: flex; flex-direction: column; gap: 2px; }
.treatment .meta span {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
}
.treatment .meta strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }
@media (max-width: 720px) {
  .treatment, .treatment:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
}

/* Process steps */
.process-section { background: var(--surface-dark); color: var(--off-white); }
.process-section h2 { color: var(--off-white); }
.process-section .eyebrow { color: var(--rose); }
.process-section .eyebrow::before { background: var(--rose); }
.process-section .lede { color: #C8BAD4; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 60px;
}
.process-step {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px 26px;
  background: rgba(255,255,255,0.03);
  position: relative;
}
.process-step .step-n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3rem;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 26px;
  font-weight: 400;
}
.process-step h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--off-white);
  margin-bottom: 10px;
}
.process-step p { color: #C8BAD4; font-size: 0.93rem; }
@media (max-width: 880px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--ink);
}
.faq-q .plus {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  width: 12px; height: 1px;
  background: currentColor;
  position: absolute;
  transition: transform .35s var(--ease);
}
.faq-q .plus::after { transform: rotate(90deg); }
.faq-item.open .faq-q .plus {
  background: var(--surface-dark);
  color: var(--off-white);
  border-color: var(--surface-dark);
}
.faq-item.open .faq-q .plus::after { transform: rotate(0deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding-bottom: 28px;
  max-width: 68ch;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ============================================================
   PREISE
   ============================================================ */
.pkg-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 500;
  margin: 14px 0 40px;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 80px;
}
.pkg-card {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pkg-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}
.pkg-card p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; flex: 1; }
.pkg-flag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
}
.pkg-price {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 4px;
}
.pkg-note { font-size: 0.85rem; color: var(--ink-soft); }
.pkg-card.featured {
  background: var(--surface-dark);
  color: var(--off-white);
  border-color: var(--surface-dark);
  position: relative;
  overflow: hidden;
}
.pkg-card.featured::before {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,212,0.22), transparent 70%);
  right: -90px; top: -90px;
}
.pkg-card.featured > * { position: relative; }
.pkg-card.featured h3 { color: var(--off-white); }
.pkg-card.featured .pkg-flag { color: var(--rose); }
.pkg-card.featured p { color: #C8BAD4; }
.pkg-card.featured .pkg-note { color: var(--rose); }
.price-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
  padding: 6px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
}
.price-cat {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.price-cat.active, .price-cat:hover {
  background: var(--surface-dark);
  color: var(--off-white);
}
.price-table {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 32px;
  border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease);
}
.price-row:hover { background: var(--cream); }
.price-row:last-child { border-bottom: 0; }
.price-row h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}
.price-desc {
  display: block;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--ink-soft);
  margin-top: 4px;
  line-height: 1.45;
}
.price-row .duration {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.price-row .single, .price-row .package {
  text-align: right;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.price-row-highlight {
  background: rgba(196, 168, 130, 0.08);
}
.price-row-highlight h4 { color: var(--copper); }
.price-row-highlight .single { color: var(--copper); font-size: 1.55rem; }
.price-row .package { color: var(--copper); }
.price-row .label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 4px;
  text-align: right;
}
.price-row .label-left { text-align: left; }
.price-row > div:nth-child(2) .label { text-align: left; }
.price-row .book-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 0.85rem;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.price-row .book-btn:hover { background: var(--surface-dark); color: var(--off-white); }
.price-head {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.price-head .price-row { padding-block: 16px; }
.price-head h3 {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
}
.price-note {
  margin-top: 28px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-align: center;
}
.price-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 70px;
}
.price-card {
  padding: 36px 32px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.price-card.featured {
  background: var(--surface-dark);
  color: var(--off-white);
  border-color: var(--surface-dark);
}
.price-card.featured h3, .price-card.featured h4 { color: var(--off-white); }
.price-card.featured p { color: #C8BAD4; }
.price-card .tag { align-self: flex-start; }
.price-card .price {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
}
.price-card .price small { font-size: 1rem; color: var(--ink-soft); }
.price-card.featured .price small { color: #C8BAD4; }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.price-card ul li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  font-size: 0.92rem;
}
.price-card ul li svg { width: 16px; height: 16px; color: var(--copper); margin-top: 4px; }
.price-card.featured ul li svg { color: var(--rose); }
@media (max-width: 880px) {
  .price-cards { grid-template-columns: 1fr; }
  .price-row {
    grid-template-columns: 1fr auto;
    gap: 12px 20px;
    padding: 18px 22px;
  }
}

/* ============================================================
   ÜBER UNS
   ============================================================ */
.bio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.bio-portrait {
  position: relative;
}
.bio-portrait .ph {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
}
.bio-portrait .bio-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: var(--radius-lg);
}
.bio-portrait .name-tag {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--paper);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.bio-portrait .name-tag strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  display: block;
}
.bio-portrait .name-tag span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.bio-body p { font-size: 1.05rem; line-height: 1.7; }
.bio-body p + p { margin-top: 22px; }
.bio-body .signature {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--copper);
  margin-top: 36px;
}
.creds-list {
  display: grid;
  gap: 14px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.creds-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  font-size: 0.95rem;
  align-items: start;
}
.creds-list li svg { width: 18px; height: 18px; color: var(--copper); margin-top: 4px; }
.studio-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 16px;
  margin-top: 80px;
}
.studio-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.studio-feature-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow);
}
.studio-feature-body h2 { margin-top: 8px; }
@media (max-width: 720px) {
  .studio-feature { grid-template-columns: 1fr; gap: 28px; }
  .studio-feature-media img { aspect-ratio: 4 / 3; }
}
.studio-gallery .ph:nth-child(1) { grid-row: 1 / 3; }
.studio-gallery .ph { aspect-ratio: auto; }
.studio-gallery .gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.studio-gallery .gallery-img:nth-child(1) { grid-row: 1 / 3; object-position: center 30%; }
.studio-gallery .gallery-img:nth-child(2) { object-position: center 22%; }
@media (max-width: 720px) {
  .bio-grid { grid-template-columns: 1fr; }
  .studio-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .studio-gallery .ph:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
}

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
}
.contact-info {
  background: var(--surface-dark);
  color: var(--off-white);
  padding: clamp(36px, 4vw, 56px);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142,107,160,0.18), transparent 70%);
  right: -120px; top: -120px;
}
.contact-info h2 { color: var(--off-white); }
.contact-info .lede { color: #C8BAD4; }
.contact-info > * { position: relative; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  gap: 22px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}
.contact-list li > div { min-width: 0; }
.contact-list .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  display: grid; place-items: center;
}
.contact-list .icon svg { width: 18px; height: 18px; color: var(--rose); }
.contact-list span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
}
.contact-list strong, .contact-list a {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  color: var(--off-white);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-list a:hover { color: var(--rose); }

.form-card {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 4vw, 56px);
}
.form-card .form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}
.form-card .form-grid > .field.full { grid-column: 1 / -1; }
.form-card button[type="submit"] { margin-top: 28px; width: 100%; justify-content: center; }
.form-card .form-meta {
  margin-top: 22px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
}
.form-success {
  text-align: center;
  display: grid;
  gap: 16px;
  justify-items: center;
  padding-block: 40px;
}
.form-success-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--champagne);
  color: var(--ink);
  display: grid; place-items: center;
}
.form-success-mark svg { width: 28px; height: 28px; }

/* Telefonische Terminvereinbarung */
.book-card { display: flex; flex-direction: column; }
.book-card .eyebrow { color: var(--copper); }
.call-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
  border-radius: var(--radius);
  background: var(--surface-dark);
  color: var(--off-white);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.call-box:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.call-icon {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  display: grid; place-items: center;
}
.call-icon svg { width: 22px; height: 22px; color: var(--rose); }
.call-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.call-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
}
.call-text strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 500;
  line-height: 1.15;
  overflow-wrap: anywhere;
}
/* Telefonnummer soll zusammenbleiben, WhatsApp-Text darf umbrechen */
.call-box[href^="tel"] .call-text strong { white-space: nowrap; }
.call-box .arrow { flex: 0 0 auto; width: 18px; height: 18px; transition: transform .3s var(--ease); }
.call-box:hover .arrow { transform: translateX(4px); }
.book-alt {
  margin-top: 26px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.book-alt a { color: var(--copper); text-decoration: underline; text-underline-offset: 3px; }
/* Buchungskanäle: WhatsApp + Telefon */
.book-channels { display: flex; flex-direction: column; gap: 14px; }
.wa-box .call-icon {
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.45);
}
.wa-box .call-icon svg { color: #25D366; width: 26px; height: 26px; }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .form-card .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .contact-info,
  .form-card { padding: 28px 22px; }
  .contact-list li { gap: 14px; }
}

/* ============================================================
   TECHNIK & GERÄTE  (Über uns)
   ============================================================ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.tech-card {
  padding: 34px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.tech-card:hover { transform: translateY(-4px); border-color: var(--champagne); box-shadow: var(--shadow); }
.tech-card .tech-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
}
.tech-card h3 { font-size: 1.3rem; margin-bottom: 12px; line-height: 1.25; }
.tech-card p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.65; }
@media (max-width: 720px) {
  .tech-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ZERTIFIKATE-GALERIE  (Über uns)
   ============================================================ */
.cert-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.cert-card {
  flex: 0 1 calc((100% - 48px) / 3);
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px 34px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.cert-card::before {
  content: "";
  position: absolute;
  top: 0; left: 32px;
  width: 34px; height: 2px;
  background: var(--copper);
}
.cert-card:hover { transform: translateY(-4px); border-color: var(--champagne); box-shadow: var(--shadow); }
.cert-card .cert-issuer {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.cert-card h3 { font-size: 1.12rem; line-height: 1.32; margin-bottom: 10px; }
.cert-card span { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.55; }
@media (max-width: 900px) {
  .cert-card { flex-basis: calc((100% - 24px) / 2); }
}
@media (max-width: 540px) {
  .cert-card { flex-basis: 100%; }
}

/* ============================================================
   RECHTLICHES  (Impressum / Datenschutz / AGB)
   ============================================================ */
.legal-doc {
  max-width: 800px;
}
.legal-doc .legal-updated {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 48px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.legal-doc section + section { margin-top: 44px; }
.legal-doc h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin-bottom: 16px;
  scroll-margin-top: 120px;
}
.legal-doc h3 {
  font-size: 1.05rem;
  margin: 26px 0 10px;
}
.legal-doc p,
.legal-doc li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}
.legal-doc p + p { margin-top: 14px; }
.legal-doc ul,
.legal-doc ol {
  margin: 14px 0 14px 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-doc ul { list-style: disc; }
.legal-doc ol { list-style: decimal; }
.legal-doc a { color: var(--copper); text-decoration: underline; text-underline-offset: 3px; }
.legal-doc strong { color: var(--ink); font-weight: 500; }
.legal-doc .legal-address {
  font-style: normal;
  line-height: 1.8;
  color: var(--ink);
}
.legal-doc .legal-callout {
  margin: 18px 0;
  padding: 22px 26px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.legal-doc .legal-callout p { color: var(--ink); }

/* Inhaltsverzeichnis */
.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0 0 48px;
  padding: 0;
  list-style: none;
}
.legal-toc li { margin: 0; }
.legal-toc a {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.legal-toc a:hover { color: var(--copper); border-color: var(--champagne); background: var(--paper); }
