/* ═══════════════════════════════════════════════════════════
   Steffen Physiotherapie — Redesign 2026
   Editorial warmth: cream, deep forest green, Plus Jakarta Sans
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Brand colors sampled from the original logo:
     beige #DACCB2 · dark green #075C21 · bright green #2FB01E · blue #0030C8 · ring red #C80000 */
  --cream: #FAF7F0;
  --cream-deep: #F0EADC;
  --beige: #DACCB2;
  --ink: #1C2B20;
  --ink-soft: #4C5B4F;
  --forest: #0B5A26;
  --forest-deep: #07421C;
  --sage: #9CC79A;
  --clay: #218F17;
  --ring: #C81414;
  --line: rgba(31, 44, 38, 0.1);
  --line-soft: rgba(31, 44, 38, 0.06);
  --sans: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
  --ease-lux: cubic-bezier(0.32, 0.72, 0, 1);
  --shadow-float:
    0 1px 2px rgba(31, 44, 38, 0.04),
    0 8px 24px rgba(31, 44, 38, 0.06),
    0 24px 64px rgba(31, 44, 38, 0.08);
  --shadow-deep:
    0 2px 4px rgba(20, 32, 26, 0.12),
    0 16px 48px rgba(20, 32, 26, 0.22),
    0 48px 120px rgba(20, 32, 26, 0.28);
}

/* Preview only: blue variant (logo blue #003BCF), toggled via js/theme-switch.js */
:root[data-theme="blue"] {
  --forest: #003BCF;
  --forest-deep: #002B96;
  --sage: #A9BEF4;
  --clay: #2A62E6;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(90rem 50rem at 85% -10%, rgba(156, 199, 154, 0.2), transparent 60%),
    radial-gradient(70rem 40rem at -10% 30%, rgba(218, 204, 178, 0.35), transparent 55%),
    var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--forest); color: var(--cream); }

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

/* Film grain — fixed, non-interactive */
.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.028 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════ Typography ═══════════ */

h1, h2, h3 { font-family: var(--sans); font-weight: 600; line-height: 1.1; letter-spacing: -0.025em; text-wrap: balance; }

h1 em, h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--clay);
}

h2 { font-size: clamp(1.7rem, 1.1rem + 2.4vw, 2.7rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.eyebrow::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--ring);
}

.eyebrow--light {
  border-color: rgba(250, 246, 239, 0.25);
  background: rgba(250, 246, 239, 0.08);
  color: rgba(250, 246, 239, 0.75);
}

.eyebrow--onimage {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(20, 32, 26, 0.35);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ═══════════ Buttons — nested pill + orb ═══════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.6rem 0.55rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: transform 0.6s var(--ease-lux), background-color 0.6s var(--ease-lux), box-shadow 0.6s var(--ease-lux);
}

.btn:active { transform: scale(0.97); }

.btn__orb {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  font-size: 0.95rem;
  transition: transform 0.6s var(--ease-lux);
}

.btn:hover .btn__orb { transform: translate(2px, -2px) scale(1.06); }

.btn--primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.18), 0 12px 32px rgba(34, 70, 58, 0.28);
}
.btn--primary:hover { background: var(--forest-deep); }
.btn--primary .btn__orb { background: rgba(250, 246, 239, 0.14); color: var(--cream); }

.btn--ghost {
  padding: 0.78rem 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.85); }

.btn--light {
  background: var(--cream);
  color: var(--forest-deep);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), 0 12px 32px rgba(0, 0, 0, 0.18);
}
.btn--light .btn__orb { background: rgba(34, 70, 58, 0.1); }

.btn--frost {
  background: rgba(250, 246, 239, 0.12);
  border: 1px solid rgba(250, 246, 239, 0.3);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--frost:hover { background: rgba(250, 246, 239, 0.22); }
.btn--frost .btn__orb { background: rgba(255, 255, 255, 0.16); }

/* ═══════════ Nav — floating glass pill ═══════════ */

.nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  padding: 1.25rem 1.25rem 0;
  pointer-events: none;
}

.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  width: min(100%, 68rem);
  padding: 0.6rem 0.6rem 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 44, 38, 0.08);
  background: rgba(250, 246, 239, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.5) inset, 0 8px 32px rgba(31, 44, 38, 0.08);
  transition: box-shadow 0.7s var(--ease-lux), background-color 0.7s var(--ease-lux);
}

.nav.is-scrolled {
  background: rgba(250, 246, 239, 0.88);
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.5) inset, 0 16px 48px rgba(31, 44, 38, 0.14);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: auto;
}

.nav__brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(31, 44, 38, 0.12);
}

.nav__brand-name {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav__brand-name em {
  font-style: italic;
  font-weight: 380;
  color: var(--ink-soft);
}

.nav__links {
  display: flex;
  gap: 0.25rem;
}

.nav__links a {
  position: relative;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.5s var(--ease-lux), background-color 0.5s var(--ease-lux);
}

.nav__links a:hover { color: var(--ink); background: rgba(31, 44, 38, 0.05); }
.nav__links a.is-current { color: var(--ink); background: rgba(31, 44, 38, 0.07); }

.nav__cta {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.18);
  transition: background-color 0.5s var(--ease-lux), transform 0.5s var(--ease-lux);
}
.nav__cta:hover { background: var(--forest-deep); }
.nav__cta:active { transform: scale(0.97); }

/* Burger — morphs to X */
.nav__burger {
  display: none;
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background: var(--forest);
  cursor: pointer;
}

.nav__burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.1rem;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transform: translate(-50%, calc(-50% - 3.5px));
  transition: transform 0.55s var(--ease-lux);
}

.nav__burger span:last-child { transform: translate(-50%, calc(-50% + 3.5px)); }

.nav__burger.is-open span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

/* Fullscreen menu */
.menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 3rem;
  background: rgba(26, 54, 45, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s var(--ease-lux), visibility 0.7s;
}

.menu.is-open { opacity: 1; visibility: visible; }

.menu__list { display: grid; gap: 0.5rem; }

.menu__list a {
  font-family: var(--sans);
  font-size: clamp(1.7rem, 6.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--cream);
  transition: color 0.5s var(--ease-lux);
}
.menu__list a:hover { color: var(--sage); }

.menu__list li,
.menu__meta {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.8s var(--ease-lux), transform 0.8s var(--ease-lux);
  transition-delay: 0s;
}

.menu.is-open .menu__list li,
.menu.is-open .menu__meta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.08s + var(--i) * 0.055s);
}

.menu__meta { color: rgba(250, 246, 239, 0.6); font-size: 0.9rem; line-height: 1.8; }

/* ═══════════ Frames — double bezel ═══════════ */

.frame {
  padding: 0.55rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(31, 44, 38, 0.07);
  box-shadow: var(--shadow-float);
}

.frame__inner {
  position: relative;
  overflow: hidden;
  border-radius: calc(2rem - 0.55rem);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

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

/* ═══════════ Hero ═══════════ */

.hero {
  padding: clamp(8.5rem, 6rem + 6vw, 12rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero__title {
  font-size: clamp(2.2rem, 1.3rem + 3.4vw, 3.7rem);
  margin-bottom: 1.75rem;
}

.hero__lead {
  max-width: 34rem;
  font-size: 1.1rem;
  font-weight: 380;
  color: var(--ink-soft);
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 3rem;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.hero__facts strong {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.hero__facts a:hover { color: var(--clay); }

.hero__facts-sep {
  width: 1px;
  height: 2.6rem;
  background: var(--line);
}

.hero__visual { position: relative; }

.frame--hero { transform: rotate(1.2deg); }

.frame--hero .frame__inner { aspect-ratio: 5 / 4; }

.hero__tour {
  position: absolute;
  bottom: -1.4rem;
  left: clamp(-1rem, -2vw, 1rem);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: rgba(250, 246, 239, 0.85);
  border: 1px solid rgba(31, 44, 38, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-float);
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.6s var(--ease-lux);
}

.hero__tour:hover { transform: translateY(-3px); }

.hero__tour-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--ring);
  box-shadow: 0 0 0 4px rgba(200, 20, 20, 0.14);
}

.hero__tour-arrow { transition: transform 0.6s var(--ease-lux); }
.hero__tour:hover .hero__tour-arrow { transform: translateX(4px); }

/* ═══════════ Values ═══════════ */

.values {
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 8vw, 7rem);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 1rem;
}

.value {
  padding: 2rem 1.75rem 2.25rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line-soft);
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.8) inset, 0 12px 36px rgba(31, 44, 38, 0.05);
  transition: transform 0.7s var(--ease-lux), box-shadow 0.7s var(--ease-lux);
}

.value:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.8) inset, 0 24px 56px rgba(31, 44, 38, 0.1);
}

.value__num {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--clay);
  margin-bottom: 2.75rem;
}

.value h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}

.value p {
  font-size: 0.9rem;
  font-weight: 380;
  color: var(--ink-soft);
}

/* ═══════════ Therapies — dark editorial band ═══════════ */

.therapies {
  margin: clamp(2rem, 4vw, 4rem) clamp(0.75rem, 2vw, 2rem);
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  border-radius: 3rem;
  background:
    radial-gradient(60rem 40rem at 110% -20%, rgba(156, 199, 154, 0.14), transparent 60%),
    radial-gradient(50rem 36rem at -20% 110%, rgba(218, 204, 178, 0.12), transparent 55%),
    var(--forest-deep);
  color: var(--cream);
  box-shadow: var(--shadow-deep);
}

.therapies h2 em { color: var(--sage); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.therapies__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.tcard {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  border-radius: 1.7rem;
  background: rgba(250, 246, 239, 0.055);
  border: 1px solid rgba(250, 246, 239, 0.1);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.7s var(--ease-lux), background-color 0.7s var(--ease-lux), border-color 0.7s var(--ease-lux);
}

.tcard--wide { grid-column: span 2; }

.tcard--feature {
  grid-column: span 4;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.4rem 2.5rem;
  background:
    radial-gradient(40rem 20rem at 105% -40%, rgba(232, 201, 168, 0.14), transparent 60%),
    rgba(250, 246, 239, 0.07);
}

.tcard__feature-copy { max-width: 42rem; }

.tcard__feature-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 1rem;
}

.tcard--feature h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 0.75rem;
}

.tcard--feature h3 em { font-style: italic; color: var(--sage); }

.tcard--feature p { font-size: 0.95rem; color: rgba(250, 246, 239, 0.65); font-weight: 350; }

.tcard--feature .tcard__more { margin: 0; padding: 0 0 0.35rem; white-space: nowrap; }

.tcard:hover {
  transform: translateY(-6px);
  background: rgba(250, 246, 239, 0.1);
  border-color: rgba(250, 246, 239, 0.2);
}

.tcard__media {
  overflow: hidden;
  border-radius: calc(1.7rem - 0.5rem) calc(1.7rem - 0.5rem) 0.6rem 0.6rem;
  aspect-ratio: 16 / 9;
}

.tcard--wide .tcard__media { aspect-ratio: 21 / 9; }

.tcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 1.1s var(--ease-lux);
}

.tcard:hover .tcard__media img { transform: scale(1.05); }

.tcard__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
  padding: 1.25rem 1.1rem 1.2rem;
}

.tcard__body h3 {
  font-size: 1.15rem;
  line-height: 1.15;
}

.tcard__body p {
  font-size: 0.86rem;
  font-weight: 350;
  color: rgba(250, 246, 239, 0.65);
}

.tcard__more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

.tcard__more i {
  font-style: normal;
  transition: transform 0.6s var(--ease-lux);
}

.tcard:hover .tcard__more i { transform: translateX(4px); }

/* ═══════════ Tour band ═══════════ */

.tour { padding: clamp(4rem, 9vw, 8rem) 0 0; }

.frame--tour .frame__inner { aspect-ratio: 21 / 10; }

.tour__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 1.25rem;
  padding: clamp(1.75rem, 4vw, 3.5rem);
  background: linear-gradient(200deg, rgba(20, 32, 26, 0) 30%, rgba(20, 32, 26, 0.62) 100%);
  color: #fff;
}

.tour__overlay h2 { max-width: 22ch; }
.tour__overlay h2 em { color: var(--beige); }

/* ═══════════ Shop ═══════════ */

.shop { padding: clamp(4.5rem, 9vw, 8rem) 0; }

.shop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.scard {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 2.25rem 2rem 2.5rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line-soft);
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.8) inset, 0 12px 36px rgba(31, 44, 38, 0.05);
  transition: transform 0.7s var(--ease-lux), box-shadow 0.7s var(--ease-lux);
}

.scard:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.8) inset, 0 26px 60px rgba(31, 44, 38, 0.11);
}

.scard__glyph {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: rgba(34, 70, 58, 0.08);
  color: var(--forest);
  font-size: 1.1rem;
}

.scard h3 { font-size: 1.25rem; }

.scard p { font-size: 0.92rem; font-weight: 380; color: var(--ink-soft); }

.scard__more {
  position: absolute;
  top: 1.9rem;
  right: 1.9rem;
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: transform 0.6s var(--ease-lux), background-color 0.6s var(--ease-lux), color 0.6s var(--ease-lux);
}

.scard:hover .scard__more {
  transform: translate(2px, -2px);
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

/* ═══════════ Contact ═══════════ */

.contact { padding: 0 0 clamp(4rem, 8vw, 7rem); }

.contact__card {
  padding: 0.6rem;
  border-radius: 2.4rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(31, 44, 38, 0.07);
  box-shadow: var(--shadow-float);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2.25rem, 5vw, 4rem);
  border-radius: calc(2.4rem - 0.6rem);
  background:
    radial-gradient(50rem 30rem at 120% -30%, rgba(156, 199, 154, 0.18), transparent 60%),
    var(--forest-deep);
  color: var(--cream);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.contact__inner h2 { margin-bottom: 1rem; }
.contact__inner h2 em { color: var(--sage); }

.contact__lead {
  max-width: 28rem;
  font-weight: 350;
  color: rgba(250, 246, 239, 0.7);
  margin-bottom: 2rem;
}

.contact__phone {
  display: inline-block;
  font-family: var(--sans);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 2.25rem;
  transition: color 0.5s var(--ease-lux);
}

.contact__phone:hover { color: var(--beige); }

.contact__details {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.contact__block {
  padding: 1.6rem 1.75rem;
  border-radius: 1.4rem;
  background: rgba(250, 246, 239, 0.07);
  border: 1px solid rgba(250, 246, 239, 0.12);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
}

.contact__block strong {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
}

.contact__block p {
  font-size: 0.95rem;
  font-weight: 350;
  line-height: 1.7;
  color: rgba(250, 246, 239, 0.85);
}

/* Members */
.members {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: 0 clamp(0.5rem, 2vw, 2rem);
}

.members p {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.members__logos {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.members__logos img {
  height: 4.75rem;
  width: auto;
  padding: 0.55rem 1rem;
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid var(--line-soft);
  filter: grayscale(1) contrast(0.9);
  opacity: 0.75;
  transition: filter 0.6s var(--ease-lux), opacity 0.6s var(--ease-lux);
}

.members__logos img:hover { filter: grayscale(0); opacity: 1; }

/* ═══════════ Footer ═══════════ */

.footer {
  border-top: 1px solid var(--line-soft);
  padding: 2.5rem 0 3rem;
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer__brand strong { font-family: var(--sans); font-weight: 600; }

.footer__brand p { font-size: 0.8rem; color: var(--ink-soft); }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.footer__links a { transition: color 0.5s var(--ease-lux); }
.footer__links a:hover { color: var(--clay); }

/* ═══════════ Scroll reveal ═══════════ */

.reveal {
  opacity: 0;
  transform: translateY(3.5rem);
  filter: blur(6px);
  transition:
    opacity 0.9s var(--ease-lux),
    transform 0.9s var(--ease-lux),
    filter 0.9s var(--ease-lux);
  transition-delay: var(--d, 0s);
}

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

/* No-JS fallback: never hide content */
html.no-js .reveal { opacity: 1; transform: none; filter: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════ Responsive ═══════════ */

@media (max-width: 1040px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }

  .therapies__grid { grid-template-columns: repeat(2, 1fr); }
  .tcard--wide { grid-column: span 2; }
  .tcard--feature { grid-column: span 2; flex-direction: column; align-items: flex-start; }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .frame--hero { transform: none; }
  .frame--hero .frame__inner { aspect-ratio: 16 / 10; }
  .hero__tour { position: static; margin-top: 1rem; }
  .hero { padding-top: 7.5rem; }
  .contact__inner { grid-template-columns: 1fr; }
  .members { justify-content: center; text-align: center; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 2rem, 76rem); }
  .therapies { margin-inline: 0.5rem; border-radius: 2rem; }
  .therapies__grid { grid-template-columns: 1fr; }
  .tcard--wide { grid-column: span 1; }
  .tcard--feature { grid-column: span 1; padding: 2rem 1.6rem; }
  .tcard--wide .tcard__media { aspect-ratio: 16 / 9; }
  .values__grid { grid-template-columns: 1fr; }
  .shop__grid { grid-template-columns: 1fr; }
  .hero__facts-sep { display: none; }
  .frame--tour .frame__inner { aspect-ratio: 3 / 4; }
  .hero__facts { gap: 1.25rem 2rem; }
  .nav__brand-name em { display: none; }
  .footer__grid, .footer__links { justify-content: center; text-align: center; }
}
