/* ============================================================
   True Self Practice, Main Stylesheet
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
::selection { background: var(--stone-tint); color: var(--cypress); }
:focus-visible { outline: 2px solid var(--ring); outline-offset: 3px; border-radius: 2px; }
#main:focus { outline: none; }
.skip-link { position: fixed; top: -80px; inset-inline-start: 50%; transform: translateX(-50%); z-index: 5000;
  background: var(--cypress); color: var(--white); padding: 0.7em 1.4em; border-radius: 0 0 var(--radius) var(--radius);
  font-size: var(--fs-sm); font-weight: 600; transition: top var(--dur) var(--ease-out); }
.skip-link:focus { top: 0; outline-offset: -4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-3); }
.narrow { max-width: var(--container-narrow); margin-inline: auto; }
.section { padding-block: var(--sp-7); }
.section--tight { padding-block: var(--sp-6); }
/* Alt sections: a barely-there tonal wash + a warm top light, not a flat block */
.bg-alt {
  background:
    radial-gradient(140% 90% at 82% -10%, rgba(255,255,255,0.55), rgba(255,255,255,0) 55%),
    linear-gradient(176deg, #EFEADD 0%, var(--bg-alt) 52%, #E5DFCE 100%);
}
/* Dark sections: lit from above, deepening toward the base for real depth */
.bg-dark {
  background:
    radial-gradient(120% 120% at 50% -20%, #384740 0%, var(--cypress) 52%, #283129 100%);
  color: var(--text-on-dark);
}
.bg-dark .eyebrow { color: var(--stone-tint); }
.bg-dark .eyebrow::before { background: var(--stone-tint); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--white); }
/* Hairline gold seam where tone shifts — an editorial edge, felt not seen */
.bg-alt, .bg-dark { position: relative; }
.bg-alt::before, .bg-dark::before {
  content: ""; position: absolute; inset-inline: 0; top: 0; height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(150,137,122,0.5) 22%, rgba(150,137,122,0.5) 78%, transparent);
}
.bg-dark::before { background: linear-gradient(90deg, transparent, rgba(219,210,195,0.28) 22%, rgba(219,210,195,0.28) 78%, transparent); }
.center { text-align: center; }

/* Fine film grain over the whole page — tactile, editorial, felt not seen */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 2000; pointer-events: none;
  opacity: 0.038; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { body::after { opacity: 0.028; } }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 400; line-height: var(--lh-tight); letter-spacing: -0.005em; color: var(--cypress-ink); }
.display  { font-size: var(--fs-3xl); font-weight: 300; letter-spacing: -0.01em; }
h1, .h1   { font-size: var(--fs-2xl); font-weight: 300; }
h2, .h2   { font-size: var(--fs-xl); font-weight: 400; }
h3, .h3   { font-size: var(--fs-lg); line-height: var(--lh-snug); font-weight: 500; }
.lead     { font-size: var(--fs-md); color: var(--text-soft); line-height: 1.55; font-weight: 300; }
.muted    { color: var(--text-muted); }
p { color: var(--text-soft); }
p + p { margin-top: var(--sp-2); }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] .display, html[lang="ar"] .h1 { font-weight: 500; }

.eyebrow {
  font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--stone-deep);
  display: inline-flex; align-items: center; gap: 0.7em;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--stone); display: inline-block;
  transform-origin: left center; }
html[dir="rtl"] .eyebrow::before { transform-origin: right center; }
/* the little rule draws itself in when its section reveals */
.reveal-ready [data-reveal] .eyebrow::before,
.reveal-ready [data-reveal].eyebrow::before { transform: scaleX(0); transition: transform 0.7s var(--ease-out) 0.12s; }
.reveal-ready [data-reveal].is-in .eyebrow::before,
.reveal-ready [data-reveal].is-in.eyebrow::before { transform: scaleX(1); }
html[lang="ar"] .eyebrow { text-transform: none; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  padding: 0.95em 1.9em; font-size: var(--fs-sm); font-weight: 600; letter-spacing: 0.02em;
  border-radius: var(--radius-pill); text-align: center;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur) var(--ease-out),
              color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
html[lang="ar"] .btn { font-weight: 500; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.99); }
/* slow light sweep across the button on hover */
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform 0.75s var(--ease-out);
}
.btn:hover::after { transform: translateX(130%); }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } .btn::after { display: none; } }
.btn--primary { background: var(--cypress); color: var(--white); }
.btn--primary:hover { background: var(--cypress-2); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--stone); color: var(--white); }
.btn--accent:hover { background: var(--stone-deep); box-shadow: var(--shadow-md); }
.btn--ghost { border: 1px solid var(--cypress); color: var(--cypress); }
.btn--ghost:hover { background: var(--cypress); color: var(--white); }
.bg-dark .btn--primary { background: var(--stone); }
.bg-dark .btn--primary:hover { background: var(--stone-deep); }
.bg-dark .btn--ghost { border-color: rgba(233,228,215,0.42); color: var(--text-on-dark); }
.bg-dark .btn--ghost:hover { background: var(--white); border-color: var(--white); color: var(--cypress); }

.link-arrow { display: inline-flex; align-items: center; gap: 0.5em; font-weight: 600; font-size: var(--fs-sm); color: var(--stone-deep); letter-spacing: 0.01em; }
.link-arrow svg { transition: transform var(--dur) var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }
html[dir="rtl"] .link-arrow svg { transform: scaleX(-1); }
html[dir="rtl"] .link-arrow:hover svg { transform: scaleX(-1) translateX(4px); }

/* ---------- Navigation ---------- */
.nav { position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center; transition: background var(--dur), box-shadow var(--dur), border-color var(--dur), height var(--dur), transform 0.5s var(--ease-out);
  border-block-end: 1px solid transparent; }
.nav--hidden { transform: translateY(-100%); }
body.menu-open .nav--hidden { transform: none; }
@media (prefers-reduced-motion: reduce) { .nav--hidden { transform: none; } }
.nav--scrolled { background: rgba(244,240,231,0.85); backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px); border-block-end-color: var(--border); }
.nav__inner { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-3);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); }
.brand { display: inline-flex; align-items: center; margin-inline-end: var(--sp-5); padding-inline: 0.2em; flex: none; }
.brand img { width: auto; }
.brand .b-en { height: 38px; }
.brand .b-ar { display: none; height: 30px; }
html[lang="ar"] .brand .b-en { display: none; }
html[lang="ar"] .brand .b-ar { display: block; }
.nav__links { display: flex; align-items: center; gap: var(--sp-4); }
.nav__link { font-size: var(--fs-sm); font-weight: 500; color: var(--text-soft); position: relative; padding-block: 0.4em; white-space: nowrap; }
.nav__link::after { content:""; position:absolute; inset-inline-start:0; inset-block-end:0; height:1px; width:0; background: var(--stone); transition: width var(--dur) var(--ease-out); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: var(--sp-2); }

/* Ambient ocean sound — sticky floating control (generative, opt-in) */
/* Noomo-style: translucent pill, waveform above, SOUND ON/OFF caps below */
.sound-float { position: fixed; z-index: 300; inset-block-end: var(--sp-4); inset-inline-start: var(--sp-4);
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.5em; padding: 0.7em 1.15em;
  background: rgba(46,58,51,0.82); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  color: var(--text-on-dark); border: 1px solid rgba(233,228,215,0.2); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); cursor: pointer;
  transition: transform var(--dur) var(--ease-out), background var(--dur), box-shadow var(--dur); }
.sound-float:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.sound-float.is-on { background: rgba(46,58,51,0.94); border-color: rgba(199,172,131,0.45); }
.sound-float__wave { display: flex; align-items: center; gap: 2.5px; height: 17px; color: #C7AC83; }
.sound-float__wave i { width: 2px; height: 4px; border-radius: 1px; background: currentColor; opacity: 0.5;
  animation: wave 1.5s var(--ease-in-out) infinite; animation-play-state: paused; }
.sound-float.is-on .sound-float__wave i { animation-play-state: running; opacity: 1; }
.sound-float.is-on .sound-float__wave { color: #C7AC83; }
.sound-float__wave i:nth-child(1){ animation-delay:-1.10s } .sound-float__wave i:nth-child(2){ animation-delay:-0.35s }
.sound-float__wave i:nth-child(3){ animation-delay:-0.90s } .sound-float__wave i:nth-child(4){ animation-delay:-0.15s }
.sound-float__wave i:nth-child(5){ animation-delay:-1.30s } .sound-float__wave i:nth-child(6){ animation-delay:-0.55s }
.sound-float__wave i:nth-child(7){ animation-delay:-1.00s } .sound-float__wave i:nth-child(8){ animation-delay:-0.30s }
.sound-float__wave i:nth-child(9){ animation-delay:-0.75s }
@keyframes wave { 0%,100%{ height: 3px; } 50%{ height: 17px; } }
.sound-float__label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; line-height: 1;
  color: rgba(233,228,215,0.85); }
html[lang="ar"] .sound-float__label { letter-spacing: 0; font-size: 0.72rem; }
@media (max-width: 640px) { .sound-float { inset-inline-start: var(--sp-2); inset-block-end: var(--sp-2); padding: 0.65em 0.9em; } }
@media (prefers-reduced-motion: reduce) { .sound-float__wave i { animation: none !important; height: 8px; } .sound-float:hover { transform: none; } }

/* Scroll progress line */
.scroll-progress { position: fixed; inset-block-start: 0; inset-inline-start: 0; height: 2px; width: 100%;
  transform: scaleX(var(--sp, 0)); transform-origin: 0 50%; z-index: 250; pointer-events: none;
  background: linear-gradient(90deg, var(--cypress), var(--stone) 55%, var(--stone-tint)); }
html[dir="rtl"] .scroll-progress { transform-origin: 100% 50%; }

.lang-toggle { display: inline-flex; align-items: center; gap: 0.4em; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.06em; border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 0.5em 0.85em;
  color: var(--text-soft); transition: border-color var(--dur), color var(--dur), background var(--dur); }
.lang-toggle:hover { border-color: var(--stone); color: var(--stone-deep); }
.lang-toggle .sep { opacity: 0.4; }
.lang-toggle .ar { font-family: var(--font-ar-body); }

.nav__burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav__burger span { display:block; width:22px; height:1.6px; background: var(--cypress); position: relative; transition: background var(--dur); }
.nav__burger span::before, .nav__burger span::after { content:""; position:absolute; inset-inline-start:0; width:22px; height:1.6px; background: var(--cypress); transition: transform var(--dur) var(--ease-out); }
.nav__burger span::before { top:-7px; } .nav__burger span::after { top:7px; }
body.menu-open .nav__burger span { background: transparent; }
body.menu-open .nav__burger span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav__burger span::after  { transform: translateY(-7px) rotate(-45deg); }

.nav__panel { position: fixed; inset: 0; z-index: 90;
  background: radial-gradient(130% 80% at 85% 0%, var(--cream) 0%, var(--cream-2) 75%);
  display: flex; flex-direction: column; justify-content: center; gap: 0;
  padding: calc(var(--nav-h) + var(--sp-4)) var(--sp-4) var(--sp-5);
  transform: translateY(-100%); transition: transform var(--dur-slow) var(--ease-in-out); visibility: hidden; }
.nav__panel a:not(.btn) { font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 300; color: var(--cypress-ink);
  padding-block: 0.7em; border-block-end: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.nav__panel a:not(.btn)::after { content: "\2197"; font-size: 0.55em; color: var(--stone); opacity: 0.55; }
.nav__panel .btn { margin-block-start: var(--sp-4); width: 100%; }
body.menu-open .nav__panel { transform: translateY(0); visibility: visible; }
/* staggered entrance for the menu items */
body.menu-open .nav__panel a { animation: menuIn 0.5s var(--ease-out) both; }
.nav__panel a:nth-child(1){ animation-delay: .06s } .nav__panel a:nth-child(2){ animation-delay: .12s }
.nav__panel a:nth-child(3){ animation-delay: .18s } .nav__panel a:nth-child(4){ animation-delay: .24s }
.nav__panel a:nth-child(5){ animation-delay: .30s } .nav__panel a:nth-child(6){ animation-delay: .36s }
.nav__panel a:nth-child(7){ animation-delay: .42s }
@keyframes menuIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { body.menu-open .nav__panel a { animation: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-block-start: var(--nav-h); overflow: hidden; }

/* Full-bleed video hero */
.hero--video { min-height: 100svh; padding-block: calc(var(--nav-h) + var(--sp-4)) var(--sp-5); }
.hero--video h1 { font-size: clamp(2rem, 1.35rem + 2.5vw, 3.5rem); }
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--cream); }
.hero__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__scrim { position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(244,240,231,0.96) 0%, rgba(244,240,231,0.84) 34%, rgba(244,240,231,0.46) 64%, rgba(244,240,231,0.18) 100%),
    linear-gradient(to bottom, rgba(244,240,231,0) 70%, rgba(244,240,231,0.85) 100%); }
.hero--video .container { position: relative; z-index: 1; }
.hero--video .hero__content { max-width: 30rem; }
.hero__creds { margin-block-start: var(--sp-2); font-size: var(--fs-xs); color: var(--text-muted);
  display: flex; align-items: center; gap: 0.6em; flex-wrap: wrap; letter-spacing: 0.02em; }
@media (prefers-reduced-motion: reduce) { .hero__video { display: none; } }
.hero__grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: var(--sp-6); align-items: center; width: 100%; }
.hero__content { max-width: 44ch; }
.hero h1 { margin-block: var(--sp-3) var(--sp-3); }
.hero h1 .accent { color: var(--stone-deep); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-block-start: var(--sp-4); }
.hero__trust { margin-block-start: var(--sp-4); font-size: var(--fs-sm); color: var(--text-muted); display: flex; align-items: center; gap: 0.6em; flex-wrap: wrap; }
.hero__trust b { color: var(--cypress-ink); font-weight: 600; }
.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--stone); display:inline-block; }

.hero__visual { position: relative; aspect-ratio: 1/1; border-radius: 50%; overflow: visible;
  background: transparent; max-width: 460px; margin-inline: auto; width: 100%; }
.hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
  border-radius: 50%; box-shadow: var(--shadow-lg); }
.hero__badge { position: absolute; inset-block-end: 1%; inset-inline: 0; margin-inline: auto; width: max-content;
  background: rgba(244,240,231,0.96); backdrop-filter: blur(6px); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.7em 1.05em; box-shadow: var(--shadow-md); max-width: 80%; text-align: center; }
.hero__badge .k { font-family: var(--font-display); font-size: 1.05rem; color: var(--cypress-ink); line-height: 1.2; font-weight: 500; }
.hero__badge .l { font-size: var(--fs-xs); color: var(--text-muted); letter-spacing: 0.03em; margin-top: 0.15em; }

.hero__arc { position: absolute; z-index: -1; inset-block-start: -14%; inset-inline-end: -10%; width: 60vw; max-width: 780px; aspect-ratio: 1; pointer-events: none; opacity: 0.55; }
.hero__arc circle { fill: none; stroke: var(--stone); stroke-width: 0.5; opacity: 0.5; }

/* ---------- Affiliates strip ---------- */
.affiliates { border-block: 1px solid var(--border); background: var(--bg); }
.affiliates__inner { display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); padding-block: var(--sp-5); }
.affiliates__label { font-size: var(--fs-xs); letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--text-muted); }
html[lang="ar"] .affiliates__label { text-transform: none; letter-spacing: 0; }
.affiliates__logos { display: flex; align-items: center; justify-content: center; gap: var(--sp-4) var(--sp-5); flex-wrap: wrap; max-width: 1000px; }
.affiliates__logos img { height: 34px; width: auto; max-width: 130px; object-fit: contain;
  filter: grayscale(1) sepia(0.12) opacity(0.48); transition: filter var(--dur-slow) var(--ease-out), transform var(--dur) var(--ease-out); }
.affiliates__logos img:hover { filter: grayscale(0) sepia(0) opacity(1); transform: translateY(-3px) scale(1.03); }

/* ---------- Statement / philosophy ---------- */
.statement .quote { font-family: var(--font-display); font-weight: 300; font-size: var(--fs-xl); line-height: 1.32; color: var(--cypress-ink); letter-spacing: -0.01em; }
html[lang="ar"] .statement .quote { font-weight: 500; }
.statement .quote .hl { color: var(--stone-deep); }

/* ---------- Feature cards (Who we work with) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-3); transition: transform var(--dur) var(--ease-out), box-shadow var(--dur), border-color var(--dur); position: relative; overflow: hidden; }
.card::before { content:""; position:absolute; inset-block-start:0; inset-inline-start:0; width:100%; height:2px; background: var(--stone); transform: scaleX(0); transform-origin: inline-start; transition: transform var(--dur) var(--ease-out); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--stone-tint); }
.card:hover::before { transform: scaleX(1); }
.card__icon { width: 42px; height: 42px; color: var(--stone-deep); margin-block-end: var(--sp-3); }
.card__icon svg { width: 100%; height: 100%; }
.card h3 { font-size: var(--fs-md); margin-block-end: var(--sp-1); font-weight: 500; }
.card p { font-size: var(--fs-sm); color: var(--text-muted); }

/* Photo cards (Who We Work With) */
.card--photo { padding: 0; overflow: hidden; }
.card--photo .card__media { aspect-ratio: 1/1; overflow: hidden; }        /* square = full scene (zoomed out) */
.card--photo .card__media img { width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out); }
.card--photo:hover .card__media img { transform: scale(1.045); }
.card--photo .card__body { padding: var(--sp-4) var(--sp-3); }
/* all three framed consistently: full square, view aligned toward the top */
.card--photo .card__media img { object-position: center 40%; }

/* Who We Work With: editorial, image-led trio (borderless, portrait, indexed, staggered) */
.who-cards { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5) var(--sp-4); counter-reset: who; align-items: start; }
.who-cards .card { background: transparent; border: none; box-shadow: none; border-radius: 0; overflow: visible; }
.who-cards .card::before { display: none; }
.who-cards .card:hover { transform: none; box-shadow: none; border-color: transparent; }
.who-cards .card--photo .card__media { aspect-ratio: 4 / 5; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); }
.who-cards .card--photo .card__media img { object-position: center 42%;
  transition: transform 1.1s var(--ease-out); }
.who-cards .card--photo:hover .card__media img { transform: scale(1.06); }
.who-cards .card__body { counter-increment: who; padding: var(--sp-3) 0 0; }
.who-cards .card__body h3 { font-weight: 500; }
.who-cards .card__body h3::before { content: "0" counter(who);
  display: block; font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: var(--tracking-wide); color: var(--stone); margin-block-end: 0.5em; }
html[lang="ar"] .who-cards .card__body h3::before { letter-spacing: 0; content: "٠" counter(who, arabic-indic); }
.who-cards .card__body p { color: var(--text-muted); }
/* gentle magazine stagger — the middle card dips */
.who-cards .card:nth-child(2) { margin-block-start: var(--sp-6); }

/* ---------- Services list ---------- */
.srv { display: grid; grid-template-columns: 1fr; gap: 0; }
.srv__row { display: grid; grid-template-columns: 0.9fr 1.6fr auto; gap: var(--sp-4); align-items: start;
  padding-block: var(--sp-4); border-block-start: 1px solid var(--border); }
.srv__row:last-child { border-block-end: 1px solid var(--border); }
.srv__meta { display: flex; flex-direction: column; gap: 0.4em; }
.srv__row h3 { font-size: var(--fs-md); font-weight: 500; }
.srv__tag { font-size: var(--fs-xs); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--stone-deep); }
html[lang="ar"] .srv__tag { text-transform: none; }
.srv__row p { font-size: var(--fs-sm); color: var(--text-muted); }
.srv__action { align-self: center; }

/* Service rows with an image thumbnail */
.srv__row--photo { grid-template-columns: 168px 1fr; align-items: center; gap: var(--sp-4); }
.srv__thumb { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.srv__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.srv__row--photo:hover .srv__thumb:not(.srv__thumb--icon) img { transform: scale(1.05); }

/* Gold icons (Services) — transparent, animated */
.srv__thumb--icon { background: transparent; border: none; box-shadow: none; aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center; overflow: visible; }
.srv__thumb--icon img { width: auto; height: auto; max-width: 86%; max-height: 90%; object-fit: contain;
  animation: iconFloat 5.5s var(--ease-in-out) infinite, iconGlint 3.6s var(--ease-in-out) infinite; }
.srv__row--photo:hover .srv__thumb--icon img { animation-play-state: paused; }
@keyframes iconFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-7px) rotate(-0.6deg); } }
@keyframes iconGlint { 0%, 100% { filter: brightness(1) saturate(1); } 50% { filter: brightness(1.14) saturate(1.18); } }
.srv .srv__row:nth-of-type(2) .srv__thumb--icon img { animation-delay: -1.6s, -1.1s; }
.srv .srv__row:nth-of-type(3) .srv__thumb--icon img { animation-delay: -3.1s, -2.2s; }
@media (prefers-reduced-motion: reduce) { .srv__thumb--icon img { animation: none; } }
.srv__content { display: grid; grid-template-columns: 1.5fr auto; gap: var(--sp-3) var(--sp-4); align-items: center; }
.srv__content .srv__meta { grid-row: 1; }
.srv__content > p { grid-column: 1; font-size: var(--fs-sm); color: var(--text-muted); }
.srv__content .srv__action { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
@media (max-width: 980px) {
  .srv__row--photo { grid-template-columns: 1fr; }
  .srv__thumb { max-width: 160px; }
  .srv__content { grid-template-columns: 1fr; gap: var(--sp-2); }
  .srv__content .srv__action { grid-column: 1; grid-row: auto; align-self: start; }
}

/* ---------- Team cards ---------- */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
.tcard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: transform var(--dur) var(--ease-out), box-shadow var(--dur); }
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tcard__photo { background: transparent; overflow: visible; padding: var(--sp-4) var(--sp-4) 0; display: flex; justify-content: center; }
.tcard__photo img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; object-position: center 18%; }
.tcard__body { padding: var(--sp-3) var(--sp-4) var(--sp-4); display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; }
.tcard__body h3 { font-size: var(--fs-lg); font-weight: 500; }
.tcard__title { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.04em; color: var(--stone-deep); margin-top: 0.5em; }
.tcard__role { font-size: var(--fs-sm); color: var(--text-muted); margin-top: 0.6em; }
.tags { display: flex; flex-wrap: wrap; gap: 0.55em; margin-block: var(--sp-3); }
.tcard .tags { justify-content: center; }
/* Ghost pills — reads curated, not boxy */
.tag, .chips li {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-size: var(--fs-xs); font-weight: 500; line-height: 1; letter-spacing: 0.015em;
  color: var(--text-muted); background: transparent;
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 0.62em 1.05em;
  transition: color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out),
              background var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.tag:hover, .chips li:hover {
  color: var(--cypress-ink); border-color: var(--stone); background: var(--surface);
  transform: translateY(-2px); box-shadow: var(--shadow-sm);
}
.tcard .btn { margin-top: auto; align-self: center; }

/* ---------- Meet the Team: alternating editorial profiles ---------- */
.team2 { display: grid; gap: var(--sp-7); max-width: 1000px; margin-inline: auto; }
.tmember { display: grid; grid-template-columns: 300px 1fr; gap: var(--sp-6); align-items: center; }
.tmember--rev { grid-template-columns: 1fr 300px; }
.tmember--rev .tmember__photo { order: 2; }
.tmember__photo { position: relative; justify-self: center; width: 100%; max-width: 300px; }
.tmember__photo::before { content: ""; position: absolute; inset: -11% -9%; z-index: -1; pointer-events: none;
  background: radial-gradient(circle at 50% 44%, rgba(150,137,122,0.22), rgba(150,137,122,0) 64%); }
.tmember__photo img { width: 100%; height: auto; display: block;
  filter: drop-shadow(0 20px 42px rgba(38,48,42,0.18));
  transition: transform var(--dur-slow) var(--ease-out), filter var(--dur) var(--ease-out); }
.tmember:hover .tmember__photo img { transform: translateY(-5px) scale(1.015);
  filter: drop-shadow(0 28px 54px rgba(38,48,42,0.24)); }
.tmember__idx { display: block; font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: var(--tracking-wide); color: var(--stone); margin-block-end: 0.7em; }
html[lang="ar"] .tmember__idx { letter-spacing: 0; }
.tmember__name { font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.5rem); font-weight: 300; letter-spacing: -0.012em; line-height: 1.08; }
html[lang="ar"] .tmember__name { font-weight: 500; }
.tmember__title { font-size: var(--fs-sm); font-weight: 600; letter-spacing: 0.03em; color: var(--stone-deep); margin-block-start: 0.55em; }
.tmember__role { font-size: var(--fs-base); color: var(--text-soft); margin-block-start: 0.8em; max-width: 52ch; line-height: 1.6; }
.tmember .tags { margin-block-start: var(--sp-3); }
.tmember .link-arrow { margin-block-start: var(--sp-3); }
@media (prefers-reduced-motion: reduce) { .tmember:hover .tmember__photo img { transform: none; } }
@media (max-width: 768px) {
  .team2 { gap: var(--sp-6); }
  .tmember, .tmember--rev { grid-template-columns: 1fr; gap: var(--sp-3); text-align: center; justify-items: center; }
  .tmember--rev .tmember__photo { order: 0; }
  .tmember__photo { max-width: 230px; }
  .tmember__role { max-width: 100%; }
  .tmember .tags { justify-content: center; }
  .tmember .link-arrow { justify-content: center; }
}

/* ---------- Profile cards (Meet the Team) ---------- */
.pcards { display: flex; flex-direction: column; gap: var(--sp-7); }
.pcard { display: flex; align-items: center; }
.pcard--rev { flex-direction: row-reverse; }
.pcard__media { width: 380px; height: 380px; flex: none; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--stone); box-shadow: var(--shadow-md); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 16%; }
.pcard__body { flex: 1; position: relative; z-index: 2; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: var(--sp-5); margin-inline-start: -72px; }
.pcard--rev .pcard__body { margin-inline-start: 0; margin-inline-end: -72px; }
.pcard__name { font-size: var(--fs-xl); font-weight: 400; }
.pcard__title { font-size: var(--fs-sm); font-weight: 600; letter-spacing: 0.02em; color: var(--stone-deep); margin-top: 0.5em; }
.pcard__desc { color: var(--text-soft); margin-top: var(--sp-2); font-size: var(--fs-base); }
.pcard__body .tags { margin-block: var(--sp-3); }
.pcard__actions { display: flex; align-items: center; gap: 0.7em; margin-top: var(--sp-2); flex-wrap: wrap; }
.pcard__actions .btn { margin-inline-end: 0.3em; }
.picon { width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--cypress); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform var(--dur) var(--ease-out), background var(--dur) var(--ease-out); }
.picon svg { width: 19px; height: 19px; }
.picon:hover { background: var(--cypress-2); transform: translateY(-3px); }
@media (max-width: 900px) {
  .pcard, .pcard--rev { flex-direction: column; }
  .pcard__media { width: 100%; max-width: 340px; height: auto; aspect-ratio: 1/1; margin-inline: auto; }
  .pcard__body { margin: -48px auto 0 !important; max-width: 92%; text-align: center; }
  .pcard__body .tags, .pcard__actions { justify-content: center; }
}

/* ---------- About / split ---------- */
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--sp-6); align-items: center; }
.split__photo { aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--stone); box-shadow: var(--shadow-md); }
.split__photo img { width:100%; height:100%; object-fit: cover; }
.credentials { display: flex; flex-wrap: wrap; gap: var(--sp-1) var(--sp-3); margin-block-start: var(--sp-3); list-style: none; padding: 0; }
.credentials li { font-size: var(--fs-sm); color: var(--text-soft); display: flex; align-items: center; gap: 0.5em; }
.credentials li::before { content:""; width:5px; height:5px; background: var(--stone); border-radius:50%; flex:none; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-block-end: 1px solid var(--border); }
.faq__item:first-child { border-block-start: 1px solid var(--border); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  padding-block: var(--sp-3); text-align: start; font-family: var(--font-display); font-size: var(--fs-md); font-weight: 500; color: var(--cypress-ink); }
.faq__q .ic { width: 22px; height: 22px; flex: none; position: relative; transition: transform var(--dur) var(--ease-out); color: var(--stone-deep); }
.faq__item[open] .faq__q .ic { transform: rotate(45deg); }
.faq__q::-webkit-details-marker { display: none; }
.faq__a { overflow: hidden; }
.faq__a p { padding-block-end: var(--sp-3); color: var(--text-soft); font-size: var(--fs-base); max-width: 68ch; }
details.faq__item summary { list-style: none; cursor: pointer; }
details.faq__item summary::-webkit-details-marker { display: none; }

/* ---------- FAQ (tabbed accordion) ---------- */
.faq2 { max-width: 820px; margin-inline: auto; }
.faq2__tabs { display: flex; gap: 0.6em; justify-content: center; flex-wrap: wrap; margin-block-end: var(--sp-4); }
.faq2__tab { padding: 0.55em 1.3em; border-radius: var(--radius-pill); border: 1px solid var(--border);
  background: transparent; color: var(--text-soft); font-weight: 600; font-size: var(--fs-sm); cursor: pointer;
  transition: background var(--dur) var(--ease-out), color var(--dur), border-color var(--dur); }
html[lang="ar"] .faq2__tab { font-weight: 500; }
.faq2__tab:hover { border-color: var(--stone); color: var(--stone-deep); }
.faq2__tab.is-active { background: var(--cypress); color: var(--white); border-color: var(--cypress); }
.faq2__panel { display: none; }
.faq2__panel.is-active { display: block; animation: faqFade var(--dur) var(--ease-out); }
/* Services tabs (reuse the tab visual, left-aligned to the section) */
.srv-tabs .faq2__tabs { justify-content: flex-start; margin-block-end: var(--sp-4); }
.srv-panel { display: none; }
.srv-panel.is-active { display: block; animation: faqFade var(--dur) var(--ease-out); }
@keyframes faqFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.faq2__item { border-block-end: 1px solid var(--border); }
.faq2__item:first-child { border-block-start: 1px solid var(--border); }
.faq2__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  padding-block: var(--sp-3); text-align: start; font-family: var(--font-display); font-size: var(--fs-md);
  font-weight: 500; color: var(--cypress-ink); }
.faq2__ic { width: 34px; height: 34px; flex: none; border-radius: 50%; border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center; color: var(--stone-deep);
  transition: transform var(--dur) var(--ease-out), background var(--dur), color var(--dur), border-color var(--dur); }
.faq2__ic svg { width: 16px; height: 16px; }
.faq2__item.is-open .faq2__ic { transform: rotate(135deg); background: var(--cypress); border-color: var(--cypress); color: var(--white); }
.faq2__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur) var(--ease-out); }
.faq2__item.is-open .faq2__a { grid-template-rows: 1fr; }
.faq2__a-in { overflow: hidden; }
.faq2__a-in p { padding-block-end: var(--sp-3); color: var(--text-soft); max-width: 68ch; }
.faq2__empty { text-align: center; color: var(--text-muted); padding-block: var(--sp-5); max-width: 60ch; margin-inline: auto; }
.faq2__more { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap;
  margin-block-start: var(--sp-5); padding: var(--sp-4) var(--sp-3) var(--sp-4) var(--sp-5);
  background: linear-gradient(120deg, var(--surface), var(--cream-2));
  border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.faq2__more > span { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 400; color: var(--cypress-ink); }
/* clean solid CTA pill with a slow sheen + arrow lift (no more sketchy dashes) */
.faq2__morebtn { position: relative; overflow: hidden; isolation: isolate; display: inline-flex; align-items: center; gap: 0.65em;
  padding: 0.95em 1.6em; border: 0; border-radius: var(--radius-pill); background: var(--cypress); color: var(--white);
  font-weight: 600; font-size: var(--fs-sm); letter-spacing: 0.01em;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), background var(--dur); }
.faq2__morebtn:hover { transform: translateY(-2px); background: var(--cypress-2); box-shadow: var(--shadow-md); }
.faq2__morebtn::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform 0.75s var(--ease-out); }
.faq2__morebtn:hover::after { transform: translateX(130%); }
.faq2__morebtn-ic { display: inline-flex; align-items: center; color: currentColor; transition: transform var(--dur) var(--ease-out); }
.faq2__morebtn-ic svg { width: 16px; height: 16px; }
.faq2__morebtn:hover .faq2__morebtn-ic { transform: translate(3px, -3px); }
html[dir="rtl"] .faq2__morebtn-ic svg { transform: scaleX(-1); }
@media (prefers-reduced-motion: reduce) { .faq2__morebtn:hover { transform: none; } .faq2__morebtn::after { display: none; } }
html[dir="rtl"] .faq2__morebtn-ic svg { transform: scaleX(-1); }
@media (prefers-reduced-motion: reduce) { .faq2__panel.is-active, .faq2__a { animation: none; transition: none; } }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band p { max-width: 54ch; margin: var(--sp-3) auto var(--sp-4); color: rgba(233,228,215,0.8); }

/* ---------- Footer ---------- */
.footer { position: relative; overflow: hidden;
  background: radial-gradient(130% 150% at 12% 0%, #35443C 0%, var(--cypress) 52%, #283029 100%);
  color: var(--text-on-dark); padding-block: var(--sp-7) var(--sp-4); }
.footer::before { content: ""; position: absolute; inset-inline: 0; inset-block-start: 0; height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(199,172,131,0.5) 22%, rgba(199,172,131,0.5) 78%, transparent); }
/* Boutique sign-off band */
.footer__top { margin-block-end: var(--sp-6); padding-block-end: var(--sp-5); border-block-end: 1px solid rgba(233,228,215,0.12); }
.footer__eyebrow { display: inline-flex; align-items: center; gap: 0.7em;
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: var(--tracking-wider); text-transform: uppercase; color: #C7AC83; }
.footer__eyebrow::before { content: ""; width: 26px; height: 1px; background: #C7AC83; opacity: 0.65; }
html[lang="ar"] .footer__eyebrow { text-transform: none; letter-spacing: 0; }
.footer__top .footer__statement { font-family: var(--font-display); font-weight: 300; font-size: var(--fs-lg); line-height: 1.28;
  color: var(--white); margin-block-start: var(--sp-2); max-width: 24ch; }
html[lang="ar"] .footer__top .footer__statement { font-weight: 500; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.1fr; gap: var(--sp-6); }
.footer__brand img { height: 28px; margin-block-end: var(--sp-3); filter: brightness(0) invert(1); opacity: 0.92; }
.footer__brand .b-en { height: 44px; }
.footer__brand .b-ar { display: none; height: 34px; }
html[lang="ar"] .footer__brand .b-en { display: none; }
html[lang="ar"] .footer__brand .b-ar { display: block; }
.footer__brand > p { max-width: 42ch; }
.footer__brand .footer__trust { font-size: var(--fs-xs); letter-spacing: 0.03em; line-height: 1.7;
  color: rgba(233,228,215,0.5); margin-block-start: 0.9rem; }
.footer h4 { font-family: var(--font-body); font-size: var(--fs-xs); letter-spacing: var(--tracking-wider); text-transform: uppercase; color: #C7AC83; margin-block-end: var(--sp-3); font-weight: 700; }
html[lang="ar"] .footer h4 { text-transform: none; letter-spacing: 0; }
.footer a, .footer p { color: rgba(233,228,215,0.72); font-size: var(--fs-sm); display: block; padding-block: 0.32em; transition: color var(--dur); }
.footer__grid a { width: fit-content; }
.footer a:hover { color: var(--white); }
.footer__social { display: flex; gap: 0.65em; margin-block-start: var(--sp-4); }
.footer__social a { width: 42px; height: 42px; padding: 0; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(233,228,215,0.22); border-radius: 50%; color: var(--stone-tint);
  transition: color var(--dur), border-color var(--dur), background var(--dur), transform var(--dur) var(--ease-out); }
.footer__social a:hover { color: var(--cypress); background: #C7AC83; border-color: #C7AC83; transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; display: block; }
.footer__bottom { margin-block-start: var(--sp-6); padding-block-start: var(--sp-4); border-block-start: 1px solid rgba(233,228,215,0.16);
  display: flex; justify-content: space-between; gap: var(--sp-2); flex-wrap: wrap; font-size: var(--fs-xs); color: rgba(233,228,215,0.52); }
.footer__bottom a { display: inline; font-size: var(--fs-xs); color: rgba(233,228,215,0.6); }
.footer__bottom a:hover { color: var(--white); }
.footer__note { margin-block-start: var(--sp-3); font-size: var(--fs-xs); color: rgba(233,228,215,0.5); max-width: 60ch; }
/* desktop: social is its own grid cell now (so it can move below the links on mobile) —
   keep it tucked directly under the brand without the large row gap */
@media (min-width: 641px) {
  .footer__grid { row-gap: 0; }
  .footer__social { grid-column: 1; margin-block-start: var(--sp-4); }
}

/* ---------- Inner page hero ---------- */
.page-hero { padding-block: calc(var(--nav-h) + var(--sp-6)) var(--sp-5); position: relative; overflow: hidden; }
.page-hero .eyebrow { margin-block-end: var(--sp-3); }
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { max-width: 56ch; margin-block-start: var(--sp-3); }
/* soft warm aura-glow in the corner (replaced the geometric arcs) */
.page-hero::after { content: ""; position: absolute; z-index: 0; inset-block-start: -22%; inset-inline-end: -10%;
  width: 46vw; max-width: 640px; aspect-ratio: 1; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(150,137,122,0.16), rgba(199,172,131,0.06) 40%, rgba(150,137,122,0) 66%); }
.page-hero .container { position: relative; z-index: 1; }

/* ---------- Therapist profile ---------- */
.profile { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: var(--sp-6); align-items: start; }
.profile + .profile { margin-block-start: var(--sp-7); padding-block-start: var(--sp-7); border-block-start: 1px solid var(--border); }
.profile__media { position: sticky; top: calc(var(--nav-h) + var(--sp-3)); }
/* Photos are already circular Stone-#96897A vignettes with transparent corners — show as-is */
.profile__photo { background: transparent; max-width: 380px; }
.profile__photo img { width: 100%; height: auto; display: block; }
.profile__name { font-size: var(--fs-xl); font-weight: 400; }
.profile__title { font-size: var(--fs-sm); font-weight: 600; letter-spacing: 0.03em; color: var(--stone-deep); margin-top: 0.4em; }
.profile__license { font-size: var(--fs-sm); color: var(--text-muted); margin-top: 0.3em; line-height: 1.5; }
.profile__intro { margin-block: var(--sp-3); }
.profile__bio p { margin-block-start: var(--sp-2); }
.profile__creds { margin-block: var(--sp-4) var(--sp-4); }
.profile__creds h4 { font-family: var(--font-body); font-size: var(--fs-xs); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--stone-deep); margin-block-end: var(--sp-2); }
html[lang="ar"] .profile__creds h4 { text-transform: none; }
/* Therapists page: portraits with depth, a soft halo, and a gentle hover lift */
.profile__photo { position: relative; }
.profile__photo::before { content: ""; position: absolute; inset: -12% -9%; z-index: -1; pointer-events: none;
  background: radial-gradient(circle at 50% 44%, rgba(150,137,122,0.18), rgba(150,137,122,0) 63%); }
.profile__photo img { filter: drop-shadow(0 22px 44px rgba(38,48,42,0.18));
  transition: transform var(--dur-slow) var(--ease-out), filter var(--dur) var(--ease-out); }
.profile__media:hover .profile__photo img { transform: translateY(-5px) scale(1.012);
  filter: drop-shadow(0 30px 58px rgba(38,48,42,0.24)); }
@media (prefers-reduced-motion: reduce) { .profile__media:hover .profile__photo img { transform: none; } }
.profile__name { font-size: clamp(1.6rem, 1.15rem + 1.5vw, 2.35rem); font-weight: 300; letter-spacing: -0.012em; }
html[lang="ar"] .profile__name { font-weight: 500; }
.chips { display: flex; flex-wrap: wrap; gap: 0.55em; list-style: none; padding: 0; }
/* .chips li is styled together with .tag above */

/* ---------- Approach modalities ---------- */
.modality { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-4); padding-block: var(--sp-5); border-block-start: 1px solid var(--border); }
.modality:last-of-type { border-block-end: 1px solid var(--border); }
.modality__num { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 300; color: var(--stone); line-height: 1; }
.modality h3 { font-size: var(--fs-lg); font-weight: 500; margin-block-end: var(--sp-2); }
.modality p { max-width: 74ch; }
.callout { position: relative; overflow: hidden; margin-block-start: var(--sp-5);
  background: linear-gradient(120deg, var(--surface), var(--cream-2) 92%);
  border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: var(--sp-4) var(--sp-4) var(--sp-4) var(--sp-5); }
.callout::before { content: ""; position: absolute; inset-inline-start: 0; inset-block: 0; width: 3px;
  background: linear-gradient(180deg, var(--stone), var(--stone-deep)); }
.callout p { color: var(--text-soft); font-size: var(--fs-base); line-height: 1.7; }

/* ---------- Specialties focus grid ---------- */
.focus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5) var(--sp-6); }
.focus__label { font-family: var(--font-display); font-size: var(--fs-md); font-weight: 500; color: var(--cypress-ink); margin-block-end: var(--sp-1); display: flex; align-items: baseline; gap: 0.6em; }
.focus__label .n { font-size: var(--fs-sm); color: var(--stone); }
.focus__item p { color: var(--text-muted); }
.focus__item { border-block-start: 1px solid var(--border); padding-block-start: var(--sp-3); }

/* ---------- Contact methods ---------- */
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.cmethod { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--sp-4) var(--sp-3);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur); display: block; }
.cmethod:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cmethod__ic { width: 34px; height: 34px; color: var(--stone-deep); margin-block-end: var(--sp-2); }
.cmethod__ic svg { width: 100%; height: 100%; }
.cmethod h3 { font-size: var(--fs-md); font-weight: 500; margin-block-end: 0.3em; }
.cmethod p { font-size: var(--fs-sm); color: var(--text-muted); }
.cmethod .val { color: var(--stone-deep); font-weight: 600; font-size: var(--fs-sm); margin-block-start: 0.4em; word-break: break-word;
  direction: ltr; unicode-bidi: bidi-override; }
/* in Arabic, keep the number reading correctly (LTR digits) but aligned to the card's start (right) */
html[dir="rtl"] .cmethod { text-align: right; }
html[dir="rtl"] .cmethod .val { text-align: right; }
.contact-note { position: relative; overflow: hidden; display: flex; gap: 0.95em; align-items: center;
  margin-block-start: var(--sp-4); padding: var(--sp-4) var(--sp-4) var(--sp-4) var(--sp-5);
  background: linear-gradient(120deg, var(--surface), var(--cream-2) 92%);
  border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.7; }
.contact-note::before { content: ""; position: absolute; inset-inline-start: 0; inset-block: 0; width: 3px;
  background: linear-gradient(180deg, var(--stone), var(--stone-deep)); }
.contact-note svg { width: 36px; height: 36px; flex: none; padding: 8px; box-sizing: border-box; border-radius: 50%;
  background: var(--cream-3); border: 1px solid var(--border); color: var(--stone-deep); margin-block-start: 0; }
.contact-note .note-ic, .press-note .note-ic { width: 54px; height: auto; flex: none; align-self: center; }

/* ---------- Line icons (Approach / Specialties / Contact) ---------- */
.line-ic { display: block; width: auto; height: auto; object-fit: contain;
  animation: iconFloat 6.5s var(--ease-in-out) infinite, iconGlint 4.2s var(--ease-in-out) infinite; }
@media (prefers-reduced-motion: reduce) { .line-ic { animation: none; } }

/* Approach — modality icons (replace the number) */
.modality { align-items: start; }
.modality__ic { width: 80px; display: flex; align-items: center; justify-content: center; }
.modality__ic .line-ic { max-width: 80px; max-height: 66px; }
.modality:nth-of-type(2) .line-ic { animation-delay: -1.6s, -1.1s; }
.modality:nth-of-type(3) .line-ic { animation-delay: -3.1s, -2.2s; }
.modality:nth-of-type(4) .line-ic { animation-delay: -4.4s, -3.1s; }

/* Specialties — icon above each label */
.focus__ic { display: block; margin-block-end: var(--sp-2); }
.focus__ic .line-ic { height: 48px; max-width: 130px; }
html[dir="rtl"] .focus__ic .line-ic { margin-inline-start: 0; }
.focus__item:nth-child(2n) .line-ic { animation-delay: -2.2s, -1.5s; }
.focus__item:nth-child(3n) .line-ic { animation-delay: -3.7s, -2.7s; }

/* EMDR eye — horizontal sweep (bilateral movement) instead of the float */
@keyframes emdrSweep { 0%, 100% { transform: translateX(-7px); } 50% { transform: translateX(7px); } }
.line-ic.ic-emdr { animation: emdrSweep 3.4s var(--ease-in-out) infinite, iconGlint 4s var(--ease-in-out) infinite; }
@media (prefers-reduced-motion: reduce) { .line-ic.ic-emdr { animation: none; } }

/* Booking icon above the "Send us a message" band (dark bg -> brightened) */
.cta-band__ic { display: flex; justify-content: center; margin-block-end: var(--sp-3); }
.cta-band__ic .line-ic { height: 62px; }
.ic-onlight { animation: iconFloat 6s var(--ease-in-out) infinite; }
@media (prefers-reduced-motion: reduce) { .ic-onlight { animation: none; } }

/* Contact — method icons (override the 34px svg box) */
.cmethod__ic { width: auto; height: 56px; }
.cmethod__ic .line-ic { height: 56px; max-width: 88px; }
.cmethod:nth-child(2) .line-ic { animation-delay: -2s, -1.4s; }
.cmethod:nth-child(3) .line-ic { animation-delay: -3.6s, -2.5s; }

@media (max-width: 980px) {
  /* Therapist bios: centered photo on top, bio below it left-aligned (tablet & mobile) */
  .profile { grid-template-columns: 1fr; gap: var(--sp-4); text-align: start; }
  .profile__media { position: static; justify-self: center; }
  .profile__photo { max-width: 300px; margin-inline: auto; }
  /* but center the request-appointment button */
  .profile__text > .btn { display: flex; width: -moz-fit-content; width: fit-content; margin-inline: auto; }
  .focus-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .contact-methods { grid-template-columns: 1fr; }
}

/* ---------- Press page ---------- */
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
.press-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-3); display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur); }
.press-card::before { content:""; position:absolute; inset-block-start:0; inset-inline-start:0; width:100%; height:2px;
  background: var(--stone); transform: scaleX(0); transform-origin: inline-start; transition: transform var(--dur) var(--ease-out); }
.press-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--stone-tint); }
.press-card:hover::before { transform: scaleX(1); }
.press-card__logo { height: 40px; margin-block-end: var(--sp-3); display: flex; align-items: center; }
.press-card__logo img { height: 100%; width: auto; max-width: 160px; object-fit: contain;
  filter: grayscale(1); opacity: 0.65; transition: filter var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out); }
.press-card:hover .press-card__logo img { filter: grayscale(0); opacity: 1; }
.press-card { border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: var(--sp-4); }
.press-card__pub { font-size: var(--fs-xs); font-weight: 600; letter-spacing: var(--tracking-wide);
  text-transform: uppercase; color: var(--stone); margin-block-end: 0.6em; }
html[lang="ar"] .press-card__pub { text-transform: none; letter-spacing: 0; }
.press-card h3 { font-size: var(--fs-md); font-weight: 500; line-height: 1.4; margin-block-end: 0.5em; }
.press-card__author { font-style: italic; font-size: var(--fs-sm); color: var(--stone-deep);
  flex: none !important; margin-block: 0 var(--sp-2) !important; }
.press-card p { font-size: var(--fs-sm); color: var(--text-muted); flex: 1; line-height: 1.65; }
.press-card .link-arrow { margin-block-start: var(--sp-3); }
.press-note { position: relative; overflow: hidden; display: flex; gap: 0.95em; align-items: center;
  margin-block-start: var(--sp-5); padding: var(--sp-4) var(--sp-4) var(--sp-4) var(--sp-5);
  background: linear-gradient(120deg, var(--surface), var(--cream-2) 92%);
  border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.7; }
.press-note::before { content: ""; position: absolute; inset-inline-start: 0; inset-block: 0; width: 3px;
  background: linear-gradient(180deg, var(--stone), var(--stone-deep)); }
.press-note > svg { width: 36px; height: 36px; flex: none; padding: 8px; box-sizing: border-box; border-radius: 50%;
  background: var(--cream-3); border: 1px solid var(--border); color: var(--stone-deep); margin: 0 !important; }
@media (max-width: 900px) { .press-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

/* Arabic-only nav item (In the Media / في الإعلام) */
/* "In the Media" is available in both languages */

/* ---------- Legal / policy pages ---------- */
.legal { max-width: 820px; margin-inline: auto; }
.legal .lede { color: var(--text-muted); font-size: var(--fs-base); }
.legal .effective { font-size: var(--fs-sm); color: var(--stone-deep); font-weight: 600; letter-spacing: 0.02em; margin-block-start: var(--sp-2); }
.legal h2 { font-size: var(--fs-md); font-weight: 500; margin-block: var(--sp-5) var(--sp-2);
  padding-block-start: var(--sp-4); border-block-start: 1px solid var(--border); }
.legal h3 { font-family: var(--font-body); font-size: var(--fs-base); font-weight: 600; color: var(--cypress-ink); margin-block: var(--sp-3) var(--sp-1); }
.legal p { font-size: var(--fs-sm); color: var(--text-soft); margin-block-start: var(--sp-2); line-height: 1.8; }
html[lang="ar"] .legal p { line-height: 2; }
.legal a { color: var(--stone-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--cypress-ink); }
.legal address { font-style: normal; font-size: var(--fs-sm); color: var(--text-soft); line-height: 1.9;
  margin-block-start: var(--sp-2); padding-inline-start: var(--sp-3); border-inline-start: 2px solid var(--stone); }
.legal--ar { display: none; }
html[lang="ar"] .legal--en { display: none; }
html[lang="ar"] .legal--ar { display: block; }

/* ---------- Editorial hierarchy (Batch 1) ---------- */
/* Featured statement: a centered "pause" — clear primary focal point per scroll */
.section--feature { padding-block: 7rem; }
.section--feature .split { display: block; max-width: 940px; margin-inline: auto; text-align: center; }
.section--feature .eyebrow { justify-content: center; }
.statement { font-size: clamp(2rem, 1.35rem + 2.7vw, 3.4rem); font-weight: 300; letter-spacing: -0.015em;
  line-height: 1.12; max-width: 20ch; margin-inline: auto; }
html[lang="ar"] .statement { font-weight: 500; line-height: 1.34; max-width: 24ch; }
.section--feature .lead { font-size: var(--fs-md); max-width: 58ch; margin: var(--sp-3) auto 0; }
.section--feature .link-arrow { margin-top: var(--sp-4); }
/* Cursor-reactive aura + statement parallax (elegant, not busy) */
.section--feature { position: relative; overflow: hidden; }
.section--feature > .container { position: relative; z-index: 1; }
.section--feature .aura { position: absolute; z-index: 0; top: 42%; inset-inline-start: 50%;
  width: 640px; height: 640px; margin: -320px 0 0 -320px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(150,137,122,0.30), rgba(150,137,122,0) 64%);
  transform: translate3d(var(--ax, 0px), var(--ay, 0px), 0);
  animation: featureBreathe 9s var(--ease-in-out) infinite; will-change: transform, opacity; }
.section--feature .aura--2 { top: 47%; width: 470px; height: 470px; margin: -235px 0 0 -235px;
  background: radial-gradient(circle, rgba(199,172,131,0.22), rgba(199,172,131,0) 66%);
  animation: featureBreathe 11.5s var(--ease-in-out) infinite reverse; }
@keyframes featureBreathe { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.section--feature .split { transform: translate3d(var(--px, 0px), var(--py, 0px), 0); will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  .section--feature .aura { animation: none; }
  .section--feature .split { transform: none !important; }
}
/* Tighter, more confident measure + a touch more air under section headings */
.lead { max-width: 62ch; }
@media (min-width: 1100px) { .section { padding-block: 7rem; } }

/* ---------- Micro-interactions (Batch 5) ---------- */
/* Hero locale badge: controlled two-line break (line 2 starts "Online across…") */
.hero__content .eyebrow { white-space: pre-line; align-items: flex-start; line-height: 1.55; }
.hero__content .eyebrow::before { margin-block-start: 0.5em; }
/* Team avatars: gentle scale + soft warm ring on card hover */
.tcard__photo img { box-shadow: 0 0 0 1px var(--border);
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur) var(--ease-out); }
.tcard:hover .tcard__photo img { transform: scale(1.04); box-shadow: 0 0 0 9px rgba(150,137,122,0.14); }
@media (prefers-reduced-motion: reduce) { .tcard:hover .tcard__photo img { transform: none; } }

/* ---------- Reveal (soft focus-in, not fade-up slop) ---------- */
[data-reveal] { opacity: 0; transform: translateY(14px); filter: blur(5px); }
.reveal-ready [data-reveal] { transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), filter 0.8s var(--ease-out); will-change: opacity, transform, filter; }
[data-reveal].is-in { opacity: 1; transform: none; filter: none; }
html.no-js [data-reveal] { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .hero__visual { max-width: 420px; }
  .split { grid-template-columns: 1fr; gap: var(--sp-4); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  /* Who We Work With — keep the trio together (3 across), not an awkward 2 + 1 */
  .who-cards { grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }
  .who-cards .card:nth-child(2) { margin-block-start: 0; }
  .team { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  /* Footer — trimmed for tablet: brand spans the top, link lists side by side, social full-width */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4) var(--sp-4); }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand p[data-i18n="foot.tag"] { display: none; }
  .footer__brand img.b-en { height: 40px; }
  .footer__social { grid-column: 1 / -1; margin-block-start: var(--sp-2); }
  .footer__top { margin-block-end: var(--sp-4); padding-block-end: var(--sp-4); }
  /* Services as a tidy mobile list: compact icon left, content right (not a big stack) */
  .srv__row, .srv__row--photo { grid-template-columns: 92px 1fr; gap: var(--sp-3); align-items: start; }
  .srv__thumb--icon { align-self: start; margin-block-start: 0.2em; }
  .srv__content { grid-template-columns: 1fr; gap: var(--sp-2); }
  .srv__content .srv__action { grid-column: 1; grid-row: auto; align-self: start; }
}
@media (max-width: 640px) {
  :root { --nav-h: 68px; }
  .nav__links, .nav__actions .btn { display: none; }
  .nav__burger { display: inline-flex; }
  .cards, .cards--2 { grid-template-columns: 1fr; }
  /* brand spans the top, the two link lists sit side by side */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4) var(--sp-4); }
  .footer__brand { grid-column: 1 / -1; }
  .section { padding-block: var(--sp-6); }
  .section--feature { padding-block: var(--sp-6); }
  /* Hero — immersive video with the message overlaid (original treatment) */
  .hero { min-height: auto; padding-block: calc(var(--nav-h) + var(--sp-5)) var(--sp-6); }
  .hero--video { min-height: 80svh; }
  .hero--video .hero__scrim { background:
    linear-gradient(to bottom, rgba(244,240,231,0.72) 0%, rgba(244,240,231,0.86) 55%, rgba(244,240,231,0.96) 100%); }
  .affiliates__inner { gap: var(--sp-2); }
  /* full-width, thumb-friendly tap targets */
  .hero__cta .btn, .srv__action .btn, .cta-band .btn { width: 100%; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: var(--sp-2); }
  .lang-toggle { min-height: 40px; }
  /* slightly smaller question type + tighter icon gap so most fit on one line (longest still wraps gracefully) */
  .faq2__q { padding-block: var(--sp-3); min-height: 56px; font-size: var(--fs-base); gap: var(--sp-2); }
  .faq2__ic { width: 30px; height: 30px; }
  /* smaller compact services icon on the narrowest screens */
  .srv__row, .srv__row--photo { grid-template-columns: 76px 1fr; gap: var(--sp-2); }
}

/* ---------- Dedicated mobile design pass ---------- */
@media (max-width: 767px) {
  /* Type: comfortable and intentional, never oversized */
  h1, .h1 { font-size: clamp(1.95rem, 1.4rem + 3.2vw, 2.5rem); line-height: 1.16; }
  h2, .h2 { font-size: clamp(1.6rem, 1.2rem + 2.6vw, 2.1rem); line-height: 1.2; }
  h3, .h3 { font-size: var(--fs-md); }
  .lead { font-size: var(--fs-base); line-height: 1.6; }
  .eyebrow { font-size: 0.66rem; letter-spacing: 0.16em; }
  /* Calmer section rhythm */
  .section { padding-block: var(--sp-5); }
  .section--feature { padding-block: var(--sp-5); }
  /* Inner-page hero — tighter, less gap before the first section */
  .page-hero { padding-block: calc(var(--nav-h) + var(--sp-4)) var(--sp-3); }
  /* Philosophy statement — readable, single warm glow */
  .statement { font-size: clamp(1.65rem, 1.2rem + 3vw, 2.2rem); line-height: 1.18; max-width: 18ch; }
  .section--feature .lead { font-size: var(--fs-base); }
  /* Who cards — editorial portrait, tighter caption */
  .who-cards { gap: var(--sp-4); }
  .who-cards .card--photo .card__media { aspect-ratio: 3 / 4; }
  /* Team — comfortable name scale */
  .tmember__name { font-size: clamp(1.6rem, 1.3rem + 3vw, 2rem); }
  /* Tabs (FAQ + services) — centered, right-sized */
  .faq2__tabs, .srv-tabs .faq2__tabs { justify-content: center; gap: 0.5em; }
  .faq2__tab { font-size: 0.82rem; padding: 0.55em 1.05em; }
  /* Affiliates — quieter, smaller marks */
  .affiliates { border-block-color: transparent; }
  .affiliates__logos { gap: var(--sp-3) var(--sp-4); }
  .affiliates__logos img { height: 26px; max-width: 92px; }
}
@media (max-width: 640px) {
  /* Hero — full-frame video banner (set in the ≤980 block); message sits below on cream */
  .hero__creds { flex-wrap: wrap; gap: 0.35em 0.6em; }
  /* one calm glow rather than two layered auras */
  .section--feature .aura--2 { display: none; }
  /* Generous tap targets */
  .btn { padding: 1em 1.6em; }
  .nav__burger { width: 48px; height: 48px; }
  .footer__social a { width: 44px; height: 44px; }
  /* Footer — compact: brand on top, two lists side by side, no repeated blurb */
  .footer { padding-block: var(--sp-5) var(--sp-4); }
  .footer__top { margin-block-end: var(--sp-4); padding-block-end: var(--sp-4); }
  .footer__top .footer__statement { font-size: var(--fs-md); }
  .footer__brand p[data-i18n="foot.tag"] { display: none; }   /* redundant with the statement band above */
  .footer__brand img.b-en { height: 38px; }
  .footer__brand .footer__trust { margin-block-start: var(--sp-2); }
  /* social row sits full-width after the two link lists */
  .footer__social { grid-column: 1 / -1; margin-block-start: var(--sp-3); }
  .footer h4 { margin-block-end: var(--sp-2); }
  .footer a, .footer p { padding-block: 0.26em; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.4em; margin-block-start: var(--sp-4); padding-block-start: var(--sp-3); }
  /* FAQ callout — centered, stacked, symmetric padding so it reads truly centered */
  .faq2__more { flex-direction: column; align-items: center; text-align: center; gap: var(--sp-4); padding: var(--sp-5) var(--sp-4); }
  /* Sound control — compact, unobtrusive */
  .sound-float { padding: 0.55em 0.85em; gap: 0.4em; }
  .sound-float__wave { height: 14px; }
  .sound-float__label { font-size: 0.56rem; letter-spacing: 0.16em; }
}
