:root {
  --ink: #162033;
  --muted: #647082;
  --paper: #f7faf8;
  --white: #ffffff;
  --line: #d9e3e2;
  --teal: #1d7f91;
  --deep-teal: #13596b;
  --mint: #00a498;
  --gold: #d0ad55;
  --clay: #9d6a57;
  --shadow: 0 22px 60px rgba(22, 32, 51, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 248, 0.9)),
    url("assets/custom/background.webp") no-repeat right top / 420px auto,
    var(--paper);
}

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

a {
  color: inherit;
  text-decoration-color: rgba(29, 127, 145, 0.45);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--deep-teal);
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(217, 227, 226, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 32px, var(--max));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 220px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 650;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: rgba(29, 127, 145, 0.1);
  color: var(--deep-teal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 560px;
  height: 68svh;
  max-height: 720px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero-media,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.18), rgba(247, 250, 248, 0.88) 58%, rgba(247, 250, 248, 0.96)),
    linear-gradient(0deg, rgba(22, 32, 51, 0.2), transparent 40%);
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 1400ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 64px 0 88px;
  text-align: left;
}

.hero-content > * {
  width: min(520px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--deep-teal);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 820;
  color: var(--ink);
}

.hero-copy {
  margin: 24px 0 0;
  color: #334054;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--deep-teal);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(19, 89, 107, 0.28);
}

.button-primary:hover {
  background: #0f4d5d;
  color: var(--white);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(22, 32, 51, 0.16);
  color: var(--ink);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 22px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 38px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
}

.hero-dots button.is-active {
  background: var(--gold);
}

.quick-strip {
  width: min(100% - 32px, var(--max));
  margin: -42px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(217, 227, 226, 0.9);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-item {
  min-height: 92px;
  padding: 22px;
  background: var(--white);
}

.quick-label {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
}

.quick-item a,
.quick-item span:last-child {
  display: block;
  margin-top: 5px;
  font-size: 18px;
  font-weight: 780;
  text-decoration: none;
}

.section {
  padding: 88px 0;
}

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

.section-light {
  background: rgba(255, 255, 255, 0.74);
}

.section-blue {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(19, 89, 107, 0.96), rgba(29, 127, 145, 0.9)),
    var(--deep-teal);
}

.section-green {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 164, 152, 0.92), rgba(37, 112, 104, 0.96)),
    var(--mint);
}

.section-contact {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 244, 0.96));
}

.two-column,
.hours-wrap,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 48px;
  align-items: center;
}

.section-copy h2,
.section-head h2,
.hours-intro h2,
.contact-copy h2,
.legal-document h1 {
  margin: 0 0 20px;
  font-size: 38px;
  line-height: 1.12;
}

.section-copy p,
.section-head p,
.hours-intro p,
.contact-copy p,
.legal-document p {
  color: inherit;
}

.section-head {
  width: min(860px, 100%);
  margin-bottom: 34px;
}

.section-blue .section-inner,
.section-green .section-inner {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 0 28px;
  align-items: start;
}

.section-blue .section-head,
.section-green .section-head {
  grid-column: 1 / -1;
}

.subnav {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 10px;
  margin: 0;
  grid-column: 1;
}

.subnav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.subnav a:hover,
.subnav a:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.section-blue .section-kicker,
.section-green .section-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.section-blue .section-head p,
.section-green .section-head p {
  color: rgba(255, 255, 255, 0.88);
}

.photo-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.photo-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.photo-stack a {
  display: block;
  overflow: hidden;
}

.photo-stack img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 300ms ease;
}

.photo-stack a:hover img {
  transform: scale(1.035);
}

.hours-wrap {
  margin-top: 58px;
  align-items: stretch;
}

.hours-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.hours-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
}

.hours-row:last-child {
  border-bottom: 0;
}

.hours-row strong {
  color: var(--deep-teal);
}

.details-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.info-card {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.text-card {
  display: block;
  width: 100%;
  margin: 0;
  scroll-margin-top: 106px;
}

#sprechzeiten {
  scroll-margin-top: 106px;
}

.text-card h3 {
  margin: 0;
  padding: 20px 20px 14px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.25;
}

.mobile-accordion-trigger {
  display: none;
}

.info-card summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.info-card summary::-webkit-details-marker {
  display: none;
}

.info-card summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.info-card[open] summary::after {
  content: "−";
}

.detail-content {
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.9);
}

.detail-content p:first-child {
  margin-top: 0;
}

.section-map {
  padding: 0;
  background: var(--white);
}

.map-panel {
  width: 100%;
  height: 430px;
}

.map-consent {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  padding: 32px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(19, 89, 107, 0.92), rgba(29, 127, 145, 0.88)),
    var(--deep-teal);
  color: var(--white);
}

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

.map-consent h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.12;
}

.map-consent p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
}

.map-kicker {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.map-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

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

.contact-copy {
  padding-top: 8px;
}

address {
  margin: 24px 0;
  font-style: normal;
  font-weight: 650;
}

.contact-note {
  color: var(--clay);
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.required-note {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 14px;
}

.required-marker {
  color: var(--clay);
  font-weight: 900;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfc;
  color: var(--ink);
  padding: 12px 13px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(29, 127, 145, 0.18);
  border-color: var(--teal);
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 11px;
  font-size: 14px;
  font-weight: 500;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 28px 0 26px;
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  text-align: center;
}

.footer-hours {
  width: min(100%, 940px);
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.4;
}

.footer-hours strong {
  color: var(--white);
}

.footer-credit {
  margin: 0;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  font-weight: 750;
}

.footer-designer {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  text-decoration: none;
}

.footer-designer:hover,
.footer-designer:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

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

.footer-links a {
  color: var(--white);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  background: var(--deep-teal);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(19, 89, 107, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--white);
  background: #0f4d5d;
}

.mobile-actionbar {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 260;
  width: min(100% - 36px, 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(22, 32, 51, 0.2);
}

.cookie-banner[hidden],
.cookie-settings-button[hidden] {
  display: none;
}

.cookie-copy {
  text-align: left;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 4px;
  color: var(--deep-teal);
  font-size: 17px;
}

.cookie-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-options {
  display: grid;
  gap: 6px;
  min-width: 150px;
}

.cookie-choice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
}

.cookie-choice input {
  width: 18px;
  height: 18px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 9px 13px;
}

.cookie-privacy {
  grid-column: 1 / -1;
  justify-self: start;
  color: var(--deep-teal);
  font-size: 14px;
  font-weight: 750;
}

.cookie-settings-button {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 120;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(22, 32, 51, 0.14);
}

.cookie-settings-button:hover,
.cookie-settings-button:focus-visible {
  color: var(--deep-teal);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(22, 32, 51, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  margin: 0;
  width: min(1120px, 100%);
}

.lightbox img {
  width: min(1120px, 100%);
  max-height: 84svh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.legal-main {
  padding: 64px 0 90px;
}

.legal-document {
  width: min(100% - 32px, 920px);
  margin: 0 auto;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.legal-document h2 {
  margin-top: 42px;
  font-size: 28px;
  line-height: 1.2;
}

.legal-document h3 {
  margin-top: 30px;
  font-size: 20px;
}

.legal-document ul {
  padding-left: 22px;
}

.legal-document a,
.legal-document p,
.legal-document li {
  overflow-wrap: anywhere;
}

.pdf-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdf-row img {
  width: 32px;
  height: 32px;
}

.provider-logo {
  width: 150px;
  height: auto;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 1024px) {
  .section-blue .section-inner,
  .section-green .section-inner {
    display: block;
  }

  .section-blue .subnav,
  .section-green .subnav {
    display: none;
  }

  .details-grid,
  .therapy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .text-card.is-mobile-accordion {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
  }

  .text-card.is-mobile-accordion h3 {
    display: none;
  }

  .text-card.is-mobile-accordion .detail-content {
    display: none;
    padding: 2px 18px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .text-card.is-mobile-accordion.is-expanded .detail-content {
    display: block;
  }

  .text-card.is-mobile-accordion .detail-content p:last-child {
    margin-bottom: 0;
  }

  .mobile-accordion-trigger {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 0;
    padding: 15px 18px;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font: inherit;
    font-size: 18px;
    font-weight: 830;
    line-height: 1.22;
    text-align: left;
  }

  .mobile-accordion-trigger::after {
    content: "";
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 50%;
    background:
      linear-gradient(currentColor, currentColor) center / 10px 2px no-repeat,
      linear-gradient(currentColor, currentColor) center / 2px 10px no-repeat;
    color: rgba(255, 255, 255, 0.92);
  }

  .text-card.is-expanded .mobile-accordion-trigger::after {
    background: linear-gradient(currentColor, currentColor) center / 10px 2px no-repeat;
  }

  .mobile-accordion-trigger:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.38);
    outline-offset: -5px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .cookie-options {
    min-width: 0;
    grid-template-columns: repeat(2, max-content);
    gap: 10px 18px;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 72px;
  }

  .brand {
    width: 190px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    inset: 72px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    min-height: 46px;
  }

  .hero {
    height: auto;
    min-height: 600px;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(247, 250, 248, 0.97), rgba(247, 250, 248, 0.72) 58%, rgba(247, 250, 248, 0.14)),
      linear-gradient(90deg, rgba(22, 32, 51, 0.25), transparent 55%);
  }

  .hero-slide {
    object-position: 30% center;
  }

  .hero-content {
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 82px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .quick-strip,
  .two-column,
  .hours-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-blue .section-inner,
  .section-green .section-inner {
    display: block;
  }

  .details-grid,
  .therapy-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .subnav {
    position: static;
    margin: 0 0 22px;
  }

  .quick-strip {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }
}

@media (max-width: 620px) {
  body {
    background-size: 260px auto;
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 24px, var(--max));
  }

  .brand {
    width: 166px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    width: min(100% - 24px, var(--max));
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 17px;
  }

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

  .button {
    width: 100%;
  }

  .section-copy h2,
  .section-head h2,
  .hours-intro h2,
  .contact-copy h2,
  .legal-document h1 {
    font-size: 30px;
  }

  .hours-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .info-card summary {
    min-height: 64px;
    font-size: 17px;
  }

  .section-blue .subnav,
  .section-green .subnav {
    display: none;
  }

  .details-grid,
  .therapy-grid {
    gap: 10px;
  }

  .text-card.is-mobile-accordion .detail-content {
    padding: 2px 16px 18px;
  }

  .mobile-accordion-trigger {
    min-height: 56px;
    padding: 15px 16px;
    font-size: 18px;
  }

  .map-panel {
    height: 360px;
  }

  .map-consent {
    min-height: 360px;
    padding: 28px 18px;
  }

  .map-consent h2 {
    font-size: 28px;
  }

  .contact-form,
  .legal-document {
    padding: 20px;
  }

  .back-to-top {
    right: 14px;
    bottom: calc(88px + env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .mobile-actionbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 7px 10px calc(7px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(217, 227, 226, 0.95);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 28px rgba(22, 32, 51, 0.12);
    backdrop-filter: blur(16px);
  }

  .mobile-actionbar a {
    min-height: 54px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 5px;
    border-radius: var(--radius);
    color: var(--ink);
    text-decoration: none;
  }

  .mobile-actionbar a:hover,
  .mobile-actionbar a:focus-visible {
    background: rgba(29, 127, 145, 0.1);
    color: var(--deep-teal);
  }

  .mobile-actionbar .action-icon {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    color: currentColor;
  }

  .mobile-actionbar .action-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-actionbar strong {
    font-size: 13px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    width: auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 16px;
  }

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

  .cookie-actions .button {
    width: 100%;
  }

  .cookie-settings-button {
    bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .footer-hours {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 16px;
  }

  .footer-credit {
    line-height: 1.45;
  }
}
