:root {
  --ink: #f7efe0;
  --muted: #b8ad98;
  --paper: #050505;
  --surface: #0d0b08;
  --surface-strong: #16110a;
  --surface-soft: #20180d;
  --line: rgba(221, 178, 91, 0.24);
  --line-strong: rgba(245, 211, 139, 0.46);
  --gold: #d9ad57;
  --gold-light: #f5d38b;
  --gold-deep: #9f742d;
  --white-soft: rgba(255, 249, 238, 0.88);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
article[id],
footer[id] {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

body {
  position: relative;
  min-height: 100svh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 0.92) 680px, #050505),
    url("assets/centrum-leczenia-bolu-bg.jpg") center top / cover no-repeat,
    var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--gold-light);
  color: #080604;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 800;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.home-page main {
  padding-top: var(--header-height);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(217, 173, 87, 0.18);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  overflow: hidden;
  border: 1px solid rgba(245, 211, 139, 0.34);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 0 34px rgba(217, 173, 87, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  color: var(--gold-light);
  font-size: 1.02rem;
  line-height: 1.2;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--white-soft);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-light);
}

.site-nav .login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(245, 211, 139, 0.34);
  border-radius: 8px;
  padding: 8px 13px;
  color: var(--gold-light);
  background: rgba(245, 211, 139, 0.07);
}

.site-nav .login-link:hover,
.site-nav .login-link:focus-visible {
  border-color: var(--gold-light);
  background: rgba(245, 211, 139, 0.13);
}

.phone-menu {
  position: relative;
}

.phone-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 9px 15px;
  background: rgba(217, 173, 87, 0.12);
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.phone-menu summary::-webkit-details-marker {
  display: none;
}

.phone-menu summary::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.phone-menu[open] summary {
  border-color: var(--gold-light);
  background: rgba(217, 173, 87, 0.18);
}

.phone-menu[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.phone-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1200;
  width: min(330px, calc(100vw - 32px));
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(7, 6, 5, 0.98);
  box-shadow: var(--shadow);
}

.phone-menu-panel span {
  margin-top: 6px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.phone-menu-panel span:first-child {
  margin-top: 0;
}

.phone-menu-panel a {
  display: block;
  border-radius: 8px;
  padding: 8px 10px;
  color: rgba(247, 239, 224, 0.86);
  font-size: 0.9rem;
  text-decoration: none;
}

.phone-menu-panel a:hover,
.phone-menu-panel a:focus-visible {
  background: rgba(245, 211, 139, 0.08);
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-light);
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 56px) max(20px, calc((100vw - 1180px) / 2)) 88px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.84) 47%, rgba(5, 5, 5, 0.28) 82%),
    linear-gradient(180deg, rgba(217, 173, 87, 0.16), rgba(5, 5, 5, 0.08)),
    url("assets/centrum-leczenia-bolu-bg.jpg") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), var(--paper));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
}

.home-hero {
  min-height: 0;
  aspect-ratio: auto;
  align-items: stretch;
  padding: 0;
  background: rgba(5, 5, 5, 0.96);
}

.home-hero::after {
  display: none;
}

.home-photo-wrap {
  width: min(1180px, calc(100% - 40px));
}

.home-photo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 211, 139, 0.18);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.home-photo-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.72) 52%, rgba(5, 5, 5, 0.94));
  pointer-events: none;
}

.home-team-photo {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center 48%;
  background: #050505;
  opacity: 0.72;
  filter: saturate(0.74) contrast(0.92) brightness(0.9);
}

.home-photo-logo {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(245, 211, 139, 0.34);
  border-radius: 8px;
  opacity: 0.9;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.home-page .choice-grid {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  max-width: none;
  margin: 0 auto;
  padding: 22px;
}

.detail-hero {
  min-height: 76svh;
}

.bio-hero {
  min-height: 0;
  padding: calc(var(--header-height) + 32px) 0 72px;
  background: rgba(5, 5, 5, 0.96);
}

.bio-hero-card {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.bio-hero-card::after {
  z-index: 1;
  inset: 0;
  height: auto;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.9) 45%, rgba(5, 5, 5, 0.26) 82%),
    linear-gradient(180deg, rgba(217, 173, 87, 0.14), rgba(5, 5, 5, 0.72));
}

.bio-card-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 54%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.76;
  filter: saturate(0.78) contrast(1.04) brightness(0.88);
}

.bio-hero-panel {
  position: relative;
  z-index: 2;
  width: min(700px, 62%);
  padding: 64px;
}

.hero.bio-hero h1 {
  max-width: 780px;
  font-size: 5.08rem;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.48);
}

.physio-hero {
  min-height: 0;
  padding: calc(var(--header-height) + 32px) 0 72px;
  background: rgba(5, 5, 5, 0.96);
}

.physio-hero-card {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  isolation: isolate;
}

.physio-hero-card::after {
  z-index: 1;
  inset: 0;
  height: auto;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.08) 46%, rgba(5, 5, 5, 0.72) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.52), rgba(5, 5, 5, 0.02) 38%, rgba(5, 5, 5, 0.1));
}

.physio-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0.98;
  filter: saturate(0.96) contrast(1.02) brightness(1);
}

.physio-hero-panel {
  position: absolute;
  left: clamp(22px, 4vw, 42px);
  bottom: clamp(20px, 3vw, 34px);
  z-index: 2;
  width: min(540px, 48%);
  padding: 0;
}

.hero.physio-hero h1 {
  max-width: 540px;
  font-size: clamp(2.55rem, 3.7vw, 3.35rem);
  line-height: 0.98;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.48);
}

.physio-hero .eyebrow {
  margin-bottom: 8px;
}

.physio-hero .hero-lede {
  max-width: 500px;
  margin-top: 14px;
  font-size: 1.02rem;
  line-height: 1.45;
}

.physio-hero .hero-signature {
  max-width: 500px;
  margin-top: 14px;
  font-size: 0.92rem;
}

.hero-booking-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin-top: 14px;
}

.hero-booking-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background:
    linear-gradient(145deg, rgba(245, 211, 139, 0.18), rgba(255, 255, 255, 0.045) 56%),
    rgba(8, 7, 5, 0.78);
  color: var(--ink);
  text-decoration: none;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.hero-booking-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
}

.hero-booking-card:hover,
.hero-booking-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background:
    linear-gradient(145deg, rgba(245, 211, 139, 0.24), rgba(255, 255, 255, 0.06) 56%),
    rgba(12, 10, 7, 0.86);
}

.hero-booking-card span {
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.method-card span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-booking-card strong,
.method-card h3 {
  display: block;
  margin: 9px 0 0;
  color: #fff8e8;
  line-height: 1.18;
}

.hero-booking-card strong {
  font-size: 1.02rem;
}

.hero-booking-card em {
  display: block;
  margin-top: 6px;
  color: var(--gold-light);
  font-size: 1.04rem;
  font-style: normal;
  font-weight: 850;
}

.method-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  color: #fff8e8;
  font-size: 4.35rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 248, 232, 0.84);
  font-size: 1.22rem;
}

.hero-signature {
  max-width: 620px;
  margin: 24px 0 0;
  border-left: 4px solid var(--gold-light);
  padding-left: 16px;
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 850;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 830px;
  margin-top: 38px;
}

.choice-card {
  position: relative;
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(245, 211, 139, 0.18), rgba(255, 255, 255, 0.04) 48%),
    rgba(8, 7, 5, 0.84);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.choice-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
}

.choice-card:hover,
.choice-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background:
    linear-gradient(145deg, rgba(245, 211, 139, 0.24), rgba(255, 255, 255, 0.055) 50%),
    rgba(14, 11, 8, 0.92);
}

.choice-kicker {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.choice-card strong {
  display: block;
  margin-top: 10px;
  color: #fff8e8;
  font-size: 1.68rem;
  line-height: 1.08;
}

.choice-card p {
  margin: 14px 0 0;
  color: rgba(247, 239, 224, 0.74);
}

.choice-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--gold-light);
  font-weight: 850;
}

.choice-link::after {
  content: "→";
  font-size: 1.1rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 830px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  min-height: 58px;
  border: 1px solid rgba(245, 211, 139, 0.16);
  border-radius: 8px;
  padding: 14px 16px 14px 28px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 248, 232, 0.78);
  font-size: 0.94rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 14px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

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

.hero-actions .btn-secondary-light {
  margin-top: 0;
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #080604;
  box-shadow: 0 16px 38px rgba(217, 173, 87, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(180deg, #ffe3a4, #d4a64f);
}

.btn-secondary-light {
  margin-top: 26px;
  border-color: var(--line-strong);
  background: rgba(245, 211, 139, 0.1);
  color: var(--gold-light);
}

.btn-secondary-light:hover,
.btn-secondary-light:focus-visible {
  background: rgba(245, 211, 139, 0.16);
}

.intro-strip {
  position: relative;
  z-index: 2;
  padding: 0 0 36px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.intro-grid div {
  min-height: 154px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(245, 211, 139, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(13, 11, 8, 0.94);
}

.intro-grid span,
.process-step span {
  color: var(--gold-light);
  font-weight: 850;
}

.intro-grid strong {
  display: block;
  margin: 8px 0 7px;
  color: #fff8e8;
  font-size: 1.08rem;
}

.intro-grid p,
.process-step p,
.section-copy p {
  color: var(--muted);
}

.section {
  padding: 92px 0;
}

.section-copy h2,
.section-heading h2,
.contact-section h2 {
  max-width: 820px;
  margin: 0;
  color: #fff8e8;
  font-size: 2.68rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-copy p {
  margin: 20px 0 0;
  font-size: 1.05rem;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 42px;
}

.note {
  margin-top: 28px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(217, 173, 87, 0.1);
  color: #ead3a5;
  font-weight: 700;
}

.path-section {
  position: relative;
  overflow: hidden;
}

.energy-path {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(217, 173, 87, 0.045)),
    rgba(5, 5, 5, 0.94);
}

.body-path {
  background: rgba(13, 11, 8, 0.94);
}

.path-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 56px;
}

.path-layout-reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 0.98fr);
}

.path-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(245, 211, 139, 0.14), rgba(255, 255, 255, 0.025) 56%),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.panel-topline {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list {
  margin-bottom: 30px;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold-light);
}

.path-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.path-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.physio-method-section {
  background: #070605;
}

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

.method-card {
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 211, 139, 0.1), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.method-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(245, 211, 139, 0.14), rgba(255, 255, 255, 0.025)),
    var(--surface);
}

.method-card-visual {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #000;
}

.method-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0) 42%, rgba(5, 5, 5, 0.86) 100%),
    radial-gradient(circle at 50% 84%, rgba(245, 211, 139, 0.16), rgba(5, 5, 5, 0) 52%);
}

.method-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: saturate(0.9) contrast(1.06) brightness(0.94);
  transition: transform 240ms ease, opacity 240ms ease;
}

.method-card:hover .method-card-image {
  transform: scale(1.04);
  opacity: 0.98;
}

.method-card-body {
  position: relative;
  z-index: 1;
  margin-top: -42px;
  padding: 0 24px 24px;
}

.method-card-body span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(245, 211, 139, 0.25);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(8px);
}

.method-card h3 {
  font-size: 1.18rem;
}

.about-section {
  background: #080706;
}

.about-layout {
  display: block;
}

.bio-split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: 54px;
}

.about-copy {
  max-width: 780px;
}

.bio-about-photo img {
  object-fit: cover;
  object-position: center 18%;
}

.bio-gallery-section .section-copy {
  align-self: start;
}

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

.bio-info-card {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(245, 211, 139, 0.12), rgba(255, 255, 255, 0.025) 56%),
    rgba(13, 11, 8, 0.94);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.bio-info-card span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.bio-info-card h3,
.distance-section .path-panel h3 {
  margin: 10px 0 0;
  color: #fff8e8;
  line-height: 1.18;
}

.bio-info-card h3 {
  font-size: 1.32rem;
}

.bio-info-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.distance-section {
  background:
    linear-gradient(180deg, rgba(217, 173, 87, 0.045), rgba(5, 5, 5, 0)),
    rgba(8, 7, 6, 0.96);
}

.distance-section .path-panel h3 {
  font-size: 1.62rem;
}

.hypnosis-section {
  background: #070605;
}

.hypnosis-section .btn-primary {
  margin-top: 28px;
}

.process-section {
  background: rgba(5, 5, 5, 0.94);
}

.process-grid {
  display: grid;
  gap: 18px;
}

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

.process-step {
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 211, 139, 0.07), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(245, 211, 139, 0.12), rgba(255, 255, 255, 0.025)),
    var(--surface);
}

.process-step-visual {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #000;
}

.process-step-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0) 42%, rgba(5, 5, 5, 0.86) 100%),
    radial-gradient(circle at 50% 84%, rgba(245, 211, 139, 0.14), rgba(5, 5, 5, 0) 52%);
}

.process-step-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  filter: saturate(0.88) contrast(1.06) brightness(0.93);
  transition: transform 240ms ease, opacity 240ms ease;
}

.process-step:hover .process-step-image {
  transform: scale(1.04);
  opacity: 0.98;
}

.process-step-body {
  position: relative;
  z-index: 1;
  margin-top: -42px;
  padding: 0 24px 24px;
}

.process-step-body span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 30px;
  border: 1px solid rgba(245, 211, 139, 0.25);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(8px);
}

.process-step h3 {
  margin: 10px 0 0;
  color: #fff8e8;
  font-size: 1.18rem;
  line-height: 1.25;
}

.process-step p {
  margin: 14px 0 0;
}

.visual-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(217, 173, 87, 0.06), rgba(5, 5, 5, 0)),
    #070605;
}

.visual-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.22fr;
  align-items: center;
  gap: 56px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 170px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: #000;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 211, 139, 0);
  transition: background 180ms ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  background: rgba(245, 211, 139, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
  transition: transform 240ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
}

.gallery-large {
  grid-row: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.contact-section {
  padding: 58px 0 18px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.4), rgba(217, 173, 87, 0.07)),
    #050505;
  color: #fff;
}

.blog-list-section {
  background: rgba(5, 5, 5, 0.95);
}

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

.blog-post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 211, 139, 0.08), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease;
}

.blog-post-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.blog-post-card a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #000;
  filter: saturate(0.9) contrast(1.05) brightness(0.92);
}

.blog-post-card span,
.blog-post-card small {
  display: block;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.blog-post-card span,
.blog-post-card h3,
.blog-post-card p,
.blog-post-card small {
  margin-left: 20px;
  margin-right: 20px;
}

.blog-post-card span {
  margin-top: 18px;
}

.blog-post-card h3 {
  margin-top: 8px;
  margin-bottom: 0;
  color: #fff8e8;
  font-size: 1.3rem;
  line-height: 1.18;
}

.blog-post-card p {
  margin-top: 12px;
  color: var(--muted);
}

.blog-post-card small {
  margin-top: 18px;
  margin-bottom: 20px;
}

.blog-empty {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
}

.article-layout {
  background: rgba(5, 5, 5, 0.95);
}

.article-hero {
  padding: calc(var(--header-height) + 54px) 0 56px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.6), rgba(5, 5, 5, 0.96)),
    url("assets/centrum-leczenia-bolu-bg.jpg") center top / cover no-repeat;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  align-items: center;
  gap: 42px;
}

.article-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff8e8;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: 1;
}

.article-hero p {
  max-width: 680px;
  color: rgba(255, 248, 232, 0.82);
  font-size: 1.12rem;
}

.article-hero small {
  color: var(--gold-light);
  font-weight: 850;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: #000;
  box-shadow: var(--shadow);
}

.article-content {
  max-width: 820px;
  padding-top: 64px;
  padding-bottom: 82px;
}

.article-content h2,
.article-content h3 {
  color: #fff8e8;
  line-height: 1.18;
}

.article-content h2 {
  margin: 42px 0 14px;
  font-size: 2rem;
}

.article-content h3 {
  margin: 32px 0 12px;
  font-size: 1.42rem;
}

.article-content p,
.article-content li {
  color: rgba(247, 239, 224, 0.8);
  font-size: 1.05rem;
}

.article-content ul {
  padding-left: 22px;
}

.article-cta {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  margin: 52px 0 30px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(245, 211, 139, 0.18), rgba(255, 255, 255, 0.045)),
    rgba(15, 13, 10, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.article-cta > span {
  display: block;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-cta h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.article-cta p {
  max-width: 680px;
  margin: 0 0 22px;
}

.article-cta-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.article-cta-group {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.22);
}

.article-cta-group > span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-cta-link {
  display: grid;
  gap: 4px;
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff8e8;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.article-cta-link:hover,
.article-cta-link:focus-visible {
  background: rgba(245, 211, 139, 0.12);
  color: #fff;
}

.article-cta-link strong {
  line-height: 1.18;
}

.article-cta-link em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 900;
}

.article-note {
  border-left: 4px solid var(--gold-light);
  margin-top: 42px;
  padding-left: 18px;
  color: var(--gold-light) !important;
  font-weight: 780;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 28px;
  align-items: center;
}

.contact-intro h2 {
  max-width: 560px;
  font-size: 2.08rem;
}

.contact-intro p:not(.eyebrow) {
  max-width: 520px;
  margin: 14px 0 0;
  color: rgba(247, 239, 224, 0.72);
  font-size: 1rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  margin-top: 20px;
}

.contact-actions .btn-secondary-light {
  margin-top: 0;
}

.contact-phone {
  min-width: 220px;
}

.physio-page .contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 580px;
}

.physio-page .contact-phone {
  flex-direction: column;
  gap: 4px;
  width: 100%;
  min-width: 0;
  min-height: 68px;
  padding-inline: 16px;
  text-align: center;
  line-height: 1.22;
  white-space: normal;
}

.contact-phone-name,
.contact-phone-number {
  display: block;
  white-space: nowrap;
}

.contact-phone-number {
  font-size: 1.02rem;
  font-weight: 900;
}

.contact-details {
  display: grid;
  gap: 10px;
}

.contact-card {
  display: block;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  text-decoration: none;
}

.contact-card address,
.contact-card span {
  min-width: 0;
  margin: 0;
  color: rgba(247, 239, 224, 0.84);
  font-style: normal;
}

.contact-card address span,
.contact-youtube strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.contact-youtube {
  transition: background 160ms ease, border-color 160ms ease;
}

.contact-youtube:hover,
.contact-youtube:focus-visible {
  border-color: var(--line-strong);
  background: rgba(245, 211, 139, 0.08);
}

.contact-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.directions-section {
  padding: 28px 0 74px;
  background: rgba(5, 5, 5, 0.94);
}

.footer-directions {
  margin-top: 42px;
  padding: 34px 0 30px;
  border-top: 1px solid rgba(245, 211, 139, 0.16);
  border-bottom: 1px solid rgba(245, 211, 139, 0.12);
  background:
    linear-gradient(180deg, rgba(245, 211, 139, 0.045), rgba(5, 5, 5, 0)),
    rgba(5, 5, 5, 0.42);
}

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

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.map-card-head {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
}

.map-card-head span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.map-card-head strong {
  color: rgba(247, 239, 224, 0.9);
  font-size: 0.96rem;
}

.map-card-head a {
  width: fit-content;
  margin-top: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.map-card-head a:hover,
.map-card-head a:focus-visible {
  color: #ffe3a4;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  filter: grayscale(0.8) invert(0.92) contrast(0.9);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 211, 139, 0.18);
  color: rgba(247, 239, 224, 0.66);
  font-size: 0.84rem;
}

.footer-bottom p {
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 5, 5, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 1120px);
  max-height: 86svh;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-light);
  font-size: 1.8rem;
  line-height: 1;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .energy-page .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 14px;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  .hero.bio-hero h1 {
    font-size: 4.24rem;
  }

  .hero.physio-hero h1 {
    font-size: 2.88rem;
  }

  .bio-hero-panel {
    width: min(650px, 62%);
    padding: 52px;
  }

  .bio-card-photo {
    width: 50%;
  }

  .physio-hero-panel {
    width: min(500px, 50%);
    padding: 0;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-section h2 {
    font-size: 2.24rem;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .visual-grid,
  .about-layout,
  .bio-split,
  .article-hero-grid,
  .path-layout,
  .path-layout-reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .path-photo img {
    height: 440px;
  }

  .about-copy {
    max-width: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(720px, calc(100% - 32px));
  }

  .brand-mark {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .brand-text small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 16px auto 16px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 6, 5, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .login-link {
    justify-content: flex-start;
    min-height: auto;
    margin: 10px 12px 0;
    padding: 13px 16px;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .phone-menu {
    margin: 12px;
    justify-self: stretch;
  }

  .phone-menu summary {
    width: 100%;
  }

  .phone-menu-panel {
    position: static;
    width: 100%;
    border-width: 1px 0 0;
    border-radius: 0 0 8px 8px;
    box-shadow: none;
  }

  .hero {
    min-height: 88svh;
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 74px;
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.78) 60%, rgba(5, 5, 5, 0.44) 100%),
      url("assets/centrum-leczenia-bolu-bg.jpg") center top / cover no-repeat;
  }

  .bio-hero {
    padding: calc(var(--header-height) + 24px) 0 56px;
    background: rgba(5, 5, 5, 0.96);
  }

  .physio-hero {
    padding: calc(var(--header-height) + 24px) 0 56px;
    background: rgba(5, 5, 5, 0.96);
  }

  .bio-hero-card {
    min-height: 0;
    display: grid;
  }

  .bio-hero-card::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.02) 0%, rgba(5, 5, 5, 0.58) 42%, rgba(5, 5, 5, 0.98) 70%),
      linear-gradient(180deg, rgba(217, 173, 87, 0.11), rgba(5, 5, 5, 0));
  }

  .bio-card-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: 430px;
  }

  .bio-hero-panel {
    width: 100%;
    padding: 32px;
  }

  .physio-hero-card {
    min-height: 560px;
  }

  .physio-card-photo {
    object-position: center 32%;
  }

  .physio-hero-panel {
    width: min(470px, 68%);
    padding: 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero.bio-hero h1 {
    font-size: 3.18rem;
  }

  .hero.physio-hero h1 {
    font-size: 2.28rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .choice-grid,
  .hero-points,
  .intro-grid,
  .directions-grid,
  .bio-card-grid {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 214px;
  }

  .home-page .home-hero {
    min-height: 0;
    padding: 0;
    background: rgba(5, 5, 5, 0.96);
  }

  .home-photo-wrap {
    width: min(720px, calc(100% - 32px));
  }

  .home-photo-card::after {
    display: none;
  }

  .home-team-photo {
    height: auto;
    aspect-ratio: 1400 / 900;
    object-fit: cover;
    object-position: center 48%;
    opacity: 0.76;
  }

  .home-photo-logo {
    width: 70px;
    height: 70px;
    top: 12px;
    right: 12px;
  }

  .home-page .choice-grid {
    position: static;
    padding: 14px;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.96));
  }

  .home-page .choice-card {
    min-height: 180px;
  }

  .section {
    padding: 72px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-large,
  .gallery-tall {
    grid-row: span 1;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-text strong {
    font-size: 0.96rem;
  }

  .hero {
    align-items: end;
    min-height: 92svh;
    padding-left: 16px;
    padding-right: 16px;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.36) 0%, rgba(5, 5, 5, 0.88) 48%, rgba(5, 5, 5, 0.98) 100%),
      url("assets/centrum-leczenia-bolu-bg.jpg") center top / cover no-repeat;
  }

  .bio-hero {
    padding-bottom: 64px;
    background: rgba(5, 5, 5, 0.96);
  }

  .physio-hero {
    padding-bottom: 64px;
    background: rgba(5, 5, 5, 0.96);
  }

  .bio-card-photo {
    height: 340px;
  }

  .bio-hero-panel {
    padding: 24px;
  }

  .physio-hero-card {
    min-height: 520px;
  }

  .physio-card-photo {
    object-position: center top;
  }

  .physio-hero-panel {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    padding: 0;
  }

  .hero.bio-hero h1 {
    font-size: 2.62rem;
  }

  .hero.physio-hero h1 {
    font-size: 1.92rem;
  }

  .hero-booking-tiles {
    grid-template-columns: 1fr;
    max-width: 330px;
  }

  .hero-signature {
    font-size: 0.92rem;
  }

  .home-page .home-hero {
    align-items: stretch;
    min-height: 0;
    padding: 0;
    background: rgba(5, 5, 5, 0.96);
  }

  .home-photo-wrap {
    width: min(720px, calc(100% - 32px));
  }

  .home-photo-logo {
    width: 58px;
    height: 58px;
  }

  .home-team-photo {
    aspect-ratio: 1400 / 930;
  }

  .home-page .choice-grid {
    gap: 10px;
    padding: 12px;
  }

  .home-page .choice-card {
    min-height: 154px;
  }

  .hero h1 {
    font-size: 2.42rem;
  }

  .choice-card,
  .intro-grid div,
  .process-step,
  .path-panel,
  .bio-info-card {
    padding: 22px;
  }

  .choice-card strong {
    font-size: 1.45rem;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-section h2 {
    font-size: 1.78rem;
  }

  .process-grid,
  .method-grid,
  .gallery-grid,
  .directions-grid,
  .contact-map-grid,
  .blog-post-grid {
    grid-template-columns: 1fr;
  }

  .path-photo img {
    height: 330px;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .contact-section {
    padding: 44px 0 18px;
  }

  .physio-page .contact-actions {
    grid-template-columns: 1fr;
  }

  .directions-section {
    padding: 28px 0 56px;
  }

  .contact-grid {
    gap: 22px;
  }

  .map-card iframe {
    height: 240px;
  }
}
