/* Physio Mülheim – local, dependency-free design system */
:root {
  /* Relaunch palette, derived from the former website and the existing logo. */
  --teal-950: #273230;
  --teal-900: #006f61;
  --teal-800: #008b72;
  --teal-700: #009f80;
  --teal-600: #00b487;
  --mint-500: #00c897;
  --mint-400: #6cbe99;
  --mint-300: #a9e4cf;
  --mint-200: #d3f2e7;
  --mint-100: #eaf9f4;
  --mint-50: #f5fcf9;
  --surface-turquoise: #d9f2e9;
  --ink: #303735;
  --ink-soft: #5b6562;
  --line: #dfe7e4;
  --white: #fff;
  --warning: #8b5a15;
  --medical: #6c446f;
  --error: #9b2c2c;
  --shadow-sm: 0 7px 22px rgba(40, 52, 49, .07);
  --shadow-md: 0 18px 48px rgba(40, 52, 49, .11);
  --shadow-lg: 0 26px 70px rgba(40, 52, 49, .15);
  --radius-sm: .5rem;
  --radius: .75rem;
  --radius-lg: 1rem;
  --container: 80rem;
  --narrow: 48rem;
  --header-height: 5.75rem;
  --font-sans: "Aptos", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Aptos Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
svg { flex: 0 0 auto; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: var(--teal-900); text-underline-offset: .18em; }
a:hover { color: var(--teal-900); }

h1, h2, h3, h4 {
  margin: 0 0 .7em;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -.025em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

h1 { font-size: clamp(2.25rem, 4.6vw, 4.25rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3.15rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p, ul, ol, dl { margin-top: 0; }
p, li, dt, dd { overflow-wrap: normal; word-break: normal; hyphens: manual; }
p { text-wrap: pretty; }

.payer-badge,
.button,
.text-link,
.breadcrumbs,
.price-row strong {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

::selection { color: var(--teal-950); background: var(--mint-300); }

:focus-visible {
  outline: 3px solid var(--mint-500);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

.container.narrow, .narrow { max-width: var(--narrow); }
.icon { width: 1.25em; height: 1.25em; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--teal-950);
  border-radius: .5rem;
  transform: translateY(-160%);
}

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

.eyebrow {
  margin-bottom: .75rem;
  color: var(--teal-900);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

.button:hover { transform: translateY(-2px); }
.button:disabled { opacity: .62; transform: none; cursor: wait; }
.button .icon { width: 1.1rem; height: 1.1rem; }
.button-primary { color: #17322c; background: var(--mint-500); box-shadow: 0 8px 22px rgba(0, 159, 128, .18); }
.button-primary:hover { color: #112a25; background: #20d4a7; box-shadow: 0 12px 28px rgba(0, 159, 128, .24); }
.button-secondary { color: var(--teal-900); background: transparent; border-color: rgba(15, 85, 79, .35); }
.button-secondary:hover { color: var(--teal-950); background: var(--mint-100); border-color: var(--teal-700); }
.button-light { color: var(--teal-950); background: var(--white); }
.button-light:hover { color: var(--teal-950); background: var(--mint-100); }
.button-ghost { color: var(--white); background: transparent; border-color: rgba(255,255,255,.45); }
.button-ghost:hover { color: var(--white); background: rgba(255,255,255,.1); border-color: var(--white); }
.button-full { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--teal-900);
  font-weight: 800;
  text-decoration: none;
}

.text-link .icon { transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(.25rem); }

/* Header and navigation */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255,255,255,.96);
  box-shadow: 0 1px 0 rgba(48,55,53,.1);
  backdrop-filter: blur(18px);
}
.site-header.is-scrolled .main-header { box-shadow: var(--shadow-sm); }

.utility-bar { color: #17322c; background: var(--mint-500); }
.utility-inner {
  display: flex;
  min-height: 2.25rem;
  align-items: center;
  gap: 1.5rem;
  font-size: .78rem;
  font-weight: 650;
}

.utility-inner a, .utility-inner > span { display: inline-flex; align-items: center; gap: .4rem; color: inherit; text-decoration: none; }
.utility-inner .icon { width: .95rem; height: .95rem; color: #17322c; }
.utility-parking { margin-left: auto; }

.main-header { transition: box-shadow .2s ease; }
.header-inner { display: flex; width: min(calc(100% - 1rem), 90rem); min-height: var(--header-height); align-items: center; gap: 1.5rem; }
.brand { flex: 0 0 auto; }
.brand img { width: 13.75rem; height: auto; }

.primary-navigation { display: flex; min-width: 0; flex: 1; align-items: center; justify-content: flex-end; gap: 1rem; }
.nav-cta { padding-inline: .95rem; }
.nav-list { display: flex; align-items: center; gap: .05rem; margin: 0; padding: 0; list-style: none; }
.nav-item { position: relative; }
.nav-link-row { display: flex; align-items: center; }
.nav-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  padding: .6rem .38rem;
  color: var(--ink);
  border-radius: .5rem;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.nav-item.is-active > .nav-link-row > .nav-link { color: var(--teal-900); }
.nav-item.is-active > .nav-link-row > .nav-link::after {
  position: absolute;
  right: .55rem;
  bottom: .28rem;
  left: .55rem;
  height: 2px;
  background: var(--mint-500);
  content: "";
}

.nav-link:hover { color: var(--teal-700); background: var(--mint-50); }
.dropdown-toggle {
  display: grid;
  width: 1.65rem;
  height: 2.6rem;
  margin-left: -.38rem;
  padding: 0;
  place-items: center;
  color: var(--teal-800);
  background: transparent;
  border: 0;
  border-radius: .4rem;
  cursor: pointer;
}

.dropdown-toggle .icon { width: .9rem; height: .9rem; transition: transform .2s ease; }
.nav-item.is-open .dropdown-toggle .icon { transform: rotate(180deg); }

.dropdown-panel {
  position: absolute;
  top: calc(100% + .45rem);
  left: 50%;
  visibility: hidden;
  width: min(21rem, 92vw);
  padding: 1rem;
  opacity: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transform: translate(-50%, .5rem);
  transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}

.nav-item.is-open > .dropdown-panel { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
.mega-panel { width: min(48rem, 92vw); left: auto; right: -8rem; transform: translateY(.5rem); }
.nav-item.is-open > .mega-panel { transform: translateY(0); }
.dropdown-overview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .55rem;
  padding: .7rem .75rem;
  color: var(--teal-900);
  background: var(--mint-100);
  border-radius: .7rem;
  font-weight: 800;
  text-decoration: none;
}

.dropdown-list, .mega-group ul { margin: 0; padding: 0; list-style: none; }
.dropdown-list a, .mega-group a {
  display: block;
  padding: .58rem .7rem;
  color: var(--ink);
  border-radius: .55rem;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.dropdown-list a:hover, .mega-group a:hover { color: var(--teal-900); background: var(--mint-50); }
.mega-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; padding-top: .45rem; }
.mega-group + .mega-group { padding-left: 1rem; border-left: 1px solid var(--line); }
.mega-title { margin: .15rem .7rem .5rem; color: var(--teal-700); font-size: .76rem; font-weight: 850; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }
.nav-cta { min-height: 2.85rem; padding-inline: 1rem; font-size: .88rem; white-space: nowrap; }
.mobile-menu-toggle { display: none; }
.noscript-navigation { display: none; }

@media (min-width: 1381px) {
  .nav-item:hover > .dropdown-panel { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
  .nav-item:hover > .mega-panel { transform: translateY(0); }
}

/* Hero */
.breadcrumbs { padding-block: 1.1rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .4rem .6rem; margin: 0; padding: 0; color: var(--ink-soft); font-size: .83rem; list-style: none; }
.breadcrumbs li:not(:last-child)::after { margin-left: .6rem; color: var(--mint-500); content: "/"; }
.breadcrumbs a { color: inherit; text-decoration: none; }
.breadcrumbs a:hover { color: var(--teal-700); }

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-grid {
  position: relative;
  z-index: 2;
}

/* Startseite: vollflächiges Bild mit ruhiger Türkis-Überlagerung. */
.hero-home {
  color: var(--white);
  background: var(--teal-800);
  border-bottom: 1px solid #7fd7bd;
}

.hero-home::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 98, 84, .82) 0%, rgba(0, 111, 97, .72) 46%, rgba(0, 111, 97, .42) 72%, rgba(0, 111, 97, .2) 100%);
  content: "";
}

.hero-home .hero-grid { display: flex; min-height: clamp(35rem, 70vh, 45rem); align-items: center; padding-block: clamp(5rem, 9vw, 8rem); }
.hero-copy { position: relative; min-width: 0; }
.hero-home .hero-copy { width: min(100%, 50rem); }
.hero-home .hero-copy h1 { max-width: 48rem; color: var(--white); font-size: clamp(2.55rem, 4.4vw, 4.15rem); text-shadow: 0 2px 18px rgba(22, 48, 43, .18); }
.hero-home .eyebrow { color: var(--white); }
.hero-home .hero-lead { color: rgba(255,255,255,.96); text-shadow: 0 1px 12px rgba(22, 48, 43, .2); }
.hero-lead { max-width: 44rem; margin-bottom: 1.6rem; color: var(--ink-soft); font-size: clamp(1.05rem, 1.7vw, 1.25rem); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.8rem; }
.hero-home .hero-media { position: absolute; z-index: 0; inset: 0; }
.hero-home .hero-media::before { display: none; }
.hero-home .hero-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; box-shadow: none; animation: hero-breathe 24s ease-in-out infinite alternate; will-change: transform; }
.hero-home .hero-media img { object-position: center 58%; }
.hero-ai-badge {
  display: grid;
  position: absolute;
  z-index: 3;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: #1d2630;
  background: rgba(241, 243, 244, .9);
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(17, 33, 29, .16);
  font-size: .7rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .045em;
  pointer-events: none;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
@keyframes hero-breathe {
  from { transform: scale(1.005); }
  to { transform: scale(1.045); }
}
.hero-home .button-primary {
  color: #17322c;
  background: linear-gradient(135deg, #f2fff9 0%, #a9e4cf 100%);
  border-color: rgba(255,255,255,.72);
  box-shadow: 0 12px 30px rgba(8, 58, 49, .24), inset 0 1px 0 rgba(255,255,255,.9);
}
.hero-home .button-primary:hover {
  color: #102a24;
  background: linear-gradient(135deg, #fff 0%, #c7f1e2 100%);
  box-shadow: 0 16px 34px rgba(8, 58, 49, .3), inset 0 1px 0 rgba(255,255,255,.95);
}
.hero-home .button-secondary {
  color: var(--white);
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28);
  backdrop-filter: blur(12px);
}
.hero-home .button-secondary:hover { color: #17322c; background: rgba(255,255,255,.82); border-color: rgba(255,255,255,.9); }

/* Unterseiten: ruhige Editorial-Komposition ohne versetzten Rahmen oder Dekorplatte. */
.hero-page {
  background: linear-gradient(115deg, var(--white) 0%, var(--white) 58%, var(--mint-100) 100%);
  border-bottom: 1px solid #a9d6c8;
}
.hero-page .hero-grid { display: grid; min-height: clamp(31rem, 58vh, 38rem); grid-template-columns: minmax(0, 1.08fr) minmax(24rem, .92fr); align-items: center; gap: clamp(3rem, 7vw, 6.5rem); padding-block: clamp(4.25rem, 7vw, 6.75rem); }
.hero-page .hero-copy { width: auto; }
.hero-page h1 { max-width: 46rem; color: var(--ink); font-size: clamp(2.2rem, 3.4vw, 3.5rem); }
.hero-page .eyebrow { color: var(--teal-900); }
.hero-page .hero-media {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dce8e3;
  border: 1px solid rgba(27, 78, 67, .2);
  border-radius: 1rem;
  box-shadow: 0 26px 68px rgba(35, 58, 53, .17), 0 4px 14px rgba(35, 58, 53, .08);
}
.hero-page .hero-media::before { display: none; }
.hero-page .hero-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(23, 70, 60, .04);
  content: "";
  pointer-events: none;
}
.hero-page .hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; border: 0; border-radius: 0; box-shadow: none; }

.payer-badge {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: .45rem;
  padding: .42rem .7rem;
  color: var(--teal-950);
  background: var(--mint-100);
  border: 1px solid var(--mint-300);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  line-height: 1.3;
}

.payer-badge .icon { width: 1rem; height: 1rem; }
.badge-cash { background: #eaf7ef; border-color: #b8dec4; }
.badge-refund { color: #70470c; background: #fff8e5; border-color: #efd99a; }
.badge-private { color: #4b4c67; background: #f2f2f9; border-color: #d6d6e8; }
.badge-medical { color: #5d355f; background: #faf0fa; border-color: #dfc4e0; }

.trust-strip { color: var(--ink); background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 12px 32px rgba(48,55,53,.04); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { display: flex; min-height: 5.5rem; align-items: center; gap: .8rem; padding: 1.15rem 1rem; font-size: .88rem; font-weight: 700; }
.trust-grid > div + div { border-left: 1px solid var(--line); }
.trust-grid .icon { width: 2rem; height: 2rem; padding: .42rem; color: var(--teal-800); background: var(--mint-100); border-radius: 50%; }

/* Sections, grids, cards */
.section { padding-block: clamp(4.25rem, 7vw, 6.75rem); }
/* Jede Inhaltssektion trägt ihre Hintergrundfarbe ausdrücklich im Markup. */
main > .section { border-top: 1px solid rgba(42, 82, 72, .14); }
.section-white { background: var(--white); }
.section-turquoise { background: var(--surface-turquoise); }

/* Karten heben sich immer klar vom jeweiligen Sektionshintergrund ab. */
.section-turquoise .service-card,
.section-turquoise .team-card,
.section-turquoise .info-panel,
.section-turquoise .contact-card,
.section-turquoise .steps-grid li,
.section-turquoise .accordion-item,
.section-turquoise .price-list,
.section-turquoise .price-row,
.section-turquoise .aside-card:not(.price-card):not(.medical-note) { background: var(--white); }

.section-white .service-card,
.section-white .team-card,
.section-white .info-panel,
.section-white .contact-card,
.section-white .steps-grid li,
.section-white .accordion-item,
.section-white .price-list,
.section-white .price-row,
.section-white .aside-card:not(.price-card):not(.medical-note) { background: var(--surface-turquoise); }

.section-heading { display: block; margin-bottom: 2.5rem; }
.section-heading > *, .cta-panel > *, .hero-grid > *, .card-grid > *, .team-grid > * { min-width: 0; }
.section-heading h2 { width: 100%; margin-bottom: 0; }
.section-heading > p { max-width: 52rem; margin: 1rem 0 0; color: var(--ink-soft); font-size: 1.06rem; }
.section-heading.light > p { color: var(--ink-soft); }

.card-grid { display: grid; gap: 1.25rem; }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 6px 20px rgba(48,55,53,.055); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { border-color: var(--mint-400); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.card-media { display: block; overflow: hidden; aspect-ratio: 4 / 3; background: var(--mint-100); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-card:hover .card-media img { transform: scale(1.035); }
.card-body { display: flex; min-height: 17rem; flex-direction: column; align-items: flex-start; padding: 1.25rem; }
.card-body h3 { margin-bottom: .65rem; }
.card-body h3 a { color: inherit; text-decoration: none; }
.card-body p { color: var(--ink-soft); font-size: .94rem; }
.card-body .text-link { margin-top: auto; }

.split-section { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: clamp(2.5rem, 7vw, 7rem); }
.split-section.reverse .split-copy { order: 2; }
.split-media { overflow: hidden; aspect-ratio: 4 / 3; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.05rem; }
.check-list { display: grid; gap: .65rem; margin: 1.5rem 0 1.8rem; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: .65rem; }
.check-list .icon { margin-top: .25rem; color: var(--teal-600); }

.info-panel { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; padding: clamp(1.5rem, 3vw, 2.5rem); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.info-panel > div:first-child { display: grid; width: 3rem; height: 3rem; place-items: center; color: var(--teal-800); background: var(--mint-100); border-radius: 50%; }
.info-panel h2 { margin-bottom: .45rem; font-size: clamp(1.35rem, 2.5vw, 2rem); }
.info-panel p { margin: 0; color: var(--ink-soft); }

.membership-layout { display: grid; width: 100%; max-width: 62rem; grid-template-columns: 8rem minmax(0, 1fr); align-items: center; gap: 2.5rem; margin-inline: auto; }
.membership-layout h2, .press-layout h2 { margin-bottom: .45rem; }
.membership-layout p:not(.eyebrow), .press-layout p:not(.eyebrow) { max-width: 48rem; color: var(--ink-soft); }
.ifk-logo { width: 8rem; height: 8rem; object-fit: contain; }
.press-layout { display: grid; width: 100%; max-width: 62rem; grid-template-columns: 12rem minmax(0, 1fr); align-items: center; gap: clamp(2.5rem, 7vw, 5rem); margin-inline: auto; }
.membership-copy, .press-copy { min-width: 0; }
.press-mark { display: grid; min-height: 7.5rem; place-items: center; color: #d5001e; background: var(--white); border: 1px solid #eadde0; border-top: 5px solid #d5001e; border-radius: var(--radius); box-shadow: var(--shadow-sm); font-size: 3.25rem; font-weight: 900; letter-spacing: -.08em; line-height: 1; }
.press-links { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.centered-action { margin-top: 2rem; text-align: center; }

/* Service pages */
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem); align-items: start; gap: clamp(2.5rem, 7vw, 6rem); }
.prose { min-width: 0; }
.prose > section + section { margin-top: 3.5rem; padding-top: 3.5rem; border-top: 1px solid var(--line); }
.prose h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.prose p, .prose li { color: var(--ink-soft); font-size: 1.04rem; }
.service-aside { display: grid; gap: 1rem; position: sticky; top: 9rem; }
.aside-card { padding: 1.35rem; background: var(--mint-50); border: 1px solid var(--line); border-radius: var(--radius); }
.aside-card h2 { font-size: 1.35rem; }
.aside-card dl { margin: 0; }
.aside-card dl > div { display: grid; gap: .2rem; padding-block: .75rem; border-top: 1px solid var(--line); }
.aside-card dt { color: var(--ink-soft); font-size: .75rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.aside-card dd { margin: 0; font-weight: 700; line-height: 1.4; }
.price-card { color: var(--ink); background: var(--mint-100); border-color: var(--mint-300); }
.price-card .eyebrow { color: var(--teal-900); }
.price-card p { color: var(--ink-soft); }
.price-value { margin: 0 0 .5rem; color: var(--ink) !important; font-size: 1.55rem; font-weight: 850; line-height: 1.2; }
.price-card .button { margin-top: .75rem; color: #17322c; background: var(--mint-500); box-shadow: none; }
.medical-note { background: #faf0fa; border-color: #dfc4e0; }
.medical-note .eyebrow { color: var(--medical); }

.steps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.steps-grid li { padding: 1.6rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.steps-grid li > span { display: inline-grid; width: 2.7rem; height: 2.7rem; margin-bottom: 1.25rem; place-items: center; color: var(--white); background: var(--teal-900); border-radius: 50%; font-weight: 850; }
.steps-grid h3 { margin-bottom: .5rem; }
.steps-grid p { margin: 0; color: var(--ink-soft); }

.faq-section { border-top-color: #dce8e4; }
.accordion { display: grid; gap: .9rem; }
.accordion-item { overflow: hidden; background: var(--white); border: 1px solid rgba(44, 82, 73, .18); border-radius: .9rem; box-shadow: 0 10px 28px rgba(39, 55, 51, .065); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.accordion-item:hover { border-color: var(--teal-700); box-shadow: 0 15px 36px rgba(39, 55, 51, .1); transform: translateY(-1px); }
.accordion-item[open] { border-color: var(--teal-700); box-shadow: 0 18px 44px rgba(39, 55, 51, .12); }
.accordion-item summary { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.3rem 1.35rem; color: var(--ink); font-size: 1.08rem; font-weight: 800; text-align: left; list-style: none; cursor: pointer; }
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary span { min-width: 0; }
.accordion-item summary .icon { width: 2.25rem; height: 2.25rem; padding: .55rem; color: var(--white); background: var(--teal-900); border: 1px solid var(--teal-900); border-radius: 50%; transition: transform .2s ease, background-color .2s ease; }
.accordion-item[open] summary .icon { background: var(--mint-500); border-color: var(--mint-500); transform: rotate(180deg); }
.accordion-item[open] summary { padding-bottom: 1rem; }
.accordion-panel { padding: 0 4.6rem 1.35rem 1.25rem; }
.accordion-panel p { margin: 0; color: var(--ink-soft); }

.cta-section { padding-block: clamp(4.25rem, 7vw, 6.75rem); }
.cta-panel { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 2.5rem; padding: clamp(2.25rem, 5vw, 4rem); color: #24332f; background: linear-gradient(120deg, #00c897, #79dfc0); border-radius: var(--radius); box-shadow: 0 16px 42px rgba(0,159,128,.15); }
.cta-panel .eyebrow { color: #23423a; }
.cta-panel h2 { color: #20302c; }
.cta-panel p { max-width: 48rem; margin-bottom: 0; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .75rem; }
.cta-panel .button-light { color: var(--white); background: #303735; }
.cta-panel .button-light:hover { color: var(--white); background: #202725; }
.cta-panel .button-ghost { color: #24332f; border-color: rgba(36,51,47,.55); }
.cta-panel .button-ghost:hover { color: #17231f; background: rgba(255,255,255,.35); border-color: #24332f; }

/* Practice and tour */
.panorama-shell { overflow: hidden; border: 1px solid rgba(48,55,53,.12); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.panorama-stage { position: relative; aspect-ratio: 16 / 8.6; min-height: 27rem; overflow: hidden; background: linear-gradient(135deg, #4b5a56, #273230); }
.panorama-canvas { position: absolute; inset: 0; display: block; width: 100%; height: 100%; touch-action: none; cursor: grab; }
.panorama-canvas:active { cursor: grabbing; }
.panorama-start { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 1rem; padding: 2rem; text-align: center; background: linear-gradient(rgba(8,47,44,.62), rgba(8,47,44,.85)), url("../images/praxis.webp") center/cover; }
.panorama-start p { max-width: 32rem; margin: 0; color: rgba(255,255,255,.94); font-weight: 650; text-shadow: 0 2px 12px rgba(0,0,0,.45); }
.tour-symbol { display: grid; width: 5rem; height: 5rem; place-items: center; color: var(--mint-300); background: rgba(8,47,44,.76); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
.tour-symbol .icon { width: 2.5rem; height: 2.5rem; }
.panorama-loading { position: absolute; top: 1rem; left: 50%; padding: .55rem .85rem; color: var(--white); background: rgba(8,47,44,.86); border-radius: 999px; font-size: .82rem; transform: translateX(-50%); }
.panorama-toolbar { position: absolute; right: 1rem; bottom: 1rem; left: 1rem; display: grid; grid-template-columns: 2.7rem 1fr 2.7rem 2.7rem; align-items: center; gap: .5rem; padding: .5rem; color: var(--white); background: rgba(8,47,44,.83); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; backdrop-filter: blur(10px); }
.panorama-toolbar button { display: grid; width: 2.7rem; height: 2.7rem; place-items: center; color: var(--white); background: rgba(255,255,255,.1); border: 0; border-radius: 50%; cursor: pointer; }
.panorama-toolbar button:hover { background: rgba(255,255,255,.2); }
.panorama-toolbar button:disabled { opacity: .35; cursor: not-allowed; }
.panorama-toolbar .icon { width: 1.15rem; height: 1.15rem; }
.panorama-toolbar .icon-back { transform: rotate(180deg); }
.panorama-toolbar span { min-width: 0; overflow: hidden; font-weight: 800; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.panorama-hotspots { position: absolute; inset: 0; pointer-events: none; }
.tour-hotspot { position: absolute; display: flex; align-items: center; gap: .45rem; padding: .55rem .75rem; color: var(--teal-950); background: rgba(255,255,255,.93); border: 2px solid var(--mint-400); border-radius: 999px; box-shadow: var(--shadow-sm); font-size: .78rem; font-weight: 850; pointer-events: auto; transform: translate(-50%, -50%); cursor: pointer; }
.tour-hotspot::before { width: .55rem; height: .55rem; background: var(--teal-700); border-radius: 50%; content: ""; }
.tour-hotspot-prev { left: 30%; top: 58%; }
.tour-hotspot-next { left: 70%; top: 48%; }
.tour-help { margin: 0; padding: .85rem 1rem; color: rgba(255,255,255,.68); font-size: .82rem; text-align: center; }
.panorama-fallback { position: absolute; inset: 0; margin: 0; background: var(--teal-950); }
.panorama-fallback img { width: 100%; height: 100%; object-fit: cover; }
.panorama-fallback figcaption { position: absolute; right: 1rem; bottom: 5rem; left: 1rem; padding: .75rem 1rem; color: var(--white); background: rgba(8,47,44,.86); border-radius: .75rem; font-size: .85rem; }
.tour-teaser { position: relative; overflow: hidden; aspect-ratio: 16 / 9; border: 1px solid rgba(48,55,53,.14); border-radius: var(--radius); box-shadow: var(--shadow-md); }
.tour-teaser img { width: 100%; height: 100%; object-fit: cover; }
.tour-teaser > span { position: absolute; z-index: 1; top: 1rem; right: 1rem; display: grid; width: 4rem; height: 4rem; place-items: center; color: var(--white); background: rgba(8,47,44,.82); border-radius: 50%; }
.tour-teaser .icon { width: 2rem; height: 2rem; }
.static-tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.static-tour-grid figure { margin: 0; overflow: hidden; background: rgba(255,255,255,.08); border-radius: var(--radius); }
.static-tour-grid figcaption { padding: .75rem; }
.contact-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4rem; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); gap: 1.25rem; }
.team-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 6px 20px rgba(48,55,53,.055); }
.team-card > img { width: 100%; aspect-ratio: 4 / 4.35; object-fit: cover; object-position: top center; background: var(--mint-100); }
.team-card-body { padding: 1.3rem; }
.team-card-body .eyebrow { min-height: 2em; }
.team-card-body h3 { margin-bottom: .65rem; }
.team-card-body > p:not(.eyebrow) { color: var(--ink-soft); }
.team-card-body ul { display: grid; gap: .55rem; padding-left: 1.15rem; color: var(--ink-soft); font-size: .91rem; }
.team-note { padding-top: .8rem; border-top: 1px solid var(--line); font-size: .82rem; }

/* Prices */
.price-group { display: grid; grid-template-columns: minmax(15rem, .6fr) minmax(0, 1.4fr); gap: 2rem; padding-block: 2.2rem; border-top: 1px solid var(--line); }
.price-group:last-child { border-bottom: 1px solid var(--line); }
.price-group-head h3 { margin-bottom: .45rem; }
.price-group-head p { color: var(--ink-soft); }
.price-list { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.price-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1rem; padding: 1rem 1.15rem; background: var(--white); }
.price-row + .price-row { border-top: 1px solid var(--line); }
.price-row div { display: grid; }
.price-row span:not(.price) { color: var(--ink-soft); font-size: .86rem; }
.price-row .price { color: var(--teal-900); font-size: 1.15rem; font-weight: 850; white-space: nowrap; }
.legal-small { color: var(--ink-soft); font-size: .87rem; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(19rem, .65fr); align-items: start; gap: clamp(2.5rem, 7vw, 6rem); }
.contact-form { display: grid; gap: 1.15rem; margin-top: 2rem; }
[data-external-consent][hidden] { display: none; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-weight: 750; }
.field label span { color: var(--ink-soft); font-size: .85rem; font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; color: var(--ink); background: var(--white); border: 1px solid #adc5c1; border-radius: .75rem; }
.field input, .field select { height: 3.35rem; padding: .6rem .85rem; }
.field select { padding-right: 3rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='m3.5 6 4.5 4 4.5-4' stroke='%23006f61' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1rem 1rem; appearance: none; -webkit-appearance: none; }
.field textarea { min-height: 8rem; padding: .8rem .85rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(85,200,187,.28); border-color: var(--teal-700); }
.field [aria-invalid="true"] { border-color: var(--error); }
.field-help, .field-error { margin: .2rem 0 0; font-size: .82rem; }
.field-help { color: var(--ink-soft); }
.field-error { color: var(--error); font-weight: 700; }
.checkbox-field { display: grid; grid-template-columns: 1.25rem 1fr; gap: .65rem; }
.checkbox-field input { width: 1.2rem; height: 1.2rem; margin-top: .27rem; accent-color: var(--teal-700); }
.checkbox-field label { color: var(--ink-soft); font-size: .9rem; }
.form-alert { padding: 1rem; color: var(--error); background: #fff1f1; border: 1px solid #e5a7a7; border-radius: .75rem; font-weight: 700; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-sidebar { display: grid; gap: 1rem; }
.contact-card { padding: 1.35rem; background: var(--mint-50); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-card h2 { font-size: 1.35rem; }
.contact-card > a { display: flex; align-items: center; gap: .8rem; padding: .75rem 0; color: var(--ink); border-top: 1px solid var(--line); font-weight: 700; text-decoration: none; }
.contact-card > a .icon { color: var(--teal-700); }
.contact-card > a span { display: grid; min-width: 0; overflow-wrap: break-word; word-break: normal; hyphens: manual; }
.contact-card > a small { color: var(--ink-soft); font-size: .7rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.contact-card p { color: var(--ink-soft); }

/* Articles and legal */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(17rem, 22rem); align-items: start; gap: clamp(2.5rem, 7vw, 6rem); }
.article-main > section { margin-top: 3.5rem; }
.article-main > section + section { padding-top: 3.5rem; border-top: 1px solid var(--line); }
.article-main h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.article-main p, .article-main li, .article-intro { color: var(--ink-soft); font-size: 1.04rem; }
.article-intro { margin-bottom: 0; padding: 1.25rem 1.4rem; color: var(--teal-950); background: var(--mint-100); border-left: 4px solid var(--mint-500); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 1.12rem; }
.article-aside { display: grid; position: sticky; top: 9rem; gap: 1rem; }
.legal-hero { padding-block: clamp(4rem, 8vw, 7rem); background: linear-gradient(115deg, #f4fbf8, var(--white)); border-bottom: 1px solid #a9d6c8; }
.legal-hero h1 { font-size: clamp(2.3rem, 4.5vw, 4rem); }
.legal-copy > section + section { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.legal-copy h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.legal-copy p, .legal-copy li { color: var(--ink-soft); overflow-wrap: break-word; word-break: normal; hyphens: manual; }
.status-page { display: grid; min-height: 62vh; place-items: center; padding-block: 5rem; text-align: center; }
.status-page .status-icon { display: grid; width: 4rem; height: 4rem; margin: 0 auto 1.5rem; place-items: center; color: var(--white); background: var(--teal-700); border-radius: 50%; }
.status-page h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.status-page p { color: var(--ink-soft); }
.status-page .hero-actions { justify-content: center; }

/* Footer */
.site-footer { padding-top: 4.25rem; color: var(--ink-soft); background: var(--white); border-top: 4px solid var(--mint-500); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .85fr .85fr .7fr; gap: 3rem; padding-bottom: 3.5rem; }
.footer-grid h2 { margin-bottom: 1.1rem; color: var(--ink); font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-brand img { width: 15rem; margin-bottom: 1.25rem; }
.footer-brand p { max-width: 25rem; }
.footer-grid address, .footer-grid > div:not(.footer-brand), .footer-grid > div:not(.footer-brand) > nav { display: grid; align-content: start; gap: .55rem; font-style: normal; }
.footer-grid address strong { color: var(--ink); font-weight: 800; }
.footer-grid a { color: #3e4946; text-decoration: none; }
.footer-grid a:hover { color: var(--teal-900); }
.hours-list { margin: 0; }
.hours-list > div { display: grid; grid-template-columns: 4.25rem auto; justify-content: start; gap: .8rem; }
.hours-list dd { margin: 0; }
.hours-list.large { max-width: 28rem; }
.hours-list.large > div { grid-template-columns: minmax(7rem, 1fr) auto; justify-content: stretch; padding-block: .65rem; border-bottom: 1px solid var(--line); }
.social-links { display: flex; gap: .55rem; margin-top: 1.25rem; }
.social-links a { display: grid; width: 2.55rem; height: 2.55rem; place-items: center; color: #17322c; background: var(--mint-500); border: 1px solid var(--mint-500); border-radius: 50%; }
.social-links a:hover { color: #17322c; background: #20d4a7; }
.social-links svg { width: 1.15rem; height: 1.15rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.3rem; border-top: 1px solid #d8e0de; font-size: .83rem; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 1rem; }
.footer-bottom a { color: #3e4946; text-decoration: none; }
.footer-bottom a:hover { color: var(--teal-900); }

.floating-contact { position: fixed; z-index: 900; right: 1rem; bottom: 1rem; display: none; align-items: center; gap: .5rem; min-height: 3.2rem; padding: .75rem 1rem; color: var(--white); background: var(--teal-800); border-radius: 999px; box-shadow: var(--shadow-md); font-size: .86rem; font-weight: 800; text-decoration: none; }
.floating-contact:hover { color: var(--white); background: var(--teal-950); }

@media (max-width: 1280px) {
  .container { width: min(calc(100% - 2rem), var(--container)); }
  .header-inner { gap: 1rem; }
  .brand img { width: 12rem; }
  .nav-link { padding-inline: .38rem; font-size: .82rem; }
  .nav-cta { padding-inline: .8rem; }
}

@media (max-width: 1380px) {
  :root { --header-height: 4.8rem; }
  .site-header { background: var(--white); backdrop-filter: none; }
  .utility-hours { display: none !important; }
  .header-inner { justify-content: space-between; }
  .brand img { width: 12rem; }
  .mobile-menu-toggle { display: inline-flex; min-width: 3.15rem; min-height: 3.15rem; align-items: center; justify-content: center; gap: .5rem; padding: .65rem .85rem; color: var(--teal-950); background: var(--mint-100); border: 1px solid var(--mint-300); border-radius: 999px; font-weight: 800; line-height: 1; transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease; cursor: pointer; }
  .mobile-menu-toggle .menu-icon-open, .mobile-menu-toggle .menu-icon-close { width: 1.25rem; height: 1.25rem; align-items: center; justify-content: center; line-height: 0; }
  .mobile-menu-toggle .menu-icon-open { display: inline-flex; }
  .mobile-menu-toggle .icon { display: block; width: 1.25rem; height: 1.25rem; }
  .menu-icon-close { display: none; }
  .mobile-menu-toggle[aria-expanded="true"] .menu-icon-open { display: none; }
  .mobile-menu-toggle[aria-expanded="true"] .menu-icon-close { display: inline-flex; }
  .primary-navigation { position: fixed; inset: calc(2.25rem + var(--header-height)) 0 0; visibility: hidden; display: block; overflow-y: auto; align-content: start; padding: 1rem; opacity: 0; background: var(--white); transform: translateY(-.7rem); transition: opacity .26s ease, transform .32s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .32s; pointer-events: none; overscroll-behavior: contain; }
  .primary-navigation.is-open { visibility: visible; opacity: 1; transform: translateY(0); transition-delay: 0s; pointer-events: auto; }
  .nav-list { display: grid; align-items: stretch; gap: 0; }
  .nav-item { border-bottom: 1px solid var(--line); }
  .nav-link-row { justify-content: space-between; }
  .nav-link { min-height: 3.5rem; flex: 1; padding: .75rem .35rem; font-size: 1rem; }
  .nav-item.is-active > .nav-link-row > .nav-link::after { display: none; }
  .dropdown-toggle { width: 3rem; height: 3rem; margin-left: 0; }
  .dropdown-panel, .mega-panel { position: static; visibility: visible; display: none; width: auto; padding: 0 0 1rem 1rem; opacity: 1; border: 0; border-radius: 0; box-shadow: none; transform: none !important; }
  .nav-item.is-open > .dropdown-panel { display: block; }
  .dropdown-overview { margin-right: .25rem; }
  .mega-grid { grid-template-columns: 1fr; gap: 1rem; }
  .mega-group + .mega-group { padding: 1rem 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .nav-cta { width: 100%; margin: 1rem 0 2rem; }
  .noscript-navigation { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem; padding-block: .75rem; }
  .noscript-navigation a { padding: .55rem; color: var(--teal-900); background: var(--mint-50); border-radius: .5rem; font-size: .85rem; font-weight: 700; text-decoration: none; }
  .cards-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 7.5rem; }
  #terminanfrage { scroll-margin-top: -1rem; }
  .container { width: min(calc(100% - 1.4rem), var(--container)); }
  .utility-inner { min-height: 2rem; }
  .utility-parking { font-size: .72rem; }
  .primary-navigation { inset: calc(2rem + var(--header-height)) 0 0; }
  .hero-page .hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 0; padding-block: 4rem 5rem; }
  .hero-home .hero-grid { min-height: 36rem; }
  .hero-home::before { background: rgba(0, 98, 84, .78); }
  .hero-copy, .hero-home .hero-copy { width: 100%; }
  .hero-copy h1, .hero-home .hero-copy h1, .hero-page h1 { max-width: 100%; }
  .hero-page .hero-copy { display: contents; }
  .hero-page .hero-copy > .eyebrow { grid-column: 1; grid-row: 1; margin-bottom: .75rem; }
  .hero-page .hero-copy > h1 { grid-column: 1; grid-row: 2; margin-bottom: 1.65rem; }
  .hero-page .hero-media { width: 100%; max-width: 40rem; grid-column: 1; grid-row: 3; justify-self: center; margin: 0 0 1.65rem; }
  .hero-page .hero-copy > .hero-lead { grid-column: 1; grid-row: 4; margin: 0 0 1rem; }
  .hero-page .hero-copy > .payer-badge { grid-column: 1; grid-row: 5; justify-self: center; text-align: center; }
  .hero-page .hero-copy > .hero-actions { grid-column: 1; grid-row: 6; margin-top: 1.6rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .split-section { grid-template-columns: 1fr; }
  .split-section.reverse .split-copy { order: initial; }
  .content-grid, .contact-layout, .article-layout { grid-template-columns: 1fr; }
  .service-aside, .article-aside { position: static; }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .price-group { grid-template-columns: 1fr; gap: .75rem; }
  .membership-layout { grid-template-columns: 7rem minmax(0, 1fr); gap: 1.75rem; }
  .press-layout { grid-template-columns: 9rem minmax(0, 1fr); gap: 2rem; }
  .contact-facts { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .panorama-stage { width: 100%; height: clamp(26rem, 70svh, 32rem); min-height: 0; aspect-ratio: auto; }
  .panorama-hotspots { display: none; }
  .static-tour-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  body { font-size: .96rem; }
  .utility-parking { display: none !important; }
  .utility-inner { justify-content: center; }
  .brand img { width: 11.5rem; }
  .mobile-menu-toggle { position: relative; width: 3.2rem; min-width: 3.2rem; height: 3.2rem; min-height: 3.2rem; flex: 0 0 3.2rem; padding: 0; border-radius: 50%; }
  .mobile-menu-toggle .menu-icon-open, .mobile-menu-toggle .menu-icon-close { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
  .mobile-menu-toggle span:last-child { display: none; }
  .noscript-navigation { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-home .hero-grid { min-height: 39rem; padding-block: 3.5rem; }
  .hero-ai-badge { right: .75rem; bottom: .75rem; width: 2rem; height: 2rem; font-size: .64rem; }
  h2 { font-size: clamp(1.6rem, 7vw, 1.95rem); }
  .hero-page .hero-grid { min-height: 0; gap: 0; padding-block: 3.25rem 4.5rem; }
  .hero-home .hero-copy h1 { font-size: clamp(2.25rem, 11vw, 3rem); }
  .hero-page h1 { font-size: clamp(1.85rem, 8vw, 2.35rem); }
  .legal-hero h1 { font-size: clamp(1.85rem, 8vw, 2.35rem); }
  .hero-lead { font-size: 1rem; line-height: 1.55; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div, .trust-grid > div + div, .trust-grid > div:nth-child(3), .trust-grid > div:nth-child(4) { min-height: 0; padding: .9rem .25rem; border: 0; border-bottom: 1px solid var(--line); }
  .cards-4, .cards-3, .team-grid { grid-template-columns: 1fr; }
  .membership-layout, .press-layout { max-width: 36rem; grid-template-columns: 1fr; justify-items: center; gap: 1.6rem; text-align: center; }
  .membership-copy, .press-copy { width: 100%; }
  .membership-layout p:not(.eyebrow), .press-layout p:not(.eyebrow) { margin-inline: auto; }
  .ifk-logo { width: 7rem; height: 7rem; margin-inline: auto; }
  .press-layout > .press-mark { width: 9rem; min-height: 5.5rem; font-size: 2.55rem; }
  .press-links { width: min(100%, 20rem); flex-direction: column; align-items: stretch; justify-content: center; margin-right: auto; margin-left: auto; }
  .press-links .button { width: 100%; }
  .card-body { min-height: auto; }
  .card-body .text-link { margin-top: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-panel { border-radius: var(--radius); }
  .cta-actions, .cta-actions .button { width: 100%; }
  .panorama-hotspots { display: none; }
  .panorama-toolbar { right: .55rem; bottom: .55rem; left: .55rem; grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem 2.5rem; gap: .35rem; }
  .panorama-toolbar button { width: 2.5rem; height: 2.5rem; }
  .static-tour-grid { grid-template-columns: 1fr; }
  .price-row { align-items: start; }
  .price-row .price { font-size: 1rem; }
  .site-footer { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; gap: 2rem; }
  .footer-grid > div { width: 100%; }
  .footer-brand img, .footer-brand p { margin-right: auto; margin-left: auto; }
  .footer-grid address, .footer-grid > div:not(.footer-brand), .footer-grid > div:not(.footer-brand) > nav { justify-items: center; }
  .social-links { justify-content: center; }
  .hours-list { margin-inline: auto; }
  .hours-list > div { grid-template-columns: auto auto; justify-content: center; text-align: left; }
  .footer-bottom { align-items: center; flex-direction: column; padding-bottom: 5rem; text-align: center; }
  .footer-bottom nav { justify-content: center; }
  body.has-scrolled .floating-contact { display: inline-flex; }
}

.panorama-stage:fullscreen { width: 100%; height: 100%; min-height: 100%; aspect-ratio: auto; border-radius: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .hero-home .hero-media img { animation: none; transform: scale(1.015); }
}

@media print {
  .site-header, .site-footer, .floating-contact, .cta-section, .hero-actions, .hero-ai-badge, .panorama-shell { display: none !important; }
  body { color: #000; background: #fff; }
  .section { padding-block: 2rem; }
  .hero { background: #fff; }
  .hero-grid { display: block; min-height: 0; padding-block: 1rem; }
  .hero-media { display: none; }
  a { color: #000; text-decoration: underline; }
}
