/* ==========================================================================
   Sana Well Care — 2026 visual layer

   Loaded AFTER site.css and only by the page being redesigned. It changes
   presentation only: no content, no URLs, no markup, no behaviour. Most of the
   work happens by redefining the design tokens, so components inherit the new
   look rather than being restyled one by one.

   Self-hosted typeface, no third-party request — the privacy notice stays true.
   ========================================================================== */

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------------------------
   1. Tokens — one sans family, softer neutrals, larger radii, lighter shadows
   -------------------------------------------------------------------------- */
:root {
  --font-sans:    "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* neutrals warmed and desaturated a touch so the greens read richer */
  --ink-900: #0C1A12;
  --ink-700: #33453A;
  --ink-500: #667568;
  --ink-400: #97A39A;
  --line:      #E7EDE5;
  --line-soft: #F1F5EF;
  --surface:     #FFFFFF;
  --surface-alt: #F6F8F3;

  /* warm counterpoint used only in the organic shapes */
  --sand: #EFE9DE;

  --r-lg: 26px;
  --r:    20px;
  --r-sm: 12px;

  --sh-xs: 0 1px 2px rgba(12, 26, 18, .04);
  --sh-sm: 0 2px 8px rgba(12, 26, 18, .05);
  --sh-md: 0 14px 36px -12px rgba(12, 26, 18, .16);
  --sh-lg: 0 34px 80px -28px rgba(12, 26, 18, .24);

  --topbar-h: 38px;
  --header-h: 76px;
}

/* --------------------------------------------------------------------------
   2. Typography — geometric sans throughout, tighter display tracking
   -------------------------------------------------------------------------- */
body {
  font-size: 1.0313rem;
  line-height: 1.65;
  letter-spacing: -.005em;
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-weight: 750;
  letter-spacing: -.035em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.15rem); }
h2 { font-size: clamp(1.95rem, 3.9vw, 2.9rem); letter-spacing: -.032em; }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.35rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.28; }
h4 { font-weight: 700; letter-spacing: -.01em; }

.lede { font-size: clamp(1.06rem, 1.5vw, 1.2rem); line-height: 1.6; color: var(--ink-500); }
strong { font-weight: 700; }

.eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.eyebrow::before { width: 20px; height: 2px; }

/* --------------------------------------------------------------------------
   3. Rhythm — tighter vertical space, the page reads denser and more composed
   -------------------------------------------------------------------------- */
.section        { padding-block: clamp(3rem, 5.6vw, 5.25rem); }
.section--tight { padding-block: clamp(2.25rem, 4vw, 3.25rem); }
.section-head   { margin-bottom: clamp(1.75rem, 3vw, 2.5rem); max-width: 56ch; }
.grid           { gap: clamp(1rem, 1.8vw, 1.5rem); }

/* Section edges dissolve instead of butting against each other */
.section--alt {
  background:
    linear-gradient(180deg, #fff 0%, var(--surface-alt) 6%, var(--surface-alt) 94%, #fff 100%);
}
.section--mint {
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(140, 194, 78, .10), transparent 62%),
    linear-gradient(180deg, #fff 0%, var(--g-50) 22%, var(--g-50) 78%, #fff 100%);
}

/* --------------------------------------------------------------------------
   4. Header — thinner, quieter, and it stays out of the way
   -------------------------------------------------------------------------- */
.topbar {
  background: #08300D;
  font-size: .78rem;
  font-weight: 500;
  min-height: var(--topbar-h);
}
.topbar__tag { letter-spacing: .01em; opacity: .82; }
.topbar__links { gap: 1.15rem; }
.topbar a { opacity: .88; }
.topbar a:hover { opacity: 1; text-decoration: none; }

.site-header {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease;
}
.site-header[data-stuck="true"] {
  background: rgba(255, 255, 255, .93);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 6px 28px -18px rgba(12, 26, 18, .35);
}
.logo img { height: 54px; }
@media (max-width: 600px) { .logo img { height: 46px; } }

.nav__list { gap: .05rem; }
.nav__link {
  font-size: .92rem;
  font-weight: 550;
  padding: .5rem .8rem;
  letter-spacing: -.01em;
  color: var(--ink-700);
}
.nav__link::after { height: 1.5px; bottom: .28rem; left: .8rem; right: .8rem; }
.nav__link[aria-current="page"] { font-weight: 700; }

/* site.css sizes the drawer links at the mobile breakpoint; restated here so
   the desktop sizing above does not leak into the drawer. */
@media (max-width: 980px) {
  .nav__list { gap: 0; }
  .nav__link { font-size: 1.02rem; padding: .95rem .5rem; font-weight: 600; }
}

/* Language switcher — a quiet pill rather than loose text */
.lang-switch {
  gap: .35rem;
  padding: .18rem .5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  font-size: .74rem;
  letter-spacing: .02em;
}
.lang-switch a { opacity: .72; font-weight: 600; }
.lang-switch a[aria-current="true"] { opacity: 1; text-decoration: none; }
.lang-switch .sep { opacity: .3; }

/* --------------------------------------------------------------------------
   5. Buttons — refined weight, softer lift, less shout
   -------------------------------------------------------------------------- */
.btn {
  font-size: .93rem;
  font-weight: 650;
  letter-spacing: -.01em;
  padding: .82rem 1.5rem;
  border-width: 1px;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease,
              transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s ease;
}
.btn--primary {
  background: var(--g-800);
  box-shadow: 0 1px 2px rgba(12,26,18,.10), 0 10px 22px -14px rgba(11,74,18,.85);
}
.btn--primary:hover {
  background: var(--g-900);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(12,26,18,.10), 0 16px 30px -16px rgba(11,74,18,.9);
}
.btn--ghost { border-color: var(--line); background: rgba(255,255,255,.7); }
.btn--ghost:hover { background: #fff; border-color: var(--g-200); transform: translateY(-1px); }
.btn--wa { box-shadow: 0 1px 2px rgba(12,26,18,.08), 0 10px 22px -14px rgba(37,211,102,.9); }
.btn--wa:hover { transform: translateY(-1px); }
.btn--sm { padding: .55rem 1.1rem; font-size: .86rem; }

.link-arrow { font-weight: 650; letter-spacing: -.01em; }

/* --------------------------------------------------------------------------
   6. Hero — Sana is the subject; the type sits beside her, not above her
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(2rem, 3.6vw, 3.25rem) clamp(2rem, 3.4vw, 3rem);
  background: #fff;
  overflow: hidden;
}
/* two soft organic washes, no hard edges anywhere */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 46vw; height: 46vw; max-width: 660px; max-height: 660px;
  top: -18%; inset-inline-end: -8%;
  background: radial-gradient(circle at 35% 35%, rgba(140,194,78,.20), rgba(140,194,78,0) 68%);
  filter: blur(6px);
}
.hero::after {
  width: 34vw; height: 34vw; max-width: 460px; max-height: 460px;
  bottom: -22%; inset-inline-start: -10%;
  background: radial-gradient(circle at 60% 40%, rgba(22,160,168,.14), rgba(22,160,168,0) 70%);
  filter: blur(8px);
}
.hero__grid { position: relative; z-index: 1; gap: clamp(1.75rem, 4vw, 3.25rem); grid-template-columns: minmax(0, 366px) minmax(0, 1fr); align-items: end; }
/* site.css stacks the hero below 940px; this layer loads after it, so the
   single-column rule has to be restated here or the desktop grid would win. */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; }
}

.hero__title { margin-bottom: .85rem; }
.hero__title em {
  font-style: normal;
  font-weight: 550;
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--g-600);
}
.hero__lede { font-size: clamp(1.05rem, 1.45vw, 1.2rem); margin-bottom: 1.6rem; max-width: 46ch; }

.hero__proof {
  margin-top: 1.6rem; padding-top: 1.25rem; margin-bottom: .35rem;
  gap: 1.1rem 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.hero__proof strong { font-weight: 700; letter-spacing: -.015em; }
.hero__proof span { font-size: .86rem; }

/* The portrait: a soft squircle with a light bloom behind it */
.hero__photo { margin-bottom: 1.9rem; }
.hero__photo::before {
  content: "";
  position: absolute;
  inset: -8% -6% -4% -6%;
  border-radius: 44% 56% 52% 48% / 46% 44% 56% 54%;
  background: linear-gradient(150deg, rgba(140,194,78,.22), rgba(22,160,168,.14) 60%, transparent);
  filter: blur(26px);
  z-index: 0;
}
.hero__photo-frame {
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(12,26,18,.06), 0 40px 80px -34px rgba(12,26,18,.42);
}
.hero__namecard {
  z-index: 2;
  bottom: -1.15rem;
  left: auto;
  inset-inline-start: 1.5rem;
  transform: none;
  border: 0;
  border-radius: 16px;
  padding: .7rem 1.4rem;
  box-shadow: 0 2px 6px rgba(12,26,18,.06), 0 18px 34px -18px rgba(12,26,18,.45);
}
.hero__namecard strong { font-weight: 750; font-size: 1.08rem; letter-spacing: -.02em; }
.hero__namecard span { font-size: .68rem; letter-spacing: .1em; font-weight: 700; }

/* --------------------------------------------------------------------------
   7. Experience strip — softer than a solid block
   -------------------------------------------------------------------------- */
.value-strip {
  background: linear-gradient(115deg, #08300D 0%, var(--g-800) 46%, #0A4A4F 100%);
  padding-block: clamp(2rem, 3.4vw, 2.75rem);
  position: relative;
  overflow: hidden;
}
.value-strip::after {
  content: "";
  position: absolute; inset-inline-end: -6%; top: -60%;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(140,194,78,.16), transparent 65%);
  pointer-events: none;
}
.value-strip__grid { position: relative; z-index: 1; }
.value { border-inline-end-color: rgba(255,255,255,.10); }
.value strong { font-weight: 700; font-size: 1.02rem; letter-spacing: -.02em; }
.value span { font-size: .85rem; line-height: 1.55; color: rgba(255,255,255,.66); }
.value svg { width: 21px; height: 21px; }

/* --------------------------------------------------------------------------
   8. Cards — bigger radius, no visible border, shadow does the separating
   -------------------------------------------------------------------------- */
.panel, .topic-card, .res-card, .team-card, .quote, .location__card, .form-card {
  border-color: transparent;
  box-shadow: 0 1px 2px rgba(12,26,18,.04), 0 10px 30px -18px rgba(12,26,18,.28);
}
.topic-card { padding: 1.6rem 1.65rem; }
.topic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 5px rgba(12,26,18,.05), 0 22px 44px -22px rgba(12,26,18,.35);
}
.topic-card__icon { width: 48px; height: 48px; border-radius: 14px; margin-bottom: 1.1rem; }
.topic-card__icon svg { width: 24px; height: 24px; }
.topic-card h3 { margin-bottom: .45rem; }
.topic-card p { font-size: .94rem; line-height: 1.6; }

.panel--tint { background: var(--g-50); }
.pill { border-color: var(--line); font-weight: 600; font-size: .87rem; }
.pill:hover { transform: translateY(-1px); }

/* --------------------------------------------------------------------------
   9. The chooser — the signature section gets the most refinement
   -------------------------------------------------------------------------- */
.chooser__card {
  border-width: 1px;
  border-color: var(--line-soft);
  border-radius: 18px;
  padding: 1.3rem 1.4rem;
  min-height: 104px;
  box-shadow: 0 1px 2px rgba(12,26,18,.03);
}
.chooser__card:hover {
  transform: translateY(-3px);
  border-color: var(--g-200);
  box-shadow: 0 2px 5px rgba(12,26,18,.05), 0 20px 40px -22px rgba(12,26,18,.34);
}
.chooser__card span.t { font-weight: 600; letter-spacing: -.02em; line-height: 1.42; }
.chooser__mark { width: 24px; height: 24px; border-color: var(--line); }

.chooser__panel {
  border-radius: var(--r-lg);
  background:
    radial-gradient(700px 300px at 88% 0%, rgba(140,194,78,.16), transparent 60%),
    linear-gradient(122deg, #08300D 0%, var(--g-800) 48%, #0A4A4F 100%);
  box-shadow: 0 3px 8px rgba(12,26,18,.08), 0 30px 60px -28px rgba(11,74,18,.6);
}
.chooser__panel h3 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); font-weight: 750; letter-spacing: -.03em; }
.chooser__panel p { font-size: .97rem; line-height: 1.6; }
.chooser__hint {
  border-style: solid;
  border-color: var(--line-soft);
  background: var(--surface-alt);
  border-radius: 14px;
  font-size: .92rem;
}
.chooser__note { font-size: .84rem; margin-top: 1.1rem; }

/* --------------------------------------------------------------------------
   10. Steps — the numeral is the accent, not a heavy badge
   -------------------------------------------------------------------------- */
.step { padding-top: 3.25rem; }
.step::before {
  width: 2.6rem; height: 2.6rem;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--g-700);
  font-weight: 750; font-size: .95rem; letter-spacing: -.02em;
  box-shadow: 0 1px 2px rgba(12,26,18,.04);
}
.step::after { top: 1.3rem; left: 3.1rem; }
.step h3 { margin-bottom: .3rem; }
.step p { font-size: .94rem; line-height: 1.6; }

/* --------------------------------------------------------------------------
   11. Location + CTA
   -------------------------------------------------------------------------- */
.location__card { border-radius: var(--r-lg); }
.location__addr { font-weight: 600; letter-spacing: -.02em; line-height: 1.5; }
.location__addr .lead { font-weight: 750; }
.map-embed { border-color: transparent; border-radius: var(--r-lg); box-shadow: 0 1px 2px rgba(12,26,18,.04), 0 14px 36px -20px rgba(12,26,18,.3); }
.hours li { border-bottom-style: solid; border-bottom-color: var(--line-soft); }
.hours .day { font-weight: 650; letter-spacing: -.01em; }

.cta-band {
  background:
    radial-gradient(760px 340px at 82% 6%, rgba(140,194,78,.18), transparent 62%),
    linear-gradient(122deg, #08300D 0%, var(--g-800) 48%, #0A4A4F 100%);
  padding-block: clamp(2.75rem, 4.6vw, 4rem);
}
.cta-band::after { display: none; }
.cta-band h2 { letter-spacing: -.032em; }
.cta-band p { font-size: .98rem; }

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: #08300D; padding-block: clamp(2.75rem, 4.6vw, 3.75rem) 1.5rem; font-size: .92rem; }
.site-footer h4 { font-size: .72rem; letter-spacing: .13em; font-weight: 700; margin-bottom: .95rem; }
.footer__logo { border-radius: 16px; padding: .65rem .9rem; }
.footer__logo img { height: 48px; }
.footer__about { font-size: .9rem; line-height: 1.65; color: rgba(255,255,255,.62); }
.footer__list li { margin-bottom: .5rem; }
.footer__bottom { margin-top: 2.25rem; font-size: .82rem; }

/* --------------------------------------------------------------------------
   13. Micro-animation — one easing curve, used sparingly
   -------------------------------------------------------------------------- */
.js-reveal .reveal {
  transform: translateY(14px);
  transition: opacity .7s cubic-bezier(.22,.68,.28,1), transform .7s cubic-bezier(.22,.68,.28,1);
}
.wa-float { box-shadow: 0 2px 6px rgba(12,26,18,.10), 0 16px 34px -16px rgba(37,211,102,.75); font-weight: 650; }
.wa-float:hover { transform: translateY(-2px); }
.mobile-bar { box-shadow: 0 -2px 20px -8px rgba(12,26,18,.22); }
.mobile-bar a { font-size: .68rem; font-weight: 700; letter-spacing: .05em; }

@media (prefers-reduced-motion: reduce) {
  .topic-card:hover, .chooser__card:hover, .btn:hover, .pill:hover, .wa-float:hover {
    transform: none;
  }
}

/* ==========================================================================
   14. Arabic — Tajawal, self-hosted, chosen to sit beside Manrope's geometry
   Latin glyphs still come from Manrope; only the Arabic subset is loaded here.
   ========================================================================== */
@font-face { font-family: "Tajawal"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../fonts/tajawal-400-arabic.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0898-08E1,
                 U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC; }
@font-face { font-family: "Tajawal"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("../fonts/tajawal-500-arabic.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0898-08E1,
                 U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC; }
@font-face { font-family: "Tajawal"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("../fonts/tajawal-700-arabic.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0898-08E1,
                 U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC; }
@font-face { font-family: "Tajawal"; font-style: normal; font-weight: 800; font-display: swap;
  src: url("../fonts/tajawal-800-arabic.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0898-08E1,
                 U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC; }

[dir="rtl"] {
  --font-sans:    "Manrope", "Tajawal", "Segoe UI", Tahoma, sans-serif;
  --font-display: "Manrope", "Tajawal", "Segoe UI", Tahoma, sans-serif;
}
/* Arabic needs more leading and no negative tracking; Tajawal also runs a
   little smaller on the body than Manrope at the same size. */
[dir="rtl"] body { line-height: 1.85; letter-spacing: normal; font-size: 1.06rem; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 {
  letter-spacing: normal;
  line-height: 1.35;
  font-weight: 800;
}
[dir="rtl"] h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
[dir="rtl"] h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
[dir="rtl"] h3 { font-size: clamp(1.1rem, 1.8vw, 1.3rem); font-weight: 700; }
[dir="rtl"] .lede { line-height: 1.75; }
[dir="rtl"] .btn { font-weight: 700; letter-spacing: normal; }
[dir="rtl"] .nav__link { font-weight: 500; letter-spacing: normal; }
[dir="rtl"] .nav__link[aria-current="page"] { font-weight: 700; }
[dir="rtl"] .hero__title em { font-weight: 700; }
[dir="rtl"] .hero__namecard strong { font-weight: 800; letter-spacing: normal; }
[dir="rtl"] .value strong,
[dir="rtl"] .hero__proof strong,
[dir="rtl"] .location__addr { letter-spacing: normal; }
[dir="rtl"] .chooser__card span.t { font-weight: 500; letter-spacing: normal; line-height: 1.6; }
[dir="rtl"] .chooser__panel h3 { letter-spacing: normal; }
[dir="rtl"] .step h3 { letter-spacing: normal; }

/* The numbered step marker and its connecting rule are physically placed in
   site.css; mirror them so the sequence reads right-to-left. */
[dir="rtl"] .step::before { left: auto; right: 0; }
[dir="rtl"] .step::after  { left: -1rem; right: 3.1rem; }
