﻿@font-face {
  font-family: "Manrope";
  src: url("../assets/site/fonts/manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/site/fonts/manrope-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/site/fonts/manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/site/fonts/manrope-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/site/fonts/manrope-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f4efe9;
  --bg-soft: #fbf8f5;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(36, 48, 58, 0.14);
  --line-strong: rgba(36, 48, 58, 0.2);
  --ink: #1f2a33;
  --ink-soft: #55616d;
  --brand: #5d507c;
  --brand-deep: #41335f;
  --accent: #94af6a;
  --accent-deep: #617a3f;
  --warm: #ddcfc0;
  --shadow-soft: 0 30px 80px rgba(36, 48, 58, 0.11);
  --shadow-card: 0 16px 40px rgba(36, 48, 58, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --content: 760px;
  --header-height: 92px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(148, 175, 106, 0.24), transparent 36%),
    radial-gradient(circle at top right, rgba(93, 80, 124, 0.18), transparent 28%),
    linear-gradient(180deg, #f7f3ee 0%, #f4efe9 33%, #fbf7f3 100%);
  min-width: 320px;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--brand);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  z-index: 120;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    transform var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 245, 0.84);
  backdrop-filter: blur(20px);
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(36, 48, 58, 0.06);
}

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

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.site-brand-mark {
  width: 58px;
  height: 46px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(65, 51, 95, 0.14);
}

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

.site-brand-copy {
  display: grid;
  gap: 3px;
}

.site-brand-name {
  font-weight: 800;
  font-size: 0.97rem;
  letter-spacing: -0.02em;
}

.site-brand-subtitle {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

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

.site-nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.site-nav-link:hover,
.site-nav-link[aria-current="page"] {
  background: rgba(93, 80, 124, 0.09);
  color: var(--brand-deep);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  background: rgba(93, 80, 124, 0.09);
  border-radius: 16px;
  color: var(--brand-deep);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
  content: "";
}

.nav-toggle-bar {
  position: relative;
}

.nav-toggle-bar::before {
  position: absolute;
  top: -6px;
}

.nav-toggle-bar::after {
  position: absolute;
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after {
  transform: translateY(-6px) rotate(-45deg);
}

.site-main {
  display: block;
}

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(132px, 16vw, 184px) 0 70px;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 24px min(4vw, 32px) auto auto;
  width: clamp(220px, 26vw, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(148, 175, 106, 0.24), transparent 68%);
  z-index: -1;
}

.hero-grid {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--brand-deep);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(65, 51, 95, 0.35);
}

.hero-title,
.page-title,
.cta-title {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.hero-title .accent,
.page-title .accent,
.cta-title .accent {
  color: var(--brand);
}

.hero-lead,
.page-lead,
.section-lead,
.cta-copy {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.72;
  max-width: 58ch;
}

.hero-actions,
.cta-actions,
.contact-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 16px 34px rgba(93, 80, 124, 0.18);
}

.button-primary:hover {
  background: var(--brand-deep);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border: 1px solid rgba(36, 48, 58, 0.12);
  box-shadow: 0 10px 26px rgba(36, 48, 58, 0.06);
}

.button-secondary:hover {
  background: #fff;
}

.button-tertiary {
  color: var(--brand-deep);
  background: rgba(93, 80, 124, 0.09);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-meta-label {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

.hero-meta-value {
  margin: 8px 0 0;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}

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

.hero-contact-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(120, 152, 87, 0.18);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(36, 48, 41, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-contact-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(36, 48, 41, 0.12);
}

.hero-contact-button.is-whatsapp {
  color: #f8fff4;
  background: linear-gradient(135deg, #5e7f43, #486831);
  border-color: transparent;
}

.hero-contact-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
}

.hero-contact-icon svg {
  width: 100%;
  height: 100%;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: auto -4% -8% 24%;
  border-radius: 50%;
  height: 58%;
  background: radial-gradient(circle, rgba(93, 80, 124, 0.18), transparent 70%);
  z-index: -1;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: clamp(26px, 4vw, 42px);
  background: #ddd;
  box-shadow: var(--shadow-soft);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 42, 51, 0.04), rgba(31, 42, 51, 0.24)),
    linear-gradient(135deg, rgba(93, 80, 124, 0.24), transparent 45%);
}

.hero-photo img {
  width: 100%;
  height: min(74vh, 760px);
  object-fit: cover;
  object-position: center;
}

.hero-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  max-width: min(88%, 360px);
  background: rgba(251, 248, 245, 0.86);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(36, 48, 58, 0.12);
}

.hero-badge img {
  width: 68px;
  height: 52px;
  object-fit: cover;
  border-radius: 14px;
  flex: 0 0 auto;
}

.hero-badge strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.hero-badge span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.section {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: clamp(46px, 6.4vw, 86px) 0;
}

.site-main > .section:not(.trust-strip):not(.career-highlight) {
  position: relative;
}

.site-main > .section:not(.trust-strip):not(.career-highlight)::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: clamp(18px, 2.6vw, 28px);
  background: linear-gradient(90deg, rgba(120, 152, 87, 0.26), rgba(117, 98, 143, 0.14), transparent);
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
  max-width: 700px;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.section-lead {
  margin-top: 0;
}

.trust-strip {
  position: relative;
  margin-top: -24px;
  padding-bottom: 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 28px 0 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  padding: 6px 0 18px;
}

.trust-item span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.trust-item strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.12rem, 2vw, 1.44rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.services-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 36px;
}

.service-item,
.value-item {
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.service-item small,
.value-item small {
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-item h3,
.value-item h3 {
  margin: 14px 0 0;
  font-size: clamp(1.3rem, 1.7vw, 1.7rem);
  letter-spacing: -0.03em;
}

.service-item p,
.value-item p,
.step-copy,
.contact-copy,
.prose p,
.visit-note p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.visit-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.visit-step {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.step-figure {
  width: 100%;
  aspect-ratio: 1.2;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(148, 175, 106, 0.28), transparent 38%),
    linear-gradient(135deg, rgba(93, 80, 124, 0.1), rgba(255, 255, 255, 0.92));
}

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

.step-figure img.is-card-figure {
  object-fit: contain;
  padding: 16px;
  filter: saturate(1.06) contrast(1.06);
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 20px;
  border-radius: 50%;
  background: rgba(93, 80, 124, 0.09);
  color: var(--brand-deep);
  font-weight: 800;
}

.visit-step h3 {
  margin: 18px 0 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.gallery-stack {
  display: grid;
  gap: 24px;
}

.photo-panel {
  position: relative;
  overflow: hidden;
  border-radius: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-card);
  min-height: 320px;
}

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

.photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 42, 51, 0), rgba(31, 42, 51, 0.1));
}

.practice-layout,
.contact-layout,
.profile-layout,
.cta-panel,
.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
}

.split-panel,
.content-panel,
.hours-panel,
.contact-panel,
.legal-shell,
.cta-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 30px;
  box-shadow: var(--shadow-card);
}

.split-panel,
.content-panel,
.hours-panel,
.contact-panel {
  padding: clamp(24px, 3vw, 36px);
}

.practice-copy,
.contact-copy {
  max-width: 58ch;
}

.key-lines {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.key-line {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.key-line span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.key-line strong {
  display: block;
  margin-top: 10px;
  font-size: 1.08rem;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.mini-photo {
  overflow: hidden;
  border-radius: 26px;
  min-height: 360px;
  box-shadow: var(--shadow-card);
}

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

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 28px;
}

.address-card,
.hours-card,
.visit-note {
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-card);
}

.address-card h3,
.hours-card h3,
.visit-note h3 {
  margin: 0;
  font-size: 1.26rem;
  letter-spacing: -0.03em;
}

.address-lines,
.hours-lines {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.address-lines div,
.hours-lines div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.address-lines > div > span,
.hours-lines > div > span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.address-lines strong,
.hours-lines strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.6;
}

.cta-section {
  padding-top: 30px;
}

.cta-panel {
  padding: clamp(28px, 4vw, 42px);
  align-items: center;
}

.cta-surface {
  position: relative;
  overflow: hidden;
}

.cta-surface::before {
  content: "";
  position: absolute;
  inset: auto 8% -40% auto;
  width: 340px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(148, 175, 106, 0.22), transparent 70%);
}

.page-hero {
  padding-top: clamp(132px, 15vw, 176px);
  padding-bottom: 44px;
}

.page-hero .hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.8fr);
  align-items: end;
}

.page-accent-panel {
  min-height: 420px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background:
    radial-gradient(circle at 20% 24%, rgba(148, 175, 106, 0.3), transparent 26%),
    linear-gradient(135deg, rgba(93, 80, 124, 0.88), rgba(65, 51, 95, 0.96));
}

.page-accent-panel.image-panel {
  background: none;
}

.page-accent-panel.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-accent-panel.logo-panel {
  display: grid;
  place-items: center;
  padding: 28px;
}

.page-accent-panel.logo-panel img {
  width: min(100%, 540px);
  border-radius: 26px;
  box-shadow: 0 24px 46px rgba(31, 42, 51, 0.18);
}

.profile-name {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.profile-role {
  margin: 14px 0 0;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.84rem;
  font-weight: 700;
}

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

.contact-row {
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}

.contact-row span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-row a,
.contact-row strong {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.contact-row small {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

.prose-shell {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: 24px 0 90px;
}

.legal-shell {
  padding: clamp(28px, 4vw, 42px);
}

.prose h2,
.prose h3,
.prose h4 {
  margin: 36px 0 0;
  letter-spacing: -0.03em;
}

.prose h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.prose h3 {
  font-size: 1.35rem;
}

.prose h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
}

.prose h2:first-child,
.prose h3:first-child,
.prose h4:first-child,
.prose p:first-child,
.prose ul:first-child {
  margin-top: 0;
}

.prose ul {
  margin: 16px 0 0;
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.72;
}

.prose li + li {
  margin-top: 10px;
}

.prose a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-dock {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  gap: 12px;
}

.contact-dock-link {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 18px 34px rgba(36, 48, 58, 0.18);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
}

.contact-dock-link:hover {
  transform: translateY(-3px);
  filter: saturate(1.03);
}

.contact-dock-link svg {
  width: 22px;
  height: 22px;
}

.contact-dock-link.is-whatsapp {
  background: linear-gradient(135deg, #79a252, #5c7541);
}

.contact-dock-link.is-mail {
  background: linear-gradient(135deg, #5d507c, #41335f);
}

.contact-dock-link.is-phone {
  background: linear-gradient(135deg, #27333d, #1f2a33);
}

.site-footer {
  padding: 40px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-brand-top {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.footer-brand-top img {
  width: 86px;
  height: 66px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(65, 51, 95, 0.14);
}

.footer-brand p,
.footer-meta p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 8px;
}

.footer-links a {
  color: var(--brand-deep);
  font-weight: 700;
}

.footer-meta {
  display: grid;
  gap: 12px;
  justify-items: end;
  text-align: right;
}

.footer-copy {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--delay, 0ms);
}

.js-enabled [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0ms !important;
    scroll-behavior: auto !important;
  }

  .js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1023px) {
  :root {
    --header-height: 84px;
  }

  .hero-grid,
  .practice-layout,
  .contact-layout,
  .profile-layout,
  .cta-panel,
  .intro-layout,
  .location-grid,
  .page-hero .hero-grid,
  .gallery-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .visit-layout,
  .services-grid,
  .values-grid,
  .hero-meta,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .hero-photo img {
    height: min(58vh, 620px);
  }

  .page-accent-panel {
    min-height: 320px;
  }
}

@media (max-width: 799px) {
  .header-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: relative;
  }

  .site-nav-list {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: min(92vw, 320px);
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(251, 248, 245, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
  }

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

  .site-nav-link {
    justify-content: flex-start;
    min-height: 50px;
  }

  .hero {
    padding-top: 116px;
  }

  .hero-grid {
    width: min(calc(100% - 28px), var(--container));
  }

  .section,
  .footer-inner,
  .prose-shell {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero-title,
  .page-title,
  .cta-title {
    line-height: 0.98;
  }

  .visit-step,
  .split-panel,
  .content-panel,
  .hours-panel,
  .contact-panel,
  .legal-shell,
  .cta-panel,
  .address-card,
  .hours-card,
  .visit-note {
    border-radius: 24px;
  }
}

@media (max-width: 639px) {
  .hero-title,
  .page-title,
  .cta-title {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .section-title {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }

  .visit-layout,
  .services-grid,
  .values-grid,
  .hero-meta,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .hero-badge img {
    width: 58px;
    height: 46px;
  }

  .hero-actions,
  .cta-actions,
  .contact-actions,
  .location-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-dock {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .contact-dock-link {
    width: 54px;
    height: 54px;
  }

  .footer-brand-top {
    align-items: flex-start;
  }
}
.hero-chip-group,
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-chip,
.badge-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(93, 80, 124, 0.08);
  border: 1px solid rgba(93, 80, 124, 0.12);
  color: var(--brand-deep);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-rating-badge {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 2px 10px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(117, 98, 143, 0.2);
  box-shadow: 0 10px 22px rgba(36, 48, 41, 0.09);
  width: fit-content;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-actions .hero-rating-badge {
  min-height: 54px;
  margin-top: 0;
  padding: 8px 14px;
  align-self: stretch;
}

.hero-actions .hero-rating-badge strong {
  font-size: 1.58rem;
}

.hero-actions .hero-rating-badge small {
  font-size: 0.78rem;
}

.hero-rating-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(36, 48, 41, 0.13);
}

.hero-rating-badge strong {
  font-size: 2rem;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--accent-deep);
}

.hero-rating-badge span {
  color: #d9a441;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.hero-rating-badge small {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.84rem;
}

.notice-panel {
  margin-top: 30px;
  padding: 24px 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(93, 80, 124, 0.1), rgba(148, 175, 106, 0.14));
  border: 1px solid rgba(93, 80, 124, 0.12);
}

.notice-panel strong {
  display: block;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.notice-panel p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.accent-panel-copy {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 38px);
  color: #fff;
}

.accent-panel-kicker {
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
}

.accent-panel-title {
  margin: 14px 0 0;
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.accent-panel-copy p {
  margin: 14px 0 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.accent-panel-stack {
  display: grid;
  gap: 14px;
}

.accent-panel-chip {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
}

.accent-panel-chip strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.accent-panel-chip span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.jobs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
}

.split-list,
.timeline {
  display: grid;
  gap: 18px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.split-list li,
.timeline-item {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.split-list strong,
.timeline-item strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.split-list span,
.timeline-item span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  line-height: 1.72;
}

.map-panel {
  overflow: hidden;
  min-height: 420px;
  border-radius: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-card);
  background: linear-gradient(135deg, rgba(93, 80, 124, 0.1), rgba(148, 175, 106, 0.14));
}

.map-panel iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  height: 100%;
  border: 0;
  filter: grayscale(0.18) saturate(0.88) contrast(1.03);
}

.contact-note {
  margin-top: 28px;
  color: var(--ink-soft);
  line-height: 1.72;
}

.contact-note a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-meta {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

@media (max-width: 1120px) {
  .jobs-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 799px) {
  .hero-chip-group,
  .badge-list {
    gap: 10px;
  }

  .hero-chip,
  .badge-pill {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    text-align: center;
  }

  .accent-panel-copy {
    padding: 24px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 340px;
  }
}
:root {
  --bg: #f3f0e7;
  --bg-soft: #faf8f2;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(42, 56, 39, 0.14);
  --line-strong: rgba(42, 56, 39, 0.22);
  --ink: #243029;
  --ink-soft: #59655f;
  --brand: #789857;
  --brand-deep: #4c6836;
  --accent: #75628f;
  --accent-deep: #52436a;
  --warm: #ddd6c8;
}

body {
  background:
    radial-gradient(circle at top left, rgba(120, 152, 87, 0.24), transparent 34%),
    radial-gradient(circle at top right, rgba(117, 98, 143, 0.12), transparent 28%),
    linear-gradient(180deg, #f7f5ef 0%, #f3f0e7 34%, #faf8f2 100%);
}

.site-brand-mark {
  box-shadow: 0 12px 24px rgba(76, 104, 54, 0.14);
}

.site-nav-link:hover,
.site-nav-link[aria-current="page"] {
  background: rgba(120, 152, 87, 0.1);
  color: var(--brand-deep);
}

.button-primary {
  box-shadow: 0 16px 34px rgba(76, 104, 54, 0.2);
}

.button-secondary {
  color: var(--ink);
}

.hero-photo::after {
  background:
    linear-gradient(180deg, rgba(31, 42, 51, 0.04), rgba(31, 42, 51, 0.2)),
    linear-gradient(135deg, rgba(120, 152, 87, 0.18), transparent 45%);
}

.hero-chip,
.badge-pill {
  background: rgba(120, 152, 87, 0.1);
  border-color: rgba(120, 152, 87, 0.14);
  color: var(--brand-deep);
}

.notice-panel {
  background: linear-gradient(135deg, rgba(120, 152, 87, 0.12), rgba(117, 98, 143, 0.08));
  border-color: rgba(120, 152, 87, 0.16);
}

.page-accent-panel {
  background:
    radial-gradient(circle at 20% 24%, rgba(184, 210, 156, 0.36), transparent 26%),
    linear-gradient(135deg, rgba(120, 152, 87, 0.92), rgba(76, 104, 54, 0.96));
}

.contact-dock-link.is-whatsapp {
  background: linear-gradient(135deg, #7fa65b, #58723d);
}

.contact-dock-link.is-mail {
  background: linear-gradient(135deg, #75628f, #52436a);
}

.footer-links a,
.prose a,
.contact-note a {
  color: var(--brand-deep);
}

.service-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

#leistungen .split-panel {
  padding: clamp(22px, 3.2vw, 38px);
}

#leistungen .service-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  gap: 10px;
}

#leistungen .service-chip {
  justify-content: center;
  min-height: 38px;
  text-align: center;
}

#leistungen .therapy-selected-list {
  max-width: 860px;
}

.service-note {
  margin-top: 26px;
  padding: 22px 24px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(120, 152, 87, 0.12), rgba(255, 255, 255, 0.64));
  border: 1px solid rgba(120, 152, 87, 0.14);
}

.service-note strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.service-note p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.74;
}

.service-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  min-height: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-card);
}

.service-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card-link:hover,
.service-card-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(117, 98, 143, 0.28);
  box-shadow: 0 18px 34px rgba(36, 48, 41, 0.12);
  outline: none;
}

.service-card small {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 8px 0 0;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.brief-section {
  display: grid;
  gap: 26px;
}

.brief-card {
  position: relative;
  padding: clamp(26px, 4vw, 38px);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 239, 0.94));
  border: 1px solid rgba(42, 56, 39, 0.1);
  box-shadow: 0 28px 60px rgba(36, 48, 41, 0.12);
  overflow: hidden;
}

.brief-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--brand), rgba(117, 98, 143, 0.34));
}

.brief-card::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  border: 1px dashed rgba(117, 98, 143, 0.3);
  background: rgba(117, 98, 143, 0.06);
}

.brief-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.brief-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: rgba(76, 104, 54, 0.4);
}

.brief-title {
  margin: 18px 0 0;
  font-size: clamp(2.05rem, 4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.brief-subtitle {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.74;
  max-width: 54ch;
}

.brief-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.brief-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(120, 152, 87, 0.1);
  color: var(--brand-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 34px;
  margin-top: 28px;
}

.brief-column h3 {
  margin: 0;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent-deep);
}

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

.brief-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.72;
}

.brief-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.brief-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.brief-footer p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.brief-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 118px;
  padding: 18px;
  border-radius: 24px;
  border: 2px solid rgba(117, 98, 143, 0.28);
  color: var(--accent-deep);
  text-align: center;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-6deg);
  background: rgba(117, 98, 143, 0.05);
}

.brief-sidecards {
  display: grid;
  gap: 18px;
}

.sidecard {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-card);
}

.sidecard h3 {
  margin: 0;
  font-size: 1.24rem;
  letter-spacing: -0.03em;
}

.sidecard p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.74;
}

.sidecard-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.sidecard-item {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.sidecard-item strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.sidecard-item span {
  display: block;
  margin-top: 7px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.subtle-note {
  margin-top: 20px;
  color: var(--ink-soft);
  line-height: 1.72;
}

@media (max-width: 1120px) {
  .service-showcase,
  .brief-grid,
  .brief-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 799px) {
  #leistungen .service-showcase {
    grid-template-columns: 1fr;
  }

  #leistungen .service-stack {
    display: none;
  }

  #leistungen .split-panel {
    padding: 18px;
    border-radius: 20px;
  }

  #leistungen .service-chip-grid {
    gap: 7px;
  }

  #leistungen .service-chip {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 0.8rem;
  }

  .cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 86px;
    width: auto;
    grid-template-columns: 1fr;
    padding: 13px;
  }

  .cookie-notice-actions {
    justify-content: space-between;
  }

  .brief-card::after {
    width: 58px;
    height: 58px;
    top: 20px;
    right: 20px;
  }

  .brief-stamp {
    min-width: 100px;
    min-height: 100px;
    font-size: 0.82rem;
  }
}

.career-highlight {
  padding-top: 20px;
}

.career-highlight-inner {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(120, 152, 87, 0.14), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(120, 152, 87, 0.16);
  box-shadow: var(--shadow-card);
}

.service-list-title {
  margin: 0;
  font-size: clamp(1.42rem, 2.2vw, 1.92rem);
  letter-spacing: -0.04em;
}

.service-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(120, 152, 87, 0.12);
  border: 1px solid rgba(120, 152, 87, 0.22);
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 0.82rem;
}

.legal-hero-simple {
  padding-bottom: 18px;
}

.legal-hero-simple .section {
  padding-top: 0;
  padding-bottom: 0;
}

.jobs-swipe-section {
  padding-top: 24px;
}

.jobs-swipe-topbar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  width: min(100%, 650px);
  margin: 0 auto 22px;
}

.jobs-apply-pill,
.jobs-whatsapp-pill {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 56px;
  width: 100%;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  text-align: left;
}

.jobs-apply-pill {
  background: #3f3486;
  box-shadow: 0 20px 34px rgba(63, 52, 134, 0.24);
}

.jobs-whatsapp-pill {
  background: #477f40;
  box-shadow: 0 20px 34px rgba(71, 127, 64, 0.24);
}

.jobs-apply-pill small,
.jobs-whatsapp-pill small {
  display: block;
  margin-bottom: 2px;
  font-size: 0.76rem;
  line-height: 1;
  opacity: 0.86;
}

.job-pill-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.job-pill-icon svg {
  width: 19px;
  height: 19px;
}

.job-pill-copy {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.job-pill-copy > span {
  font-size: 0.96rem;
  line-height: 1.12;
}

.jobs-swipe-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.swipe-control {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-deep);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.swipe-control.is-prev {
  color: #c54d4d;
}

.swipe-control.is-next {
  color: #4f8f43;
}

.swipe-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.swipe-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(117, 98, 143, 0.25);
  cursor: pointer;
}

.swipe-dot.is-active {
  background: #3f3486;
}

.jobs-swipe-deck {
  margin-top: 22px;
}

.job-card {
  display: block;
  padding: clamp(20px, 3.2vw, 34px);
  border-radius: 34px;
  background: linear-gradient(180deg, #f5f2ec, #f9f8f4);
  border: 1px solid rgba(42, 56, 39, 0.12);
  box-shadow: 0 24px 52px rgba(35, 49, 38, 0.16);
  transition: transform 260ms ease, box-shadow 260ms ease;
  user-select: none;
  touch-action: pan-y;
}

.job-card.is-active {
  display: block;
}

.job-card-head h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #58782e;
}

.job-card-head p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.job-kicker {
  margin: 0;
  color: #7ea948;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.job-tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 700;
  color: #3f3486;
  background: rgba(117, 98, 143, 0.12);
  border: 1px solid rgba(117, 98, 143, 0.2);
}

.job-highlight-bar {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(120, 152, 87, 0.12);
  border: 1px solid rgba(120, 152, 87, 0.2);
  color: #355029;
  font-weight: 700;
}

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

.job-panel {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(42, 56, 39, 0.12);
}

.job-panel h3 {
  margin: 0;
  color: #58782e;
  font-size: 1.32rem;
  letter-spacing: -0.02em;
}

.job-panel ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.job-panel li {
  padding-left: 22px;
  position: relative;
  line-height: 1.58;
}

.job-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #4f8f43;
  font-weight: 800;
}

.job-skill-footer {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(117, 98, 143, 0.22);
  background: rgba(117, 98, 143, 0.07);
}

.job-skill-footer strong {
  display: block;
  color: #58782e;
  font-size: 1.24rem;
}

.job-skill-footer p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  line-height: 1.64;
}

.job-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.job-skill-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e9eaf3;
  color: #3f3486;
  font-weight: 700;
  font-size: 0.84rem;
}

@media (max-width: 1023px) {
  .career-highlight-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 799px) {
  .jobs-apply-pill,
  .jobs-whatsapp-pill {
    width: 100%;
    border-radius: 22px;
  }

  .swipe-control {
    width: 48px;
    height: 48px;
  }

  .jobs-swipe-controls {
    gap: 12px;
  }
}

.mail-fallback {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  width: min(420px, calc(100vw - 36px));
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(42, 56, 39, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 40px rgba(35, 49, 38, 0.2);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.mail-fallback.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mail-fallback-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mail-fallback-head strong {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.mail-fallback-close {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(117, 98, 143, 0.12);
  color: #3f3486;
  font-size: 1.25rem;
  line-height: 1;
}

.mail-fallback p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.5;
  font-size: 0.95rem;
}

.mail-fallback-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.mail-fallback-actions a,
.mail-fallback-actions button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid rgba(42, 56, 39, 0.16);
  background: #fff;
  color: #243029;
  font-weight: 700;
  cursor: pointer;
  padding: 0 10px;
  text-align: center;
}

.mail-fallback-actions a svg,
.mail-fallback-actions button svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  opacity: 0.9;
}

.mail-fallback-actions a span,
.mail-fallback-actions button span {
  text-align: left;
}

.mail-fallback-actions [data-mail-fallback-gmail] svg {
  color: #3867d6;
}

.mail-fallback-actions [data-mail-fallback-outlook] svg {
  color: #0d66d0;
}

.mail-fallback-actions [data-mail-fallback-yahoo] svg {
  color: #6a3da2;
}

.mail-fallback-actions a:hover,
.mail-fallback-actions button:hover {
  border-color: rgba(76, 104, 54, 0.34);
  background: rgba(120, 152, 87, 0.08);
}

.email-purpose[hidden] {
  display: none;
}

.email-purpose {
  position: fixed;
  inset: 0;
  z-index: 138;
  display: grid;
  place-items: center;
  padding: 20px;
}

.email-purpose-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 51, 0.34);
  backdrop-filter: blur(10px);
}

.email-purpose-panel {
  position: relative;
  width: min(100%, 680px);
  max-height: min(760px, calc(100vh - 34px));
  overflow: auto;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 245, 0.96)),
    radial-gradient(circle at 100% 0, rgba(102, 66, 96, 0.12), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 32px 90px rgba(31, 42, 51, 0.28);
}

.email-purpose-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(102, 66, 96, 0.08);
  color: var(--brand-deep);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.email-purpose-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(102, 66, 96, 0.1);
  color: var(--brand-deep);
}

.email-purpose-icon svg {
  width: 26px;
  height: 26px;
}

.email-purpose h2 {
  margin: 18px 0 0;
  color: var(--brand-deep);
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.email-purpose p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

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

.email-purpose-option {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(36, 48, 58, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.email-purpose-option:hover {
  transform: translateY(-1px);
  border-color: rgba(102, 66, 96, 0.24);
  background: #fff;
}

.email-purpose-option > span {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(127, 155, 94, 0.11);
  color: var(--accent-deep);
}

.email-purpose-option svg {
  width: 20px;
  height: 20px;
}

.email-purpose-option strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.email-purpose-option small {
  color: var(--ink-soft);
  line-height: 1.45;
}

.career-highlight-swipe {
  display: grid;
  gap: 14px;
}

.career-preview-head .section-title {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.career-preview-cards {
  display: grid;
  gap: 10px;
}

.career-mini-card {
  display: block;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(120, 152, 87, 0.2);
}

.career-mini-card.is-active {
  display: block;
}

.career-mini-card strong {
  display: block;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.career-mini-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.career-preview-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.service-chip {
  border: 0;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-chip:hover {
  transform: translateY(-1px);
}

.service-chip.is-selected {
  background: #4c6836;
  color: #fff;
  border: 1px solid #4c6836;
}

.therapy-selected-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.therapy-detail-card {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(120, 152, 87, 0.18);
}

.therapy-detail-card h4 {
  margin: 0;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
  color: #355029;
}

.therapy-detail-card p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  line-height: 1.5;
  font-size: 0.95rem;
}

.cookie-notice {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 125;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: min(430px, calc(100vw - 36px));
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(120, 152, 87, 0.2);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(36, 48, 41, 0.18);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-notice strong {
  display: block;
  color: var(--accent-deep);
  font-size: 1rem;
}

.cookie-notice p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.34;
}

.cookie-notice p + p {
  margin-top: 4px;
}

.cookie-notice-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.cookie-notice-actions a,
.cookie-notice-actions button {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  font-weight: 800;
}

.cookie-notice-actions a {
  display: inline-flex;
  align-items: center;
  color: var(--brand-deep);
  background: rgba(120, 152, 87, 0.1);
}

.cookie-notice-actions button {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  cursor: pointer;
}

.location-grid.is-balanced {
  align-items: stretch;
}

.location-grid.is-balanced > div:not(.address-card) {
  display: flex;
}

.location-grid.is-balanced .address-card,
.location-grid.is-balanced .hours-card {
  width: 100%;
}

.footer-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-inline-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.contact-dock {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.contact-dock-trigger {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #355029, #243029);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(36, 48, 58, 0.18);
}

.contact-dock-trigger svg {
  width: 22px;
  height: 22px;
  transition: transform 180ms ease;
}

.contact-dock-menu {
  display: grid;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-dock.is-open .contact-dock-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-dock.is-open .contact-dock-trigger svg {
  transform: rotate(180deg);
}

@media (max-width: 799px) {
  .contact-dock-trigger {
    width: 54px;
    height: 54px;
  }
}

/* Interaction refresh */
.section {
  padding: clamp(42px, 6.2vw, 78px) 0;
}

.career-highlight {
  padding-top: 10px;
}

.career-highlight-inner {
  display: grid;
  gap: 16px;
}

.career-preview-viewport {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(120, 152, 87, 0.18);
  background: rgba(255, 255, 255, 0.5);
  touch-action: pan-y;
  user-select: none;
  padding-inline: 10px;
}

.career-preview-cards {
  display: flex;
  gap: 12px;
  will-change: transform;
}

.career-preview-cards.is-dragging {
  cursor: grabbing;
}

.career-mini-card {
  display: block;
  flex: 0 0 calc(100% - 26px);
  min-width: calc(100% - 26px);
  min-height: 134px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(245, 250, 240, 0.86));
  border: 1px solid rgba(120, 152, 87, 0.22);
  transition: transform 260ms ease, opacity 260ms ease;
}

.career-mini-card.is-active {
  display: block;
}

.career-mini-card:not(.is-active) {
  opacity: 0.72;
  transform: scale(0.97);
}

.career-mini-card strong {
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.career-preview-controls {
  margin-top: 4px;
}

.jobs-swipe-section {
  padding-top: 12px;
}

.jobs-swipe-viewport {
  margin-top: 22px;
  overflow: hidden;
  border-radius: 34px;
  touch-action: pan-y;
  user-select: none;
  padding-inline: 14px;
}

.jobs-swipe-deck {
  display: flex;
  gap: 16px;
  margin-top: 0;
  will-change: transform;
}

.jobs-swipe-deck.is-dragging {
  cursor: grabbing;
}

.job-card {
  display: block;
  flex: 0 0 calc(100% - 28px);
  min-width: calc(100% - 28px);
  margin: 0;
  transition: transform 280ms ease, opacity 280ms ease;
}

.job-card.is-active {
  display: block;
}

.job-card:not(.is-active) {
  opacity: 0.72;
  transform: scale(0.985);
}

.service-chip-grid {
  row-gap: 12px;
}

.service-chip {
  border: 1px solid rgba(120, 152, 87, 0.22);
  background: rgba(120, 152, 87, 0.1);
}

.service-chip.is-selected {
  background: linear-gradient(135deg, #4c6836, #5f7f42);
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(76, 104, 54, 0.24);
}

.therapy-selected-list {
  margin-top: 16px;
}

.therapy-detail-card {
  padding: 20px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 240, 0.8));
  border: 1px solid rgba(120, 152, 87, 0.18);
}

.therapy-detail-card h4 {
  margin-top: 0;
}

.location-grid.is-balanced {
  margin-bottom: 20px;
}

.home-map-wrap {
  margin-top: 6px;
}

.home-map-wrap .contact-note {
  margin-top: 8px;
}

.map-panel-compact,
.map-panel-compact iframe {
  min-height: 320px;
}

.footer-inline-link span {
  white-space: nowrap;
}

.button-route {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(42, 56, 39, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: #30402d;
  box-shadow: 0 8px 20px rgba(36, 48, 41, 0.08);
}

.button-route:hover {
  background: #fff;
  box-shadow: 0 12px 24px rgba(36, 48, 41, 0.1);
}

.button-route .route-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.button-route .route-icon svg {
  width: 100%;
  height: 100%;
}

.contact-dock {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
}

.contact-dock-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-dock.is-open .contact-dock-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

@media (max-width: 1023px) {
  .career-mini-card {
    min-height: 150px;
  }
}

@media (max-width: 799px) {
  .section {
    padding: 36px 0 62px;
  }

  .jobs-swipe-viewport {
    border-radius: 26px;
  }

  .job-card {
    border-radius: 26px;
  }

  .career-mini-card {
    min-height: 156px;
    padding: 18px;
  }

  .map-panel-compact,
  .map-panel-compact iframe {
    min-height: 280px;
  }
}

/* Final UI polish for swipe clarity and compact route links */
.swipe-cue {
  margin: -2px 0 2px;
  text-align: center;
  color: #546152;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  animation: swipeCuePulse 1.8s ease-in-out infinite;
}

@keyframes swipeCuePulse {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.82;
  }
  50% {
    transform: translateX(2px);
    opacity: 1;
  }
}

.career-preview-controls.is-top {
  margin-top: 2px;
  margin-bottom: -2px;
}

.career-preview-viewport,
.jobs-swipe-viewport {
  position: relative;
}

.career-preview-viewport::before,
.career-preview-viewport::after,
.jobs-swipe-viewport::before,
.jobs-swipe-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  pointer-events: none;
  z-index: 3;
}

.career-preview-viewport::before,
.jobs-swipe-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(243, 240, 231, 0.96), rgba(243, 240, 231, 0));
}

.career-preview-viewport::after,
.jobs-swipe-viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(243, 240, 231, 0.96), rgba(243, 240, 231, 0));
}

.career-preview-viewport {
  padding: 10px 24px 14px;
  border-radius: 28px;
}

.career-preview-cards {
  gap: 18px;
}

.career-mini-card {
  flex: 0 0 calc(100% - 88px);
  min-width: calc(100% - 88px);
  min-height: 240px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(120, 152, 87, 0.24);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 236, 0.92));
  box-shadow: 0 20px 38px rgba(36, 48, 41, 0.12);
}

.career-mini-card:not(.is-active) {
  opacity: 0.62;
  transform: scale(0.965) translateY(10px);
}

.career-mini-kicker {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #55634f;
}

.career-mini-card h3 {
  margin: 8px 0 0;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #4b6b32;
}

.career-mini-sub {
  margin: 12px 0 0;
  color: #59655f;
  line-height: 1.55;
}

.career-mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.career-mini-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #3f3486;
  background: rgba(117, 98, 143, 0.1);
  border: 1px solid rgba(117, 98, 143, 0.18);
}

.career-mini-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.career-mini-list li {
  position: relative;
  padding-left: 16px;
  color: #55615a;
  line-height: 1.5;
}

.career-mini-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6c8f4d;
  font-weight: 800;
}

.jobs-swipe-controls {
  margin-top: 12px;
  margin-bottom: 2px;
}

.jobs-swipe-viewport {
  margin-top: 8px;
  padding: 10px 28px 16px;
}

.jobs-swipe-deck {
  gap: 18px;
}

.job-card {
  flex: 0 0 calc(100% - 92px);
  min-width: calc(100% - 92px);
}

.job-card:not(.is-active) {
  opacity: 0.62;
  transform: scale(0.97) translateY(10px);
}

.address-card .location-actions,
.contact-panel .contact-actions {
  margin-top: 16px;
}

.route-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(42, 56, 39, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: #2f3f2d;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 6px 14px rgba(36, 48, 41, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.route-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(36, 48, 41, 0.12);
  background: #fff;
}

.route-link .route-icon {
  width: 14px;
  height: 14px;
}

.route-link .route-icon svg {
  width: 100%;
  height: 100%;
}

.address-card .location-actions {
  display: block;
  margin-top: 14px;
}

.career-highlight-inner {
  padding: clamp(20px, 3.2vw, 26px);
}

.career-preview-head .section-title {
  font-size: clamp(1.6rem, 2.1vw, 2.05rem);
  line-height: 1.05;
}

.career-preview-head .section-lead {
  margin-top: 6px;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.55;
}

.career-preview-viewport {
  padding: 6px 14px 8px;
  border-radius: 22px;
}

.career-preview-cards {
  gap: 12px;
}

.career-mini-card {
  flex: 0 0 calc(100% - 104px);
  min-width: calc(100% - 104px);
  min-height: 152px;
  padding: 14px 16px;
  border-radius: 18px;
}

.career-mini-card h3 {
  margin-top: 5px;
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
}

.career-mini-sub {
  margin-top: 6px;
  font-size: 1.02rem;
}

.career-mini-tags {
  margin-top: 8px;
  gap: 6px;
}

.career-mini-note {
  margin: 8px 0 0;
  color: #5c685f;
  line-height: 1.38;
}

.career-highlight-inner > .button {
  justify-self: start;
  width: auto;
  min-height: 40px;
  padding: 0 16px;
  font-size: 1rem;
}

.career-highlight {
  width: min(calc(100% - 40px), 1040px);
}

.address-inline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.address-inline-row > strong {
  flex: 1 1 auto;
}

.address-inline-row .route-link {
  flex: 0 0 auto;
}

@media (max-width: 1023px) {
  .career-mini-card {
    flex: 0 0 calc(100% - 42px);
    min-width: calc(100% - 42px);
  }

  .job-card {
    flex: 0 0 calc(100% - 58px);
    min-width: calc(100% - 58px);
  }

  .address-inline-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 799px) {
  .swipe-cue {
    font-size: 0.8rem;
  }

  .career-preview-viewport,
  .jobs-swipe-viewport {
    padding-inline: 12px;
  }

  .career-mini-card {
    flex: 0 0 calc(100% - 22px);
    min-width: calc(100% - 22px);
    min-height: 162px;
    padding: 14px;
  }

  .job-card {
    flex: 0 0 calc(100% - 32px);
    min-width: calc(100% - 32px);
  }
}

/* Navigation, contact icons and route/address alignment polish */
.site-nav-link {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.92rem;
}

.site-nav-link:hover,
.site-nav-link[aria-current="page"] {
  background: rgba(117, 98, 143, 0.14);
  color: #4a3b67;
  box-shadow: inset 0 0 0 1px rgba(117, 98, 143, 0.24);
}

section[id] {
  scroll-margin-top: 120px;
}

.service-chip {
  border: 1px solid rgba(120, 152, 87, 0.2);
  background: rgba(120, 152, 87, 0.1);
}

.service-chip.is-selected {
  background: linear-gradient(135deg, rgba(117, 98, 143, 0.18), rgba(117, 98, 143, 0.26));
  color: #40315c;
  border-color: rgba(117, 98, 143, 0.35);
  box-shadow: 0 10px 22px rgba(81, 65, 107, 0.2);
}

.therapy-detail-card {
  border: 1px solid rgba(117, 98, 143, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 241, 250, 0.85));
}

.therapy-detail-card h4 {
  color: #4a3b67;
}

.quick-contact-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.quick-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(117, 98, 143, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: #2f3d36;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quick-contact-link:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 10px 18px rgba(36, 48, 41, 0.11);
}

.quick-contact-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  color: #4f406d;
  flex: 0 0 auto;
}

.quick-contact-icon.is-whatsapp {
  color: #25d366;
}

.quick-contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-action-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: clamp(1.02rem, 1.65vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: inherit;
}

.contact-action-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  color: #4f406d;
  flex: 0 0 auto;
}

.contact-action-icon.is-whatsapp {
  color: #25d366;
}

.contact-action-icon svg {
  width: 100%;
  height: 100%;
}

.address-inline-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.address-inline-row > strong {
  min-width: 0;
}

.address-inline-row .route-link {
  align-self: flex-start;
  flex: 0 0 auto;
  white-space: nowrap;
  min-height: 32px;
  padding: 0 10px;
  font-size: 0.9rem;
}

.contact-row-inline {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-row-dot {
  width: 20px;
  height: 20px;
  display: inline-flex;
  color: #4f406d;
  flex: 0 0 20px;
  margin-top: 2px;
}

.contact-row-dot.is-whatsapp {
  color: #25d366;
}

.contact-row-dot svg {
  width: 100%;
  height: 100%;
}

.contact-row-text {
  min-width: 0;
}

.contact-row-text strong {
  display: block;
  margin: 0;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

.contact-row-text .contact-action-link.compact {
  margin-top: 6px;
  display: inline-block;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-row-text small {
  margin-top: 6px;
  line-height: 1.6;
}

.contact-dock-link.is-whatsapp {
  background: #fff;
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.34);
}

.contact-dock-link.is-mail {
  background: linear-gradient(135deg, #75628f, #52436a);
}

.contact-dock-link.is-phone {
  background: linear-gradient(135deg, #2c3a35, #23302b);
}

.contact-dock-trigger {
  animation: none;
}

.contact-dock:not(.is-open) .contact-dock-trigger {
  animation: dockPulse 2.1s ease-in-out infinite;
}

@keyframes dockPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 18px 34px rgba(36, 48, 58, 0.18);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 22px 40px rgba(36, 48, 58, 0.25);
  }
}

.hero-badge img {
  width: 44px;
  height: 58px;
  object-fit: contain;
}

.footer-brand-top img {
  width: 132px;
  height: 64px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.86);
  padding: 6px 8px;
}

@media (max-width: 1023px) {
  .site-nav-link {
    padding: 0 12px;
    font-size: 0.89rem;
  }

  .job-card {
    flex: 0 0 calc(100% - 42px);
    min-width: calc(100% - 42px);
  }

  .address-inline-row {
    flex-direction: row;
  }

  .footer-brand-top img {
    width: 124px;
    height: 60px;
  }

  .career-highlight-minimal .swipe-control,
  .career-highlight-minimal .swipe-dots {
    position: static;
    transform: none;
  }
}

@media (max-width: 799px) {
  .site-nav-link {
    min-height: 40px;
  }

  .address-inline-row {
    align-items: center;
  }

  .address-inline-row .route-link {
    min-height: 30px;
    padding: 0 9px;
    font-size: 0.84rem;
  }

  .contact-row-inline {
    gap: 10px;
  }

  .contact-row-dot {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .contact-row-text .contact-action-link.compact {
    font-size: 1rem;
  }

  .footer-brand-top img {
    width: 116px;
    height: 56px;
  }
}

/* Compact job swipe on Praxis page */
.career-highlight.career-highlight-minimal {
  width: min(calc(100% - 40px), 980px);
  padding-top: 8px;
  padding-bottom: 22px;
  position: relative;
}

.career-highlight-minimal .career-preview-controls {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 4;
  height: 0;
}

.career-highlight-minimal .career-preview-viewport {
  border-radius: 22px;
  border: 0;
  background: transparent;
  padding: 0 0 8px;
  box-shadow: none;
}

.career-highlight-minimal .career-preview-viewport::before {
  display: none;
}

.career-highlight-minimal .career-preview-viewport::after {
  width: 38px;
}

.career-highlight-minimal .career-preview-cards {
  gap: 14px;
}

.career-highlight-minimal .career-mini-card {
  min-height: 142px;
  padding: 14px 16px;
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(36, 48, 41, 0.1);
  position: relative;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.career-highlight-minimal .career-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(36, 48, 41, 0.14);
}

.career-highlight-minimal .career-mini-card:active {
  transform: scale(0.992);
}

.career-mini-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.mini-job-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(117, 98, 143, 0.14);
  color: #4f406d;
  border: 1px solid rgba(117, 98, 143, 0.24);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  position: relative;
  z-index: 3;
}

.mini-job-cta svg {
  width: 12px;
  height: 12px;
}

.mini-job-cta:hover {
  background: rgba(117, 98, 143, 0.2);
}

.career-highlight-minimal .swipe-control {
  position: absolute;
  top: 112px;
  transform: translateY(-50%);
}

.career-highlight-minimal .swipe-control.is-prev {
  left: -62px;
}

.career-highlight-minimal .swipe-control.is-next {
  right: -62px;
}

.career-highlight-minimal .swipe-dots {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1023px) {
  .career-highlight-minimal .swipe-control,
  .career-highlight-minimal .swipe-dots {
    position: static;
    transform: none;
  }

  .career-highlight-minimal .career-preview-controls {
    height: auto;
    margin-bottom: 10px;
  }

  .career-highlight-minimal .career-preview-viewport {
    padding: 0 10px 8px;
  }
}

@media (max-width: 799px) {
  .career-highlight.career-highlight-minimal {
    width: min(calc(100% - 28px), 980px);
    padding-top: 2px;
  }

  .career-highlight-minimal .career-preview-viewport {
    padding: 0 4px 6px;
  }

  .career-highlight-minimal .career-mini-card {
    min-height: 136px;
    padding: 12px;
  }

  .mini-job-cta {
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.76rem;
  }
}

.contact-row-dot-link {
  width: 20px;
  height: 20px;
  display: inline-flex;
  color: #4f406d;
  flex: 0 0 20px;
  margin-top: 2px;
  align-items: center;
  justify-content: center;
}

.contact-row-dot-link.is-whatsapp {
  color: #25d366;
}

.contact-row-dot-link svg {
  width: 100%;
  height: 100%;
}

.contact-row-dot-link:hover {
  filter: brightness(0.9);
}

/* Swipe layout, button colors and dock pulse polish */
.swipe-cue {
  animation: swipeCuePulse 1.05s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  font-weight: 800;
}

.has-swiped .swipe-cue {
  animation: none !important;
  transform: none !important;
  text-shadow: none !important;
  opacity: 0.86;
}

@keyframes swipeCuePulse {
  0%,
  100% {
    transform: translateX(-10px);
    opacity: 0.7;
    text-shadow: 0 0 0 rgba(80, 64, 109, 0);
  }
  50% {
    transform: translateX(10px);
    opacity: 1;
    text-shadow: 0 0 10px rgba(80, 64, 109, 0.18);
  }
}

.swipe-control {
  border-width: 1px;
  box-shadow: 0 8px 18px rgba(35, 48, 41, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background 180ms ease;
}

.swipe-control.is-prev {
  background: linear-gradient(135deg, #f2edf8, #e8dff6);
  border-color: rgba(117, 98, 143, 0.34);
  color: #4a3d66;
}

.swipe-control.is-next {
  background: linear-gradient(135deg, #edf8e9, #dff2d7);
  border-color: rgba(102, 146, 77, 0.34);
  color: #3f6d2d;
}

.swipe-control:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(35, 48, 41, 0.16);
}

.swipe-dot {
  width: 11px;
  height: 11px;
}

.swipe-dot.is-active {
  background: #4f3f71;
}

.swipe-dots-below {
  display: flex;
  width: 100%;
  margin-top: 10px;
  justify-content: center;
}

.career-highlight-minimal .swipe-dots-below {
  position: static;
  top: auto;
  left: auto;
  transform: none;
}

.career-highlight.career-highlight-minimal {
  width: min(calc(100% - 40px), var(--container));
  padding-top: 8px;
  padding-bottom: 22px;
}

.career-highlight-minimal .career-preview-stage {
  position: relative;
  width: 100%;
  max-width: none;
  margin-right: auto;
}

.career-highlight-minimal .career-preview-controls {
  margin: 0;
}

.career-highlight-minimal .career-preview-viewport {
  border-radius: 22px;
  border: 0;
  background: transparent;
  padding: 0 14px 10px 0;
  box-shadow: none;
}

.career-highlight-minimal .career-preview-viewport::before {
  display: none;
}

.career-highlight-minimal .career-preview-viewport::after {
  width: 38px;
}

.career-highlight-minimal .career-preview-cards {
  gap: 14px;
}

.career-highlight-minimal .career-mini-card {
  flex: 0 0 calc(100% - 104px);
  min-width: calc(100% - 104px);
}

.jobs-swipe-stage {
  position: relative;
}

.jobs-swipe-controls {
  margin-top: 0;
  margin-bottom: 4px;
  gap: 14px;
  align-items: center;
}

.jobs-swipe-stage .swipe-dots-top {
  display: flex;
  margin: 0 auto 8px;
  justify-content: center;
}

.jobs-swipe-stage .swipe-cue {
  margin-top: 6px;
}

.jobs-swipe-viewport {
  margin-top: 8px;
}

@media (min-width: 1024px) {
  .career-highlight-minimal .career-preview-controls,
  .jobs-swipe-controls {
    position: absolute;
    inset: 50% 0 auto 0;
    z-index: 6;
    pointer-events: none;
    height: 0;
  }

  .career-highlight-minimal .swipe-control,
  .jobs-swipe-controls .swipe-control {
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    pointer-events: auto;
  }

  .career-highlight-minimal .swipe-control.is-prev,
  .jobs-swipe-controls .swipe-control.is-prev {
    left: -78px;
  }

  .career-highlight-minimal .swipe-control.is-next,
  .jobs-swipe-controls .swipe-control.is-next {
    right: -78px;
  }

  .jobs-swipe-stage .swipe-dots-below {
    margin-top: 12px;
  }

  .career-highlight-minimal .career-mini-card {
    flex: 0 0 calc(100% - 144px);
    min-width: calc(100% - 144px);
  }
}

@media (max-width: 1023px) {
  .career-highlight.career-highlight-minimal {
    width: min(calc(100% - 28px), var(--container));
  }

  .career-highlight-minimal .career-preview-controls,
  .jobs-swipe-controls {
    position: static;
    display: flex;
    justify-content: center;
    gap: 12px;
    height: auto;
    margin-bottom: 10px;
  }

  .career-highlight-minimal .career-preview-viewport {
    padding: 0 8px 8px;
  }

  .career-highlight-minimal .career-mini-card {
    flex: 0 0 calc(100% - 42px);
    min-width: calc(100% - 42px);
  }
}

@media (max-width: 799px) {
  .jobs-swipe-section {
    width: min(calc(100% - 20px), var(--container));
  }

  .jobs-swipe-controls {
    margin-bottom: 12px;
  }

  .jobs-swipe-stage .swipe-cue {
    margin-top: 10px;
  }

  .jobs-swipe-viewport {
    padding-inline: 4px;
  }

  .job-card {
    flex: 0 0 calc(100% - 14px);
    min-width: calc(100% - 14px);
  }

  .career-highlight-minimal .career-preview-viewport {
    padding: 0 4px 6px;
  }

  .career-highlight-minimal .career-mini-card {
    flex: 0 0 calc(100% - 14px);
    min-width: calc(100% - 14px);
  }
}

.contact-dock-trigger {
  position: relative;
  overflow: visible;
}

.contact-dock-trigger::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(117, 98, 143, 0.42);
  opacity: 0.15;
  transform: scale(0.9);
  pointer-events: none;
}

.contact-dock:not(.is-open) .contact-dock-trigger {
  animation: dockPulseStrong 1.35s ease-in-out infinite;
  box-shadow: 0 16px 30px rgba(36, 48, 58, 0.28);
}

.contact-dock:not(.is-open) .contact-dock-trigger::before {
  content: "";
  position: absolute;
  inset: -11px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(133, 106, 173, 0.3) 0%, rgba(133, 106, 173, 0) 72%);
  animation: dockGlow 1.45s ease-in-out infinite;
  pointer-events: none;
}

.contact-dock:not(.is-open) .contact-dock-trigger::after {
  animation: dockBubble 1.35s ease-in-out infinite;
}

.contact-dock:not(.is-open) .contact-dock-trigger svg {
  animation: dockArrowHint 1s ease-in-out infinite;
}

@keyframes dockPulseStrong {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 16px 30px rgba(36, 48, 58, 0.24);
  }
  50% {
    transform: scale(1.17);
    box-shadow: 0 28px 48px rgba(36, 48, 58, 0.36);
  }
}

@keyframes dockGlow {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.66;
    transform: scale(1.16);
  }
}

@keyframes dockBubble {
  0% {
    opacity: 0.24;
    transform: scale(0.88);
  }
  35% {
    opacity: 0.58;
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes dockArrowHint {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.14);
  }
}

/* Reviews, map consent and spacing polish */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.trust-strip + .career-highlight.career-highlight-minimal {
  padding-top: 4px;
}

.career-highlight.career-highlight-minimal + .section {
  padding-top: clamp(44px, 6vw, 72px);
}

.reviews-section {
  padding-top: clamp(34px, 4.9vw, 58px);
  padding-bottom: clamp(30px, 4.4vw, 52px);
  width: min(calc(100% - 48px), 980px);
}

.review-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.56fr) minmax(390px, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  align-items: center;
  padding: clamp(13px, 2vw, 18px);
  border-radius: 18px;
  border: 1px solid rgba(120, 152, 87, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(246, 241, 250, 0.52)),
    radial-gradient(circle at 88% 14%, rgba(117, 98, 143, 0.13), transparent 34%);
  box-shadow: var(--shadow-card);
}

.review-summary .section-title {
  font-size: clamp(1.35rem, 1.8vw, 1.82rem);
  line-height: 1.06;
}

.review-summary .section-lead {
  max-width: 33ch;
  font-size: clamp(0.94rem, 1.1vw, 1rem);
}

.review-score {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 2px 12px;
  align-items: end;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(117, 98, 143, 0.15);
}

.review-score strong {
  font-size: 1.85rem;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--accent-deep);
}

.review-score span {
  color: #d9a441;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.review-score small {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-weight: 700;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.review-slider {
  display: grid;
  gap: 10px;
}

.review-slider-track {
  display: flex;
  gap: 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.review-slider-track .review-slider-lane {
  animation: reviewLaneSlide var(--review-marquee-duration, 54s) linear infinite;
}

.review-slider-track:hover .review-slider-lane {
  animation-play-state: paused;
}

.review-slider-lane {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  min-width: max-content;
  padding-right: 10px;
}

.review-slider-track .review-card {
  flex: 0 0 clamp(250px, 25vw, 312px);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.review-slider-track .review-card p {
  font-size: 0.86rem;
  line-height: 1.38;
  margin-top: 7px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  white-space: normal;
}

.review-slider-track .review-card-top strong {
  font-size: 0.88rem;
}

.review-slider-track .review-card-top span {
  font-size: 0.84rem;
}

.review-slider .review-card-cta {
  border-radius: 12px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 12px;
  align-items: center;
  width: 100%;
  box-shadow: 0 10px 20px rgba(36, 48, 41, 0.075);
  border: 1px solid rgba(117, 98, 143, 0.25);
}

.review-slider .review-card-cta .review-card-top {
  grid-column: 1;
  gap: 8px;
  justify-content: flex-start;
}

.review-slider .review-card-cta p {
  grid-column: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.3;
}

.review-slider .review-card-cta .button {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 38px;
  padding: 0 15px;
  width: fit-content;
  font-size: 0.88rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #5e7f43, #476a31);
  box-shadow: 0 8px 18px rgba(71, 106, 49, 0.2);
}

.review-slider .review-card-cta .button:hover {
  background: linear-gradient(135deg, #55773b, #405f2d);
  transform: translateY(-1px);
}

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

.review-card {
  min-width: 0;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(120, 152, 87, 0.17);
  box-shadow: 0 12px 24px rgba(36, 48, 41, 0.07);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.review-card-top strong {
  min-width: 0;
  color: var(--ink);
  font-size: 0.95rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-card-top span {
  color: #d9a441;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.review-card p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 700;
}

.review-card-no-comment p {
  color: var(--ink-soft);
  font-weight: 700;
}

.review-card small {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.review-card-cta {
  background: linear-gradient(135deg, rgba(117, 98, 143, 0.11), rgba(120, 152, 87, 0.12));
  border-color: rgba(117, 98, 143, 0.2);
}

.review-card-cta a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-panel {
  position: relative;
}

.map-consent {
  min-height: inherit;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: clamp(22px, 4vw, 36px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(245, 250, 240, 0.72)),
    repeating-linear-gradient(45deg, rgba(120, 152, 87, 0.08) 0 2px, transparent 2px 14px);
}

.map-consent strong {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.03em;
}

.map-consent p {
  max-width: 42ch;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.map-panel iframe.is-loaded {
  min-height: inherit;
}

@media (max-width: 1023px) {
  .review-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 799px) {
  .hero-grid {
    width: min(calc(100% - 28px), calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    overflow: hidden;
  }

  .reviews-section {
    width: min(calc(100% - 28px), 980px);
  }
  .hero-copy,
  .section-head,
  .review-summary,
  .review-card,
  .career-mini-card {
    min-width: 0;
  }

  .eyebrow {
    flex-wrap: wrap;
    gap: 8px;
    letter-spacing: 0.08em;
  }

  .eyebrow::before {
    width: 28px;
  }

  .hero-title,
  .page-title,
  .cta-title {
    width: min(100%, 340px);
    font-size: clamp(1.9rem, 9.4vw, 2.1rem);
    line-height: 1.05;
    letter-spacing: 0;
    max-width: calc(100vw - 28px);
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .hero-title .accent,
  .page-title .accent,
  .cta-title .accent {
    display: inline;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .hero-actions .button,
  .cta-actions .button {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .cookie-notice {
    left: 12px;
    right: 12px;
    width: auto;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .cookie-notice > *,
  .cookie-notice-actions {
    min-width: 0;
  }

  .cookie-notice p {
    overflow-wrap: anywhere;
  }

  .cookie-notice-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
    white-space: normal;
  }

  .cookie-notice-actions a,
  .cookie-notice-actions button {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-chip,
  .badge-pill {
    white-space: normal;
    line-height: 1.35;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .hero-rating-badge {
    width: fit-content;
    max-width: 100%;
    justify-items: start;
    text-align: left;
    padding: 12px;
  }

  .hero-rating-badge strong {
    font-size: 1.72rem;
  }

  .hero-badge div {
    min-width: 0;
  }

  .review-panel {
    padding: 18px;
    border-radius: 20px;
  }

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

  .review-slider .review-card-cta .button {
    grid-column: 1;
    grid-row: auto;
    width: fit-content;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .review-slider .review-card-cta {
    grid-template-columns: 1fr;
  }

  .review-slider-track .review-card {
    flex-basis: min(278px, calc(100vw - 70px));
  }

  .trust-strip + .career-highlight.career-highlight-minimal {
    padding-top: 0;
  }
}

@keyframes reviewLaneSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 420px) {
  .hero-title,
  .page-title,
  .cta-title {
    width: min(100%, 340px);
    font-size: clamp(1.9rem, 9.4vw, 2.1rem);
    line-height: 1.05;
  }

}

/* Final desktop/mobile refinements */
#leistungen .split-panel {
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(440px, 1.1fr);
  column-gap: clamp(28px, 4.2vw, 64px);
  row-gap: 14px;
  align-items: start;
}

#leistungen .split-panel > .eyebrow,
#leistungen .split-panel > .service-list-title,
#leistungen .split-panel > .service-chip-grid {
  grid-column: 1;
}

#leistungen .therapy-selected-list {
  grid-column: 2;
  grid-row: 1 / span 3;
  width: 100%;
  max-width: none;
  margin-top: 0;
  align-self: stretch;
  align-content: start;
}

#leistungen .service-list-title {
  max-width: 12ch;
  font-size: clamp(1.75rem, 2.7vw, 2.6rem);
  line-height: 1.02;
}

#leistungen .service-chip-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

#leistungen .service-chip {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 12px;
  line-height: 1.18;
  white-space: normal;
  overflow-wrap: anywhere;
  hyphens: auto;
}

#leistungen .therapy-detail-card {
  min-height: 100%;
  padding: clamp(22px, 3.2vw, 34px);
  border-radius: 22px;
}

#leistungen .therapy-detail-card h4 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.12;
}

#leistungen .therapy-detail-card p {
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.62;
}

.review-score {
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 250, 240, 0.78)),
    radial-gradient(circle at 78% 20%, rgba(217, 164, 65, 0.2), transparent 38%);
}

.review-score span {
  display: inline-flex;
  gap: 2px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(217, 164, 65, 0.12);
  letter-spacing: 0.04em;
}

.review-score small {
  color: var(--brand-deep);
}

.review-slider-track .review-slider-lane {
  will-change: transform;
}

@media (min-width: 1440px) {
  #leistungen .service-chip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  #leistungen .split-panel {
    grid-template-columns: 1fr;
  }

  #leistungen .split-panel > .eyebrow,
  #leistungen .split-panel > .service-list-title,
  #leistungen .split-panel > .service-chip-grid,
  #leistungen .therapy-selected-list {
    grid-column: 1;
    grid-row: auto;
  }

  #leistungen .service-list-title {
    max-width: none;
  }

  #leistungen .therapy-selected-list {
    margin-top: 14px;
  }
}

@media (max-width: 799px) {
  #leistungen .service-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #leistungen .service-chip {
    min-height: 40px;
    padding: 9px 8px;
    font-size: 0.8rem;
  }

  body {
    padding-bottom: 88px;
  }

  .contact-dock {
    left: 50%;
    right: auto;
    bottom: 12px;
    transform: translateX(-50%);
    display: block;
    pointer-events: auto;
  }

  .contact-dock-trigger {
    display: none !important;
  }

  .contact-dock-menu,
  .contact-dock.is-open .contact-dock-menu {
    display: flex;
    flex-direction: row;
    gap: 8px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(117, 98, 143, 0.16);
    box-shadow: 0 18px 38px rgba(36, 48, 41, 0.18);
    backdrop-filter: blur(14px);
  }

  .contact-dock-link {
    width: 52px;
    height: 52px;
  }
}

.jobs-swipe-stage .swipe-dots,
.career-highlight-minimal .swipe-dots {
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.jobs-swipe-stage .swipe-dot,
.career-highlight-minimal .swipe-dot {
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 34px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(117, 98, 143, 0.22);
  background: rgba(255, 255, 255, 0.76);
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 8px 18px rgba(36, 48, 41, 0.08);
}

.jobs-swipe-stage .swipe-dot span,
.career-highlight-minimal .swipe-dot span {
  white-space: nowrap;
}

.jobs-swipe-stage .swipe-dot.is-active,
.career-highlight-minimal .swipe-dot.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-deep), #75628f);
  color: #fff;
  box-shadow: 0 12px 24px rgba(117, 98, 143, 0.22);
}

.jobs-swipe-stage .swipe-dot:focus-visible,
.career-highlight-minimal .swipe-dot:focus-visible {
  outline: 3px solid rgba(117, 98, 143, 0.24);
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .jobs-swipe-stage .swipe-dot,
  .career-highlight-minimal .swipe-dot {
    flex: 1 1 132px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .jobs-swipe-stage .swipe-dot span,
  .career-highlight-minimal .swipe-dot span {
    white-space: normal;
  }
}

.jobs-swipe-stage .swipe-dots-top {
  margin-top: 2px;
  margin-bottom: 10px;
}

@media (max-width: 799px) {
  .jobs-swipe-topbar {
    width: 100%;
    margin-bottom: 18px;
    gap: 8px;
  }

  .jobs-apply-pill,
  .jobs-whatsapp-pill {
    min-height: 52px;
    padding: 7px 10px 7px 8px;
    gap: 8px;
  }

  .job-pill-icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .job-pill-icon svg {
    width: 17px;
    height: 17px;
  }

  .jobs-apply-pill small,
  .jobs-whatsapp-pill small {
    font-size: 0.68rem;
  }

  .job-pill-copy > span {
    font-size: 0.84rem;
    line-height: 1.08;
  }
}

@media (max-width: 440px) {
  .jobs-swipe-topbar {
    gap: 6px;
  }

  .jobs-apply-pill,
  .jobs-whatsapp-pill {
    padding-inline: 7px;
  }

  .job-pill-icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .jobs-apply-pill small,
  .jobs-whatsapp-pill small {
    display: none;
  }

  .job-pill-copy > span {
    font-size: 0.78rem;
  }
}

.contact-dock-link.is-route {
  background: linear-gradient(135deg, #5f7f3f, #345d3c);
}

.button-route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(95, 127, 63, 0.24);
  background: #fff;
  color: #345d3c;
  box-shadow: 0 10px 26px rgba(52, 93, 60, 0.1);
}

.button-route svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button-route:hover {
  background: rgba(95, 127, 63, 0.1);
}

.address-route-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  text-underline-offset: 4px;
  box-shadow: none;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.address-route-link:hover {
  color: #4f7a3d;
  text-decoration: underline;
  text-decoration-color: rgba(79, 122, 61, 0.35);
}

.address-route-icon {
  order: 2;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #4f7a3d;
  opacity: 0.82;
  transition: opacity 180ms ease, transform 180ms ease;
}

.address-route-icon svg {
  width: 16px;
  height: 16px;
}

.address-route-link:hover .address-route-icon {
  opacity: 1;
  transform: translate(1px, -1px);
}

.address-route-link-inline {
  margin-top: 6px;
}

.hero-address-route {
  margin-top: 4px;
}

.footer-address-route {
  color: rgba(255, 255, 255, 0.88);
}

.footer-address-route:hover {
  color: #fff;
}

.footer-address-route .address-route-icon {
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 520px) {
  .header-inner {
    width: min(362px, calc(100vw - 28px));
    max-width: min(362px, calc(100vw - 28px));
    margin-left: 14px;
    margin-right: 14px;
    gap: 10px;
  }

  .site-brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 10px;
    overflow: hidden;
  }

  .site-brand-mark {
    width: 48px;
    height: 42px;
    flex: 0 0 auto;
  }

  .site-brand-copy {
    min-width: 0;
    max-width: clamp(128px, 42vw, 166px);
  }

  .site-brand-name,
  .site-brand-subtitle {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-brand-name {
    font-size: 0.94rem;
  }

  .site-brand-subtitle {
    font-size: 0.8rem;
  }

  .site-nav {
    flex: 0 0 auto;
    gap: 6px;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .language-trigger {
    width: 48px;
    min-height: 48px;
    padding: 0;
    justify-content: center;
  }

  .language-flag {
    min-width: 30px;
    min-height: 22px;
  }

  .language-current {
    display: none;
  }

  .hero-grid,
  .page-hero .hero-grid {
    width: min(362px, calc(100vw - 28px));
    max-width: min(362px, calc(100vw - 28px));
    margin-left: 14px;
    margin-right: 14px;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
    min-width: 0;
  }

  .page-lead,
  .hero-lead {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 420px) {
  #leistungen .service-chip-grid {
    grid-template-columns: 1fr;
  }
}

/* 2026 visual and privacy-contact polish */
:root {
  --bg: #f5f7f2;
  --bg-soft: #ffffff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --brand: #664260;
  --brand-deep: #4e294b;
  --accent: #7f9b5e;
  --accent-deep: #4f713b;
  --warm: #e7ebe0;
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(127, 155, 94, 0.22), transparent 31%),
    radial-gradient(circle at 88% 12%, rgba(102, 66, 96, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfcf9 0%, #f5f7f2 42%, #ffffff 100%);
}

.site-header.is-scrolled,
.button-secondary,
.quick-contact-link,
.review-card,
.review-score {
  background-color: rgba(255, 255, 255, 0.9);
}

.button-primary,
.contact-dock-link.is-mail {
  background: linear-gradient(135deg, #664260, #4e294b);
}

.button-whatsapp {
  background: #fff;
  color: #1fa855;
  border: 1px solid rgba(37, 211, 102, 0.28);
  box-shadow: 0 10px 26px rgba(31, 168, 85, 0.1);
}

.button-whatsapp svg {
  width: 20px;
  height: 20px;
}

.button-whatsapp:hover {
  background: rgba(37, 211, 102, 0.1);
}

.review-slider .review-card-cta .button,
.contact-dock-trigger {
  background: linear-gradient(135deg, #6f904f, #496d38);
}

.review-slider .review-card-cta {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 242, 0.9)),
    radial-gradient(circle at 100% 0, rgba(217, 164, 65, 0.16), transparent 38%);
  border-color: rgba(79, 113, 59, 0.22);
}

.review-slider .review-card-cta .button {
  color: #fff;
  text-decoration: none;
  border: 0;
}

.map-consent {
  position: relative;
  overflow: hidden;
}

.map-consent::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background:
    linear-gradient(90deg, rgba(79, 113, 59, 0.16) 1px, transparent 1px),
    linear-gradient(0deg, rgba(102, 66, 96, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 28% 36%, rgba(102, 66, 96, 0.16) 0 8px, transparent 9px),
    radial-gradient(circle at 64% 58%, rgba(79, 113, 59, 0.2) 0 10px, transparent 11px);
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.map-consent > * {
  position: relative;
  z-index: 1;
}

.language-switcher {
  position: relative;
}

.language-trigger {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(36, 48, 58, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-deep);
  font-weight: 800;
  cursor: pointer;
}

.language-flag {
  min-width: 32px;
  min-height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(36, 48, 58, 0.1);
  line-height: 1;
  box-shadow: 0 6px 14px rgba(31, 42, 51, 0.07);
}

.flag-icon {
  overflow: hidden;
}

.flag-de {
  background: linear-gradient(180deg, #111 0 33%, #dd0000 33% 66%, #ffce00 66% 100%);
}

.flag-en {
  background:
    linear-gradient(33deg, transparent 0 42%, #fff 42% 48%, #c8102e 48% 52%, #fff 52% 58%, transparent 58% 100%),
    linear-gradient(147deg, transparent 0 42%, #fff 42% 48%, #c8102e 48% 52%, #fff 52% 58%, transparent 58% 100%),
    linear-gradient(90deg, transparent 0 41%, #fff 41% 59%, transparent 59% 100%),
    linear-gradient(0deg, transparent 0 36%, #fff 36% 64%, transparent 64% 100%),
    linear-gradient(90deg, transparent 0 46%, #c8102e 46% 54%, transparent 54% 100%),
    linear-gradient(0deg, transparent 0 43%, #c8102e 43% 57%, transparent 57% 100%),
    #012169;
}

.flag-tr {
  background: #e30a17;
}

.flag-tr::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  box-shadow: -3px 0 0 2px #fff;
  transform: translateX(1px);
}

.flag-ar {
  background: linear-gradient(180deg, #ce1126 0 33%, #fff 33% 66%, #000 66% 100%);
}

.flag-pl {
  background: linear-gradient(180deg, #fff 0 50%, #dc143c 50% 100%);
}

.flag-hr {
  background:
    linear-gradient(180deg, #f00 0 33%, #fff 33% 66%, #171796 66% 100%);
}

.flag-hr::before {
  content: "";
  width: 9px;
  height: 10px;
  border-radius: 2px 2px 3px 3px;
  background:
    linear-gradient(45deg, #c8102e 25%, #fff 25% 50%, #c8102e 50% 75%, #fff 75%) 0 0 / 6px 6px;
  box-shadow: 0 0 0 1px rgba(36, 48, 58, 0.22);
}

.flag-bs {
  background:
    linear-gradient(135deg, transparent 0 48%, #f7d117 48% 64%, transparent 64% 100%),
    linear-gradient(90deg, #002395 0 72%, #fff 72% 100%);
}

.flag-bs::before {
  content: "★";
  color: #fff;
  font-size: 7px;
  letter-spacing: -1px;
  text-shadow:
    5px 3px 0 #fff,
    10px 6px 0 #fff,
    15px 9px 0 #fff;
  transform: translate(-7px, -5px);
}

.flag-sr {
  background:
    radial-gradient(circle at 33% 50%, #f4c542 0 7%, transparent 8%),
    linear-gradient(180deg, #c6363c 0 33%, #0c4076 33% 66%, #fff 66% 100%);
}

.flag-uk {
  background: linear-gradient(180deg, #0057b7 0 50%, #ffd700 50% 100%);
}

.flag-ru {
  background: linear-gradient(180deg, #fff 0 33%, #0039a6 33% 66%, #d52b1e 66% 100%);
}

.flag-ro {
  background: linear-gradient(90deg, #002b7f 0 33%, #fcd116 33% 66%, #ce1126 66% 100%);
}

.flag-fr {
  background: linear-gradient(90deg, #002654 0 33%, #fff 33% 66%, #ce1126 66% 100%);
}

.language-current {
  font-size: 0.86rem;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 210px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(36, 48, 58, 0.12);
  box-shadow: 0 18px 44px rgba(31, 42, 51, 0.16);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.language-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 6px 8px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.language-option:hover,
.language-option.is-active {
  background: rgba(102, 66, 96, 0.09);
}

.is-rtl .site-nav-list,
.is-rtl .footer-links,
.is-rtl .hero-actions,
.is-rtl .cta-actions,
.is-rtl .contact-actions,
.is-rtl .location-actions,
.is-rtl .review-actions,
.is-rtl .whatsapp-consent-actions {
  direction: rtl;
}

.is-rtl .language-menu {
  right: auto;
  left: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
.whatsapp-consent-panel:focus-visible {
  outline: 3px solid rgba(102, 66, 96, 0.45);
  outline-offset: 3px;
}

body.dialog-open {
  overflow: hidden;
}

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

.whatsapp-consent {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 20px;
}

.whatsapp-consent-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 51, 0.36);
  backdrop-filter: blur(10px);
}

.whatsapp-consent-panel {
  position: relative;
  width: min(100%, 520px);
  padding: clamp(24px, 4vw, 34px);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 245, 0.96)),
    radial-gradient(circle at 100% 0, rgba(127, 155, 94, 0.18), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 32px 90px rgba(31, 42, 51, 0.28);
}

.whatsapp-consent-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(102, 66, 96, 0.08);
  color: var(--brand-deep);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-consent-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(37, 211, 102, 0.11);
  color: #1fa855;
}

.whatsapp-consent-icon svg {
  width: 28px;
  height: 28px;
}

.whatsapp-consent h2 {
  margin: 18px 0 0;
  color: var(--brand-deep);
  font-size: clamp(1.7rem, 4vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.whatsapp-consent p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.whatsapp-consent-note {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(127, 155, 94, 0.1);
  border: 1px solid rgba(127, 155, 94, 0.2);
}

.whatsapp-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.whatsapp-consent-check input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--accent-deep);
}

.whatsapp-consent-check a {
  color: var(--brand-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.whatsapp-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.whatsapp-consent-actions .button[disabled] {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.whatsapp-privacy-note {
  padding-bottom: 12px;
}

.whatsapp-privacy-note + .prose-shell {
  padding-top: 0;
}

.prose-shell .legal-shell {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 245, 0.94)),
    radial-gradient(circle at 100% 0, rgba(127, 155, 94, 0.1), transparent 34%);
  border-color: rgba(36, 48, 58, 0.11);
}

.prose-shell .prose,
.prose-shell .prose p,
.prose-shell .prose li {
  color: var(--ink);
}

.prose-shell .prose h2,
.prose-shell .prose h3,
.prose-shell .prose h4 {
  color: var(--brand-deep);
}

body[data-page="legal"] [data-reveal],
body[data-page="legal"] .js-enabled [data-reveal],
.js-enabled body[data-page="legal"] [data-reveal] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

body[data-page="legal"] .prose-shell,
body[data-page="legal"] .legal-shell,
body[data-page="legal"] .prose {
  display: block;
}

@media (max-width: 520px) {
  .whatsapp-consent {
    align-items: end;
    padding: 12px;
  }

  .whatsapp-consent-panel {
    border-radius: 22px;
  }

  .whatsapp-consent-actions .button {
    width: 100%;
  }

  .email-purpose {
    align-items: end;
    padding: 12px;
  }

  .email-purpose-panel {
    border-radius: 22px;
  }

  .email-purpose-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 799px) {
  body {
    padding-bottom: 82px;
  }

  .contact-dock {
    left: auto;
    right: 14px;
    bottom: 14px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: flex-end;
    pointer-events: none;
  }

  .contact-dock-trigger {
    display: inline-flex;
    pointer-events: auto;
  }

  .contact-dock-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    pointer-events: none;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .contact-dock.is-open .contact-dock-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .contact-dock-link {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .swipe-cue,
  .contact-dock:not(.is-open) .contact-dock-trigger,
  .contact-dock:not(.is-open) .contact-dock-trigger::before,
  .contact-dock:not(.is-open) .contact-dock-trigger::after,
  .contact-dock:not(.is-open) .contact-dock-trigger svg {
    animation: none !important;
  }
}

/* Final overrides after legacy mobile dock rules */
.review-slider-track .is-review-marquee {
  animation: reviewLaneSlide var(--review-marquee-duration, 150s) linear infinite;
}

.cookie-notice {
  right: 14px;
  bottom: 86px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: min(360px, calc(100vw - 28px));
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(36, 48, 41, 0.14);
  backdrop-filter: blur(14px);
}

.cookie-notice strong {
  font-size: 0.88rem;
  line-height: 1.15;
}

.cookie-notice p {
  margin-top: 3px;
  font-size: 0.76rem;
  line-height: 1.25;
}

.cookie-notice-actions {
  gap: 6px;
}

.cookie-notice-actions a,
.cookie-notice-actions button {
  min-height: 32px;
  padding: 0 10px;
  font-size: 0.78rem;
  line-height: 1;
}

@media (max-width: 799px) {
  body {
    padding-bottom: 92px;
  }

  .cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 84px;
    width: auto;
    grid-template-columns: 1fr;
    align-items: center;
    padding: 9px;
  }

  .cookie-notice p {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .cookie-notice-actions {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    white-space: normal;
  }

  .cookie-notice-actions a,
  .cookie-notice-actions button {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    text-align: center;
  }

  .contact-dock {
    left: 50% !important;
    right: auto !important;
    bottom: 12px !important;
    transform: translateX(-50%);
    display: block;
    pointer-events: auto;
  }

  .contact-dock-trigger {
    display: none !important;
  }

  .contact-dock-menu,
  .contact-dock.is-open .contact-dock-menu {
    display: flex;
    flex-direction: row;
    gap: 8px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(117, 98, 143, 0.16);
    box-shadow: 0 18px 38px rgba(36, 48, 41, 0.18);
    backdrop-filter: blur(14px);
  }

  .contact-dock-link {
    width: 52px;
    height: 52px;
  }
}
