﻿:root {
  --bg: #f6f7f5;
  --bg-alt: #edf3f1;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.82);
  --surface-tint: rgba(247, 250, 248, 0.74);
  --surface-editorial: transparent;
  --surface-interactive: rgba(255, 255, 255, 0.82);
  --surface-emphasis: linear-gradient(180deg, rgba(237, 243, 241, 0.72), rgba(255, 255, 255, 0.5));
  --surface-strong: #0f4d55;
  --text: #223438;
  --text-soft: #5d7073;
  --line: rgba(34, 52, 56, 0.12);
  --primary: #0e6b73;
  --primary-dark: #0b5660;
  --mint: #bfd9d4;
  --accent: #8a5a20;
  --shadow: 0 18px 42px rgba(24, 52, 55, 0.08);
  --shadow-soft: 0 14px 30px rgba(24, 52, 55, 0.06);
  --shadow-strong: 0 24px 56px rgba(24, 52, 55, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1240px;
  --gutter: clamp(1rem, 3vw, 2rem);
  --section-y: clamp(4.5rem, 7vw, 6.4rem);
  --section-y-compact: clamp(3.2rem, 5.2vw, 4.8rem);
  --grid-gap: clamp(1.15rem, 2vw, 1.8rem);
  --split-gap: clamp(1.7rem, 4vw, 4rem);
  --frame-pad: clamp(1.25rem, 2.2vw, 1.75rem);
  --copy-max: 42rem;
  --heading-max: 58rem;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(191, 217, 212, 0.34), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.86), transparent 34%),
    linear-gradient(180deg, #fbfcfb 0%, #f3f5f2 52%, #f7f8f6 100%);
}

body.nav-lock {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

:where(h1, h2, h3, h4, p, li, a, address, label, button, input, textarea) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3, h4) {
  text-wrap: balance;
}

:where(p, li) {
  text-wrap: pretty;
}

figure,
picture {
  margin: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

main p a:not(.btn),
main address a:not(.btn),
.legal-content a:not(.btn) {
  text-decoration: underline;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 0.08em;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--surface-strong);
  color: #ffffff;
  font-weight: 800;
  box-shadow: var(--shadow-strong);
  transition: transform 0.18s ease;
}

.legacy-anchor {
  display: block;
  height: 0;
  overflow: hidden;
  scroll-margin-top: 8rem;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--primary-dark);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.brand-link:focus-visible,
.main-nav a:focus-visible,
.nav-toggle:focus-visible,
.mini-links a:focus-visible,
.legal-links a:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  border-radius: 14px;
  box-shadow: 0 0 0 6px var(--primary-dark);
  text-decoration: none;
}

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin: 0 auto;
}

.topbar {
  background: var(--surface-strong);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-note {
  font-weight: 600;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-links a {
  color: #fff;
  font-weight: 700;
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 34px;
  padding: 0.38rem 0.74rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 8px 18px rgba(0, 0, 0, 0.12);
  letter-spacing: 0;
  line-height: 1;
}

.topbar-phone span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.topbar-phone strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
}

.topbar-phone:hover {
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.phone-nowrap {
  display: inline-block;
  white-space: nowrap;
}

.topbar-phone.phone-nowrap {
  display: inline-flex;
}

.site-header {
  position: static;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(34, 52, 56, 0.06);
  box-shadow: 0 10px 24px rgba(24, 52, 55, 0.04);
}

.site-header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.brand {
  flex: 0 0 auto;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 0.72rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(34, 52, 56, 0.1);
  box-shadow: 0 12px 24px rgba(24, 52, 55, 0.07);
}

.brand-link:hover {
  text-decoration: none;
}

.brand-logo {
  width: 164px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 0.9rem;
  min-width: 0;
  padding: 0 0.9rem;
  flex-wrap: nowrap;
}

.main-nav a {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 0.45rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.main-nav a.is-active {
  color: var(--primary);
  border-bottom-color: rgba(14, 107, 115, 0.24);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.header-actions .btn {
  padding-inline: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.12rem;
  border-radius: 20px;
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 16px 32px rgba(14, 107, 115, 0.2);
}

.btn-secondary {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(34, 52, 56, 0.14);
  box-shadow: 0 8px 18px rgba(24, 52, 55, 0.04);
}

.btn-ghost {
  color: var(--primary-dark);
  background: transparent;
  border-color: rgba(34, 52, 56, 0.2);
}

.btn-block {
  width: 100%;
}

.page-hero {
  position: relative;
  overflow: clip;
  padding: 5.5rem 0 4rem;
  background:
    radial-gradient(circle at 84% 22%, rgba(191, 217, 212, 0.22), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 245, 242, 0.74));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: var(--split-gap);
  align-items: stretch;
}

.hero-grid > *,
.split > *,
.contact-grid > *,
.practice-layout > *,
.media-grid > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.contact-details > *,
.meta-list > *,
.practice-info-grid > *,
.practice-gallery > *,
.footer-grid > * {
  min-width: 0;
}

.hero-grid > div:first-child {
  display: grid;
  align-content: center;
  gap: 0.95rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.08;
}

h1 {
  font-size: clamp(1.95rem, 3.45vw, 3.45rem);
  letter-spacing: 0;
  line-height: 1.04;
}

h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.34rem;
}

p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.07rem;
  line-height: 1.65;
}

.hero-lead {
  max-width: var(--copy-max);
  margin: 0;
  font-size: clamp(1.06rem, 1.28vw, 1.24rem);
  line-height: 1.72;
}

.hero-actions,
.section-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions {
  margin-top: 0.2rem;
}

.trust-list,
.badge-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.trust-list li,
.badge-list li {
  padding: 1rem 1rem 1rem 1.12rem;
  border: 1px solid rgba(34, 52, 56, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(24, 52, 55, 0.04);
}

.check-list {
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.visual-card,
.image-placeholder,
.panel,
.card,
.form-shell {
  border: 1px solid rgba(34, 52, 56, 0.08);
  background: var(--surface-interactive);
  box-shadow: var(--shadow-soft);
}

.visual-card,
.image-placeholder {
  min-height: 320px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.media-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  border-radius: 32px;
  border: 1px solid rgba(34, 52, 56, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-strong);
}

.media-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.media-card:hover img {
  transform: scale(1.02);
}

.hero-media {
  min-height: clamp(380px, 42vw, 640px);
  aspect-ratio: 1 / 0.94;
}

.room-media {
  min-height: clamp(320px, 34vw, 500px);
  aspect-ratio: 1 / 0.78;
}

.square-media {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.media-caption {
  display: none;
}

.image-placeholder {
  background:
    linear-gradient(160deg, rgba(14, 107, 115, 0.86), rgba(12, 86, 96, 0.78)),
    radial-gradient(circle at top right, rgba(191, 217, 212, 0.32), transparent 32%);
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(315deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%) 0 0 / 24px 24px;
  opacity: 0.25;
}

.image-placeholder span {
  display: none;
}

.hero-note {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 260px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.hero-note strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}

.section {
  padding: var(--section-y) 0;
}

.section-alt {
  background: var(--surface-emphasis);
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(191, 217, 212, 0.18), transparent 22%),
    linear-gradient(135deg, var(--surface-strong), var(--primary));
}

.section-dark p,
.section-dark li {
  color: rgba(255, 255, 255, 0.88);
}

.section-dark .panel,
.section-dark .card,
.section-dark .form-shell {
  background: rgba(255, 255, 255, 0.96);
}

.section-dark .panel h3,
.section-dark .card h3,
.section-dark .form-shell h3 {
  color: var(--text);
}

.section-dark .panel p,
.section-dark .card p,
.section-dark .form-shell p {
  color: var(--text-soft);
}

.section-heading {
  max-width: var(--heading-max);
  display: grid;
  gap: 0.7rem;
  margin-bottom: 2.35rem;
}

.section-heading p {
  margin-top: 0;
  max-width: 40rem;
}

.grid-2,
.grid-3,
.grid-4,
.split,
.contact-grid,
.footer-grid,
.steps {
  display: grid;
  gap: var(--grid-gap);
}

.grid-2,
.split,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split,
.contact-grid {
  align-items: start;
}

.split > div:first-child,
.contact-grid > div:first-child {
  display: grid;
  gap: 0.95rem;
}

.contact-grid > div:first-child {
  align-content: start;
  padding-top: 0.45rem;
}

.contact-guide-shell {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 245, 0.92));
}

.contact-guide-list {
  margin-top: 0.15rem;
  gap: 0.55rem;
}

.contact-quick-actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.1rem;
}

.contact-quick-actions .btn {
  width: 100%;
}

.grid-3,
.footer-grid,
.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.practice-location {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(237, 243, 241, 0.42));
}

.practice-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: var(--split-gap);
  align-items: stretch;
}

.practice-content {
  display: grid;
  gap: 1.15rem;
}

.practice-content h2 {
  max-width: min(100%, 22ch);
  font-size: clamp(1.82rem, 2.65vw, 2.75rem);
  line-height: 1.08;
}

.practice-intro {
  max-width: 38rem;
  font-size: 0.99rem;
  line-height: 1.62;
}

.practice-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.practice-info-card,
.practice-cta-card {
  padding: 1.18rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(34, 52, 56, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.practice-info-card h3,
.practice-cta-card h3 {
  font-size: 1.14rem;
}

.practice-info-card p,
.practice-cta-card p,
.practice-info-card address {
  margin-top: 0.5rem;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.52;
}

.practice-info-card address {
  font-style: normal;
}

.practice-info-card p a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}

.practice-cta-card {
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem 1.18rem 1.18rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(237, 243, 241, 0.92));
}

.practice-cta-card .section-actions {
  margin-top: 0.15rem;
  gap: 0.65rem;
}

.practice-visuals {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.practice-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  align-content: start;
  align-self: start;
  height: auto;
}

.practice-gallery .media-card {
  aspect-ratio: 1 / 0.86;
  padding: 0.85rem;
  background: #ffffff;
  border: 1px solid rgba(34, 52, 56, 0.12);
  box-shadow: var(--shadow-soft);
  height: auto;
}

.practice-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 10px);
}

.practice-note-card {
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(34, 52, 56, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 245, 0.96));
  box-shadow: 0 16px 30px rgba(24, 52, 55, 0.06);
}

.practice-note-card h3 {
  font-size: 1.02rem;
}

.practice-note-card p {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.card,
.panel,
.form-shell {
  padding: var(--frame-pad);
  border-radius: var(--radius-lg);
}

.contact-grid .form-shell {
  align-self: start;
}

.contact-grid-kids > .form-shell {
  height: 100%;
  display: grid;
  align-content: start;
}

.contact-intro-shell {
  gap: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 245, 0.9));
}

.contact-grid-kids .contact-intro-shell h2 {
  max-width: min(100%, 22ch);
  font-size: clamp(2.25rem, 3vw, 3.35rem);
  line-height: 1.08;
}

.contact-grid-kids .contact-intro-points {
  margin-top: 0.55rem;
}

.contact-grid-kids .contact-intro-points li {
  color: var(--text);
}

.contact-grid-kids .contact-intro-shell .contact-details,
.contact-grid-kids .form-shell .contact-details {
  margin-top: 1.2rem;
}

.contact-grid-kids .contact-intro-shell .section-actions-spaced {
  margin-top: 1.1rem;
}

.contact-grid-kids .contact-note-card {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
}

.contact-grid-kids .contact-note-card h3 {
  font-size: 1.02rem;
}

.team-ethos-split {
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.8fr);
  gap: var(--grid-gap);
  align-items: start;
}

.team-ethos-split > div:first-child {
  gap: 0.8rem;
}

.team-ethos-split h2 {
  max-width: min(100%, 22ch);
  font-size: clamp(1.75rem, 2.35vw, 2.55rem);
  line-height: 1.08;
}

.team-ethos-split > div:first-child > p {
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.62;
}

.team-ethos-list {
  margin-top: 0.35rem;
  gap: 0.55rem;
}

.team-ethos-list li,
.team-ethos-points li {
  color: var(--text);
}

.team-ethos-panel {
  padding: 1.2rem 1.25rem;
  align-self: start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 245, 0.94));
}

.team-ethos-panel h3 {
  font-size: 1.08rem;
}

.team-ethos-panel p {
  margin-top: 0.45rem;
  font-size: 0.96rem;
  line-height: 1.58;
}

.team-ethos-points {
  margin-top: 0.9rem;
  gap: 0.5rem;
}

.card p,
.panel p,
.form-shell p {
  margin-top: 0.75rem;
}

.card,
.panel {
  backdrop-filter: blur(10px);
}

.card {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-height: 100%;
}

.card a {
  margin-top: auto;
}

.steps .card {
  padding-top: 1.7rem;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(14, 107, 115, 0.12);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 800;
}

.mini-links {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.mini-links a {
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.4rem 1.45rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(34, 52, 56, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.faq-item p {
  margin-top: 0.8rem;
}

.contact-details,
.meta-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 0.95rem;
  margin-top: 1.45rem;
  align-items: stretch;
}

.detail-box {
  padding: 1.08rem 1.12rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(34, 52, 56, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 116px;
  height: 100%;
}

.detail-box strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
}

.contact-form {
  display: grid;
  gap: 0.95rem;
  margin-top: 1rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(34, 52, 56, 0.12);
  background: rgba(237, 243, 241, 0.56);
  color: var(--text);
  font: inherit;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(14, 107, 115, 0.36);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 4px rgba(14, 107, 115, 0.08);
}

.form-field textarea {
  min-height: 148px;
  resize: vertical;
}

.form-note {
  font-size: 0.96rem;
  color: var(--text-soft);
}

.form-note .phone-nowrap {
  color: inherit;
  font-weight: 700;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.14em;
}

.form-note.is-mailto {
  margin-top: 0.2rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(34, 52, 56, 0.08);
  background: rgba(237, 243, 241, 0.58);
  color: var(--text);
  line-height: 1.55;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.2rem 0 0.1rem;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0.2rem 0 0;
  accent-color: var(--primary);
  flex: 0 0 auto;
}

.form-consent label {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.form-consent a {
  font-weight: 700;
}

.field-placeholder {
  height: 48px;
  margin-top: 0.85rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(191, 217, 212, 0.56), rgba(191, 217, 212, 0.28));
  border: 1px solid rgba(34, 52, 56, 0.1);
}

.field-placeholder.large {
  height: 144px;
}

.breadcrumbs {
  padding-top: 1.35rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.breadcrumbs a {
  font-weight: 700;
}

.legal-shell {
  width: min(100%, 920px);
}

.legal-card {
  padding: 1.8rem;
}

.legal-section + .legal-section {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(34, 52, 56, 0.1);
}

.legal-section h2 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.legal-section p + p,
.legal-section ul,
.legal-section address {
  margin-top: 0.8rem;
}

.legal-section address {
  color: var(--text);
  font-style: normal;
  line-height: 1.65;
}

.legal-list {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.legal-list li + li {
  margin-top: 0.45rem;
}

.legal-meta {
  display: grid;
  gap: 0.3rem;
}

.footer {
  margin-top: 5rem;
  padding: 3.4rem 0;
  background:
    radial-gradient(circle at top right, rgba(191, 217, 212, 0.08), transparent 20%),
    linear-gradient(180deg, #1c2a2d, #162225);
  color: rgba(255, 255, 255, 0.88);
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.82);
}

.footer h2 {
  color: #fff;
  font-size: 1.28rem;
  margin-bottom: 0.75rem;
}

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

.footer .brand-link {
  background: rgba(255, 255, 255, 0.98);
}

.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.93rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.legal-links {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.legal-links a {
  font-weight: 700;
}


.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-height: 46px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(34, 52, 56, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  box-shadow: 0 10px 20px rgba(24, 52, 55, 0.06);
}

.nav-toggle:hover {
  cursor: pointer;
}

.nav-toggle-bars {
  display: inline-grid;
  gap: 4px;
}

.nav-toggle-bars span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.section-actions-spaced {
  margin-top: 1.3rem;
}

.footer-intro {
  margin-top: 1rem;
}

.stack-sm {
  margin-top: 0.8rem;
}

.form-feedback {
  display: none;
  margin: 0;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(14, 107, 115, 0.18);
  background: rgba(191, 217, 212, 0.22);
  color: var(--text);
  font-size: 0.97rem;
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback.is-error {
  border-color: rgba(178, 64, 52, 0.22);
  background: rgba(178, 64, 52, 0.08);
}

.form-feedback.is-success {
  border-color: rgba(14, 107, 115, 0.18);
  background: rgba(191, 217, 212, 0.22);
}

.target-feedback:target {
  display: block;
}

.form-stack {
  display: grid;
  gap: 0.8rem;
}

.form-actions {
  display: grid;
  gap: 0.7rem;
}

.form-alt-actions {
  display: grid;
  gap: 0.7rem;
}

.form-alt-actions .btn {
  justify-content: center;
}

.form-helper {
  margin: 0;
  font-size: 0.93rem;
  color: var(--text-soft);
}

.form-noscript {
  margin: 0;
}

.contact-form[aria-busy="true"] .btn[type="submit"] {
  opacity: 0.72;
  cursor: wait;
  pointer-events: none;
}

.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: 0.72;
  cursor: not-allowed;
  pointer-events: none;
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: rgba(178, 64, 52, 0.5);
  background: rgba(255, 243, 241, 0.92);
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.page-hero .hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.page-hero .hero-media {
  min-height: clamp(400px, 46vw, 680px);
  aspect-ratio: 1 / 0.94;
}

.page-hero--text-only .hero-grid {
  grid-template-columns: minmax(0, 780px);
}

.contact-location-panel {
  margin: 0 auto 1.5rem;
  max-width: 980px;
}

.contact-location-panel h3 {
  margin-bottom: 0.4rem;
}

.contact-location-panel p {
  margin: 0;
}

body[data-page="kontakt"] .page-hero {
  padding-block: clamp(4rem, 7vw, 6.8rem);
}

body[data-page="kontakt"] .hero-grid {
  max-width: 780px;
}

.hero-meta {
  margin: 0.1rem 0 0;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-overview .section-heading {
  margin-bottom: 1.65rem;
}

.contact-practice-data {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  margin: 0 0 2.4rem;
  border-top: 1px solid rgba(34, 52, 56, 0.16);
  border-bottom: 1px solid rgba(34, 52, 56, 0.16);
}

.contact-practice-data > div {
  padding: 1.25rem 1.4rem 1.35rem 0;
}

.contact-practice-data > div + div {
  padding-left: 1.4rem;
  border-left: 1px solid rgba(34, 52, 56, 0.12);
}

.contact-practice-data dt {
  margin-bottom: 0.45rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-practice-data dd {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

.contact-practice-data address {
  font-style: normal;
}

.contact-practice-data dd > span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(34, 52, 56, 0.16);
}

.contact-channel {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  min-height: 12.25rem;
  padding: 1.5rem 1.5rem 0 0;
}

.contact-channel + .contact-channel {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(34, 52, 56, 0.12);
}

.contact-channel h3,
.contact-channel p {
  margin: 0;
}

.contact-channel h3 {
  font-size: 1.22rem;
}

.contact-channel p {
  max-width: 26ch;
}

.contact-channel a {
  align-self: end;
  margin-top: auto;
  font-weight: 800;
}

body[data-page="kontakt"] .contact-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
}

body[data-page="kontakt"] .contact-guide {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  padding-top: 0.45rem;
}

.contact-guide h2,
.contact-guide p {
  margin: 0;
}

.contact-guide-note {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.contact-guide .btn {
  justify-self: start;
  margin-top: 0.25rem;
}

.contact-form-primary {
  box-shadow: var(--shadow-soft);
}

.contact-faq {
  border-top: 1px solid rgba(34, 52, 56, 0.16);
}

.contact-faq details {
  border-bottom: 1px solid rgba(34, 52, 56, 0.16);
  padding: 0.15rem 0;
}

.contact-faq summary {
  cursor: pointer;
  padding: 1.25rem 2rem 1.25rem 0;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
}

.contact-faq summary::marker {
  color: var(--accent-dark);
}

.contact-faq details p {
  max-width: 56rem;
  margin: -0.2rem 0 1.25rem;
}

@media (max-width: 760px) {
  .contact-practice-data,
  .contact-channels {
    grid-template-columns: 1fr;
  }

  .contact-practice-data > div,
  .contact-practice-data > div + div,
  .contact-channel,
  .contact-channel + .contact-channel {
    min-height: auto;
    padding: 1.1rem 0;
    border-left: 0;
  }

  .contact-practice-data > div + div,
  .contact-channel + .contact-channel {
    border-top: 1px solid rgba(34, 52, 56, 0.12);
  }

  .contact-channel {
    gap: 0.5rem;
  }
}

.page-hero .panel {
  align-self: center;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero .hero-lead,
.page-hero .hero-actions,
.page-hero .trust-list,
.page-hero .hero-media,
.page-hero .panel {
  animation: fade-up 560ms ease both;
}

.page-hero h1 {
  animation-delay: 80ms;
}

.page-hero .hero-lead,
.page-hero .panel {
  animation-delay: 140ms;
}

.page-hero .hero-actions,
.page-hero .trust-list,
.page-hero .hero-media {
  animation-delay: 220ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .page-hero .eyebrow,
  .page-hero h1,
  .page-hero .hero-lead,
  .page-hero .hero-actions,
  .page-hero .trust-list,
  .page-hero .hero-media,
  .page-hero .panel,
  .media-card img,
  .btn,
  .main-nav a,
  .form-field input,
  .form-field textarea {
    animation: none;
    transition: none;
  }
}

@media (min-width: 1601px) and (max-width: 1799px) {
  .topbar-inner,
  .site-header-inner {
    width: min(calc(100% - (var(--gutter) * 2)), 1360px);
  }

  .main-nav {
    gap: 1rem;
    padding: 0 1rem;
  }
}

@media (min-width: 1800px) {
  :root {
    --container: 1480px;
    --gutter: clamp(2rem, 4vw, 4.5rem);
    --split-gap: clamp(4rem, 4.6vw, 5.8rem);
    --section-y: clamp(5rem, 5.4vw, 7.1rem);
  }

  .topbar-inner,
  .site-header-inner {
    width: min(calc(100% - (var(--gutter) * 2)), 1720px);
  }

  .topbar {
    font-size: 0.94rem;
  }

  .topbar-inner {
    min-height: 44px;
  }

  .topbar-phone {
    min-height: 38px;
    padding: 0.42rem 0.88rem;
  }

  .topbar-phone strong {
    font-size: 1.08rem;
  }

  .site-header-inner {
    min-height: 92px;
    gap: 1.35rem;
    padding: 0.95rem 0;
  }

  .brand-link {
    padding: 0.62rem 0.84rem;
  }

  .brand-logo {
    width: 186px;
  }

  .main-nav {
    gap: clamp(1.45rem, 1.05vw, 1.8rem);
    padding: 0 clamp(1.5rem, 1.4vw, 2.1rem);
  }

  .main-nav a {
    font-size: 0.94rem;
  }

  .header-actions .btn {
    min-height: 50px;
    padding-inline: 1.2rem;
  }

  .page-hero {
    padding: 6.2rem 0 4.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  h1 {
    font-size: clamp(3.45rem, 2.55vw, 4rem);
    line-height: 1.02;
  }

  .hero-lead {
    max-width: 46rem;
    font-size: clamp(1.18rem, 0.82vw, 1.32rem);
  }

  .hero-media {
    min-height: clamp(650px, 30vw, 720px);
  }

  body[data-page="home"] .page-hero + .section {
    padding-top: 4.4rem;
  }
}

@media (max-width: 1280px) {
  .main-nav {
    gap: 0.55rem;
  }

  .main-nav a {
    font-size: 0.86rem;
  }
}

@media (max-width: 720px) {
  .form-alt-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1280px) {
  .site-header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: auto;
    gap: 0.85rem;
  }

  .brand {
    grid-column: 1;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    grid-column: 1 / -1;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 0 0;
    border-top: 1px solid rgba(34, 52, 56, 0.08);
    background: #fff;
    animation: fade-up 220ms ease both;
  }

  .site-header.nav-is-open .main-nav {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(34, 52, 56, 0.06);
  }

  .main-nav a.is-active {
    border-bottom-color: rgba(34, 52, 56, 0.06);
  }

  .header-actions {
    justify-content: stretch;
  }

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

@media (max-width: 1080px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .split,
  .practice-layout,
  .media-grid,
  .contact-grid,
  .footer-grid,
  .steps,
  .contact-details,
  .meta-list,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero {
    padding: 4.8rem 0 3.4rem;
  }

  .hero-media {
    min-height: 340px;
    aspect-ratio: 1 / 0.82;
  }

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

@media (min-width: 721px) and (max-width: 1080px) {
  .topbar-inner {
    min-height: auto;
    flex-direction: column;
    justify-content: center;
    gap: 0.42rem;
    padding: 0.68rem 0;
    text-align: center;
  }

  .topbar-note {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .topbar-links {
    width: 100%;
    justify-content: center;
    gap: 0.5rem 0.9rem;
  }

  .topbar-phone {
    min-height: 32px;
    padding: 0.34rem 0.7rem;
  }

  .grid-3,
  .steps,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-4,
  .practice-info-grid,
  .practice-gallery,
  .contact-details,
  .meta-list,
  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: clip;
  }

  .container {
    --gutter: 0.9rem;
  }

  .topbar-inner {
    flex-direction: column;
    justify-content: center;
    padding: 0.6rem 0;
    text-align: center;
    gap: 0.35rem;
  }

  .topbar-note,
  .topbar-links {
    max-width: 100%;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .topbar-links {
    justify-content: center;
    gap: 0.45rem 0.8rem;
  }

  .brand-logo {
    width: 154px;
  }

  .site-header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: auto;
  }

  .nav-toggle {
    max-width: 100%;
    padding-inline: 0.78rem;
  }

  .btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .section,
  .page-hero {
    padding: var(--section-y-compact) 0;
  }

  h1 {
    font-size: 1.95rem;
    line-height: 1.06;
  }

  h2 {
    font-size: 1.72rem;
    line-height: 1.08;
  }

  p,
  .hero-lead,
  .practice-intro,
  .panel p,
  .card p,
  .form-shell p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .practice-info-grid,
  .practice-gallery {
    grid-template-columns: 1fr;
  }

  .practice-gallery {
    height: auto;
  }

  .hero-media {
    min-height: 260px;
    aspect-ratio: 1 / 0.82;
  }

  .room-media {
    min-height: 240px;
    aspect-ratio: 1 / 0.84;
  }

  .square-media,
  .practice-gallery .media-card {
    aspect-ratio: 1 / 0.92;
  }

  .practice-cta-card .section-actions .btn {
    width: 100%;
  }

  .hero-note {
    position: static;
    margin-top: 1rem;
  }

  .hero-grid > div:first-child {
    gap: 0.8rem;
  }

  .hero-actions,
  .section-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
  }

  .hero-actions .btn,
  .section-actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .card,
  .panel,
  .form-shell,
  .practice-info-card,
  .practice-cta-card,
  .practice-note-card,
  .faq-item {
    padding: 1.15rem;
  }

  .detail-box {
    min-height: 0;
    padding: 1rem;
  }

  .breadcrumbs {
    font-size: 0.8rem;
    line-height: 1.45;
  }
}

@media (max-width: 560px) {
  :root {
    --frame-pad: 1.05rem;
    --grid-gap: 1rem;
  }

  .topbar {
    font-size: 0.78rem;
  }

  .brand-link {
    padding: 0.45rem 0.58rem;
  }

  .brand-logo {
    width: 142px;
  }

  .nav-toggle-label {
    display: none;
  }

  .section,
  .page-hero {
    padding: 3rem 0;
  }

  h1 {
    font-size: 1.74rem;
    letter-spacing: 0;
  }

  h2 {
    font-size: 1.56rem;
  }

  .hero-media {
    min-height: 220px;
    aspect-ratio: 1 / 0.95;
  }

  .room-media {
    min-height: 208px;
    aspect-ratio: 1 / 0.9;
  }

  .square-media,
  .practice-gallery .media-card {
    aspect-ratio: 1 / 0.98;
  }

  .btn {
    min-height: 44px;
    padding: 0.72rem 1rem;
  }
}

/* 2026-07 orientation and first-viewport refinement */
.breadcrumbs {
  position: relative;
  z-index: 2;
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.55rem;
  color: rgba(34, 52, 56, 0.38);
}

.page-hero {
  min-height: min(760px, calc(100svh - 120px));
  display: grid;
  align-items: center;
}

.page-hero .hero-grid {
  align-items: center;
}

.page-hero .hero-media {
  min-height: clamp(420px, 48vw, 700px);
  border: 0;
  border-radius: 2px 0 0 2px;
  box-shadow: none;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.8rem;
}

.trust-list li {
  position: relative;
  padding: 0 0 0 1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-list li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
}

.orientation-list,
.link-rail,
.treatment-list,
.process-list,
.fact-list {
  margin: 0;
  padding: 0;
}

.orientation-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(34, 52, 56, 0.16);
  border-bottom: 1px solid rgba(34, 52, 56, 0.16);
}

.orientation-list a {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 15rem;
  padding: 1.6rem 1.5rem 1.6rem 0;
  color: var(--text);
}

.orientation-list a + a {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(34, 52, 56, 0.12);
}

.orientation-list a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.orientation-list a > span,
.treatment-list article > span,
.process-list li > span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.orientation-list strong {
  max-width: 14ch;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.orientation-list small {
  max-width: 27ch;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

.editorial-split {
  align-items: center;
}

.link-rail {
  display: grid;
  border-top: 1px solid rgba(34, 52, 56, 0.16);
}

.link-rail a {
  display: grid;
  grid-template-columns: minmax(9rem, 0.7fr) 1.3fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(34, 52, 56, 0.16);
  color: var(--text);
}

.link-rail a:hover {
  color: var(--primary);
  text-decoration: none;
}

.link-rail span {
  color: var(--text-soft);
}

.fact-list {
  display: grid;
  border-top: 1px solid rgba(34, 52, 56, 0.16);
}

.fact-list > div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.6fr) 1.4fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(34, 52, 56, 0.16);
}

.fact-list strong {
  color: var(--text);
}

.fact-list span,
.fact-list address {
  color: var(--text-soft);
  font-style: normal;
  line-height: 1.55;
}

.treatment-list,
.process-list {
  list-style: none;
  border-top: 1px solid rgba(34, 52, 56, 0.16);
}

.treatment-list article,
.process-list li {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(34, 52, 56, 0.16);
}

.treatment-list article > div,
.process-list li > div {
  display: grid;
  grid-template-columns: minmax(11rem, 0.7fr) minmax(0, 1.3fr) auto;
  align-items: baseline;
  gap: 1rem;
}

.process-list li > div {
  grid-template-columns: minmax(11rem, 0.55fr) minmax(0, 1.45fr);
}

.treatment-list h3,
.treatment-list p,
.process-list h3,
.process-list p {
  margin: 0;
}

.treatment-list p,
.process-list p {
  font-size: 1rem;
}

.treatment-list a {
  font-weight: 800;
  white-space: nowrap;
}

.orientation-tool-layout,
.checklist-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: var(--split-gap);
  align-items: start;
}

.orientation-tool-layout > div:first-child,
.checklist-layout > div:first-child {
  display: grid;
  gap: 0.9rem;
}

.orientation-tool {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(34, 52, 56, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

.form-field select {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(34, 52, 56, 0.2);
  border-radius: 12px;
  color: var(--text);
  background: #ffffff;
  font: inherit;
}

.form-field select:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--primary-dark);
}

.orientation-tool .btn {
  justify-self: start;
}

.orientation-result {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(34, 52, 56, 0.16);
}

.orientation-result[hidden] {
  display: none;
}

.orientation-result h3,
.orientation-result ol {
  margin: 0;
}

.orientation-result ol {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.25rem;
  color: var(--text-soft);
}

.orientation-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.print-checklist {
  padding: clamp(1.2rem, 3vw, 2rem);
  border-left: 3px solid var(--primary);
  background: rgba(255, 255, 255, 0.72);
}

.print-checklist h3 {
  margin-bottom: 1rem;
}

.team-list {
  display: grid;
  gap: 2rem;
}

.team-list article {
  display: grid;
  grid-template-columns: minmax(11rem, 0.35fr) minmax(0, 0.65fr);
  gap: 2rem;
  align-items: center;
}

.team-list img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.team-role {
  margin-top: 0.4rem;
  color: var(--primary);
  font-weight: 800;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 1280px) {
  .header-actions {
    display: none;
  }

  body {
    padding-bottom: 4.5rem;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom));
    left: 0.75rem;
    z-index: 30;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: var(--surface-strong);
    box-shadow: 0 18px 42px rgba(9, 46, 51, 0.28);
    opacity: 0;
    transform: translateY(calc(100% + 2rem));
    transition: opacity 180ms ease, transform 220ms ease;
    pointer-events: none;
  }

.mobile-contact-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-contact-bar.is-scrolling {
  opacity: 0;
  transform: translateY(calc(100% + 1rem));
  pointer-events: none;
}

.mobile-contact-bar a {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0.7rem;
    color: #ffffff;
    font-weight: 850;
    text-align: center;
  }

  .mobile-contact-bar a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-contact-bar a:hover {
    background: rgba(255, 255, 255, 0.14);
    text-decoration: none;
  }
}

@media (max-width: 1080px) {
  .page-hero {
    min-height: auto;
  }

  body[data-page="kontakt"] .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-hero .hero-media {
    min-height: 320px;
    border-radius: 2px;
  }

  .orientation-list {
    grid-template-columns: 1fr;
  }

  .orientation-list a,
  .orientation-list a + a {
    min-height: auto;
    padding: 1.25rem 0;
    border-left: 0;
  }

  .orientation-list a + a {
    border-top: 1px solid rgba(34, 52, 56, 0.12);
  }

  .orientation-list strong,
  .orientation-list small {
    max-width: none;
  }

  .orientation-tool-layout,
  .checklist-layout {
    grid-template-columns: 1fr;
  }

  .treatment-list article > div {
    grid-template-columns: 1fr;
  }

  .treatment-list a {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    min-height: 36px;
    flex-direction: row;
    justify-content: space-between;
    padding: 0.3rem 0;
    text-align: left;
  }

  .topbar-note {
    font-size: 0.78rem;
  }

  .topbar-phone {
    min-height: 30px;
    padding: 0.3rem 0.55rem;
  }

  .topbar-phone span {
    display: none;
  }

  .topbar-phone strong {
    font-size: 0.86rem;
  }

  .site-header-inner {
    padding-block: 0.55rem;
  }

  .brand-link {
    padding: 0.35rem 0.5rem;
    border-radius: 14px;
    box-shadow: none;
  }

  .brand-logo {
    width: 132px;
  }

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

  .page-hero .hero-grid {
    gap: 1.2rem;
  }

  .page-hero .hero-media {
    min-height: 170px;
    max-height: 210px;
    aspect-ratio: 16 / 8.4;
  }

  .page-hero .hero-media img {
    object-position: center 42%;
  }

  .page-hero h1 {
    font-size: clamp(1.72rem, 8vw, 2.15rem);
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.55;
  }

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

  .hero-actions .btn {
    width: auto;
    min-width: 0;
    padding-inline: 0.55rem;
    white-space: normal;
    text-align: center;
  }

  .trust-list {
    display: none;
  }

  .link-rail a,
  .fact-list > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .treatment-list article,
  .process-list li {
    grid-template-columns: 2.4rem minmax(0, 1fr);
  }

  .process-list li > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .orientation-result-actions {
    display: grid;
  }

  .orientation-result-actions .btn,
  .orientation-tool .btn {
    width: 100%;
  }

  .breadcrumbs {
    padding-top: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-contact-bar {
    transition: none;
  }
}

.form-required-info {
  margin: 0;
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--accent);
  background: rgba(194, 138, 72, 0.09);
  color: var(--text);
  font-weight: 700;
}

.form-contact-group {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-contact-group legend {
  margin-bottom: 0.2rem;
  padding: 0;
  color: var(--text);
  font-weight: 800;
}

.form-error-summary[hidden] {
  display: none;
}

.faq-topic-index {
  padding-block: clamp(2rem, 4vw, 3.2rem);
  background: var(--surface-soft);
}

.faq-topic-index ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
}

.faq-topic-index a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(34, 52, 56, 0.16);
  border-radius: 999px;
  background: #ffffff;
  font-weight: 750;
}

.faq-cluster,
.faq-topic-index {
  scroll-margin-top: 7rem;
}

.faq-back {
  margin-top: 1.25rem;
}

.fact-list a:not(.btn) {
  display: inline-flex;
  min-block-size: 24px;
  align-items: center;
}

@media (max-width: 1280px) {
  body[data-page="kontakt"],
  body[data-page="faq"],
  body[data-page="ablauf"] {
    padding-bottom: 0;
  }
}

body[data-page="home"] .page-hero {
  min-height: auto;
  padding-block: clamp(3.25rem, 6vw, 5rem);
}

body[data-page="home"] .page-hero .hero-media {
  min-height: clamp(360px, 34vw, 470px);
  max-height: 470px;
}

@media (min-width: 721px) and (max-width: 1080px) {
  body[data-page="home"] .page-hero {
    padding-block: 3.2rem;
  }

  body[data-page="home"] .page-hero .hero-media {
    width: 100%;
    min-height: 0;
    height: clamp(320px, 45vw, 480px);
    max-height: 480px;
    aspect-ratio: auto;
  }
}

@media (max-width: 720px) {
  .breadcrumbs {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .breadcrumbs ol {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .faq-topic-index ul {
    display: grid;
    grid-template-columns: 1fr;
  }

  .faq-topic-index a {
    width: 100%;
  }

  body[data-page="home"] .page-hero {
    padding: 1.8rem 0 2.4rem;
  }

  body[data-page="home"] .page-hero .hero-media {
    min-height: 170px;
    max-height: 210px;
  }
}

@media print {
  body * {
    visibility: hidden;
  }

  .checklist-section,
  .checklist-section * {
    visibility: visible;
  }

  .checklist-section {
    position: absolute;
    inset: 0;
    padding: 0;
    background: #ffffff;
  }

  .checklist-section .container {
    width: 100%;
  }

  .checklist-layout {
    display: block;
  }

  .checklist-layout > div:first-child .btn,
  .checklist-layout > div:first-child p,
  .checklist-layout > div:first-child .eyebrow {
    display: none;
  }

  .print-checklist {
    margin-top: 1.5rem;
    border-left: 0;
  }
}

/* 2026-07 audit: explicit hero roles, compact tablet header and safe image crops. */
.page-hero--feature {
  min-height: auto;
}

.page-hero--standard,
.page-hero--text-compact {
  min-height: auto;
  display: block;
}

.page-hero--standard .hero-media {
  min-height: 0;
  height: clamp(380px, 34vw, 540px);
  max-height: 540px;
  aspect-ratio: auto;
}

.page-hero--text-compact {
  padding-block: clamp(3rem, 5vw, 4.75rem);
}

.page-hero--text-compact .hero-grid {
  max-width: 52rem;
}

.page-hero--text-compact .hero-lead {
  max-width: 52rem;
}

/* Legal pages use a compact editorial header and a dense, scannable fact layout. */
.legal-section {
  padding-block: clamp(3.2rem, 5.5vw, 5.6rem);
  background: var(--surface);
}

.legal-content {
  max-width: 1080px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(3rem, 8vw, 8rem);
  border-top: 1px solid rgba(34, 52, 56, 0.18);
}

.legal-block {
  padding-block: clamp(1.7rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(34, 52, 56, 0.14);
}

.legal-block h2 {
  max-width: 26ch;
  margin: 0 0 0.75rem;
  font-size: clamp(1.3rem, 1.7vw, 1.8rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.legal-block p {
  max-width: 42rem;
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.legal-block p + p {
  margin-top: 0.65rem;
}

.legal-block--wide {
  grid-column: 1 / -1;
}

.legal-block--wide h2 {
  max-width: none;
  text-wrap: pretty;
}

@media (max-width: 720px) {
  .legal-section {
    padding-block: 2.6rem;
  }

  .legal-grid {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }

  .legal-block h2 {
    font-size: 1.35rem;
  }

  .legal-block--wide h2 {
    font-size: 1.2rem;
    overflow-wrap: anywhere;
  }

  .legal-title-slash {
    display: none;
  }

  .legal-title-tail {
    display: block;
  }
}

/* Subject-safe crop defaults: faces and working hands stay in the upper middle. */
body[data-page="kinder"] .page-hero--standard .hero-media img,
body[data-page="erwachsene"] .page-hero--standard .hero-media img,
body[data-page="senioren"] .page-hero--standard .hero-media img {
  object-position: center 42%;
}

body[data-page="neurologie"] .page-hero--standard .hero-media img,
body[data-page="hand"] .page-hero--standard .hero-media img,
body[data-page="psyche"] .page-hero--standard .hero-media img {
  object-position: center 38%;
}

body[data-page="ablauf"] .page-hero--standard .hero-media img,
body[data-page="faq"] .page-hero--standard .hero-media img {
  object-position: center 40%;
}

@media (min-width: 721px) and (max-width: 1080px) {
  .topbar-inner {
    min-height: 40px;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.3rem 0;
    text-align: left;
  }

  .topbar-note,
  .topbar-links {
    width: auto;
    font-size: 0.82rem;
  }

  .topbar-links {
    justify-content: flex-end;
  }

  .topbar-phone {
    min-height: 30px;
    padding: 0.3rem 0.58rem;
  }

  .topbar-phone span {
    display: none;
  }

  .topbar-phone strong {
    font-size: 0.88rem;
  }

  .site-header-inner {
    min-height: 72px;
    padding-block: 0.45rem;
  }

  .page-hero--standard {
    padding-block: clamp(2.8rem, 5vw, 3.8rem);
  }

  .page-hero--standard .hero-media {
    min-height: 0;
    height: clamp(320px, 45vw, 480px);
    max-height: 480px;
    aspect-ratio: auto;
  }
}

@media (max-width: 720px) {
  .page-hero--text-compact {
    padding-block: 2.4rem;
  }
}
