/* ==========================================================================
   Dubai House Doctors — Shared stylesheet
   "House calls for Dubai homes." Home & property maintenance specialists.
   Palette: clinic-white ground · scrubs petrol-teal authority · saffron CTA
   Type: Plus Jakarta Sans (display) · Inter (body) · JetBrains Mono (labels)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --clinic:      #FBFAF5;  /* warm paper-white ground            */
  --clinic-2:    #F4F2EA;  /* deeper warm white, alt sections    */
  --mist:        #E9EFEC;  /* cool grey-green cards / dividers   */
  --teal-soft:   #D8EFEC;  /* pale teal tint                     */
  --line:        #E3E2D8;  /* hairline borders                   */

  --ink:         #14201D;  /* near-black, green undertone — text */
  --ink-soft:    #4B5953;  /* secondary text                     */
  --ink-faint:   #7C8A84;  /* tertiary / captions                */

  --scrubs:      #0E5A56;  /* deep petrol-teal — brand authority */
  --scrubs-dark: #09403E;  /* darker teal — hover / footer       */
  --scrubs-ink:  #07332F;  /* deepest teal                       */
  --teal:        #16B7A4;  /* bright teal accent                 */

  --saffron:     #E6A11C;  /* warm gold — primary CTA            */
  --saffron-dark:#C98712;  /* gold hover                         */

  --whatsapp:    #25D366;  /* WhatsApp green                     */
  --whatsapp-dark:#1FB457;

  /* Type */
  --font-display: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* Fluid type scale */
  --fs-h1:    clamp(2.15rem, 1.4rem + 3.6vw, 3.85rem);
  --fs-h2:    clamp(1.6rem, 1.1rem + 2.1vw, 2.55rem);
  --fs-h3:    clamp(1.2rem, 1rem + 0.7vw, 1.5rem);
  --fs-lead:  clamp(1.06rem, 0.98rem + 0.4vw, 1.22rem);
  --fs-body:  1.0625rem;
  --fs-small: 0.9rem;
  --fs-mono:  0.78rem;

  /* Spacing scale */
  --s-1: 0.5rem;  --s-2: 0.75rem;  --s-3: 1rem;   --s-4: 1.5rem;
  --s-5: 2rem;    --s-6: 3rem;     --s-7: 4rem;   --s-8: 6rem;  --s-9: 8rem;

  /* Radius */
  --r-sm: 8px;  --r-md: 14px;  --r-lg: 22px;  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(20, 32, 29, 0.06), 0 2px 8px rgba(20, 32, 29, 0.05);
  --shadow-md: 0 6px 18px rgba(20, 32, 29, 0.08), 0 2px 6px rgba(20, 32, 29, 0.05);
  --shadow-lg: 0 24px 60px -18px rgba(7, 51, 47, 0.30), 0 8px 20px -10px rgba(7, 51, 47, 0.15);

  --container: 1180px;
  --container-narrow: 760px;
  --header-h: 74px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--clinic);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--scrubs); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { padding-left: 1.15rem; }
li + li { margin-top: 0.35rem; }

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

::selection { background: var(--scrubs); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); letter-spacing: -0.03em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { color: var(--ink-soft); }
p.lead { font-size: var(--fs-lead); color: var(--ink-soft); line-height: 1.6; }

strong { color: var(--ink); font-weight: 600; }

/* Mono eyebrow / chart label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--scrubs);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--saffron);
  display: inline-block;
}
.eyebrow--center::before { display: none; }
.eyebrow--plain::before { display: none; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.4rem;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--alt { background: var(--clinic-2); }
.section--dark {
  background: var(--scrubs-ink);
  color: #EAF3F1;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: #B9CBC7; }
.section--dark .eyebrow { color: var(--teal); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 0.85rem; font-size: var(--fs-lead); }

.stack > * + * { margin-top: 1rem; }
.divider { height: 1px; background: var(--line); border: 0; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: -0.005em;
  line-height: 1;
  padding: 0.92rem 1.4rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.05em; height: 1.05em; }

.btn--primary { --btn-bg: var(--saffron); --btn-fg: #3A2700; box-shadow: 0 8px 20px -8px rgba(230, 161, 28, 0.65); }
.btn--primary:hover { --btn-bg: var(--saffron-dark); }

.btn--scrubs { --btn-bg: var(--scrubs); --btn-fg: #fff; }
.btn--scrubs:hover { --btn-bg: var(--scrubs-dark); }

.btn--whatsapp { --btn-bg: var(--whatsapp); --btn-fg: #04301A; box-shadow: 0 8px 20px -8px rgba(37, 211, 102, 0.6); }
.btn--whatsapp:hover { --btn-bg: var(--whatsapp-dark); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: #fff; border-color: var(--ink); }

.btn--light { --btn-bg: #fff; --btn-fg: var(--scrubs); }
.btn--light:hover { --btn-bg: var(--teal-soft); }

.btn--lg { padding: 1.05rem 1.7rem; font-size: 1.02rem; }
.btn--sm { padding: 0.6rem 1rem; font-size: 0.85rem; }
.btn--block { display: flex; width: 100%; }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 245, 0.86);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -16px rgba(7, 51, 47, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-h);
}

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--scrubs), var(--scrubs-dark));
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  position: relative;
  flex-shrink: 0;
}
.brand-mark svg { width: 24px; height: 24px; color: #fff; }
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.07rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 3px;
}

/* Nav */
.primary-nav { display: flex; align-items: center; gap: 0.35rem; }
.primary-nav a {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.primary-nav a:hover { color: var(--scrubs); background: var(--teal-soft); text-decoration: none; }
.primary-nav a[aria-current="page"] { color: var(--scrubs); }
.primary-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 2px;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--saffron);
}

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.45rem 0.2rem;
}
.phone-link:hover { color: var(--scrubs); text-decoration: none; }
.phone-link svg { width: 15px; height: 15px; color: var(--scrubs); }

.header-call { display: inline-flex; }  /* visible ≥ desktop */

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: var(--clinic);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 19px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 19px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(2.75rem, 6vw, 5.5rem) clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(1100px 540px at 88% -8%, var(--teal-soft) 0%, transparent 60%),
    radial-gradient(700px 420px at 0% 30%, rgba(230,161,28,0.10) 0%, transparent 55%),
    var(--clinic);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy h1 { margin-top: 1.1rem; }
.hero-copy h1 .accent { color: var(--scrubs); }
.hero-copy .lead { margin-top: 1.2rem; max-width: 30em; }
.hero-cta { margin-top: 1.9rem; }
.hero-trust {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  font-size: var(--fs-small);
  color: var(--ink-soft);
}
.hero-trust li { list-style: none; display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-trust svg { width: 16px; height: 16px; color: var(--scrubs); flex-shrink: 0; }
.hero-trust ul { padding: 0; }

/* Health-check card (signature element) */
.health-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}
.health-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--scrubs), var(--teal), var(--saffron));
}
.health-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 1.1rem;
}
.health-card-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.health-card-title strong { color: var(--ink); font-weight: 600; }
.health-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--scrubs);
  background: var(--teal-soft);
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-pill);
}
.health-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--scrubs); }

.health-vitals { display: grid; gap: 0.55rem; }
.vital {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.85rem;
  background: var(--clinic);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.vital-ico {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--scrubs);
}
.vital-ico svg { width: 17px; height: 17px; }
.vital-name { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.vital-sub { font-size: 0.74rem; color: var(--ink-faint); font-family: var(--font-mono); }
.vital-status {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.vital-status.ok   { color: var(--scrubs); background: var(--teal-soft); }
.vital-status.warn { color: #9A6A00; background: #FBE9C4; }
.health-foot {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  font-size: 0.82rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.health-foot svg { width: 15px; height: 15px; color: var(--saffron); flex-shrink: 0; }

/* ---------- Trust strip / logos ---------- */
.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--clinic);
  padding-block: 1.5rem;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.trust-strip .trust-label {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.trust-items {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem;
  list-style: none; padding: 0; margin: 0;
}
.trust-items li {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.98rem;
  color: var(--ink);
}
.trust-items li svg { width: 20px; height: 20px; color: var(--scrubs); }

/* ---------- Service grid ---------- */
.grid { display: grid; gap: 1.25rem; }
.grid--services { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-soft);
}
.card-ico {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--teal-soft), #fff);
  color: var(--scrubs);
  margin-bottom: 1.1rem;
  border: 1px solid var(--teal-soft);
}
.card-ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.16rem; margin-bottom: 0.45rem; }
.card p { font-size: 0.96rem; }
.card .card-link {
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--scrubs);
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.card .card-link svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.card:hover .card-link svg { transform: translateX(3px); }
.card-tag {
  display: inline-flex;
  align-items: center; gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.6rem;
}

/* ---------- Feature cards / why ---------- */
.feature {
  display: flex; gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.feature-ico {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--scrubs);
  color: #fff;
}
.feature-ico svg { width: 23px; height: 23px; }
.feature h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.feature p { font-size: 0.93rem; }

/* ---------- Stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat { text-align: left; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 1.4rem + 2vw, 2.85rem);
  letter-spacing: -0.03em;
  color: var(--saffron);
  line-height: 1;
}
.section--dark .stat-num { color: var(--saffron); }
.stat-label {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.section--dark .stat-label { color: #9DB4AF; }
.stat-desc { margin-top: 0.3rem; font-size: 0.88rem; color: var(--ink-soft); }
.section--dark .stat-desc { color: #B9CBC7; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--saffron-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.step-num::before {
  content: "0" counter(step);
  counter-increment: step;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--scrubs);
  letter-spacing: -0.02em;
}
.step h3 { font-size: 1.08rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.92rem; }
.step-arrow {
  position: absolute;
  top: 50%; right: -14px;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: var(--teal);
  z-index: 2;
}
.step-arrow svg { width: 22px; height: 22px; }

/* ---------- Areas ---------- */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.chip:hover { border-color: var(--scrubs); color: var(--scrubs); transform: translateY(-2px); }
.chip svg { width: 14px; height: 14px; color: var(--saffron); }

/* Two-column "split" sections */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--narrow-left { grid-template-columns: 0.9fr 1.1fr; }
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.panel-checklist { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.panel-checklist li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.7rem;
  align-items: start;
  font-size: 0.95rem;
  color: var(--ink);
}
.panel-checklist svg { width: 20px; height: 20px; color: var(--scrubs); margin-top: 0.18rem; }

/* ---------- FAQ accordion ---------- */
.faq-list { display: grid; gap: 0.75rem; max-width: 820px; }
.faq-list--center { margin-inline: auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] { border-color: var(--teal-soft); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.3rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.faq-q:hover { color: var(--scrubs); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--scrubs);
  transition: transform 0.25s ease, background 0.2s ease;
}
.faq-icon svg { width: 16px; height: 16px; }
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--scrubs); color: #fff; }
.faq-a {
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.faq-a p + p { margin-top: 0.6rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(700px 360px at 90% 10%, rgba(22,183,164,0.22), transparent 60%),
    linear-gradient(150deg, var(--scrubs-ink), var(--scrubs-dark));
  color: #EAF3F1;
  border-radius: var(--r-lg);
  padding: clamp(2.25rem, 5vw, 3.75rem);
  overflow: hidden;
  text-align: center;
}
.cta-band h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.cta-band p { color: #C2D4D0; margin-top: 0.85rem; max-width: 50ch; margin-inline: auto; }
.cta-band .btn-row { margin-top: 1.8rem; justify-content: center; }
.cta-band::after {
  content: "+";
  position: absolute;
  font-family: var(--font-display);
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  font-size: 30rem;
  line-height: 0.7;
  right: -3rem; bottom: -8rem;
  pointer-events: none;
}

/* ---------- Contact / form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--clinic);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.8rem 0.95rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--scrubs);
  background: #fff;
  box-shadow: 0 0 0 4px var(--teal-soft);
}
.field-hint { font-size: 0.8rem; color: var(--ink-faint); margin-top: 0.35rem; }

.contact-list { list-style: none; padding: 0; display: grid; gap: 0.4rem; }
.contact-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--scrubs);
}
.contact-list .ico svg { width: 20px; height: 20px; }
.contact-list .label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.contact-list .value { font-weight: 600; color: var(--ink); font-size: 1rem; }
.contact-list .value a { color: var(--ink); }
.contact-list .value a:hover { color: var(--scrubs); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.55rem 0; border-bottom: 1px solid var(--line); font-size: 0.93rem; }
.hours-table td:last-child { text-align: right; font-family: var(--font-mono); font-size: 0.85rem; color: var(--ink-soft); }
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table .today { font-weight: 700; color: var(--scrubs); }

.map-block {
  margin-top: 1.25rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--teal-soft), var(--clinic-2));
  padding: 2rem;
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
}
.map-block svg { width: 46px; height: 46px; color: var(--scrubs); margin-bottom: 0.5rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 460px at 85% -20%, var(--teal-soft) 0%, transparent 60%),
    var(--clinic);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.5rem, 5vw, 4.25rem);
}
.page-hero .lead { max-width: 46ch; margin-top: 1rem; }
.breadcrumbs { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.06em; color: var(--ink-faint); margin-bottom: 1.1rem; }
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs span[aria-current] { color: var(--scrubs); }

/* ---------- Service detail (services page) ---------- */
.service-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service-block:last-child { border-bottom: 0; }
.service-block-head .card-ico { width: 64px; height: 64px; border-radius: 16px; }
.service-block-head .card-ico svg { width: 32px; height: 32px; }
.service-block-head .card-tag { margin-top: 1rem; }
.service-block-body h2 { margin-bottom: 0.6rem; }
.service-block-body p { font-size: 1rem; }
.service-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-top: 1.4rem;
}
.service-cols h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--scrubs);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.service-cols ul { list-style: none; padding: 0; display: grid; gap: 0.45rem; }
.service-cols li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.service-cols li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 9px; height: 9px;
  border-radius: 2px;
  background: var(--saffron);
}

/* ---------- Values / approach ---------- */
.value-card {
  padding: 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  height: 100%;
}
.value-card .card-ico { background: var(--scrubs); color: #fff; border-color: var(--scrubs); }
.value-card .card-ico svg { color: #fff; }
.value-card h3 { margin-bottom: 0.4rem; }
.value-card p { font-size: 0.93rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--scrubs-ink);
  color: #B9CBC7;
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: #6E8580; }
.footer-brand p { color: #9DB4AF; font-size: 0.92rem; margin-top: 1rem; max-width: 32ch; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a { color: #B9CBC7; font-size: 0.93rem; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: grid; grid-template-columns: 18px 1fr; gap: 0.6rem; align-items: start; color: #B9CBC7; font-size: 0.92rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--teal); margin-top: 0.2rem; }
.footer-affil {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  font-size: 0.86rem;
  color: #9DB4AF;
}
.footer-affil a { color: #fff; font-weight: 600; text-decoration: underline; text-decoration-color: var(--saffron); text-underline-offset: 3px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  font-size: 0.84rem;
  color: #7C928D;
}
.footer-bottom a { color: #9DB4AF; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: #B9CBC7;
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social a:hover { background: var(--scrubs); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: 0.32s; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; } .mt-2 { margin-top: 0.5rem; } .mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; } .mt-5 { margin-top: 2rem; } .mt-6 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.maxw-ch-50 { max-width: 50ch; }
.maxw-ch-65 { max-width: 65ch; }
.text-ink { color: var(--ink); }
.hide-mobile { }
.show-mobile-only { display: none; }
.bg-pulse { position: relative; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}
.skip-link:focus { left: 0.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  :root { --header-h: 64px; }

  .nav-toggle { display: inline-flex; }

  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--clinic);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 1.4rem 1.4rem;
    transform: translateY(-130%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  body.nav-open .primary-nav { transform: translateY(0); }
  .primary-nav a {
    padding: 0.9rem 0.5rem;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.02rem;
  }
  .primary-nav a[aria-current="page"]::after { display: none; }

  .phone-link { display: none; }

  .hero-grid { grid-template-columns: 1fr; }
  .health-card { order: 2; max-width: 460px; }

  .split, .split--narrow-left { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block-head { display: flex; align-items: center; gap: 1rem; }
  .service-block-head .card-ico { width: 56px; height: 56px; }
  .service-block-head .card-tag { margin-top: 0; }

  .steps { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }
  .stats { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .grid--4 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { padding-inline: 1.1rem; }
  .header-call .call-text { display: none; }   /* icon-only on narrow phones */
  .grid--2, .grid--4 { grid-template-columns: 1fr; }
  .grid--services { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-cols { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .btn-row .btn { flex: 1 1 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: flex-start; }
  .hero-trust { gap: 0.6rem 1.1rem; }
  .health-card-head { flex-wrap: wrap; }
}

@media (max-width: 380px) {
  .stats { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Print */
@media print {
  .site-header, .cta-band .btn-row, .nav-toggle, .floating-wa { display: none !important; }
  body { color: #000; background: #fff; }
}
