/* ─── Reset & Variables ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --teal-deep: #6b3a7d;
  --teal-dark: #4a2857;
  --teal-mid: #8b5a9e;
  --teal-light: #f3ecf6;
  --gold: #9b6bb0;
  --gold-light: #b088c2;
  --charcoal: #2d2d2d;
  --text: #3a3a3a;
  --text-light: #5a5a5a;
  --white: #ffffff;
  --off-white: #faf8fb;
  --border: #e4dce8;
  --font-heading: 'Cinzel', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --header-h: 90px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.04);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0; text-decoration: none; flex-shrink: 0; }

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
}

.logo-name {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--teal-deep);
  letter-spacing: 3px;
  line-height: 1.2;
}

.logo-tagline {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--teal-mid);
  letter-spacing: 1px;
  line-height: 1.3;
  margin-top: 2px;
}

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 4px; }

.nav-item {
  position: relative;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--teal-deep);
  text-decoration: none;
  cursor: pointer;
  transition: color .2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}

.nav-item:hover { color: var(--teal-dark); }
.nav-item:hover::after { transform: scaleX(1); }

.nav-arrow {
  width: 8px;
  height: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s;
}

.nav-item:hover .nav-arrow { transform: translateY(1px); }

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-item--trigger {
  cursor: pointer;
  user-select: none;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(107,58,125,.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-submenu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--teal-deep);
  text-decoration: none;
  transition: background .15s, color .15s;
}

.nav-submenu a:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.nav-search {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--teal-deep);
  border-radius: 50%;
  transition: background .2s, color .2s;
  margin-left: 4px;
}

.nav-search:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.nav-search svg { width: 16px; height: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-deep);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ─── Hero Section ─── */
.hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--teal-deep);
}

/* Leaf texture via layered gradients */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 40%, rgba(139,90,158,.5) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 75% 70%, rgba(74,40,87,.6) 0%, transparent 60%),
    radial-gradient(ellipse 50% 90% at 90% 30%, rgba(107,58,125,.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(139,90,158,.3) 0%, transparent 40%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(74,40,87,.85) 0%, rgba(107,58,125,.6) 50%, rgba(74,40,87,.7) 100%);
}

/* Decorative leaf shapes */
.hero-leaf {
  position: absolute;
  border-radius: 0 70% 0 70%;
  opacity: .08;
  z-index: 1;
}

.hero-leaf--1 {
  width: 400px;
  height: 300px;
  background: linear-gradient(135deg, #8b5a9e, transparent);
  right: -60px;
  top: -40px;
  transform: rotate(15deg);
}

.hero-leaf--2 {
  width: 250px;
  height: 200px;
  background: linear-gradient(225deg, #a070b4, transparent);
  right: 80px;
  bottom: -30px;
  transform: rotate(-20deg);
}

.hero-leaf--3 {
  width: 180px;
  height: 140px;
  background: linear-gradient(45deg, #b088c2, transparent);
  right: 200px;
  top: 20px;
  transform: rotate(40deg);
  border-radius: 70% 0 70% 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 2px;
  max-width: 700px;
}

.hero h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-top: 24px;
  opacity: .7;
}

/* ─── Content ─── */
.content {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 40px 100px;
}

.content-intro {
  font-style: italic;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  border-left: 3px solid var(--gold);
  padding: 24px 0 24px 28px;
  margin-bottom: 56px;
  position: relative;
}

.content-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 1.5px;
}

.therapy-type { margin-bottom: 40px; }

.therapy-type h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--teal-deep);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.therapy-type p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}

/* ─── Benefits Section ─── */
.benefits {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 72px 40px;
}

.benefits-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.benefits h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 1.5px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefits-intro,
.benefits-outro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 72px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}

.benefits-outro {
  margin: 72px auto 0;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(107,58,125,.08);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--teal-deep);
}

.benefit-icon svg { width: 20px; height: 20px; }

.benefit-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.benefit-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ─── CTA ─── */
.cta {
  background: var(--teal-deep);
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(139,90,158,.3), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(139,90,158,.2), transparent 60%);
}

.cta-inner { position: relative; z-index: 1; }

.cta h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.cta p {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  padding: 16px 42px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}

.cta-btn:hover {
  background: var(--gold-light);
  color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

/* ─── Footer ─── */
.site-footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,.6);
  padding: 56px 40px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo-atlas { color: rgba(255,255,255,.85); }
.footer-brand .logo-therapy { color: rgba(255,255,255,.55); }

.footer-brand .logo-name {
  color: rgba(255,255,255,1) !important;
  font-weight: 700;
  font-size: 22px;
}

.footer-brand .logo-tagline {
  color: rgba(255,255,255,.85) !important;
  font-weight: 600;
  font-size: 14px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 16px;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  padding: 4px 0;
  transition: color .2s;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
  text-align: center;
  color: rgba(255,255,255,.35);
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 200px;
}

.page-hero .hero-bg { position: absolute; inset: 0; background: var(--teal-deep); }

.page-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,40,87,.85) 0%, rgba(107,58,125,.6) 50%, rgba(74,40,87,.7) 100%);
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 40px;
  width: 100%;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 2.5px;
}

/* ─── Hero Subtitle & CTA ─── */
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  margin-top: 16px;
  max-width: 560px;
  line-height: 1.6;
}

.hero-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.hero-cta:hover {
  background: var(--gold-light);
  color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

/* ─── Page Section ─── */
.page-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 40px;
}

.page-section + .page-section { padding-top: 0; }

.page-section h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: 1.5px;
}

.page-section h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--teal-deep);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.page-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 16px;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.page-section p:last-child { margin-bottom: 0; }

/* ─── Cards Grid ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(107,58,125,.08);
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--teal-deep);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 12px;
}

.card-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-deep);
  text-decoration: none;
  transition: color .2s;
}

.card-link:hover { color: var(--teal-dark); }

/* ─── Steps ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.step {
  text-align: center;
  padding: 28px 20px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-deep);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ─── Forms ─── */
.form {
  max-width: 520px;
  margin-top: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  transition: border-color .2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal-mid);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--teal-deep);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.form-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* ─── Downloads ─── */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.download-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,58,125,.12);
  border-color: var(--teal-mid);
}

.download-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  color: var(--teal-deep);
  border-radius: 8px;
}

.download-icon svg { width: 24px; height: 24px; }

.download-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--teal-deep);
  margin-bottom: 6px;
}

.download-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 10px;
}

.download-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--teal-deep);
  text-transform: uppercase;
}

/* ─── Kontakt Mapa ─── */
.kontakt-mapa {
  width: 100%;
  height: 380px;
  margin-top: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(107,58,125,.08);
  position: relative;
  z-index: 0;
  isolation: isolate;
}

/* ─── Form Success ─── */
.form-success {
  text-align: center;
  padding: 56px 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--off-white);
}

.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-deep);
  font-size: 24px;
  margin-bottom: 24px;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--teal-deep);
  margin-bottom: 16px;
}

.form-success p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── Contact Info ─── */
.contact-info {
  list-style: none;
  margin-top: 16px;
}

.contact-info li {
  font-size: 16px;
  color: var(--text);
  padding: 8px 0;
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.contact-info strong {
  color: var(--charcoal);
  min-width: 120px;
}

/* ─── Highlight Box ─── */
.highlight-box {
  background: var(--teal-light);
  border-radius: 6px;
  padding: 32px;
  margin-top: 32px;
}

.highlight-box h3 { margin-bottom: 16px; }

.highlight-box ul {
  list-style: none;
  padding: 0;
}

.highlight-box li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  padding: 4px 0 4px 20px;
  position: relative;
}

.highlight-box li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--teal-deep);
  font-weight: 600;
}

/* ─── Language switch ─── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

.lang-btn {
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  transition: transform .15s, border-color .15s, box-shadow .15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

.lang-btn svg,
.lang-btn img { width: 100%; height: 100%; display: block; object-fit: cover; }

.lang-btn:hover {
  transform: scale(1.08);
  opacity: 1;
}

.lang-btn--active {
  opacity: 1;
  border-color: var(--teal-deep);
  box-shadow: 0 0 0 2px var(--teal-light);
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 { animation: fadeUp .7s ease-out both; }
.content-intro { animation: fadeUp .6s .15s ease-out both; }
.section-heading { animation: fadeUp .6s .25s ease-out both; }
.therapy-type:nth-child(1) { animation: fadeUp .5s .35s ease-out both; }
.therapy-type:nth-child(2) { animation: fadeUp .5s .45s ease-out both; }
.therapy-type:nth-child(3) { animation: fadeUp .5s .55s ease-out both; }

.page-hero h1 { animation: fadeUp .8s ease-out both; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 32px 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    gap: 0;
  }

  .main-nav.open .nav-item {
    display: inline-block;
    padding: 12px 4px;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
  }

  .main-nav.open .nav-item::after { display: none; }

  .main-nav.open .nav-dropdown { width: auto; position: relative; }

  .main-nav.open .nav-dropdown .nav-item--trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .main-nav.open .nav-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: -8px -8px -8px 0;
    font-size: 18px;
    transition: transform .2s ease;
    cursor: pointer;
  }

  .main-nav.open .nav-dropdown.open > .nav-item--trigger .nav-arrow {
    transform: rotate(180deg);
  }

  .main-nav.open .nav-submenu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 8px;
    min-width: 0;
    background: transparent;
    display: none;
    opacity: 1;
    visibility: visible;
    text-align: center;
  }

  .main-nav.open .nav-submenu a {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .main-nav.open .nav-dropdown.open > .nav-submenu {
    display: block;
  }

  .main-nav.open .nav-submenu a {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
  }

  .benefits-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .cards-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; margin-top: 32px; }
  .steps { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; margin-top: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .header-inner { padding: 0 16px; gap: 12px; }
  .hamburger { flex-shrink: 0; padding: 8px; margin-right: -8px; }
  .logo { min-width: 0; flex: 1 1 auto; overflow: hidden; }
  .logo-img { height: 52px; }
  .logo-text { margin-left: 8px; min-width: 0; }
  .logo-name { font-size: 16px; letter-spacing: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .logo-tagline { font-size: 9.5px; letter-spacing: 0.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hero-content { padding: 56px 24px; }
  .content { padding: 48px 24px 72px; }
  .benefits { padding: 56px 24px; }
  .cta { padding: 56px 24px; }
  .site-footer { padding: 40px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { font-size: 2.2rem; }
  .page-section { padding: 48px 24px; }
  .page-hero .hero-content { padding: 40px 24px; }
}

@media (max-width: 380px) {
  .logo-tagline { display: none; }
  .logo-img { height: 46px; }
}
