/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #F8F5F0;
  --bg-light:  #EDEAE3;
  --white:     #FFFFFF;
  --accent:    #5A8C80;
  --accent-dk: #3C6B61;
  --warm:      #BC8A5F;
  --warm-dk:   #a8784e;
  --warm-lt:   #E8D5C0;
  --text:      #252220;
  --text-mid:  #4A4540;
  --text-soft: #8A8078;
  --border:    rgba(0,0,0,0.08);
  --radius:    8px;
  --shadow:    0 8px 40px rgba(0,0,0,0.10);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --transition: 0.22s ease;
  --max-w:     1080px;

  --text-xs:   0.75rem;
  --text-sm:   0.82rem;
  --text-base: 0.9rem;
  --text-md:   0.95rem;
  --text-lg:   1.05rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.6rem;
}

html { scroll-behavior: smooth; }

/* ===== UTILITIES ===== */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent-dk);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.1s;
}
.skip-link:focus { top: 0.75rem; }

/* ===== FOCUS INDICATORS ===== */
:focus-visible {
  outline: 3px solid var(--accent-dk);
  outline-offset: 3px;
  border-radius: 2px;
}
.section-accent :focus-visible {
  outline-color: #fff;
}

body {
  font-family: 'Heebo', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.8;
  direction: rtl;
}
body.ltr { direction: ltr; font-family: 'Inter', sans-serif; }

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 2.2rem;
  border-radius: 40px;
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(60,107,97,0.25);
}

.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  font-size: var(--text-base);
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.btn-secondary:hover { background: var(--accent-dk); color: #fff; }
.btn-secondary { color: var(--accent-dk); border-color: var(--accent-dk); }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  direction: ltr;
}

.logo { flex: 0 0 auto; text-align: right; }
.header-right { display: flex; align-items: center; gap: 0.75rem; }
.logo-name {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--accent-dk);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.logo-sub {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-mid);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav {
  display: none;
  position: absolute;
  top: 72px;
  right: 1.5rem;
  width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 200;
  overflow: visible;
}
.nav.open { display: block; }
.ltr-nav { right: auto; left: 1.5rem; }
.nav ul { display: flex; flex-direction: column; }
.nav a {
  display: block;
  padding: 0.85rem 1.4rem;
  font-size: var(--text-md);
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  text-align: right;
  direction: rtl;
  transition: background var(--transition), color var(--transition);
}
.nav ul li:last-child a { border-bottom: none; }
.nav a:hover { background: var(--bg-light); color: var(--accent-dk); }
body.ltr .nav a { text-align: left; direction: ltr; }


.lang-btn {
  background: none;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  border-radius: 20px;
  padding: 0.22rem 0.9rem;
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: background var(--transition), color var(--transition);
}
.lang-btn:hover { background: var(--accent); color: #fff; }

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.burger:hover { background: var(--bg-light); }
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  padding: 4rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}

/* subtle background texture */
.hero::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--warm-lt) 0%, transparent 70%);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-text { order: 2; }
.hero-photo { order: 1; }
body.ltr .hero-text { order: 1; }
body.ltr .hero-photo { order: 2; }

.hero-eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 1rem;
  font-weight: 500;
}
.hero h1 {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--accent-dk);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
body.ltr .hero h1 { font-family: 'DM Serif Display', serif; }

.hero-role {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero-tagline {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 340px;
  line-height: 1.85;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }


.hero-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 400px;
  max-width: 290px;
  box-shadow: var(--shadow);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 8%;
  transition: transform 0.6s ease;
}
.hero-photo:hover img { transform: scale(1.02); }

/* warm corner accent */
.hero-photo::after {
  content: '';
  position: absolute;
  bottom: -12px; left: -12px;
  width: 120px; height: 120px;
  border: 2px solid var(--warm-lt);
  border-radius: 12px;
  z-index: -1;
  pointer-events: none;
}
body.ltr .hero-photo::after { left: auto; right: -12px; }

/* ===== EN HERO (centered header + side-by-side body) ===== */
.hero-inner-ltr {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.hero-ltr, .hero-he {
  padding: 1.75rem 2.5rem 2rem;
  min-height: auto;
  align-items: flex-start;
}
.hero-header-center {
  text-align: center;
}
.hero-header-center .hero-eyebrow { margin-bottom: 0.2rem; font-size: 1.65rem; letter-spacing: 0.02em; text-transform: none; }
.hero-eyebrow-sub { font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm); font-weight: 500; margin-bottom: 1.5rem; }
@media (max-width: 860px) {
  .hero-name-desktop-only { display: none; }
}
.hero-header-center h1 { margin-bottom: 0.2rem; }
.hero-header-center .hero-role { margin-bottom: 0; }
.hero-inner-ltr { gap: 1.5rem; }
.hero-body-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-body-row-he { direction: rtl; }
.hero-he .hero-photo,
.hero-ltr .hero-photo { border-radius: 50%; aspect-ratio: 1 / 1; max-width: 300px; max-height: 300px; overflow: visible; }
.hero-photo-frame { width: 100%; height: 100%; overflow: hidden; position: relative; }
.hero-he .hero-photo-frame,
.hero-ltr .hero-photo-frame { border-radius: 50%; }
.hero-he .hero-photo-frame img,
.hero-ltr .hero-photo-frame img { transform: scale(1.2); object-position: 30% 10%; }
.hero-he .hero-photo::after,
.hero-ltr .hero-photo::after {
  content: '';
  position: absolute;
  top: -10px; right: -10px; bottom: -10px; left: -10px;
  width: auto; height: auto;
  border: 1.5px solid var(--warm);
  border-radius: 50%;
  background: none;
  z-index: -1;
  pointer-events: none;
}
body.ltr .hero-ltr .hero-photo::after {
  top: -10px; right: -10px; bottom: -10px; left: -10px;
  width: auto; height: auto;
  border-radius: 50%;
}
.hero-body-row-he .hero-text { order: 1; }
.hero-body-row-he .hero-photo { order: 2; }

@media (max-width: 860px) {
  .hero-ltr, .hero-he { padding: 0.75rem 1.5rem 1rem; }
  .hero-inner-ltr { gap: 0.75rem; }
  .hero-header-center .hero-eyebrow { font-size: var(--text-sm); margin-bottom: 0.2rem; letter-spacing: 0.03em; }
  .hero-header-center h1 { font-size: 2.2rem; margin-bottom: 0.2rem; }
  .hero-header-center .hero-role { font-size: var(--text-md); }
  .hero-body-row { grid-template-columns: 1fr; gap: 1rem; }
  .hero-body-row .hero-photo { max-height: 220px; }
  .hero-he .hero-photo,
  .hero-ltr .hero-photo { width: 220px; height: 220px; max-width: 220px; max-height: 220px; margin: 0 auto; }
  .hero-body-row-he .hero-photo { order: 1; }
  .hero-body-row-he .hero-text { order: 2; }
}

/* ===== INTRO STRIP ===== */
.intro-strip {
  background: var(--accent);
  color: #fff;
  padding: 3.5rem 2.5rem;
  text-align: center;
}
.intro-quote {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
}
.quote-mark {
  font-family: 'Rubik', sans-serif;
  font-size: 5rem;
  line-height: 0.8;
  opacity: 0.3;
  flex-shrink: 0;
}
.intro-quote p {
  font-size: 1.05rem;
  line-height: 1.85;
  font-weight: 300;
  text-align: start;
  padding-top: 0.5rem;
}

/* ===== SECTION BASE ===== */
.section-light { background: var(--bg-light); }
.section-white { background: var(--white); }
.section-accent { background: var(--accent-dk); color: #fff; }

section:not(.hero):not(.intro-strip) { padding: 5.5rem 2.5rem; }

.section-title {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  color: var(--accent-dk);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--warm);
  margin: 0.8rem auto 0;
}
body.ltr .section-title { font-family: 'DM Serif Display', serif; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.about-text h2 {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  color: var(--accent-dk);
  margin-bottom: 1.25rem;
}
body.ltr .about-text h2 { font-family: 'DM Serif Display', serif; }
.about-text p { color: var(--text-mid); margin-bottom: 1.75rem; line-height: 1.85; }
.about-image-block {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  max-height: 440px;
  max-width: 340px;
}
.about-image-block img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 55% 8%;
}

/* ===== NAV ACTIVE STATE ===== */
.nav a.active {
  color: var(--accent-dk);
  background: var(--bg-light);
  font-weight: 600;
}

/* ===== SUBMENU ===== */
.has-submenu { position: relative; }
.submenu-toggle {
  display: block;
  width: 100%;
  padding: 0.85rem 1.4rem;
  font-size: var(--text-md);
  font-family: inherit;
  color: var(--text-mid);
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  text-align: right;
  direction: rtl;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.submenu-toggle:hover { background: var(--bg-light); color: var(--accent-dk); }
.submenu-toggle::after { content: ' ◂'; font-size: 0.75em; }
.has-submenu.open .submenu-toggle::after { content: ' ▸'; font-size: 0.75em; }
.nav .submenu {
  display: none;
  position: absolute;
  top: 0;
  right: 100%;
  margin-right: 8px;
  width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 201;
}
.has-submenu.open > .submenu { display: block; }
.submenu a {
  padding: 0.85rem 1.4rem;
  font-size: var(--text-base);
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  text-align: right;
  direction: rtl;
}
.submenu li:last-child a { border-bottom: none; }

/* ===== INFO PAGE ===== */
.info-block {
  margin: 0 auto 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.info-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.info-block h2 {
  font-size: 1.25rem;
  color: var(--accent-dk);
  margin-bottom: 0.9rem;
  border-right: 3px solid var(--warm);
  padding-right: 0.75rem;
}
body.ltr .info-block h2 {
  border-right: none;
  border-left: 3px solid var(--warm);
  padding-right: 0;
  padding-left: 0.75rem;
}
.info-block p { margin-bottom: 0.75rem; color: var(--text-mid); }
.info-block p:last-child { margin-bottom: 0; }
.info-block a { color: var(--accent); text-decoration: underline; }
.info-block--coming-soon { text-align: center; padding: 4rem 0; border-bottom: none; }

/* ===== PAGE BANNER (inner pages) ===== */
.page-banner {
  background: var(--bg-light);
  text-align: center;
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.page-banner h1 {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  color: var(--accent-dk);
  margin-bottom: 0;
}
body.ltr .page-banner h1 { font-family: 'DM Serif Display', serif; }
.page-banner p {
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 300;
}

/* ===== HOME PREVIEW CARDS ===== */
.home-previews { padding: 5rem 2.5rem; }
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.preview-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
  color: inherit;
}
.preview-card p { flex: 1; }
.preview-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: var(--warm-lt);
  transition: background var(--transition);
}
.preview-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.preview-card:hover::before { background: var(--warm); }
.preview-icon { font-size: 1.4rem; color: var(--warm); margin-bottom: 0.85rem; }
.preview-card h3 { font-family: 'Rubik', sans-serif; font-size: var(--text-lg); font-weight: 600; color: var(--accent-dk); margin-bottom: 0.6rem; }
body.ltr .preview-card h3 { font-family: 'DM Serif Display', serif; }
.preview-card p { font-size: var(--text-base); color: var(--text-mid); line-height: 1.75; margin-bottom: 1.25rem; }
.preview-sub { font-size: var(--text-sm); color: var(--text-soft); margin-top: -0.75rem; }
.preview-link { font-size: var(--text-base); color: var(--accent); font-weight: 500; }

/* ===== ABOUT PAGE ===== */
.about-page { padding: 5rem 2.5rem; }

.about-page-landscape { }
.about-photo-landscape {
  overflow: hidden;
  border-radius: 16px;
  padding-top: 2.5rem;
}
.about-photo-landscape img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.about-text-full {
  padding: 3.5rem 2.5rem;
}
.about-text-full h2 {
  font-family: 'Rubik', sans-serif;
  font-size: var(--text-xl);
  color: var(--accent-dk);
  margin-bottom: 1.25rem;
}
.about-text-full h3 {
  font-family: 'Rubik', sans-serif;
  font-size: var(--text-xl);
  color: var(--accent-dk);
  margin: 2rem 0 1rem;
}
.about-text-full p { color: var(--text-mid); margin-bottom: 1.75rem; line-height: 1.85; }
@media (max-width: 860px) {
  .about-text-full { padding: 2.5rem 1.5rem; }
  .about-photo-landscape { padding: 0; margin: 0 -1.5rem; border-radius: 0; }
  .about-photo-landscape img { border-radius: 0; }
}
.credentials { padding: 5rem 2.5rem; }
.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.cred-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cred-year { font-size: var(--text-sm); color: var(--warm); font-weight: 600; letter-spacing: 0.06em; }
.cred-text { display: flex; flex-direction: column; gap: 0.2rem; }
.cred-text strong { font-size: var(--text-md); color: var(--text); }
.cred-text span { font-size: var(--text-base); color: var(--text-soft); }

.cred-section { max-width: var(--max-w); margin: 0 auto 2rem; }
.cred-section:last-child { margin-bottom: 0; }
.cred-section-title {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(90,140,128,0.12);
  color: var(--accent-dk);
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 0.85rem;
}
.cred-section p { font-size: var(--text-md); color: var(--text-mid); line-height: 1.8; margin-bottom: 0.4rem; }
.cred-list { list-style: none; padding: 0; margin: 0; }
.cred-list li { position: relative; padding-right: 1.2rem; font-size: var(--text-md); color: var(--text-mid); line-height: 1.8; margin-bottom: 0.4rem; }
body.ltr .cred-list li { padding-right: 0; padding-left: 1.2rem; }
.cred-list li::before { content: ''; position: absolute; right: 1px; top: 0.52em; width: 7px; height: 7px; border-radius: 50%; background: var(--warm); box-shadow: 0 0 0 3px rgba(188,138,95,0.18); }
body.ltr .cred-list li::before { right: auto; left: 1px; }

/* ===== THERAPY PAGE ===== */
.therapy-blocks {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.therapy-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.therapy-block:last-child { border-bottom: none; padding-bottom: 0; }
.therapy-block--no-num { grid-template-columns: 1fr; }
.therapy-num {
  font-family: 'Rubik', sans-serif;
  font-size: 3.5rem;
  color: var(--warm-lt);
  font-weight: 700;
  line-height: 1;
  padding-top: 0.25rem;
}
.therapy-content h2 {
  font-family: 'Rubik', sans-serif;
  font-size: var(--text-2xl);
  color: var(--accent-dk);
  margin-bottom: 0.85rem;
}
body.ltr .therapy-content h2 { font-family: 'DM Serif Display', serif; }
.therapy-content p { color: var(--text-mid); margin-bottom: 1.25rem; line-height: 1.85; }
.therapy-personal { margin-top: 1.75rem; }
hr.therapy-rule { border: none; border-top: 2px solid var(--warm); width: 2.5rem; margin: 1.5rem 0; }
.therapy-plant { margin: 1.5rem auto; display: flex; justify-content: center; }
.therapy-photo { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin: 0 0 0.75rem 1.25rem; }
.therapy-photo--right { float: right; }
.therapy-photo--left { float: left; margin: 0 1.25rem 0.75rem 0; }
.therapy-photo--mobile-only { display: none; }
@media (max-width: 860px) {
  .therapy-photo--desktop-only { display: none; }
  .therapy-photo--mobile-only { display: block; float: none; margin: 0 auto 1.25rem; }
}
.therapy-plant svg { display: block; transform: scaleY(-1); }
.therapy-btn-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }.therapy-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.therapy-list li {
  background: var(--bg-light);
  color: var(--accent-dk);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: var(--text-base);
  border: 1px solid var(--border);
}
.therapy-list--banner { justify-content: flex-start; margin-top: 1.25rem; }
.therapy-list--banner li { background: rgba(60,107,97,0.1); color: var(--accent-dk); border-color: transparent; }
.page-banner--therapy { padding-top: 2rem; padding-bottom: 1.5rem; }
.page-banner + section:not(.hero) { padding-top: 2rem; }

/* ===== CTA STRIP ===== */
.cta-strip { padding: 3.5rem 2.5rem; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-inner p { font-size: var(--text-lg); font-weight: 300; opacity: 0.92; }
.cta-strip .btn-primary { background: var(--warm); white-space: nowrap; }
.cta-strip .btn-primary:hover { background: var(--warm-dk); }

/* ===== CONTACT PAGE ===== */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
  padding-top: 4rem;
  padding-bottom: 5rem;
}
.contact-info h2 {
  font-family: 'Rubik', sans-serif;
  font-size: var(--text-2xl);
  color: var(--accent-dk);
  margin-bottom: 2rem;
}
body.ltr .contact-info h2 { font-family: 'DM Serif Display', serif; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-label { font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-soft); }
.contact-value { font-size: 1rem; color: var(--text); }
.contact-note { font-size: var(--text-sm); color: var(--warm); margin-top: 1.5rem; }
.contact-link { color: var(--accent); text-decoration: underline; transition: color var(--transition); }
.contact-link:hover { color: var(--accent-dk); }
.whatsapp-link { display: inline-flex; align-items: center; gap: 5px; text-decoration: none; }
.whatsapp-link:hover { color: var(--accent-dk); }
.wa-icon { width: 18px; height: 18px; flex-shrink: 0; }
.contact-phones { display: flex; flex-direction: column; gap: 0.4rem; }
.phone-link { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
.phone-link:hover { color: var(--accent-dk); }
.phone-icon { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); }
.contact-form-wrap {
  border-radius: 16px;
  padding: 2.5rem 2.5rem;
}
.contact-form-wrap h2 {
  font-family: 'Rubik', sans-serif;
  font-size: var(--text-2xl);
  margin-bottom: 0.4rem;
}
body.ltr .contact-form-wrap h2 { font-family: 'DM Serif Display', serif; }

/* ===== THERAPY CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: var(--warm-lt);
  transition: background var(--transition);
}
body.ltr .card::before { right: 0; left: 0; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.card:hover::before { background: var(--warm); }
.card-icon { font-size: 1.6rem; color: var(--warm); margin-bottom: 0.85rem; }
.card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--accent-dk);
  margin-bottom: 0.6rem;
}
.card p { font-size: var(--text-base); color: var(--text-mid); line-height: 1.75; }

/* ===== PRACTICAL ===== */
.practical-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.practical-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  border-right: 3px solid var(--warm);
  box-shadow: var(--shadow-sm);
}
body.ltr .practical-item { border-right: none; border-left: 3px solid var(--warm); }
.practical-item h4 { font-size: 1rem; font-weight: 600; color: var(--accent-dk); margin-bottom: 0.4rem; }
.practical-item p { font-size: var(--text-base); color: var(--text-mid); }

/* ===== BLOG ===== */
.blog-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.blog-card {
  border-left: 3px solid var(--warm-dk);
  border-radius: 0;
  padding: 0.25rem 0 0.25rem 1.25rem;
}
body:not(.ltr) .blog-card {
  border-left: none;
  border-right: 3px solid var(--warm-dk);
  padding: 0.25rem 1.25rem 0.25rem 0;
}
.blog-date { font-size: var(--text-sm); color: var(--text-soft); margin-bottom: 0.6rem; letter-spacing: 0.06em; text-transform: uppercase; }
.blog-card h3 { font-family: 'Rubik', sans-serif; font-size: var(--text-lg); font-weight: 600; color: var(--text); margin-bottom: 0.6rem; line-height: 1.4; }
body.ltr .blog-card h3 { font-family: 'DM Serif Display', serif; }
.blog-card p { font-size: var(--text-base); color: var(--text-mid); margin-bottom: 1.2rem; line-height: 1.75; }
.read-more { font-size: var(--text-base); color: var(--accent); font-weight: 500; cursor: pointer; }
.read-more:hover { color: var(--accent-dk); }

/* ===== BLOG POST PAGE ===== */
.post-meta {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.post-container {
  max-width: 720px;
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.post-body {
  color: var(--text-mid);
  font-size: var(--text-lg);
  line-height: 1.9;
}
.post-body p { margin-bottom: 1.4rem; }
.post-body h2 {
  font-family: 'Rubik', sans-serif;
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text);
  margin: 2.2rem 0 0.8rem;
}
body.ltr .post-body h2 { font-family: 'DM Serif Display', serif; }
.post-body ul {
  padding-right: 1.4rem;
  margin-bottom: 1.4rem;
}
body.ltr .post-body ul { padding-right: 0; padding-left: 1.4rem; }
.post-body ul li { margin-bottom: 0.7rem; list-style: disc; }
.post-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { opacity: 0.75; }
.post-back { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }

/* ===== FORM FEEDBACK ===== */
.form-success {
  color: var(--accent);
  font-size: var(--text-base);
  font-weight: 500;
  margin-top: 0.5rem;
}
.form-error {
  color: var(--warm);
  font-size: var(--text-base);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ===== CONTACT ===== */
.contact-inner {
  max-width: 620px;
  margin: 0 auto;
}
.contact h2 {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  margin-bottom: 0.6rem;
}
body.ltr .contact h2 { font-family: 'DM Serif Display', serif; }
.contact-sub { font-size: var(--text-md); opacity: 0.82; margin-bottom: 2.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: var(--text-sm); font-weight: 500; opacity: 0.88; }
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: var(--text-md);
  color: #fff;
  font-family: inherit;
  resize: vertical;
  transition: border-color var(--transition), background var(--transition);
  direction: inherit;
}
.form-group input[dir="ltr"] { direction: ltr; text-align: left; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-group input:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.18);
}
.phone-prefix-group { display: flex; gap: 0.5rem; }
[dir="rtl"] .phone-prefix-group { direction: ltr; }
.phone-prefix-group input[type="tel"] { flex: 1; }
.phone-flag-select { position: relative; flex-shrink: 0; }
.phone-flag-btn {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  padding: 0.5rem 0.6rem;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  transition: border-color var(--transition), background var(--transition);
}
.phone-flag-btn:hover, .phone-flag-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.18);
}
.phone-flag-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--accent-dk);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  list-style: none;
  margin: 0;
  padding: 0.3rem 0;
  z-index: 100;
  min-width: 7rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.phone-flag-select.open .phone-flag-dropdown { display: block; }
.phone-flag-dropdown li {
  padding: 0.45rem 0.8rem;
  cursor: pointer;
  font-size: var(--text-base);
  color: #fff;
  white-space: nowrap;
  transition: background 0.15s;
}
.phone-flag-dropdown li:hover, .phone-flag-dropdown li.selected { background: rgba(255,255,255,0.15); }
.contact .btn-primary {
  background: var(--warm);
  align-self: flex-start;
}
.contact .btn-primary:hover { background: var(--warm-dk); }

/* ===== THANK YOU PAGE ===== */
.thankyou-container {
  text-align: center;
  padding: 6rem 2rem;
  max-width: 560px;
}
.thankyou-icon {
  width: 72px;
  height: 72px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.thankyou-title {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text);
  margin-bottom: 1rem;
}
body.ltr .thankyou-title { font-family: 'DM Serif Display', serif; }
.thankyou-text {
  font-size: var(--text-lg);
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.55);
  padding: 1.75rem 2.5rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
  max-width: var(--max-w);
  margin: 0 auto;
}
.back-top { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.back-top:hover { color: #fff; }
.footer-link { color: rgba(255,255,255,0.45); font-size: var(--text-sm); transition: color var(--transition); }
.footer-link:hover { color: #fff; }

/* ===== DESKTOP NAV ===== */
@media (min-width: 861px) {
  .burger { display: none; }

  /* LTR: logo(auto) → nav → lang-btn */
  .logo { margin-right: auto; order: 1; }
  .nav   { order: 2; }
  .header-right { order: 3; }

  /* RTL: lang-btn(auto) → nav → logo, so nav+logo sit on the right */
  body:not(.ltr) .header-right { order: 1; margin-right: auto; }
  body:not(.ltr) .nav { order: 2; direction: rtl; }
  body:not(.ltr) .logo { order: 3; margin-right: 0; margin-left: 0; }

  /* Reset the dropdown styles — nav is now inline */
  .nav {
    display: flex !important;
    position: static;
    width: auto;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    z-index: auto;
  }
  .nav ul { flex-direction: row; align-items: center; }
  .nav a {
    padding: 0.42rem 0.8rem;
    border-bottom: none;
    border-radius: 6px;
    font-size: var(--text-base);
    white-space: nowrap;
    text-align: center;
    direction: inherit;
  }
  .nav a:hover { background: var(--bg-light); }
  .nav a.active { background: var(--bg-light); }

  /* Submenu: drop DOWN from the nav item, not to the side */
  .submenu-toggle {
    border-bottom: none;
    border-radius: 6px;
    padding: 0.42rem 0.8rem;
    font-size: var(--text-base);
    white-space: nowrap;
    text-align: center;
    direction: inherit;
  }
  .submenu-toggle::after { content: ' ▾'; }
  .has-submenu.open .submenu-toggle::after { content: ' ▴'; }
  .nav .submenu {
    top: calc(100% + 4px);
    right: auto;
    left: 0;
    margin-right: 0;
  }
  .ltr-nav .submenu { left: 0; right: auto; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .hero { padding: 0.75rem 1.5rem 1rem; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 0.5rem; }
  .hero-text { order: 2 !important; }
  .hero-photo { order: 1 !important; max-height: 155px; }
  .hero h1 { font-size: 2rem; margin-bottom: 0.15rem; }
  .hero-role { margin-bottom: 0.15rem; font-size: var(--text-base); }
  .hero-tagline { font-size: var(--text-base); margin-bottom: 0.5rem; line-height: 1.6; }
  .hero-eyebrow { margin-bottom: 0.1rem; font-size: var(--text-xs); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-block { max-height: 320px; margin: 0 auto; }
  .cards { grid-template-columns: 1fr; }
  .practical-grid { grid-template-columns: 1fr; }
  .blog-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  section:not(.hero):not(.intro-strip) { padding: 4rem 1.5rem; }
}

@media (max-width: 1024px) and (min-width: 861px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .hero-inner { gap: 3rem; }
  .preview-grid { grid-template-columns: 1fr 1fr; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 860px) {
  .preview-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .therapy-block { grid-template-columns: 1fr; gap: 0.75rem; }
  .therapy-num { font-size: 2.5rem; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 2rem; padding-top: 2.5rem; padding-bottom: 3rem; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .about-page, .credentials { padding: 3rem 1.5rem; }
  .home-previews { padding: 3rem 1.5rem; }
  .page-banner + section:not(.hero) { padding-top: 2rem; }
}
