:root {
  --bg: #fcf8f6;
  --bg-soft: #f6efeb;
  --surface: rgba(255,255,255,0.86);
  --surface-strong: rgba(255,255,255,0.96);
  --text: #2f2624;
  --muted: #6f615d;
  --line: rgba(68, 45, 37, 0.10);
  --accent: #cfa99a;
  --accent-dark: #b48a7a;
  --accent-soft: #f2dfd7;
  --whatsapp: #25d366;
  --whatsapp-dark: #1daa52;
  --shadow: 0 18px 60px rgba(72, 49, 41, 0.12);
  --shadow-soft: 0 14px 40px rgba(72,49,41,0.10);
  --radius: 28px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(207, 169, 154, 0.18), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.9), transparent 18%),
    linear-gradient(180deg, #fffdfc 0%, var(--bg) 42%, #fff 100%);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.section { padding: 92px 0; position: relative; }
.section-tight { padding: 72px 0; }
.section-intro { max-width: 760px; margin-bottom: 34px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  backdrop-filter: blur(10px);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 0 0 6px rgba(207, 169, 154, 0.16);
}

h1, h2, h3 {
  margin: 0;
  line-height: 0.98;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 6vw, 6rem); margin-top: 18px; }
h2 { font-size: clamp(2.3rem, 4vw, 4rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.lead {
  max-width: 60ch;
  margin-top: 18px;
  font-size: 1.08rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(252, 248, 246, 0.78);
  border-bottom: 1px solid rgba(68, 45, 37, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  background: white;
  padding: 4px;
}

.brand-text { min-width: 0; }
.brand-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  line-height: 1;
}
.brand-subtitle {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.96rem;
  padding: 12px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav a:hover,
.nav a.current {
  color: var(--text);
  background: rgba(255,255,255,0.76);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  text-align: center;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 16px 30px rgba(180, 138, 122, 0.28);
}
.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.84);
  border-color: var(--line);
  backdrop-filter: blur(10px);
}
.btn-whatsapp {
  color: white;
  background: linear-gradient(135deg, var(--whatsapp-dark), var(--whatsapp));
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.26);
}
.btn-label-short { display: none; }

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow-soft);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  position: relative;
  transition: 0.25s ease;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle.active span { background: transparent; }
.menu-toggle.active span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.active span::after { top: 0; transform: rotate(-45deg); }

.hero,
.page-hero {
  padding: 56px 0 84px;
  overflow: hidden;
}

.hero-grid,
.page-hero-grid,
.grid-2,
.contact-main,
.story-grid,
.cta-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: center;
}

.hero-copy,
.page-hero-copy { position: relative; z-index: 1; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-actions .btn { flex: 0 1 auto; }

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card,
.about-card,
.service-card,
.panel,
.contact-card,
.gallery-card,
.info-card,
.review-card,
.price-card,
.impressum-card,
.before-after-card,
.gift-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
}

.stat-card,
.feature-item,
.mini-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.stat-card { padding: 20px; }
.stat-card strong { display:block; font-size:1.05rem; margin-bottom: 6px; }

.hero-visual,
.page-hero-visual {
  position: relative;
  min-height: 530px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 20px 0;
}

.hero-blob,
.hero-blob::before,
.hero-blob::after {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}
.hero-blob {
  width: 82%;
  height: 82%;
  background: linear-gradient(160deg, rgba(255,255,255,0.86), rgba(242,223,215,0.9));
  box-shadow: var(--shadow);
}
.hero-blob::before,
.hero-blob::after { content: ""; inset: auto; }
.hero-blob::before {
  width: 160px; height: 160px; right: 6%; top: -26px; background: rgba(255,255,255,0.9);
}
.hero-blob::after {
  width: 120px; height: 120px; left: 8%; bottom: -24px; background: rgba(207,169,154,0.22);
}

.portrait-card,
.page-photo,
.gallery-focus {
  position: relative;
  width: min(100%, 520px);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 35px 70px rgba(51, 34, 29, 0.18);
  border: 10px solid rgba(255,255,255,0.7);
  background: white;
  z-index: 2;
}
.portrait-card { transform: rotate(-2deg); }
.portrait-card img,
.page-photo img,
.gallery-focus img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portrait-card img { aspect-ratio: 0.88; }
.page-photo img { aspect-ratio: 0.92; }
.gallery-focus img { aspect-ratio: 0.9; }

.hero-badges,
.page-badges {
  position: relative;
  z-index: 3;
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.floating-logo,
.floating-tag,
.badge-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(68, 45, 37, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.floating-logo {
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:22px;
}
.floating-logo img {
  width:44px; height:44px; object-fit:cover; border-radius:14px; padding:3px; background:white;
}
.floating-tag,
.badge-card {
  padding: 16px 18px;
  border-radius: 22px;
}
.badge-card strong,
.floating-tag strong,
.floating-logo strong,
.feature-item strong,
.review-card strong,
.contact-card strong,
.info-card strong,
.price-card strong,
.impressum-card strong,
.highlight-band strong,
.card strong {
  color: var(--text);
}

.split-box,
.about-card,
.contact-card,
.price-card,
.review-card,
.info-card,
.impressum-card,
.panel,
.gallery-card,
.before-after-card,
.gift-card { padding: 26px; }
.about-card img { width:100%; aspect-ratio: 0.95; object-fit:cover; border-radius:24px; }

.feature-list,
.list-grid,
.contact-grid,
.products-grid,
.review-grid,
.mini-grid,
.insta-grid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-list { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; }
.feature-item { padding: 16px 18px; }
.mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mini-card { padding: 18px; }

.service-grid,
.pricing-grid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.price-card {
  padding: 24px;
  min-height: 250px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover,
.price-card:hover,
.insta-card:hover { transform: translateY(-4px); box-shadow: 0 28px 50px rgba(72,49,41,0.16); }

.service-top span,
.price-card .category,
.kicker {
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 16px;
}
.price {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--text);
  font-weight: 800;
  width: fit-content;
  margin-top: 18px;
}

.highlight-band,
.cta-band {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(207,169,154,0.22), rgba(255,255,255,0.78));
  border: 1px solid var(--line);
  display:flex;
  gap:20px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.gallery-grid {
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:18px;
}
.gallery-item {
  grid-column: span 4;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(68,45,37,0.06);
  background: white;
  min-height: 250px;
}
.gallery-item img {
  width:100%; height:100%; object-fit:cover; transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: "Zum Vergrößern klicken";
  position:absolute;
  left:18px;
  bottom:18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(68,45,37,0.08);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 10px 14px;
  border-radius:999px;
  backdrop-filter: blur(10px);
}
.gallery-item.tall { grid-row: span 2; min-height: 520px; }
.gallery-item.wide { grid-column: span 8; }

.check-list,
.contact-list,
.impressum-list,
.gift-list {
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:12px;
}
.check-list li,
.contact-list li,
.impressum-list li,
.gift-list li {
  display:flex;
  align-items:flex-start;
  gap:10px;
  color: var(--muted);
  line-height: 1.65;
}
.dot {
  width:10px;
  height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  margin-top: 9px;
  flex: 0 0 auto;
}

.contact-main { gap: 22px; margin-top: 24px; }
.booking-panel {
  padding: 22px;
  display:grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items:center;
}
.booking-panel img {
  width: 132px;
  height: 132px;
  object-fit: contain;
  padding: 10px;
  background: white;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.orte-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.ort-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 10px 24px rgba(72, 49, 41, 0.06);
}

.ort-pill:hover,
.ort-pill:focus-visible {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.96);
  color: var(--text);
  border-color: rgba(68, 45, 37, 0.14);
  box-shadow: 0 16px 28px rgba(72, 49, 41, 0.12);
}

.ort-pill:focus-visible {
  outline: 2px solid rgba(180, 138, 122, 0.35);
  outline-offset: 2px;
}
.orte-note {
  margin-top: 16px;
  font-size: 0.96rem;
}

.review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.review-card p:first-of-type {
  font-size: 1.04rem;
  color: var(--text);
}
.review-card footer {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 700;
}

.before-after-card {
  display: grid;
  gap: 18px;
}
.before-after {
  --position: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(68,45,37,0.08);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3 / 2;
}
.before-after-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.before-after-overlay {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}
.before-after-overlay .before-after-image {
  width: 100%;
}
.before-after-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: rgba(255,255,255,0.95);
  transform: translateX(-1px);
}
.before-after-handle {
  position: absolute;
  left: var(--position);
  top: 50%;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(68,45,37,0.08);
  box-shadow: var(--shadow-soft);
  transform: translate(-50%, -50%);
}
.before-after-handle::before,
.before-after-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
}
.before-after-handle::before {
  left: 16px;
  transform: translateY(-50%) rotate(-135deg);
}
.before-after-handle::after {
  right: 16px;
  transform: translateY(-50%) rotate(45deg);
}
.before-after-label {
  position: absolute;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(68,45,37,0.08);
  font-weight: 800;
  font-size: 0.92rem;
}
.before-after-label.before { left: 18px; }
.before-after-label.after { right: 18px; }
.before-after-range-wrap {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}
.before-after-range {
  width: 100%;
  accent-color: var(--accent-dark);
}

.insta-card {
  display: block;
  text-decoration: none;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.insta-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.insta-card-copy {
  padding: 18px 18px 20px;
}
.insta-card-copy strong {
  display: block;
  margin-bottom: 6px;
}

.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 0 20px;
  box-shadow: var(--shadow-soft);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 34px 20px 0;
  position: relative;
  font-weight: 800;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent-dark);
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  padding: 0 0 20px;
}

.gift-card {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, rgba(207,169,154,0.18), rgba(255,255,255,0.92));
}
.gift-actions {
  display: grid;
  gap: 12px;
  min-width: min(100%, 260px);
}

.footer {
  padding: 28px 0 42px;
  color: var(--muted);
}
.footer-wrap {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding-top:20px;
  border-top: 1px solid rgba(68,45,37,0.08);
}
.footer-links {
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}
.footer a {
  text-decoration: none;
}
.footer a:hover { text-decoration: underline; text-underline-offset: 3px; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(22, 16, 15, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
  backdrop-filter: blur(12px);
}
.lightbox.active { display:flex; }
.lightbox-inner {
  width: min(92vw, 980px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 32px;
  padding: 18px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.lightbox img {
  width:100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 24px;
  background: white;
}
.lightbox-close {
  position:absolute;
  top:10px; right:10px;
  width:48px; height:48px;
  border:none; border-radius:999px;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  font-size:1.5rem;
  cursor:pointer;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}
.floating-actions .btn { box-shadow: 0 18px 30px rgba(72, 49, 41, 0.16); }

.muted-box {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  border:1px solid var(--line);
}

.impressum-card + .impressum-card { margin-top: 18px; }
.impressum-card h3 { margin-bottom: 12px; }
.small { font-size: 0.92rem; }

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .grid-2,
  .contact-main,
  .story-grid,
  .cta-grid,
  .gift-card {
    grid-template-columns: 1fr;
  }
  .hero-visual,
  .page-hero-visual { min-height: 420px; }
  .service-grid,
  .pricing-grid,
  .contact-grid,
  .products-grid,
  .review-grid,
  .list-grid,
  .insta-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-item,
  .gallery-item.wide { grid-column: span 6; }
  .gallery-item.tall { min-height: 420px; }
  .orte-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  body { padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)); }
  .container { width: min(calc(100% - 24px), var(--max)); }
  .nav-wrap { min-height: 72px; gap: 12px; }
  .brand { gap: 10px; max-width: calc(100% - 64px); }
  .brand img { width: 46px; height:46px; border-radius: 14px; }
  .brand-title { font-size: 1.55rem; }
  .brand-subtitle { font-size: 0.68rem; letter-spacing: 0.14em; }
  .menu-toggle { display:inline-flex; width:48px; height:48px; border-radius:14px; flex:0 0 auto; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    padding: 14px;
    background: rgba(255,255,255,0.97);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 24px 50px rgba(72, 49, 41, 0.16);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    display: none;
    max-height: min(72vh, 540px);
    overflow-y: auto;
  }
  .nav.open { display:flex; }
  .nav a { width:100%; padding:14px 16px; }
  .hero,
  .page-hero { padding: 26px 0 54px; }
  .hero-copy,
  .page-hero-copy { order: 1; }
  .hero-visual,
  .page-hero-visual { order: 2; gap:14px; padding: 0; min-height: unset; }
  .hero-blob { display:none; }
  .portrait-card,
  .page-photo,
  .gallery-focus,
  .before-after {
    transform: none;
    border-width: 7px;
    border-radius: 26px;
    width: min(100%, 430px);
  }
  .hero-badges,
  .page-badges,
  .hero-stats,
  .feature-list,
  .service-grid,
  .pricing-grid,
  .contact-grid,
  .products-grid,
  .review-grid,
  .list-grid,
  .booking-panel,
  .mini-grid,
  .insta-grid,
  .gift-card { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
  p { font-size: 0.98rem; line-height: 1.68; }
  .hero-actions { gap: 12px; margin-top: 22px; }
  .hero-actions .btn,
  .highlight-band .btn,
  .cta-band .btn,
  .booking-panel .btn,
  .gift-actions .btn { width: 100%; }
  .section { padding: 62px 0; }
  .service-card,
  .price-card,
  .contact-card,
  .panel,
  .info-card,
  .review-card,
  .impressum-card,
  .gallery-card,
  .about-card,
  .before-after-card,
  .gift-card,
  .faq-item,
  .insta-card { border-radius: 22px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    min-height: 220px;
    border-radius: 22px;
  }
  .gallery-item::after {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 8px 12px;
    font-size: 0.78rem;
    text-align: center;
  }
  .booking-panel { gap:14px; justify-items:center; text-align:center; }
  .booking-panel img { width:116px; height:116px; border-radius:20px; }
  .footer-wrap { flex-direction:column; align-items:stretch; text-align:center; }
  .lightbox { padding: 12px; }
  .lightbox-inner { width:100%; border-radius:24px; padding: 12px; }
  .lightbox img { max-height:72vh; border-radius:18px; }
  .lightbox-close { width:42px; height:42px; }
  .floating-actions {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    padding: 10px;
    border-radius: 24px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(68,45,37,0.08);
    box-shadow: 0 18px 40px rgba(72, 49, 41, 0.16);
    backdrop-filter: blur(16px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .floating-actions .btn {
    width: 100%;
    min-height: 58px;
    padding: 10px 8px;
    border-radius: 18px;
    font-size: 0.86rem;
    line-height: 1.15;
    letter-spacing: 0;
    box-shadow: none;
  }
  .floating-actions .btn .btn-label-full { display:none; }
  .floating-actions .btn .btn-label-short { display:inline; }
  .orte-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 20px), var(--max)); }
  .brand-subtitle { display:none; }
  .brand-title { font-size: 1.24rem; }
  h1 { font-size: clamp(2rem, 11.2vw, 2.8rem); }
  h2 { font-size: clamp(2rem, 10vw, 2.6rem); }
  p, .lead { font-size: 0.95rem; }
  .section { padding: 54px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall { min-height: 240px; }
  .gallery-item::after { content: "Tippen zum Vergrößern"; }
  .price { width: 100%; }
  .floating-actions { padding: 8px; gap:8px; grid-template-columns: repeat(3, minmax(0,1fr)); }
  .floating-actions .btn { min-height:54px; padding:8px 6px; font-size:0.78rem; }
  .orte-grid,
  .insta-grid { grid-template-columns: 1fr; gap: 10px; }
  .ort-pill { min-height: 42px; }
  .before-after-handle {
    width: 48px;
    height: 48px;
  }
  .gift-actions {
    min-width: 0;
  }
}

@media (max-width: 390px) {
  .floating-actions .btn { font-size: 0.72rem; }
}


.impressum-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.impressum-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); line-height: 1.7; }


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

.footer-link-button {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-link-button:hover {
  color: var(--text);
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
}

.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(24,18,17,0.56);
  backdrop-filter: blur(12px);
}

html[data-consent-required="true"],
html[data-consent-required="true"] body {
  overflow: hidden;
}

html[data-consent-required="true"] .cookie-banner {
  pointer-events: auto;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

.cookie-banner-card {
  width: min(100%, 1040px);
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(68,45,37,0.10);
  border-radius: 30px;
  box-shadow: 0 28px 60px rgba(72,49,41,0.20);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.35fr auto;
  gap: 18px;
  align-items: center;
  backdrop-filter: blur(16px);
  pointer-events: auto;
  margin-bottom: 0;
}

.cookie-banner-copy {
  display: grid;
  gap: 10px;
}

.cookie-banner-copy strong {
  font-size: 1.1rem;
}

.cookie-banner-actions,
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-banner-actions .btn,
.cookie-modal-actions .btn {
  min-height: 50px;
}

.cookie-modal {
  background: rgba(24,18,17,0.56);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-modal-card {
  width: min(100%, 760px);
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(68,45,37,0.10);
  border-radius: 34px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.22);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text);
}

.cookie-modal-copy {
  display: grid;
  gap: 12px;
  padding-right: 54px;
}

.cookie-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.cookie-option {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.cookie-option-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-option-title {
  font-weight: 800;
  color: var(--text);
}

.cookie-option-text {
  color: var(--muted);
  line-height: 1.65;
}

.cookie-option input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--accent-dark);
}

.cookie-status-box {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
}

.cookie-required-note {
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 820px) {
  .cookie-banner {
    padding: 12px;
  }

  .cookie-banner-card {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 24px;
    margin-bottom: 0;
  }

  .cookie-banner-actions,
  .cookie-modal-actions {
    justify-content: stretch;
  }

  .cookie-banner-actions .btn,
  .cookie-modal-actions .btn {
    width: 100%;
  }

  .cookie-modal {
    padding: 12px;
  }

  .cookie-modal-card {
    padding: 22px 18px;
    border-radius: 26px;
    max-height: min(88vh, 860px);
    overflow: auto;
  }

  .cookie-modal-copy {
    padding-right: 40px;
  }
}


.map-consent-wrap {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.map-consent-box {
  position: relative;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(246,239,235,0.96));
  box-shadow: var(--shadow-soft);
}

.map-consent-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(246,239,235,0.98));
  z-index: 2;
}

.map-consent-placeholder[hidden] {
  display: none;
}

.map-consent-placeholder-inner {
  max-width: 620px;
  display: grid;
  gap: 14px;
}

.map-consent-placeholder .hero-actions {
  justify-content: center;
}

.map-embed {
  min-height: 360px;
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.helper-note {
  margin-top: 12px;
  font-size: 0.95rem;
}

@media (max-width: 820px) {
  .map-consent-box,
  .map-embed,
  .map-embed iframe {
    min-height: 320px;
  }

  .map-consent-placeholder {
    padding: 18px;
  }
}

/* Mobile Optimierungen */
body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

section[id] {
  scroll-margin-top: 108px;
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 84px;
  }

  section[id] {
    scroll-margin-top: 84px;
  }

  body {
    padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
  }

  .hero-grid,
  .page-hero-grid,
  .grid-2,
  .contact-main,
  .story-grid,
  .cta-grid {
    gap: 22px;
  }

  .section-intro {
    margin-bottom: 26px;
  }

  .eyebrow {
    padding: 7px 12px;
    font-size: 0.82rem;
  }

  h2 {
    margin-bottom: 14px;
  }

  .lead {
    margin-top: 14px;
    font-size: 1rem;
  }

  .hero-stats {
    gap: 12px;
    margin-top: 24px;
  }

  .portrait-card,
  .page-photo,
  .gallery-focus,
  .before-after {
    width: 100%;
    max-width: 430px;
  }

  .hero-badges,
  .page-badges {
    gap: 12px;
    width: 100%;
  }

  .floating-logo,
  .floating-tag,
  .badge-card {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .split-box,
  .about-card,
  .contact-card,
  .price-card,
  .review-card,
  .info-card,
  .impressum-card,
  .panel,
  .gallery-card,
  .before-after-card,
  .gift-card {
    padding: 20px;
  }

  .service-card,
  .price-card {
    min-height: unset;
    padding: 20px;
  }

  .stat-card,
  .feature-item,
  .mini-card {
    padding: 18px;
    border-radius: 20px;
  }

  .faq-item {
    padding: 0 16px;
    border-radius: 20px;
  }

  .faq-item summary {
    padding: 18px 28px 18px 0;
    font-size: 1rem;
  }

  .faq-item p {
    padding-bottom: 18px;
  }

  .highlight-band,
  .cta-band {
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
  }

  .booking-panel {
    gap: 14px;
  }

  .booking-panel img {
    width: 104px;
    height: 104px;
  }

  .orte-grid {
    gap: 10px;
  }

  .ort-pill {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 0.92rem;
  }

  .before-after {
    aspect-ratio: 4 / 3;
  }

  .before-after-label {
    top: 14px;
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.84rem;
  }

  .before-after-label.before {
    left: 14px;
  }

  .before-after-label.after {
    right: 14px;
  }

  .before-after-handle {
    width: 48px;
    height: 48px;
  }

  .gift-card {
    gap: 18px;
  }

  .gift-actions {
    width: 100%;
    min-width: 0;
  }

  .footer {
    padding: 18px 0 22px;
  }

  .footer-links {
    gap: 10px;
  }

  .floating-actions {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    padding: 8px;
    gap: 8px;
    border-radius: 20px;
  }

  .floating-actions .btn {
    min-height: 54px;
    padding: 8px 6px;
    border-radius: 16px;
    font-size: 0.8rem;
  }

  .cookie-banner {
    align-items: flex-end;
    padding: 12px;
  }

  .cookie-banner-card {
    width: 100%;
    max-height: min(88dvh, 820px);
    overflow: auto;
    border-radius: 24px;
  }

  .cookie-banner-copy {
    gap: 8px;
  }

  .cookie-banner-copy strong {
    font-size: 1.02rem;
  }

  .cookie-modal-card {
    width: 100%;
    max-height: min(88dvh, 860px);
  }

  .cookie-option {
    padding: 16px;
    border-radius: 20px;
  }

  .cookie-option-top {
    align-items: flex-start;
  }

  .map-consent-box,
  .map-embed,
  .map-embed iframe {
    min-height: 300px;
  }

  .map-consent-placeholder {
    padding: 18px;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: calc(98px + env(safe-area-inset-bottom, 0px));
  }

  .hero,
  .page-hero {
    padding: 18px 0 42px;
  }

  .section {
    padding: 50px 0;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .portrait-card,
  .page-photo,
  .gallery-focus,
  .before-after {
    max-width: none;
    border-width: 6px;
    border-radius: 22px;
  }

  .hero-badges,
  .page-badges {
    gap: 10px;
  }

  .split-box,
  .about-card,
  .contact-card,
  .price-card,
  .review-card,
  .info-card,
  .impressum-card,
  .panel,
  .gallery-card,
  .before-after-card,
  .gift-card,
  .service-card {
    padding: 18px;
    border-radius: 20px;
  }

  .floating-logo,
  .floating-tag,
  .badge-card {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .floating-logo img {
    width: 40px;
    height: 40px;
  }

  .booking-panel img {
    width: 96px;
    height: 96px;
  }

  .gallery-item::after {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 8px 10px;
  }

  .before-after {
    aspect-ratio: 4 / 5;
  }

  .before-after-handle {
    width: 42px;
    height: 42px;
  }

  .before-after-handle::before,
  .before-after-handle::after {
    width: 8px;
    height: 8px;
  }

  .before-after-handle::before {
    left: 12px;
  }

  .before-after-handle::after {
    right: 12px;
  }

  .floating-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 7px;
    gap: 7px;
  }

  .floating-actions .btn {
    min-height: 50px;
    padding: 6px 4px;
    font-size: 0.74rem;
  }

  .cookie-banner-card,
  .cookie-modal-card {
    border-radius: 22px;
  }

  .cookie-modal-card {
    padding: 18px 16px 20px;
  }

  .cookie-modal-copy {
    padding-right: 36px;
  }

  .cookie-modal-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .map-consent-box,
  .map-embed,
  .map-embed iframe {
    min-height: 280px;
    border-radius: 22px;
  }

  .map-consent-placeholder {
    padding: 16px;
  }
}

@media (max-width: 390px) {
  .brand-title {
    font-size: 1.16rem;
  }

  .floating-actions .btn {
    min-height: 48px;
    font-size: 0.68rem;
    letter-spacing: -0.01em;
  }

  .ort-pill {
    font-size: 0.88rem;
  }
}

/* Dynamisch geladene Leistungen */
.service-meta {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--muted);
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.service-card-footer .price {
  margin-top: 0;
}

.service-booking-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.service-booking-link:hover {
  transform: translateY(-2px);
  background: white;
}

.service-empty {
  grid-column: 1 / -1;
  padding: 24px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.6);
}

@media (max-width: 560px) {
  .service-card-footer,
  .service-booking-link {
    width: 100%;
  }
}

/* Rabattaktions-Banner – Rev_022 */
.promotion-slot:empty {
  display: none;
}

.promotion-banner {
  padding: 18px 0;
  background: linear-gradient(90deg, rgba(246, 231, 225, 0.86), rgba(253, 247, 244, 0.94));
  border-bottom: 1px solid var(--line);
}

.promotion-banner-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 46px);
  align-items: center;
  padding: 20px 24px;
  border: 1px solid rgba(185, 137, 120, 0.2);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.92), transparent 30%),
    linear-gradient(135deg, rgba(248, 231, 225, 0.96), rgba(244, 218, 208, 0.9));
  box-shadow: 0 16px 38px rgba(106, 72, 61, 0.09);
}

.promotion-discount-badge {
  display: grid;
  place-items: center;
  min-width: 128px;
  min-height: 106px;
  padding: 14px;
  border-radius: 22px;
  color: white;
  background: linear-gradient(145deg, #a87766, #8f6152);
  box-shadow: 0 12px 28px rgba(108, 69, 56, 0.2);
  text-align: center;
}

.promotion-discount-badge span,
.promotion-discount-badge strong {
  display: block;
}

.promotion-discount-badge span {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.88;
}

.promotion-discount-badge strong {
  margin-top: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 0.95;
}

.promotion-copy .eyebrow {
  margin-bottom: 7px;
}

.promotion-copy h2 {
  margin: 0 0 7px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.95;
}

.promotion-copy > p {
  margin: 0;
  max-width: 700px;
}

.promotion-meta {
  margin-top: 8px !important;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.promotion-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  min-width: 190px;
}

.promotion-code {
  display: grid;
  width: 100%;
  padding: 11px 15px;
  border: 1px dashed rgba(73, 48, 40, 0.3);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.promotion-code:hover,
.promotion-code:focus-visible {
  transform: translateY(-2px);
  background: white;
  box-shadow: 0 9px 24px rgba(71, 48, 40, 0.09);
}

.promotion-code span,
.promotion-code strong,
.promotion-code small {
  display: block;
}

.promotion-code span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.promotion-code strong {
  margin: 2px 0;
  font-size: 1.05rem;
  letter-spacing: 0.09em;
}

.promotion-code small {
  color: var(--muted);
  font-size: 0.66rem;
}

.promotion-booking {
  width: 100%;
  min-height: 44px;
  padding: 10px 15px;
}

@media (max-width: 900px) {
  .promotion-banner-inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .promotion-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    min-width: 0;
  }

  .promotion-code,
  .promotion-booking {
    flex: 1;
  }
}

@media (max-width: 620px) {
  .promotion-banner {
    padding: 12px 0;
  }

  .promotion-banner-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
  }

  .promotion-discount-badge {
    min-width: 0;
    min-height: 0;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 14px;
  }

  .promotion-discount-badge span,
  .promotion-discount-badge strong {
    display: inline;
  }

  .promotion-discount-badge strong {
    margin-left: 6px;
    font-family: inherit;
    font-size: 0.86rem;
  }

  .promotion-actions {
    flex-direction: column;
  }
}

/* === Rev_023: Kundenkonto & direkte Online-Buchung === */
.portal-body {
  background: #f8f4f1;
  color: #342d2a;
}
.portal-main { min-height: 72vh; }
.portal-hero {
  padding: clamp(54px, 8vw, 96px) 0 clamp(34px, 5vw, 62px);
  background:
    radial-gradient(circle at 88% 15%, rgba(207, 169, 154, .28), transparent 32%),
    linear-gradient(145deg, #fffaf7 0%, #f3e8e2 100%);
  border-bottom: 1px solid rgba(75, 57, 50, .08);
}
.portal-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.portal-hero h1 { max-width: 800px; margin: 8px 0 12px; }
.portal-hero p { max-width: 720px; margin: 0; font-size: 1.06rem; color: #6f625d; }
.portal-content { padding-top: 38px; padding-bottom: 72px; }
.portal-alert {
  margin-bottom: 24px;
  padding: 15px 18px;
  border-radius: 16px;
  border: 1px solid;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(63, 43, 34, .06);
}
.portal-alert-success { color: #38654e; background: #eef9f2; border-color: #bfe2cb; }
.portal-alert-error { color: #8a3e3e; background: #fff1f0; border-color: #efc3c0; }
.portal-auth-grid,
.portal-dashboard-grid,
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
}
.portal-dashboard-grid { grid-template-columns: minmax(0, 1.55fr) minmax(330px, .75fr); }
.booking-layout { grid-template-columns: minmax(0, 1.5fr) minmax(300px, .65fr); }
.portal-card {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(83, 62, 54, .11);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 18px 56px rgba(74, 51, 41, .08);
}
.portal-card-accent { background: linear-gradient(155deg, #fff 0%, #f8ebe5 100%); }
.portal-card h2 { margin: 7px 0 10px; }
.portal-card > p { color: #74655f; margin-bottom: 24px; }
.portal-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.portal-card-head h2 { margin-bottom: 0; }
.portal-card-head > a:not(.btn) { color: #9b6d5c; font-weight: 800; }
.portal-form { display: grid; gap: 18px; }
.portal-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.portal-form label:not(.portal-check) { display: grid; gap: 8px; }
.portal-form label > span { font-weight: 800; font-size: .9rem; color: #4d403b; }
.portal-form input,
.portal-form select,
.portal-form textarea {
  width: 100%;
  border: 1px solid #dfd3cd;
  background: #fff;
  border-radius: 13px;
  padding: 13px 14px;
  min-height: 48px;
  color: #342d2a;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.portal-form textarea { resize: vertical; }
.portal-form input:focus,
.portal-form select:focus,
.portal-form textarea:focus {
  outline: none;
  border-color: #ba8c79;
  box-shadow: 0 0 0 4px rgba(186, 140, 121, .15);
}
.portal-form input:disabled,
.portal-form select:disabled { background: #f2eeec; color: #8b7e78; cursor: not-allowed; }
.portal-check { display: flex; gap: 11px; align-items: flex-start; color: #685b56; line-height: 1.5; font-size: .9rem; }
.portal-check input { width: 18px; height: 18px; min-height: 0; flex: 0 0 auto; margin-top: 3px; accent-color: #ad7865; }
.portal-check a { color: #945f4e; text-decoration: underline; }
.portal-password-details { border: 1px solid #e4dad5; border-radius: 15px; padding: 13px 15px; }
.portal-password-details summary { cursor: pointer; font-weight: 800; color: #5b4840; }
.portal-password-details[open] { display: grid; gap: 14px; }
.portal-password-details[open] summary { margin-bottom: 4px; }
.portal-logout { margin-top: 22px; padding-top: 18px; border-top: 1px solid #eadfda; }
.portal-logout button,
.portal-cancel-form button { border: 0; background: transparent; color: #9a4e4e; font: inherit; font-weight: 800; cursor: pointer; padding: 6px 0; }
.portal-booking-list { display: grid; gap: 14px; }
.portal-booking-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid #e7ddd8;
  border-radius: 18px;
  background: #fffdfc;
}
.portal-date-tile {
  display: grid;
  place-items: center;
  min-height: 64px;
  border-radius: 15px;
  background: #f1dfd6;
  color: #6e493b;
}
.portal-date-tile strong { font-size: 1.55rem; line-height: 1; }
.portal-date-tile span { font-size: .72rem; font-weight: 800; }
.portal-booking-copy h3 { margin: 6px 0 3px; font-size: 1.06rem; }
.portal-booking-copy p { margin: 0; color: #665953; }
.portal-booking-copy small { display: block; margin-top: 5px; color: #897a74; }
.portal-status {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .02em;
}
.status-pending { background: #fff3d7; color: #80601c; }
.status-confirmed { background: #e8f6ed; color: #2e6c48; }
.status-completed { background: #edf0f5; color: #4b586b; }
.status-cancelled, .status-declined { background: #fae9e8; color: #914747; }
.portal-empty { text-align: center; padding: 40px 18px; border: 1px dashed #d9c9c1; border-radius: 20px; background: #fffaf7; }
.portal-empty strong { display: block; font-size: 1.15rem; }
.portal-empty p { color: #766660; }
.booking-login-card { display: flex; gap: 24px; align-items: flex-start; max-width: 850px; margin: 0 auto; }
.portal-step,
.booking-step > span {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #c99d8a;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(169, 113, 90, .22);
}
.booking-step { display: flex; align-items: center; gap: 13px; margin-top: 8px; padding-top: 22px; border-top: 1px solid #eadfda; }
.booking-step:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.booking-step strong, .booking-step small { display: block; }
.booking-step small { color: #867770; margin-top: 2px; }
.booking-slot-message { min-height: 22px; color: #786963; font-size: .9rem; font-weight: 700; }
.booking-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.booking-summary { position: sticky; top: 112px; }
.booking-summary-item { display: flex; align-items: flex-start; justify-content: space-between; gap: 22px; padding: 15px 0; border-bottom: 1px solid #eee4df; }
.booking-summary-item span { color: #7c6e68; }
.booking-summary-item strong { text-align: right; }
.booking-info-box { margin-top: 24px; padding: 17px; border-radius: 17px; background: #f5e8e1; color: #624b42; }
.booking-info-box p { margin: 6px 0 0; font-size: .9rem; line-height: 1.55; }

@media (max-width: 980px) {
  .portal-auth-grid, .portal-dashboard-grid, .booking-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .portal-dashboard-grid > aside { order: -1; }
}
@media (max-width: 680px) {
  .portal-hero-inner, .portal-card-head { align-items: flex-start; flex-direction: column; }
  .portal-form-grid { grid-template-columns: 1fr; }
  .portal-card { border-radius: 20px; padding: 22px; }
  .portal-booking-item { grid-template-columns: 54px minmax(0, 1fr); }
  .portal-cancel-form { grid-column: 2; }
  .booking-login-card { flex-direction: column; }
}


/* === Rev_024: Footer-Links vor festen Schnellaktionen schützen === */
.floating-actions {
  transition: opacity 180ms ease, transform 220ms ease, visibility 0s linear 0s;
}

body.footer-in-view .floating-actions {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(calc(100% + 36px));
  transition: opacity 180ms ease, transform 220ms ease, visibility 0s linear 220ms;
}

@media (prefers-reduced-motion: reduce) {
  .floating-actions,
  body.footer-in-view .floating-actions {
    transition: none;
  }
}

/* Rev_025 – Kundenkonto Dashboard */
.account-content { display: grid; gap: 26px; }
.account-auth-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; padding: 0 4px; }
.account-auth-intro h2 { margin: 5px 0 0; }
.account-benefits { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }
.account-benefits span { padding: 9px 12px; border: 1px solid #e6d8d1; border-radius: 999px; background: #fff; color: #66554e; font-size: .85rem; font-weight: 800; }
.account-auth-grid { align-items: start; }
.account-login-card { position: sticky; top: 110px; }
.account-help-text { display: block; color: #86766f; line-height: 1.5; }
.password-control { position: relative; display: block; }
.password-control input { width: 100%; padding-right: 92px; }
.password-control button { position: absolute; right: 7px; top: 50%; transform: translateY(-50%); border: 0; border-radius: 10px; padding: 8px 10px; background: #f2e5df; color: #75584d; font: inherit; font-size: .78rem; font-weight: 800; cursor: pointer; }
.account-overview-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.account-overview-card { padding: 21px 23px; border: 1px solid #eaded8; border-radius: 20px; background: #fff; box-shadow: 0 12px 34px rgba(63, 42, 34, .05); }
.account-overview-card > span, .account-overview-card small { display: block; color: #85756e; }
.account-overview-card > span { font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
.account-overview-card strong { display: block; margin: 8px 0 4px; font-size: 1.8rem; color: #4f3d36; }
.account-next-card { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 20px; padding: 24px 26px; border-radius: 23px; background: linear-gradient(135deg, #f3dfd6, #fff9f6); border: 1px solid #dfc6bb; }
.account-next-card h2 { margin: 4px 0; }
.account-next-card p { margin: 0; color: #6e5a51; }
.account-next-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 17px; background: #fff; color: #9c6b59; font-size: 1.45rem; box-shadow: 0 9px 22px rgba(81, 52, 42, .08); }
.account-tabs { display: flex; gap: 10px; padding: 7px; border: 1px solid #e9ddd7; border-radius: 18px; background: #fff; overflow-x: auto; }
.account-tabs a { display: flex; align-items: center; gap: 9px; padding: 12px 16px; border-radius: 13px; color: #6e5e57; font-weight: 800; white-space: nowrap; }
.account-tabs a.active { background: #5d463d; color: #fff; }
.account-tabs a b { display: inline-grid; place-items: center; min-width: 24px; height: 24px; padding: 0 7px; border-radius: 99px; background: rgba(255,255,255,.18); font-size: .75rem; }
.account-section-stack { display: grid; gap: 22px; }
.account-appointment-list { display: grid; gap: 13px; }
.account-appointment-card { display: grid; grid-template-columns: 78px minmax(0, 1fr) auto; align-items: center; gap: 18px; padding: 17px; border: 1px solid #e8ddd7; border-radius: 18px; background: #fffdfc; }
.account-appointment-card.is-history { background: #fbf9f8; }
.account-date-block { display: grid; place-items: center; min-height: 82px; padding: 8px; border-radius: 15px; background: #f2e1da; color: #6a4d42; text-align: center; }
.account-date-block > span { font-size: .7rem; text-transform: uppercase; font-weight: 900; letter-spacing: .08em; }
.account-date-block strong { font-size: 1.75rem; line-height: 1.05; }
.account-date-block small { font-weight: 800; }
.account-appointment-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.account-appointment-top > strong { color: #4f3e37; }
.account-appointment-main h3 { margin: 8px 0 4px; font-size: 1.08rem; }
.account-appointment-main p { margin: 0; color: #75665f; }
.account-booking-note, .account-promo-note { display: block; margin-top: 6px; color: #887870; }
.account-promo-note { color: #825f32; font-weight: 800; }
.account-appointment-actions { display: grid; justify-items: end; gap: 8px; min-width: 128px; }
.account-appointment-actions form { margin: 0; }
.account-appointment-actions button, .account-text-action { border: 0; background: none; color: #995d4a; font: inherit; font-size: .83rem; font-weight: 900; cursor: pointer; padding: 4px 0; }
.account-appointment-actions button { color: #9a4747; }
.account-appointment-actions small { max-width: 145px; color: #8a7a73; text-align: right; line-height: 1.35; }
.account-cancellation-info { margin-top: 16px; padding: 13px 15px; border-radius: 13px; background: #f7f0ec; color: #735f56; font-size: .86rem; }
.portal-empty.compact { padding: 25px 16px; }
.account-profile-layout { display: grid; grid-template-columns: minmax(250px, .58fr) minmax(0, 1.42fr); gap: 22px; align-items: start; }
.account-profile-summary { text-align: center; position: sticky; top: 110px; }
.account-profile-avatar { display: grid; place-items: center; width: 82px; height: 82px; margin: 0 auto 15px; border-radius: 26px; background: linear-gradient(145deg, #e8cfc3, #f9ece6); color: #6a4d42; font-size: 1.55rem; font-weight: 900; }
.account-profile-summary h2 { margin-bottom: 7px; }
.account-profile-summary > p { margin: 0; line-height: 1.7; }
.account-profile-facts { display: grid; gap: 10px; margin-top: 22px; text-align: left; }
.account-profile-facts span { padding: 13px; border-radius: 13px; background: #faf5f2; }
.account-profile-facts small, .account-profile-facts strong { display: block; }
.account-profile-facts small { color: #887871; }
.account-profile-facts strong { margin-top: 3px; font-size: .9rem; }
.account-marketing-check { padding: 14px; border: 1px solid #e6d9d3; border-radius: 15px; background: #fffaf8; }
.account-password-grid { display: grid; gap: 14px; margin-top: 15px; }

@media (max-width: 900px) {
  .account-auth-intro { align-items: flex-start; flex-direction: column; }
  .account-benefits { justify-content: flex-start; }
  .account-login-card, .account-profile-summary { position: static; }
  .account-overview-grid { grid-template-columns: 1fr; }
  .account-profile-layout { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .account-next-card { grid-template-columns: auto 1fr; }
  .account-next-card .btn { grid-column: 1 / -1; width: 100%; }
  .account-appointment-card { grid-template-columns: 64px 1fr; align-items: start; }
  .account-appointment-actions { grid-column: 1 / -1; display: flex; justify-content: space-between; justify-items: stretch; width: 100%; padding-top: 11px; border-top: 1px solid #eee4df; }
  .account-appointment-actions small { max-width: 180px; }
  .account-appointment-top { align-items: flex-start; flex-direction: column; gap: 6px; }
  .account-date-block { min-height: 72px; }
}


/* === Rev_026: produktive Texte & konsequente Mobile-Optimierung === */
html {
  max-width: 100%;
  overflow-x: clip;
}

body {
  min-width: 320px;
}

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 820px) {
  .site-header {
    padding-top: env(safe-area-inset-top, 0px);
  }

  .nav-wrap {
    min-height: 66px;
  }

  .nav {
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    max-height: calc(100dvh - 92px - env(safe-area-inset-top, 0px));
    overscroll-behavior: contain;
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    min-width: 0;
  }

  .portal-main,
  main {
    min-width: 0;
  }

  .portal-hero {
    padding: 38px 0 30px;
  }

  .portal-hero-inner {
    align-items: stretch;
  }

  .portal-hero-inner > .btn {
    width: 100%;
  }

  .portal-content {
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .portal-card,
  .account-next-card,
  .account-overview-card,
  .account-appointment-card {
    min-width: 0;
  }

  .portal-form input,
  .portal-form select,
  .portal-form textarea,
  .password-control input {
    min-width: 0;
    max-width: 100%;
    font-size: 16px;
  }

  .portal-form input[type="date"],
  .portal-form input[type="time"] {
    padding-left: 11px;
    padding-right: 8px;
  }

  .portal-card-head .btn,
  .portal-form > .btn,
  .booking-submit {
    width: 100%;
  }

  .booking-summary-item {
    gap: 14px;
  }

  .booking-summary-item strong {
    max-width: 58%;
    overflow-wrap: anywhere;
  }

  .floating-actions {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
  }

  .container {
    width: min(calc(100% - 18px), var(--max));
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero,
  .page-hero {
    padding-top: 22px;
    padding-bottom: 42px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
  }

  .section,
  .section-tight {
    padding: 46px 0;
  }

  .section-intro {
    margin-bottom: 22px;
  }

  .portal-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.05rem);
  }

  .portal-hero p {
    font-size: .96rem;
    line-height: 1.62;
  }

  .portal-card {
    padding: 18px;
    border-radius: 18px;
  }

  .portal-card h2 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .portal-form {
    gap: 15px;
  }

  .portal-form-grid {
    gap: 14px;
  }

  .portal-check {
    font-size: .86rem;
  }

  .password-control button {
    right: 5px;
    padding: 8px;
  }

  .account-auth-intro {
    gap: 18px;
  }

  .account-benefits {
    display: grid;
    width: 100%;
  }

  .account-benefits span {
    border-radius: 13px;
  }

  .account-overview-grid {
    gap: 10px;
  }

  .account-overview-card {
    padding: 16px;
  }

  .account-overview-card strong {
    font-size: 1.55rem;
  }

  .account-next-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .account-next-icon {
    width: 46px;
    height: 46px;
  }

  .account-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    gap: 7px;
  }

  .account-tabs a {
    justify-content: center;
    min-width: 0;
    padding: 11px 8px;
    white-space: normal;
    text-align: center;
  }

  .account-appointment-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .account-date-block {
    min-height: 66px;
  }

  .account-date-block strong {
    font-size: 1.45rem;
  }

  .account-appointment-main,
  .account-appointment-main h3,
  .account-appointment-main p,
  .account-booking-note,
  .account-promo-note {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .account-appointment-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .account-appointment-actions .btn,
  .account-appointment-actions form,
  .account-appointment-actions button,
  .account-text-action {
    width: 100%;
    text-align: center;
  }

  .account-appointment-actions small {
    max-width: none;
    text-align: center;
  }

  .account-profile-avatar {
    width: 68px;
    height: 68px;
    border-radius: 21px;
  }

  .booking-step {
    align-items: flex-start;
  }

  .booking-step > span,
  .portal-step {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .booking-summary-item {
    align-items: flex-start;
    font-size: .92rem;
  }

  .booking-info-box {
    padding: 14px;
  }

  .floating-actions {
    left: 6px;
    right: 6px;
    bottom: calc(6px + env(safe-area-inset-bottom, 0px));
    padding: 6px;
    gap: 6px;
    border-radius: 18px;
  }

  .floating-actions .btn {
    min-height: 50px;
    border-radius: 15px;
    font-size: .76rem;
    padding-inline: 4px;
  }

  .cookie-banner-card,
  .cookie-modal-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(calc(100% - 14px), var(--max));
  }

  .brand-title {
    font-size: 1.1rem;
  }

  .floating-actions .btn {
    font-size: .69rem;
  }

  .account-tabs {
    grid-template-columns: 1fr;
  }
}


/* === Rev_030: verpflichtende Ausfallhonorar-Bestätigung === */
body.booking-terms-open {
  overflow: hidden;
}

.booking-terms-preview {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px;
  border: 1px solid #e5d4cc;
  border-radius: 18px;
  background: #fbf5f2;
  color: #654f47;
}

.booking-terms-preview > span,
.booking-terms-modal-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #a96f5d;
  color: #fff;
  font-weight: 900;
}

.booking-terms-preview strong,
.booking-terms-preview p {
  display: block;
  margin: 0;
}

.booking-terms-preview p {
  margin-top: 4px;
  color: #796963;
  font-size: .9rem;
  line-height: 1.5;
}

.booking-terms-modal[hidden] {
  display: none !important;
}

.booking-terms-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
  background: rgba(30, 20, 17, .68);
  backdrop-filter: blur(12px);
}

.booking-terms-modal-card {
  width: min(100%, 650px);
  padding: 30px;
  border: 1px solid rgba(87, 55, 44, .14);
  border-radius: 30px;
  background: #fffdfa;
  box-shadow: 0 30px 90px rgba(36, 21, 17, .3);
  outline: none;
}

.booking-terms-modal-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  font-size: 1.25rem;
}

.booking-terms-modal-card h2 {
  margin: 7px 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
}

.booking-terms-modal-card > p {
  color: #665650;
  line-height: 1.65;
}

.booking-terms-fee {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid #dfc8bd;
  border-radius: 20px;
  background: #f7e9e2;
  color: #62483f;
}

.booking-terms-fee strong {
  font-size: 2rem;
  line-height: 1;
}

.booking-terms-fee span {
  line-height: 1.45;
  font-weight: 700;
}

.booking-terms-check {
  padding: 16px;
  border: 1px solid #dfd1ca;
  border-radius: 18px;
  background: #fff;
  color: #4f423d;
  font-size: .96rem;
}

.booking-terms-check input {
  width: 21px;
  height: 21px;
}

.booking-terms-lock-note {
  margin: 14px 0 18px !important;
  color: #806e66 !important;
  font-size: .84rem;
}

.booking-terms-confirm {
  width: 100%;
  min-height: 54px;
}

.booking-terms-confirm:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 560px) {
  .booking-terms-modal {
    align-items: end;
    padding: 10px;
  }

  .booking-terms-modal-card {
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
    padding: 22px 17px calc(18px + env(safe-area-inset-bottom, 0px));
    border-radius: 24px;
  }

  .booking-terms-modal-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 13px;
  }

  .booking-terms-fee {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 15px;
  }

  .booking-terms-fee strong {
    font-size: 1.7rem;
  }

  .booking-terms-check {
    padding: 14px;
    font-size: .9rem;
  }
}

/* === Rev_032: E-Mail-Verifizierung für Kundenkonten === */
.account-verification-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(250px, 330px);
  align-items: center;
  gap: 22px;
  margin: 0 0 26px;
  border-color: rgba(185, 137, 120, .42);
  background: linear-gradient(135deg, rgba(243, 227, 221, .72), #fff 72%);
}
.account-verification-icon,
.verification-result-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #b98978;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(90, 55, 45, .14);
}
.account-verification-copy h2 { margin: 5px 0 8px; }
.account-verification-copy p { margin: 0; color: var(--muted); line-height: 1.65; }
.account-verification-resend { margin: 0; }
.account-verification-resend .btn { width: 100%; }
.verification-main { min-height: calc(100vh - 180px); display: grid; align-items: center; padding: 58px 0; }
.verification-shell { display: grid; place-items: center; }
.verification-result-card {
  width: min(100%, 680px);
  padding: clamp(28px, 6vw, 54px);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(70, 42, 34, .11);
}
.verification-result-card .verification-result-icon { margin: 0 auto 22px; }
.verification-result-card.is-error .verification-result-icon { background: #8e6c61; }
.verification-result-card h1 { margin: 8px 0 14px; }
.verification-result-card > p { max-width: 540px; margin: 0 auto; color: var(--muted); line-height: 1.72; }
.verification-result-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.verification-help-box { display: grid; gap: 6px; margin: 24px auto 0; padding: 17px 18px; max-width: 530px; border: 1px solid #eadfdb; border-radius: 16px; background: #faf6f4; text-align: left; }
.verification-help-box span { color: var(--muted); line-height: 1.55; }
.verification-head-link { white-space: nowrap; }
@media (max-width: 860px) {
  .account-verification-card { grid-template-columns: auto minmax(0, 1fr); }
  .account-verification-resend { grid-column: 1 / -1; width: 100%; }
}
@media (max-width: 560px) {
  .account-verification-card { grid-template-columns: 1fr; text-align: left; padding: 22px; }
  .account-verification-icon { width: 50px; height: 50px; border-radius: 15px; }
  .verification-main { padding: 28px 0; }
  .verification-result-card { border-radius: 22px; }
  .verification-result-actions { display: grid; }
  .verification-result-actions .btn { width: 100%; }
  .verification-head-link { padding-inline: 14px; }
}
