/* ==========================================================================
   Sana Well Care — Clinical Nutrition & Dietetics
   Public website stylesheet. No build step, no dependencies, no CDN.

   Contents
     1.  Brand tokens
     2.  Base & typography
     3.  Layout helpers
     4.  Buttons
     5.  Top bar & header
     6.  Navigation (desktop + mobile drawer)
     7.  Hero
     8.  Value strip
     9.  Topic / service cards
     10. Steps
     11. Resource & article cards
     12. Team
     13. Quotes
     14. Stats
     15. FAQ
     16. Forms (booking & enquiry)
     17. Contact & map
     18. CTA bands
     19. Page head (interior pages)
     20. Footer
     21. Floating WhatsApp
     22. Utilities & motion
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Brand tokens — sampled directly from assets/images/logo.png
   -------------------------------------------------------------------------- */
:root {
  /* Deep forest green — the dominant logo colour */
  --g-900: #06320B;
  --g-800: #0B4A12;   /* primary brand green */
  --g-700: #14611D;
  --g-600: #1B7A28;
  --g-500: #2E8B33;
  --g-200: #C9E8B7;   /* light leaf from the logo */
  --g-100: #DCEFD6;
  --g-50:  #F1F8ED;

  /* Supporting brand hues */
  --leaf:      #8CC24E;
  --leaf-dark: #6FAE38;
  --teal-700:  #0A5560;
  --teal-500:  #16A0A8;
  --teal-50:   #E7F6F6;
  --blue-800:  #0A3A80;
  --blue-600:  #2C5FB0;
  --blue-50:   #EAF0FA;
  --amber:     #D9A93F;
  --amber-50:  #FBF3E0;
  --clay:      #C0563F;
  --clay-50:   #FBEDE9;

  /* WhatsApp brand */
  --wa: #25D366;
  --wa-dark: #128C7E;

  /* Ink & surfaces */
  --ink-900: #0D1F14;
  --ink-700: #2E4237;
  --ink-500: #5C7065;
  --ink-400: #86988C;
  --line:      #E1EBE0;
  --line-soft: #EFF4ED;
  --surface:     #FFFFFF;
  --surface-alt: #F7FAF5;
  --surface-deep:#06320B;

  /* Type */
  --font-display: Georgia, "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", serif;
  --font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Space & shape */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --maxw: 1220px;
  --maxw-narrow: 800px;
  --r-lg: 24px;
  --r: 18px;
  --r-sm: 10px;

  --sh-xs: 0 1px 2px rgba(11, 74, 18, .05);
  --sh-sm: 0 2px 4px rgba(11, 74, 18, .05), 0 6px 16px rgba(11, 74, 18, .05);
  --sh-md: 0 10px 30px rgba(11, 74, 18, .10);
  --sh-lg: 0 24px 64px rgba(11, 74, 18, .14);

  --topbar-h: 40px;
  --header-h: 96px;
}

/* --------------------------------------------------------------------------
   2. Base & typography
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
  -webkit-text-size-adjust: 100%;
  /* The closed mobile drawer sits just off the right edge; clip so it can
     never widen the document or allow a sideways swipe. `clip` is preferred
     over `hidden` because it does not create a scroll container, which would
     break `position: sticky` on the header. */
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-700);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); line-height: 1.25; }
h4 { font-size: 1.05rem; line-height: 1.3; }

p { margin: 0 0 1.2rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--g-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--g-900); }

ul, ol { margin: 0 0 1.2rem; padding-inline-start: 1.25rem; }
li + li { margin-top: .45rem; }

strong { color: var(--ink-900); font-weight: 650; }
small { font-size: .875rem; }

hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

::selection { background: var(--g-200); color: var(--g-900); }

:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--g-900); color: #fff;
  padding: .8rem 1.4rem; border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--alt { background: var(--surface-alt); }
.section--mint { background: linear-gradient(180deg, var(--g-50), #fff); }

.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-sans);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--g-600);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--leaf), var(--g-600));
}
.eyebrow--plain::before { display: none; }
.section-head--center .eyebrow { justify-content: center; }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-500); line-height: 1.65; }

.grid { display: grid; gap: clamp(1.25rem, 2.4vw, 2rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(225px, 1fr)); }

.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.split--wide-left  { grid-template-columns: 1.15fr .85fr; }
.split--wide-right { grid-template-columns: .85fr 1.15fr; }
.split--flip .split__media { order: -1; }
@media (max-width: 900px) {
  .split, .split--wide-left, .split--wide-right { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font: inherit; font-size: .975rem; font-weight: 650; line-height: 1.2;
  padding: .95rem 1.75rem;
  border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--g-800); color: #fff; box-shadow: 0 4px 14px rgba(11,74,18,.22); }
.btn--primary:hover { background: var(--g-900); color: #fff; box-shadow: 0 8px 24px rgba(11,74,18,.28); }

.btn--ghost { background: #fff; border-color: var(--line); color: var(--ink-900); }
.btn--ghost:hover { border-color: var(--g-600); color: var(--g-800); background: var(--g-50); }

.btn--wa { background: var(--wa); color: #06331b; box-shadow: 0 4px 14px rgba(37,211,102,.30); }
.btn--wa:hover { background: #1ebd5a; color: #06331b; box-shadow: 0 8px 24px rgba(37,211,102,.38); }

.btn--light { background: #fff; color: var(--g-800); }
.btn--light:hover { background: var(--g-50); color: var(--g-900); }

.btn--outline-light { border-color: rgba(255,255,255,.45); color: #fff; }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.12); color: #fff; }

.btn--sm { padding: .6rem 1.15rem; font-size: .9rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn-row--center { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 650; font-size: .95rem; text-decoration: none;
  color: var(--g-700);
}
.link-arrow::after { content: "→"; transition: transform .2s; }
.link-arrow:hover::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. Top bar & header
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--g-900);
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  min-height: var(--topbar-h);
  display: flex; align-items: center;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; width: 100%;
}
.topbar__tag { display: inline-flex; align-items: center; gap: .5rem; letter-spacing: .04em; }
.topbar__tag svg { width: 15px; height: 15px; color: var(--leaf); }
.topbar__links { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.88); text-decoration: none; display: inline-flex; align-items: center; gap: .45rem; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar svg { width: 15px; height: 15px; flex: none; }
@media (max-width: 720px) {
  .topbar { font-size: .78rem; }
  .topbar__tag { display: none; }
  .topbar__inner { justify-content: center; }
  .topbar__links { gap: 1.15rem; justify-content: center; }
}

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s;
}
.site-header[data-stuck="true"] { box-shadow: 0 6px 24px rgba(11,74,18,.08); }

.site-header__inner {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: var(--header-h);
}

.logo { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
.logo img { height: 74px; width: auto; }
.logo:hover { opacity: .88; }
@media (max-width: 600px) { .logo img { height: 54px; } }

/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */
.nav { margin-inline-start: auto; display: flex; align-items: center; }
.nav__list { list-style: none; display: flex; align-items: center; gap: .15rem; margin: 0; padding: 0; }
.nav__list li { margin: 0; }

.nav__link {
  display: block; position: relative;
  padding: .6rem .85rem;
  font-size: .95rem; font-weight: 550;
  color: var(--ink-700); text-decoration: none;
  border-radius: var(--r-sm);
}
.nav__link::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .32rem;
  height: 2px; border-radius: 2px; background: var(--g-600);
  transform: scaleX(0); transform-origin: left; transition: transform .22s;
}
.nav__link:hover { color: var(--g-800); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--g-800); font-weight: 650; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta { margin-inline-start: .85rem; }
.nav__wa { display: none; }   /* WhatsApp button appears in the mobile drawer only */

.nav-toggle {
  display: none; margin-inline-start: auto;
  width: 46px; height: 46px; padding: 0;
  border: 1px solid var(--line); border-radius: 12px;
  background: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--g-800); transition: transform .22s, opacity .22s;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { top: 0; transform: rotate(-45deg); }

.nav-scrim {
  position: fixed; inset: 0; z-index: 98;
  background: rgba(6,50,11,.42); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.nav-scrim[data-open="true"] { opacity: 1; pointer-events: auto; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav-scrim { display: block; }

  .nav {
    position: fixed; z-index: 99;
    top: 0; inset-inline-end: 0; bottom: 0;
    width: min(360px, 86vw);
    background: #fff;
    box-shadow: -20px 0 60px rgba(11,74,18,.18);
    display: block; overflow-y: auto;
    padding: 1.5rem 1.5rem 2.5rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .3s cubic-bezier(.4,0,.2,1), visibility .3s;
  }
  .nav[data-open="true"] { transform: translateX(0); visibility: visible; }

  /* the drawer slides in from the opposite edge in Arabic */
  [dir="rtl"] .nav { transform: translateX(-100%); }
  [dir="rtl"] .nav[data-open="true"] { transform: translateX(0); }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; margin-top: 3.25rem; }
  .nav__link {
    padding: 1rem .5rem; font-size: 1.1rem;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
  }
  .nav__link::after { display: none; }
  .nav__link[aria-current="page"] {
    color: var(--g-800);
    border-inline-start: 3px solid var(--g-600);
    padding-inline-start: 1rem;
  }
  .nav__cta { margin: 1.5rem 0 0; }
  .nav__cta .btn { width: 100%; }
  .nav__close {
    position: absolute; top: 1.1rem; inset-inline-end: 1.1rem;
    width: 42px; height: 42px; padding: 0;
    border: 1px solid var(--line); border-radius: 10px;
    background: #fff; cursor: pointer; color: var(--ink-900);
    display: grid; place-items: center; font-size: 1.35rem; line-height: 1;
  }
  .nav__wa { display: block; margin-top: 1rem; }
  .nav__wa .btn { width: 100%; }
}
.nav__close { display: none; }
@media (max-width: 980px) { .nav__close { display: grid; } }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 5.5rem);
  background:
    radial-gradient(900px 520px at 88% 8%, var(--g-50) 0%, rgba(241,248,237,0) 62%),
    radial-gradient(700px 480px at 4% 88%, var(--teal-50) 0%, rgba(231,246,246,0) 60%),
    #fff;
}

.hero__grid {
  display: grid; grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
/* The copy comes first in the markup so the <h1> stays early in the document;
   the photo is moved into the left-hand track on wide screens. */
.hero__photo { order: -1; }
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__photo { order: 0; }
}

.hero__title { margin-bottom: 1.1rem; }
.hero__title em {
  font-style: italic;
  background: linear-gradient(100deg, var(--g-700), var(--teal-500) 55%, var(--blue-800));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero__lede { font-size: clamp(1.08rem, 1.7vw, 1.28rem); color: var(--ink-500); max-width: 52ch; margin-bottom: 2rem; }

.hero__proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.35rem 1.75rem;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero__proof div { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--ink-500); line-height: 1.45; }
.hero__proof svg { width: 20px; height: 20px; color: var(--g-600); flex: none; margin-top: .1rem; }
.hero__proof strong { display: block; color: var(--ink-900); font-size: .95rem; }

/* Hero portrait -----------------------------------------------------------
   The supplied photograph is a two-panel composite: a food flat-lay on the
   left and the portrait on the right, joined at x=349 of 960px. The frame's
   aspect ratio (608/960) combined with `object-position: 100%` shows only the
   right-hand 63.3% of the file, so the flat-lay half is never displayed.
   Those two values work as a pair — re-check the crop if either changes.
   -------------------------------------------------------------------------- */
.hero__photo { position: relative; margin-bottom: 2.5rem; }
@media (max-width: 940px) { .hero__photo { max-width: 380px; margin-inline: auto; } }

.hero__photo-frame {
  position: relative;
  aspect-ratio: 608 / 960;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--g-50);
  border: 1px solid var(--line);
  box-shadow: var(--sh-lg);
}
.hero__photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 100% 50%;
}

.hero__namecard {
  position: absolute; left: 50%; bottom: -1.35rem;
  transform: translateX(-50%);
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--sh-md);
  padding: .75rem 1.5rem; text-align: center; white-space: nowrap;
}
.hero__namecard strong {
  display: block; font-family: var(--font-display); font-weight: 400;
  font-size: 1.2rem; color: var(--ink-900); line-height: 1.2;
}
.hero__namecard span {
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--g-700); font-weight: 700;
}

/* --------------------------------------------------------------------------
   8. Value strip
   -------------------------------------------------------------------------- */
.value-strip { background: var(--g-900); color: #fff; padding-block: clamp(2rem, 4vw, 2.75rem); }
.value-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem 2rem; }
@media (max-width: 860px) { .value-strip__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .value-strip__grid { grid-template-columns: 1fr; } }

.value {
  display: flex; gap: .9rem; align-items: flex-start;
  padding-inline-end: 1.5rem;
  border-inline-end: 1px solid rgba(255,255,255,.14);
}
.value:last-child { border-inline-end: 0; }
@media (max-width: 860px) {
  .value:nth-child(2) { border-inline-end: 0; }
}
@media (max-width: 460px) { .value { border-inline-end: 0; } }
.value svg { width: 24px; height: 24px; color: var(--leaf); flex: none; margin-top: .15rem; }
.value strong { display: block; color: #fff; font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; margin-bottom: .15rem; }
.value span { color: rgba(255,255,255,.7); font-size: .88rem; line-height: 1.5; }

/* --------------------------------------------------------------------------
   9. Topic / service cards
   -------------------------------------------------------------------------- */
.topic-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.85rem;
  box-shadow: var(--sh-xs);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.topic-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--accent, var(--g-600));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.topic-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--line-soft); }
.topic-card:hover::before { transform: scaleX(1); }

.topic-card__icon {
  width: 56px; height: 56px; flex: none;
  border-radius: 16px; display: grid; place-items: center;
  background: var(--accent-soft, var(--g-50));
  color: var(--accent, var(--g-700));
  margin-bottom: 1.35rem;
}
.topic-card__icon svg { width: 28px; height: 28px; }
.topic-card h3 { margin-bottom: .55rem; }
.topic-card p { color: var(--ink-500); font-size: .97rem; flex: 1; }
.topic-card .link-arrow { margin-top: 1.25rem; color: var(--accent, var(--g-700)); }

/* accent variants */
.t-green { --accent: var(--g-600);    --accent-soft: var(--g-50); }
.t-teal  { --accent: var(--teal-700); --accent-soft: var(--teal-50); }
.t-blue  { --accent: var(--blue-800); --accent-soft: var(--blue-50); }
.t-leaf  { --accent: var(--leaf-dark);--accent-soft: #F0F8E4; }
.t-amber { --accent: #A9791F;         --accent-soft: var(--amber-50); }
.t-clay  { --accent: var(--clay);     --accent-soft: var(--clay-50); }

/* --------------------------------------------------------------------------
   10. Steps
   -------------------------------------------------------------------------- */
.steps { counter-reset: step; }
.step { position: relative; padding-top: 3.75rem; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: 0; left: 0;
  font-family: var(--font-display); font-size: 1.15rem;
  width: 2.9rem; height: 2.9rem; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--g-50); color: var(--g-800);
  border: 1px solid var(--g-100);
}
.step::after {
  content: ""; position: absolute; top: 1.45rem; left: 3.4rem; right: -1rem;
  height: 1px; background: linear-gradient(90deg, var(--g-100), transparent);
}
.step:last-child::after { display: none; }
@media (max-width: 900px) { .step::after { display: none; } }
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--ink-500); font-size: .96rem; }

/* --------------------------------------------------------------------------
   11. Resource & article cards
   -------------------------------------------------------------------------- */
.res-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--sh-xs);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none; color: inherit;
}
.res-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); color: inherit; }

.res-card__banner {
  aspect-ratio: 16 / 9; position: relative;
  display: grid; place-items: center;
  background: var(--banner, linear-gradient(135deg, var(--g-100), var(--g-50)));
  color: var(--banner-ink, var(--g-700));
  border-bottom: 1px solid var(--line-soft);
}
.res-card__banner svg { width: 30%; max-width: 96px; height: auto; opacity: .85; }
.res-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.res-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.res-card p { color: var(--ink-500); font-size: .95rem; flex: 1; margin-bottom: 1rem; }

.tag {
  display: inline-flex; align-items: center;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px;
  background: var(--g-50); color: var(--g-700);
  margin-bottom: .85rem; align-self: flex-start;
}
.tag--teal  { background: var(--teal-50);  color: var(--teal-700); }
.tag--blue  { background: var(--blue-50);  color: var(--blue-800); }
.tag--amber { background: var(--amber-50); color: #A9791F; }
.tag--clay  { background: var(--clay-50);  color: var(--clay); }

.meta { display: flex; flex-wrap: wrap; gap: .4rem .9rem; font-size: .84rem; color: var(--ink-400); }
.meta span { display: inline-flex; align-items: center; gap: .35rem; }
.meta svg { width: 14px; height: 14px; }

/* Article list variant */
.article-row {
  display: grid; grid-template-columns: 190px 1fr; gap: 1.5rem;
  padding: 1.75rem 0; border-bottom: 1px solid var(--line);
  align-items: center;
}
.article-row:first-child { border-top: 1px solid var(--line); }
@media (max-width: 640px) { .article-row { grid-template-columns: 1fr; gap: 1rem; } }
.article-row__thumb {
  aspect-ratio: 4 / 3; border-radius: 14px; overflow: hidden;
  display: grid; place-items: center;
  background: var(--banner, linear-gradient(135deg, var(--g-100), var(--g-50)));
  color: var(--banner-ink, var(--g-700));
}
.article-row__thumb svg { width: 42%; height: auto; opacity: .8; }
.article-row h3 { font-size: 1.28rem; margin-bottom: .45rem; }
.article-row h3 a { text-decoration: none; color: var(--ink-900); }
.article-row h3 a:hover { color: var(--g-700); }
.article-row p { color: var(--ink-500); font-size: .96rem; margin-bottom: .7rem; }

/* Filter chips */
.chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2.5rem; }
.chip {
  font: inherit; font-size: .88rem; font-weight: 600;
  padding: .5rem 1.05rem; border-radius: 999px; cursor: pointer;
  background: #fff; border: 1.5px solid var(--line); color: var(--ink-700);
  transition: background-color .18s, border-color .18s, color .18s;
}
.chip:hover { border-color: var(--g-600); color: var(--g-800); }
.chip[aria-pressed="true"] { background: var(--g-800); border-color: var(--g-800); color: #fff; }

/* --------------------------------------------------------------------------
   12. Team
   -------------------------------------------------------------------------- */
.team-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 2rem 1.75rem; text-align: center;
  box-shadow: var(--sh-xs);
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.team-card__photo {
  width: 116px; height: 116px; margin: 0 auto 1.25rem;
  border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--g-100), var(--teal-50));
  color: var(--g-700);
  border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line), var(--sh-sm);
  overflow: hidden;
}
.team-card__photo svg { width: 54px; height: 54px; opacity: .75; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }

.team-card h3 { margin-bottom: .2rem; font-size: 1.25rem; }
.team-card__role { color: var(--g-700); font-weight: 650; font-size: .9rem; margin-bottom: .8rem; }
.team-card__cred { color: var(--ink-400); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1rem; }
.team-card p { color: var(--ink-500); font-size: .94rem; }

.team-card__tags { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; margin-top: 1.1rem; }
.team-card__tags span {
  font-size: .76rem; padding: .28rem .7rem; border-radius: 999px;
  background: var(--g-50); color: var(--g-700); font-weight: 600;
}

/* --------------------------------------------------------------------------
   13. Quotes
   -------------------------------------------------------------------------- */
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 2rem; box-shadow: var(--sh-xs);
  display: flex; flex-direction: column;
}
.quote__mark { font-family: var(--font-display); font-size: 3.5rem; line-height: .7; color: var(--g-200); margin-bottom: .5rem; }
.quote blockquote {
  margin: 0 0 1.35rem; flex: 1;
  font-family: var(--font-display); font-size: 1.12rem; line-height: 1.6;
  color: var(--ink-900);
}
.quote figcaption { font-size: .88rem; color: var(--ink-400); border-top: 1px solid var(--line-soft); padding-top: 1rem; }
.quote figcaption strong { display: block; color: var(--ink-900); font-size: .95rem; }

.stars { display: flex; gap: .15rem; color: var(--amber); margin-bottom: 1rem; }
.stars svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------------------
   14. Stats
   -------------------------------------------------------------------------- */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
@media (max-width: 760px) { .stat-band { grid-template-columns: repeat(2, 1fr); } }
.stat__value {
  font-family: var(--font-display); font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1; color: var(--g-800); margin-bottom: .4rem;
}
.stat__label { font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-400); }

/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */
.faq details {
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.25rem 1.5rem; margin-bottom: .85rem;
  background: #fff; transition: border-color .2s, box-shadow .2s;
}
.faq details[open] { border-color: var(--g-100); box-shadow: var(--sh-sm); }
.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.12rem; color: var(--ink-900);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none; font-size: 1.5rem; line-height: 1;
  color: var(--g-600); font-family: var(--font-sans); font-weight: 300;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: .9rem 0 0; color: var(--ink-500); font-size: .97rem; }

/* --------------------------------------------------------------------------
   16. Forms
   -------------------------------------------------------------------------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  box-shadow: var(--sh-md);
}

.form-section-title {
  font-family: var(--font-sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--g-600);
  padding-bottom: .6rem; margin: 2rem 0 1.35rem;
  border-bottom: 1px solid var(--line-soft);
}
.form-section-title:first-of-type { margin-top: 0; }

.field { margin-bottom: 1.25rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink-900); margin-bottom: .45rem; }
.field .req { color: var(--clay); }

.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem;
  color: var(--ink-900); background: #fff;
  padding: .8rem .95rem;
  border: 1.5px solid var(--line); border-radius: 12px;
  transition: border-color .16s, box-shadow .16s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C7065' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center; background-size: 18px;
  padding-inline-end: 2.6rem;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-400); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--g-600);
  box-shadow: 0 0 0 3px var(--g-100);
}
.field .hint { font-size: .83rem; color: var(--ink-400); margin-top: .4rem; }
.field .error { display: none; font-size: .85rem; color: var(--clay); margin-top: .4rem; font-weight: 600; }
.field[data-invalid="true"] input,
.field[data-invalid="true"] select,
.field[data-invalid="true"] textarea { border-color: var(--clay); }
.field[data-invalid="true"] .error { display: block; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field-row--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 660px) { .field-row, .field-row--3 { grid-template-columns: 1fr; } }

/* Radio / choice cards */
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: .75rem; }
.choice {
  position: relative; display: block; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: 12px;
  padding: .9rem 1rem; font-size: .93rem; font-weight: 600; color: var(--ink-700);
  transition: border-color .18s, background-color .18s, color .18s;
}
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice:hover { border-color: var(--g-600); }
.choice small { display: block; font-weight: 400; color: var(--ink-400); font-size: .82rem; margin-top: .15rem; }
.choice:has(input:checked) {
  border-color: var(--g-700); background: var(--g-50); color: var(--g-900);
}
.choice input:focus-visible + span { outline: 3px solid var(--teal-500); outline-offset: 3px; border-radius: 4px; }

.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--ink-500); font-weight: 400; }
.consent input { width: auto; flex: none; margin-top: .3rem; }

.form-status {
  display: none; margin-top: 1.5rem;
  padding: 1rem 1.25rem; border-radius: 12px;
  font-size: .95rem; line-height: 1.55;
}
.form-status[data-state="ok"]    { display: block; background: var(--g-50);   border: 1px solid var(--g-100);  color: var(--g-900); }
.form-status[data-state="error"] { display: block; background: var(--clay-50); border: 1px solid #F0C9BF; color: #7E2A18; }

/* --------------------------------------------------------------------------
   17. Contact & map
   -------------------------------------------------------------------------- */
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 0; border-bottom: 1px solid var(--line); margin: 0;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ico {
  width: 42px; height: 42px; flex: none;
  border-radius: 12px; display: grid; place-items: center;
  background: var(--g-50); color: var(--g-700);
}
.contact-list .ico svg { width: 20px; height: 20px; }
.contact-list strong { display: block; color: var(--ink-900); margin-bottom: .2rem; font-size: 1rem; }
.contact-list span, .contact-list a { color: var(--ink-500); font-size: .95rem; }
/* Stack the secondary lines under a contact entry (international number, hours,
   handle) instead of letting them run on inline after the link. */
.contact-list li > div > span,
.contact-list li > div > a { display: block; }

.map-frame {
  border-radius: var(--r); overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(140deg, var(--g-50), var(--teal-50));
  aspect-ratio: 16 / 10; position: relative;
  display: grid; place-items: center; text-align: center;
  box-shadow: var(--sh-sm);
}
.map-frame__inner { padding: 2rem; max-width: 34ch; }
.map-frame svg { width: 46px; height: 46px; color: var(--g-600); margin: 0 auto 1rem; }
.map-frame p { color: var(--ink-500); font-size: .92rem; }
.map-frame strong { display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--ink-900); margin-bottom: .4rem; font-weight: 400; }

.hours { list-style: none; padding: 0; margin: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px dashed var(--line); margin: 0;
  font-size: .95rem;
}
.hours li:last-child { border-bottom: 0; }
.hours dt, .hours .day { color: var(--ink-700); font-weight: 600; }
.hours .time { color: var(--ink-500); }
.hours li[data-closed="true"] .time { color: var(--clay); }

/* --------------------------------------------------------------------------
   18. CTA bands
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(125deg, var(--g-900) 0%, var(--g-800) 45%, var(--teal-700) 100%);
  color: #fff; padding-block: clamp(3rem, 6vw, 5rem);
}
.cta-band::after {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(140,194,78,.22), transparent 65%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 56ch; }
.cta-band__inner {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem;
}

/* --------------------------------------------------------------------------
   19. Page head
   -------------------------------------------------------------------------- */
.page-head {
  position: relative; overflow: hidden;
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
  background:
    radial-gradient(700px 400px at 85% 20%, var(--g-50), rgba(241,248,237,0) 65%),
    var(--surface-alt);
  border-bottom: 1px solid var(--line);
}
.page-head h1 { margin-bottom: .75rem; }
.page-head p { color: var(--ink-500); max-width: 62ch; font-size: clamp(1.02rem, 1.6vw, 1.18rem); }

.breadcrumb {
  list-style: none; display: flex; flex-wrap: wrap; gap: .5rem;
  padding: 0; margin: 0 0 1.25rem; font-size: .85rem; color: var(--ink-400);
}
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-inline-end: .5rem; opacity: .55; }
.breadcrumb a { color: var(--ink-500); text-decoration: none; }
.breadcrumb a:hover { color: var(--g-700); text-decoration: underline; }

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--surface-deep); color: rgba(255,255,255,.68); padding-block: clamp(3rem, 6vw, 4.5rem) 1.75rem; font-size: .94rem; }
.site-footer h4 {
  color: #fff; font-family: var(--font-sans);
  font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.site-footer a { color: rgba(255,255,255,.74); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 2.5rem; }
@media (max-width: 940px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__logo {
  display: inline-block; background: #fff; border-radius: 14px;
  padding: .75rem 1rem; margin-bottom: 1.25rem;
}
.footer__logo img { height: 62px; width: auto; }
.footer__about { max-width: 36ch; line-height: 1.65; }

.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin: 0 0 .65rem; }

.footer__contact li { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: .9rem; }
.footer__contact svg { width: 17px; height: 17px; flex: none; margin-top: .22rem; color: var(--leaf); }

.footer__bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: .75rem 1.75rem; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.footer__legal li { margin: 0; }

/* --------------------------------------------------------------------------
   21. Floating WhatsApp
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed; z-index: 90;
  inset-inline-end: clamp(1rem, 3vw, 1.75rem); bottom: clamp(1rem, 3vw, 1.75rem);
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .85rem 1.35rem .85rem 1rem;
  border-radius: 999px; text-decoration: none;
  background: var(--wa); color: #06331b; font-weight: 700; font-size: .93rem;
  box-shadow: 0 10px 30px rgba(37,211,102,.36), 0 2px 8px rgba(0,0,0,.10);
  transition: transform .2s, box-shadow .2s, background-color .2s;
}
.wa-float:hover { background: #1ebd5a; color: #06331b; transform: translateY(-2px); box-shadow: 0 14px 38px rgba(37,211,102,.45); }
.wa-float svg { width: 24px; height: 24px; flex: none; }
@media (max-width: 560px) {
  .wa-float { padding: .9rem; border-radius: 50%; }
  .wa-float span { display: none; }
}

/* --------------------------------------------------------------------------
   22. Utilities & motion
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

.panel {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.75rem; box-shadow: var(--sh-xs);
}
.panel--tint { background: var(--g-50); border-color: var(--g-100); }

/* Decorative media tile — a tinted panel with an icon, used where a
   photograph would otherwise sit. Swap for an <img> when one is available. */
.media-tile {
  border-radius: var(--r-lg); border: 1px solid var(--line);
  background: var(--tile, linear-gradient(140deg, var(--g-50), var(--teal-50)));
  aspect-ratio: 4 / 3; padding: 2rem;
  display: grid; place-items: center; overflow: hidden;
  box-shadow: var(--sh-sm);
}
.media-tile svg {
  width: min(48%, 190px); height: auto;
  color: var(--tile-ink, var(--g-600)); opacity: .85;
}

/* Price / inclusion list */
.price-list { list-style: none; padding: 0; margin: 0; }
.price-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .85rem 0; border-bottom: 1px dashed var(--line); margin: 0;
}
.price-list li:last-child { border-bottom: 0; }
.price-list .name { color: var(--ink-900); font-weight: 600; font-size: .97rem; }
.price-list .name small { display: block; font-weight: 400; color: var(--ink-400); font-size: .84rem; }
.price-list .val { color: var(--g-700); font-weight: 700; white-space: nowrap; }

.checklist { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.checklist li { display: flex; gap: .75rem; align-items: flex-start; padding: .5rem 0; margin: 0; }
.checklist .tick { flex: none; width: 21px; height: 21px; margin-top: .22rem; color: var(--g-600); }


.no-js-hide { }

/* --------------------------------------------------------------------------
   23. Mobile action bar — Call / WhatsApp / Book, phones only
   -------------------------------------------------------------------------- */
.mobile-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 95;
  display: none; grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(11,74,18,.10);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .25rem; min-height: 62px; padding: .6rem .4rem;
  text-decoration: none; color: var(--ink-700);
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  border-inline-end: 1px solid var(--line-soft);
}
.mobile-bar a:last-child { border-inline-end: 0; }
.mobile-bar svg { width: 21px; height: 21px; }
.mobile-bar .m-call { color: var(--g-800); }
.mobile-bar .m-wa   { color: var(--wa-dark); }
.mobile-bar .m-book { background: var(--g-800); color: #fff; }
.mobile-bar .m-book:hover { background: var(--g-900); color: #fff; }

@media (max-width: 700px) {
  .mobile-bar { display: grid; }
  .wa-float { display: none; }
  body { padding-bottom: 62px; }
}

/* --------------------------------------------------------------------------
   24. Scroll reveal (only active once JS confirms support)
   -------------------------------------------------------------------------- */
.js-reveal .reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.js-reveal .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}

/* --------------------------------------------------------------------------
   25. Location block
   -------------------------------------------------------------------------- */
.location {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 3vw, 2.5rem); align-items: stretch;
}
@media (max-width: 900px) { .location { grid-template-columns: 1fr; } }

.location__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
}
.location__addr {
  font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.45; color: var(--ink-900); margin-bottom: 1.5rem;
}
.location__addr span { display: block; }
.location__addr .lead { font-weight: 400; }
.location__meta { margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--line-soft); }


/* --------------------------------------------------------------------------
   26. Specialty pills
   -------------------------------------------------------------------------- */
.pill-row { display: flex; flex-wrap: wrap; gap: .55rem; }
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1.05rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: .9rem; font-weight: 600; color: var(--ink-700);
  text-decoration: none;
  transition: border-color .18s, color .18s, background-color .18s, transform .18s;
}
.pill:hover {
  border-color: var(--g-600); color: var(--g-800);
  background: var(--g-50); transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   27. Service page hero
   -------------------------------------------------------------------------- */
.svc-head {
  position: relative; overflow: hidden;
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
  background:
    radial-gradient(760px 420px at 88% 12%, var(--g-50), rgba(241,248,237,0) 66%),
    var(--surface-alt);
  border-bottom: 1px solid var(--line);
}
.svc-head__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (max-width: 860px) { .svc-head__grid { grid-template-columns: 1fr; } }
.svc-head__icon {
  width: 96px; height: 96px; border-radius: 28px;
  display: grid; place-items: center; margin-inline-start: auto;
  background: #fff; box-shadow: var(--sh-md); color: var(--accent, var(--g-700));
}
.svc-head__icon svg { width: 46px; height: 46px; }
@media (max-width: 860px) { .svc-head__icon { margin-inline-start: 0; } }

/* --------------------------------------------------------------------------
   31. "What brings you here today?" — the specialty chooser
   Pure CSS interaction: six radio inputs drive both the card states and the
   revealed panel, so it works with JavaScript disabled. The script only adds
   the gentle scroll-into-view on phones.
   -------------------------------------------------------------------------- */
.chooser { position: relative; }

.chooser__input {
  position: absolute; opacity: 0;
  width: 1px; height: 1px; margin: -1px;
  pointer-events: none;
}

.chooser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.75rem, 1.5vw, 1.1rem);
}
@media (max-width: 900px) { .chooser__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .chooser__grid { grid-template-columns: 1fr; } }

.chooser__card {
  position: relative; cursor: pointer;
  display: flex; align-items: flex-start; gap: 1rem;
  min-height: 118px; padding: 1.35rem 1.45rem;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-xs);
  transition: border-color .25s ease, box-shadow .25s ease,
              transform .25s ease, background-color .25s ease;
  -webkit-tap-highlight-color: transparent;
}
.chooser__card:hover {
  transform: translateY(-2px);
  border-color: var(--g-200);
  box-shadow: var(--sh-md);
}
.chooser__card:active { transform: translateY(0); }

.chooser__card span.t {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.38;
  color: var(--ink-900);
  flex: 1;
}

.chooser__mark {
  flex: none; margin-top: .15rem;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  color: #fff; background: transparent;
  transition: background-color .25s ease, border-color .25s ease;
}
.chooser__mark svg { width: 14px; height: 14px; opacity: 0; transition: opacity .2s ease; }

/* the revealed panel */
.chooser__result { margin-top: clamp(1.25rem, 2.5vw, 1.75rem); }
.chooser__panel { display: none; }

.chooser__hint {
  display: flex; align-items: center; gap: .7rem;
  padding: 1.1rem 1.35rem;
  border: 1px dashed var(--g-100);
  border-radius: var(--r);
  background: var(--g-50);
  color: var(--ink-500); font-size: .95rem;
}
.chooser__hint svg { width: 20px; height: 20px; color: var(--g-600); flex: none; }
.chooser:has(.chooser__input:checked) .chooser__hint,
.chooser[data-chosen="true"] .chooser__hint { display: none; }

.chooser__panel {
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--r-lg);
  background: linear-gradient(130deg, var(--g-900) 0%, var(--g-800) 52%, var(--teal-700) 100%);
  color: #fff;
  box-shadow: var(--sh-md);
}
@media (max-width: 820px) { .chooser__panel { grid-template-columns: 1fr; } }

.chooser__panel .eyebrow { color: var(--g-200); margin-bottom: .6rem; }
.chooser__panel .eyebrow::before { background: var(--leaf); }
.chooser__panel h3 {
  color: #fff; font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: .6rem;
}
.chooser__panel p { color: rgba(255,255,255,.86); margin-bottom: 0; }
.chooser__panel .link-arrow {
  color: var(--g-200); margin-top: 1rem; display: inline-flex;
}
.chooser__panel .link-arrow:hover { color: #fff; }
.chooser__actions { display: flex; flex-direction: column; gap: .7rem; }
@media (max-width: 820px) { .chooser__actions { flex-direction: row; flex-wrap: wrap; } }
.chooser__actions .btn { width: 100%; }
@media (max-width: 820px) { .chooser__actions .btn { width: auto; flex: 1 1 190px; } }

.chooser__note {
  margin-top: 1.25rem;
  font-size: .88rem; color: var(--ink-400); text-align: center;
}

@keyframes chooserIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .chooser__card, .chooser__mark, .chooser__mark svg { transition: none; }
  .chooser__card:hover { transform: none; }
  .chooser__panel { animation: none !important; }
}

#ch1:checked ~ .chooser__grid .chooser__card[for="ch1"] {
  border-color: var(--g-700);
  background: var(--g-50);
  box-shadow: inset 0 0 0 1px var(--g-700), var(--sh-sm);
}
#ch1:checked ~ .chooser__grid .chooser__card[for="ch1"] .chooser__mark {
  background: var(--g-700); border-color: var(--g-700);
}
#ch1:checked ~ .chooser__grid .chooser__card[for="ch1"] .chooser__mark svg { opacity: 1; }
#ch1:focus-visible ~ .chooser__grid .chooser__card[for="ch1"] {
  outline: 3px solid var(--teal-500); outline-offset: 3px;
}
#ch1:checked ~ .chooser__result .chooser__panel[data-p="1"] {
  display: grid;
  animation: chooserIn .42s cubic-bezier(.2, .7, .3, 1) both;
}
#ch2:checked ~ .chooser__grid .chooser__card[for="ch2"] {
  border-color: var(--g-700);
  background: var(--g-50);
  box-shadow: inset 0 0 0 1px var(--g-700), var(--sh-sm);
}
#ch2:checked ~ .chooser__grid .chooser__card[for="ch2"] .chooser__mark {
  background: var(--g-700); border-color: var(--g-700);
}
#ch2:checked ~ .chooser__grid .chooser__card[for="ch2"] .chooser__mark svg { opacity: 1; }
#ch2:focus-visible ~ .chooser__grid .chooser__card[for="ch2"] {
  outline: 3px solid var(--teal-500); outline-offset: 3px;
}
#ch2:checked ~ .chooser__result .chooser__panel[data-p="2"] {
  display: grid;
  animation: chooserIn .42s cubic-bezier(.2, .7, .3, 1) both;
}
#ch3:checked ~ .chooser__grid .chooser__card[for="ch3"] {
  border-color: var(--g-700);
  background: var(--g-50);
  box-shadow: inset 0 0 0 1px var(--g-700), var(--sh-sm);
}
#ch3:checked ~ .chooser__grid .chooser__card[for="ch3"] .chooser__mark {
  background: var(--g-700); border-color: var(--g-700);
}
#ch3:checked ~ .chooser__grid .chooser__card[for="ch3"] .chooser__mark svg { opacity: 1; }
#ch3:focus-visible ~ .chooser__grid .chooser__card[for="ch3"] {
  outline: 3px solid var(--teal-500); outline-offset: 3px;
}
#ch3:checked ~ .chooser__result .chooser__panel[data-p="3"] {
  display: grid;
  animation: chooserIn .42s cubic-bezier(.2, .7, .3, 1) both;
}
#ch4:checked ~ .chooser__grid .chooser__card[for="ch4"] {
  border-color: var(--g-700);
  background: var(--g-50);
  box-shadow: inset 0 0 0 1px var(--g-700), var(--sh-sm);
}
#ch4:checked ~ .chooser__grid .chooser__card[for="ch4"] .chooser__mark {
  background: var(--g-700); border-color: var(--g-700);
}
#ch4:checked ~ .chooser__grid .chooser__card[for="ch4"] .chooser__mark svg { opacity: 1; }
#ch4:focus-visible ~ .chooser__grid .chooser__card[for="ch4"] {
  outline: 3px solid var(--teal-500); outline-offset: 3px;
}
#ch4:checked ~ .chooser__result .chooser__panel[data-p="4"] {
  display: grid;
  animation: chooserIn .42s cubic-bezier(.2, .7, .3, 1) both;
}
#ch5:checked ~ .chooser__grid .chooser__card[for="ch5"] {
  border-color: var(--g-700);
  background: var(--g-50);
  box-shadow: inset 0 0 0 1px var(--g-700), var(--sh-sm);
}
#ch5:checked ~ .chooser__grid .chooser__card[for="ch5"] .chooser__mark {
  background: var(--g-700); border-color: var(--g-700);
}
#ch5:checked ~ .chooser__grid .chooser__card[for="ch5"] .chooser__mark svg { opacity: 1; }
#ch5:focus-visible ~ .chooser__grid .chooser__card[for="ch5"] {
  outline: 3px solid var(--teal-500); outline-offset: 3px;
}
#ch5:checked ~ .chooser__result .chooser__panel[data-p="5"] {
  display: grid;
  animation: chooserIn .42s cubic-bezier(.2, .7, .3, 1) both;
}
#ch6:checked ~ .chooser__grid .chooser__card[for="ch6"] {
  border-color: var(--g-700);
  background: var(--g-50);
  box-shadow: inset 0 0 0 1px var(--g-700), var(--sh-sm);
}
#ch6:checked ~ .chooser__grid .chooser__card[for="ch6"] .chooser__mark {
  background: var(--g-700); border-color: var(--g-700);
}
#ch6:checked ~ .chooser__grid .chooser__card[for="ch6"] .chooser__mark svg { opacity: 1; }
#ch6:focus-visible ~ .chooser__grid .chooser__card[for="ch6"] {
  outline: 3px solid var(--teal-500); outline-offset: 3px;
}
#ch6:checked ~ .chooser__result .chooser__panel[data-p="6"] {
  display: grid;
  animation: chooserIn .42s cubic-bezier(.2, .7, .3, 1) both;
}

/* --------------------------------------------------------------------------
   30. Google Maps embed
   -------------------------------------------------------------------------- */
.map-embed {
  position: relative;
  min-height: 340px;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  background: var(--g-50);
}
.map-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}
@media (max-width: 900px) {
  .map-embed { min-height: 300px; }
}
@media (max-width: 480px) {
  .map-embed { min-height: 260px; }
}

/* --------------------------------------------------------------------------
   29. Article pages
   -------------------------------------------------------------------------- */
.article-head {
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.25rem);
  background:
    radial-gradient(700px 380px at 85% 15%, var(--g-50), rgba(241,248,237,0) 68%),
    var(--surface-alt);
  border-bottom: 1px solid var(--line);
}
.article-head h1 { max-width: 20ch; margin-bottom: .85rem; }
.article-head .lede { max-width: 62ch; }

.article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.35rem;
  margin-top: 1.5rem; padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  font-size: .89rem; color: var(--ink-500);
}
.article-meta span { display: inline-flex; align-items: center; gap: .45rem; }
.article-meta svg { width: 16px; height: 16px; color: var(--g-600); }
.article-meta strong { color: var(--ink-900); font-weight: 650; }

.article-figure {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--sh-md);
  margin-block: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--g-50);
}
.article-figure img, .article-figure svg { width: 100%; display: block; }
.article-figure figcaption {
  padding: .8rem 1.1rem; font-size: .85rem; color: var(--ink-400);
  background: #fff; border-top: 1px solid var(--line-soft);
}

/* Long-form body copy */
.prose { max-width: 68ch; }
.prose h2 {
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  margin-top: clamp(2.25rem, 4vw, 3rem); margin-bottom: .75rem;
}
.prose h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); margin-top: 2rem; margin-bottom: .6rem; }
.prose p { font-size: 1.075rem; line-height: 1.75; }
.prose ul, .prose ol { font-size: 1.05rem; line-height: 1.7; padding-inline-start: 1.35rem; }
.prose li { margin-bottom: .5rem; }
.prose li::marker { color: var(--g-600); }
.prose blockquote {
  margin: 2rem 0; padding: 1.25rem 1.5rem;
  border-inline-start: 4px solid var(--g-600);
  background: var(--g-50); border-radius: 0 var(--r) var(--r) 0;
  font-family: var(--font-display); font-size: 1.12rem; color: var(--ink-900);
}
.prose blockquote p { font-size: inherit; margin: 0; }
.prose > :first-child { margin-top: 0; }

.article-foot {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.75rem; border-top: 1px solid var(--line);
}
.article-author {
  display: flex; gap: 1rem; align-items: center;
  background: var(--g-50); border: 1px solid var(--g-100);
  border-radius: var(--r); padding: 1.25rem 1.4rem;
}
.article-author img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; object-position: 100% 30%; flex: none; }
.article-author strong { display: block; color: var(--ink-900); font-family: var(--font-display); font-weight: 400; font-size: 1.15rem; }
.article-author span { font-size: .88rem; color: var(--ink-500); }

/* --------------------------------------------------------------------------
   28. Right-to-left support (for the future Arabic pages at /ar/)
   The layout uses logical properties throughout, so these are the only
   direction-specific overrides needed.
   -------------------------------------------------------------------------- */
/* Arabic typography. No web fonts are loaded anywhere on this site, so these
   are system Arabic faces. Georgia has no Arabic coverage, so the display face
   is overridden too — otherwise every heading would fall back silently. */
[dir="rtl"] {
  --font-sans: "Segoe UI", "Noto Sans Arabic", "Geeza Pro", Tahoma, Arial, sans-serif;
  --font-display: "Segoe UI", "Noto Sans Arabic", "Geeza Pro", Tahoma, Arial, sans-serif;
}
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 {
  font-weight: 600; letter-spacing: 0; line-height: 1.35;
}
[dir="rtl"] .hero__title em { font-style: normal; }
[dir="rtl"] body { line-height: 1.8; }

/* Letter-spacing breaks Arabic cursive joining, and uppercase means nothing in
   Arabic — both are switched off wherever the Latin design used them. */
[dir="rtl"] .eyebrow,
[dir="rtl"] .tag,
[dir="rtl"] .stat__label,
[dir="rtl"] .site-footer h4,
[dir="rtl"] .team-card__cred,
[dir="rtl"] .mobile-bar a,
[dir="rtl"] .form-section-title,
[dir="rtl"] .hero__namecard span,
[dir="rtl"] .trust-bar__label,
[dir="rtl"] .topbar__tag {
  letter-spacing: normal;
  text-transform: none;
}

/* Language switcher — sits in the top bar on every page, both languages. */
.lang-switch { display: inline-flex; align-items: center; gap: .45rem; }
.lang-switch a { opacity: .7; font-weight: 600; }
.lang-switch a:hover { opacity: 1; }
.lang-switch a[aria-current="true"] { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.lang-switch .sep { opacity: .35; }

[dir="rtl"] .field select {
  background-position: left .85rem center;
  padding-inline-end: .95rem; padding-inline-start: 2.6rem;
}
[dir="rtl"] .link-arrow::after { content: "90"; }
[dir="rtl"] .link-arrow:hover::after { transform: translateX(-4px); }
[dir="rtl"] .step::after { background: linear-gradient(270deg, var(--g-100), transparent); }
[dir="rtl"] .hero__title em { background: linear-gradient(260deg, var(--g-700), var(--teal-500) 55%, var(--blue-800)); -webkit-background-clip: text; background-clip: text; }

@media print {
  .topbar, .site-header, .site-footer, .cta-band, .wa-float, .nav-toggle { display: none !important; }
  body { color: #000; }
  .section { padding-block: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
