/* ============================================================
   Pharmacie Hind — Design system
   Poppins (titres) + Inter (texte) · vert médical frais & clair
   All visual tokens are CSS variables so Tweaks can override them.
   ============================================================ */

:root {
  /* — Brand greens (tweakable primary) — */
  --primary:      #2E8B57;
  --primary-600:  #277a4c;
  --primary-700:  #1f6640;
  --primary-300:  #7cc79b;
  --primary-100:  #d6efe0;
  --primary-50:   #eef7f1;

  /* — Neutrals (subtly green-tinted) — */
  --ink:        #20302a;
  --ink-soft:   #41524a;
  --muted:      #6a7a72;
  --line:       #e3ece7;
  --line-soft:  #eef3f0;
  --bg:         #ffffff;
  --bg-alt:     #f4f9f6;
  --bg-deep:    #0f241b;

  /* — Type — */
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --fs-scale: 1;            /* tweakable text-size multiplier */

  /* — Shape — */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* — Elevation (tweakable intensity 0..1.6 via --shadow-k) — */
  --shadow-k: 1;
  --shadow-sm: 0 1px 2px rgba(20,50,35,calc(.05 * var(--shadow-k))),
               0 2px 8px rgba(20,50,35,calc(.05 * var(--shadow-k)));
  --shadow-md: 0 6px 18px rgba(20,50,35,calc(.08 * var(--shadow-k))),
               0 2px 6px rgba(20,50,35,calc(.05 * var(--shadow-k)));
  --shadow-lg: 0 24px 60px rgba(20,50,35,calc(.12 * var(--shadow-k))),
               0 8px 22px rgba(20,50,35,calc(.07 * var(--shadow-k)));

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);
}

/* ---------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: calc(17px * var(--fs-scale));
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -0.01em; }
p { text-wrap: pretty; }

/* ---------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(56px, 8vw, 112px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.bg-alt { background: var(--bg-alt); }
.bg-tint { background: var(--primary-50); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600;
  font-size: calc(13px * var(--fs-scale)); letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary-600);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--primary); border-radius: 2px; }

.h-display { font-size: clamp(2.4rem, 5.4vw, 4rem); }
.h-section { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.lead { font-size: calc(1.18rem * var(--fs-scale)); color: var(--ink-soft); line-height: 1.6; }
.muted { color: var(--muted); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 46ch; }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; }
.section-head .h-section { margin-top: 14px; }
.section-head p { margin-top: 16px; }

/* ---------------------------------------------------------- Buttons */
.btn {
  --btn-bg: var(--primary);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: calc(1rem * var(--fs-scale));
  padding: 14px 26px; border: 1.5px solid transparent; border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--primary-700); border-color: var(--primary-300); box-shadow: none; }
.btn--ghost:hover { background: var(--primary-50); box-shadow: none; }
.btn--white { --btn-bg: #fff; --btn-fg: var(--primary-700); }
.btn--wa { --btn-bg: #25D366; --btn-fg: #06351c; }
.btn--lg { padding: 17px 32px; font-size: calc(1.08rem * var(--fs-scale)); }
.btn--block { width: 100%; }

/* Button style variants driven by Tweaks (data-btn on <html>) */
[data-btn="outline"] .btn:not(.btn--ghost):not(.btn--wa) {
  --btn-bg: transparent; --btn-fg: var(--primary-700);
  border-color: var(--primary); box-shadow: none;
}
[data-btn="outline"] .btn:not(.btn--ghost):not(.btn--wa):hover { background: var(--primary-50); }
[data-btn="square"] .btn { border-radius: 12px; }
[data-btn="square"] { --radius-pill: 12px; }

/* ---------------------------------------------------------- Top bar */
.topbar { background: var(--bg-deep); color: #cfe0d7; font-size: .86rem; }
.topbar__in { display: flex; align-items: center; gap: 22px; min-height: 46px; flex-wrap: wrap; }
.topbar a { color: #cfe0d7; }
.topbar a:hover { color: #fff; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 15px; height: 15px; color: var(--primary-300); flex: none; }
.topbar__spacer { margin-left: auto; }
.topbar__social { display: inline-flex; gap: 8px; }
.topbar__social a { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; transition: .2s; }
.topbar__social a:hover { background: var(--primary); border-color: var(--primary); color: #06351c; }
.topbar__social svg { width: 14px; height: 14px; }
@media (max-width: 880px) { .topbar { display: none; } }

/* ---------------------------------------------------------- Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.is-stuck { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 1.22rem; color: var(--ink); }
.brand__mark {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-600));
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.brand__mark { position: relative; }
.brand__mark::before, .brand__mark::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: #fff; border-radius: 3px; }
.brand__mark::before { width: 18px; height: 6px; }
.brand__mark::after  { width: 6px; height: 18px; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: -2px; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: .98rem; color: var(--ink-soft);
  padding: 9px 14px; border-radius: var(--radius-pill); transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--primary-700); background: var(--primary-50); }
.nav__links a.is-active { color: var(--primary-700); background: var(--primary-50); }
.nav__cta { margin-left: 10px; }
.nav__toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); margin-left: auto; align-items: center; justify-content: center; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: .25s; }
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after  { position: absolute; top: 6px; }

@media (max-width: 920px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--bg); padding: 16px var(--gut) 26px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .25s;
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 13px 14px; font-size: 1.05rem; }
  .nav__cta { margin: 8px 0 0; }
}

/* ---------------------------------------------------------- Hero */
.hero { position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; background:
  radial-gradient(60% 80% at 88% -10%, var(--primary-50), transparent 60%),
  radial-gradient(50% 60% at 0% 110%, var(--primary-50), transparent 55%); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 72px); align-items: center; padding-block: clamp(48px, 7vw, 96px); }
.hero__grid .lead { margin-top: 22px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line); }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item__ic { width: 42px; height: 42px; border-radius: 12px; background: var(--primary-50); color: var(--primary-700); display: grid; place-items: center; flex: none; }
.trust-item__ic svg { width: 20px; height: 20px; }
.trust-item b { font-family: var(--font-head); font-size: .98rem; display: block; }
.trust-item span { font-size: .85rem; color: var(--muted); }
@media (max-width: 860px) { .hero__grid { grid-template-columns: 1fr; } .hero__media { order: -1; } }

/* ---------------------------------------------------------- Media placeholders */
.ph {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background-color: var(--primary-50);
  border: 1px solid var(--primary-100);
  display: grid; place-items: center; min-height: 240px; color: var(--primary-700);
}
.ph__label { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .8rem; letter-spacing: .04em; padding: 6px 12px; background: #fff; border: 1px solid var(--primary-100); border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }
.ph--portrait { aspect-ratio: 4 / 5; min-height: 0; }
.ph--wide { aspect-ratio: 16 / 10; min-height: 0; }
.ph--square { aspect-ratio: 1; min-height: 0; }
.ph--hero { aspect-ratio: 4 / 4.4; min-height: 0; box-shadow: var(--shadow-lg); }

/* floating stat chip on hero media */
.hero__media { position: relative; }
.chip-float {
  position: absolute; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.chip-float .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--primary-50); color: var(--primary-700); display: grid; place-items: center; flex: none; }
.chip-float b { font-family: var(--font-head); font-size: 1.1rem; display: block; }
.chip-float span { font-size: .78rem; color: var(--muted); }
.chip-float--tl { top: 18px; left: -22px; }
.chip-float--br { bottom: 24px; right: -22px; }
@media (max-width: 520px) { .chip-float--tl { left: 8px; } .chip-float--br { right: 8px; } }

/* ---------------------------------------------------------- Cards / grid */
.grid { display: grid; gap: clamp(18px, 2.4vw, 26px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-100); }
.card__ic { width: 52px; height: 52px; border-radius: 14px; background: var(--primary-50); color: var(--primary-700); display: grid; place-items: center; margin-bottom: 18px; }
.card__ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.24rem; }
.card p { margin-top: 10px; color: var(--ink-soft); font-size: .98rem; }
.card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-family: var(--font-head); font-weight: 600; font-size: .94rem; color: var(--primary-700); }
.card__link svg { width: 16px; height: 16px; transition: transform .2s; }
.card--hover:hover .card__link svg { transform: translateX(4px); }

/* feature list */
.feat-list { display: grid; gap: 16px; margin-top: 26px; }
.feat-list li { display: flex; gap: 14px; align-items: flex-start; list-style: none; }
.feat-list .tick { width: 28px; height: 28px; border-radius: 9px; background: var(--primary-50); color: var(--primary-700); display: grid; place-items: center; flex: none; margin-top: 2px; }
.feat-list .tick svg { width: 15px; height: 15px; }
.feat-list b { font-family: var(--font-head); }
.feat-list p { color: var(--ink-soft); font-size: .96rem; margin-top: 2px; }

/* ---------------------------------------------------------- Stats band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 3vw, 40px); }
.stat b { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--primary-700); display: block; line-height: 1; }
.stat span { color: var(--ink-soft); font-size: .98rem; margin-top: 8px; display: block; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; } }

/* ---------------------------------------------------------- Reviews */
.review { display: flex; flex-direction: column; gap: 16px; height: 100%; }
.review .stars { display: flex; gap: 3px; color: #f5a524; }
.review .stars svg { width: 18px; height: 18px; }
.review blockquote { font-size: 1.04rem; color: var(--ink); line-height: 1.6; }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-100); color: var(--primary-700); display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; flex: none; }
.review__who b { font-family: var(--font-head); font-size: .96rem; display: block; }
.review__who span { font-size: .82rem; color: var(--muted); }

/* ---------------------------------------------------------- FAQ */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; background: none; border: 0; padding: 24px 4px; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.faq__q .pm { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; flex: none; transition: .25s; position: relative; }
.faq__q .pm::before, .faq__q .pm::after { content: ""; position: absolute; background: var(--primary-700); border-radius: 2px; }
.faq__q .pm::before { width: 12px; height: 2px; }
.faq__q .pm::after  { width: 2px; height: 12px; transition: transform .25s; }
.faq__item.is-open .pm { border-color: var(--primary); background: var(--primary-50); }
.faq__item.is-open .pm::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 4px 24px; color: var(--ink-soft); max-width: 70ch; }

/* ---------------------------------------------------------- CTA band */
.cta-band { background: linear-gradient(135deg, var(--primary-700), var(--primary)); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); position: relative; overflow: hidden; }
.cta-band h2, .cta-band p { color: #fff; position: relative; }
.cta-band p { opacity: .9; }
.cta-band .hero__cta { margin-top: 28px; }

/* ---------------------------------------------------------- Footer */
.site-footer { background: var(--bg-deep); color: #cfe0d7; padding-block: clamp(48px, 6vw, 76px) 0; }
.site-footer a { color: #cfe0d7; }
.site-footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: #8fae9f; }
.footer__about { margin-top: 18px; color: #9fb8ac; font-size: .95rem; max-width: 32ch; }
.footer__col h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.footer__col li { font-size: .96rem; color: #9fb8ac; }
.footer__contact div { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 14px; font-size: .95rem; color: #cfe0d7; }
.footer__contact svg { width: 18px; height: 18px; color: var(--primary-300); flex: none; margin-top: 3px; }
.footer__bar { margin-top: 48px; border-top: 1px solid rgba(255,255,255,.1); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .86rem; color: #8fae9f; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- WhatsApp float */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: flex; align-items: center; gap: 0; }
.wa-float__btn { width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45); border: 0; transition: transform .2s; }
.wa-float__btn:hover { transform: scale(1.06); }
.wa-float__btn svg { width: 32px; height: 32px; }
.wa-float__pulse { position: absolute; inset: 0; border-radius: 50%; background: #25D366; opacity: .5; animation: wa-pulse 2.4s ease-out infinite; z-index: -1; }
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .5; } 70%,100% { transform: scale(1.7); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wa-float__pulse { animation: none; } }

/* ---------------------------------------------------------- Page hero (inner pages) */
.page-hero { background: var(--primary-50); position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 1; padding-block: clamp(48px, 7vw, 84px); }
.crumb { font-size: .9rem; color: var(--primary-700); font-family: var(--font-head); font-weight: 500; }
.crumb a { opacity: .8; } .crumb a:hover { opacity: 1; }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin-top: 12px; }
.page-hero p { margin-top: 16px; max-width: 60ch; }

/* Hero avec image de fond (gérée depuis l'admin) */
.page-hero--img { background-size: cover; background-position: center; }
.page-hero--img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(20,40,30,.72), rgba(20,40,30,.5)); pointer-events: none; }
.page-hero--img .crumb, .page-hero--img .crumb a, .page-hero--img h1, .page-hero--img p { color: #fff; }
.page-hero--img .crumb { opacity: .9; }

/* ---------------------------------------------------------- Blog */
.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-card .ph { border-radius: 0; min-height: 0; aspect-ratio: 16/10; border: 0; border-bottom: 1px solid var(--primary-100); }
.post-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.tag { align-self: flex-start; font-family: var(--font-head); font-weight: 600; font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; color: var(--primary-700); background: var(--primary-50); padding: 5px 12px; border-radius: var(--radius-pill); }
.post-card h3 { font-size: 1.18rem; margin-top: 14px; }
.post-card p { color: var(--ink-soft); font-size: .95rem; margin-top: 10px; }
.post-meta { display: flex; gap: 14px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .82rem; color: var(--muted); }
.post-card--feature { grid-column: span 2; }
.post-card--feature .ph { aspect-ratio: auto; }
@media (max-width: 620px) { .post-card--feature { grid-column: span 1; } }

/* ---------------------------------------------------------- Contact / forms */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.field { display: block; margin-bottom: 18px; }
.field label { font-family: var(--font-head); font-weight: 500; font-size: .92rem; display: block; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--primary-300); box-shadow: 0 0 0 4px var(--primary-50); }
.field textarea { resize: vertical; min-height: 130px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .ic { width: 48px; height: 48px; border-radius: 13px; background: var(--primary-50); color: var(--primary-700); display: grid; place-items: center; flex: none; }
.info-row .ic svg { width: 22px; height: 22px; }
.info-row b { font-family: var(--font-head); display: block; font-size: 1.02rem; }
.info-row span { color: var(--ink-soft); font-size: .96rem; }
.map-embed { border: 0; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* hours table */
.hours { list-style: none; padding: 0; }
.hours li { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: .98rem; }
.hours li:last-child { border-bottom: 0; }
.hours .day { color: var(--ink-soft); }
.hours .time { font-family: var(--font-head); font-weight: 500; }
.hours li.is-today { color: var(--primary-700); font-weight: 600; }
.badge-open { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--primary-700); background: var(--primary-50); padding: 7px 14px; border-radius: var(--radius-pill); }
.badge-open .dot { width: 9px; height: 9px; border-radius: 50%; background: #25D366; box-shadow: 0 0 0 3px rgba(37,211,102,.2); }

/* ---------------------------------------------------------- Scroll reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* split rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

/* ============================================================
   Performance — content-visibility for below-fold sections
   ============================================================ */
.section { content-visibility: auto; contain-intrinsic-size: 0 600px; }

/* ============================================================
   Responsive — Tablet (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .cta-band { padding: clamp(28px, 5vw, 48px) clamp(20px, 5vw, 40px); text-align: center; }
  .cta-band .hero__cta { justify-content: center; }
  .faq__q { font-size: 1rem; padding: 20px 4px; }
  .footer__bar { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .map-embed { aspect-ratio: 4/3; }
}

/* ============================================================
   Responsive — Mobile (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  :root { --gut: 18px; }

  .btn--lg { padding: 14px 20px; font-size: .96rem; }
  .btn { gap: 8px; }

  .card { padding: 20px; }
  .card__ic { width: 44px; height: 44px; border-radius: 12px; }
  .card__ic svg { width: 22px; height: 22px; }

  .h-display { font-size: clamp(2rem, 8vw, 2.8rem); }
  .h-section { font-size: clamp(1.55rem, 6vw, 2rem); }
  .lead { font-size: 1rem; }

  .section { padding-block: clamp(36px, 8vw, 64px); }
  .section--tight { padding-block: clamp(28px, 6vw, 48px); }
  .section-head .h-section { font-size: clamp(1.5rem, 6.5vw, 2rem); }

  .page-hero h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .page-hero .container { padding-block: clamp(36px, 8vw, 60px); }

  .stat b { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .stat span { font-size: .9rem; }

  .hero__trust { gap: 14px; }
  .trust-item { width: 100%; }

  .split { gap: 28px; }

  .cta-band { padding: 28px 20px; border-radius: var(--radius); }
  .cta-band h2 { font-size: clamp(1.3rem, 6vw, 1.7rem); }
  .cta-band p { font-size: .94rem; }
  .cta-band .hero__cta { flex-direction: column; align-items: center; }
  .cta-band .btn { width: 100%; max-width: 320px; justify-content: center; }

  .contact-grid { gap: 24px; }
  .info-row .ic { width: 40px; height: 40px; border-radius: 11px; }
  .info-row .ic svg { width: 18px; height: 18px; }
  .info-row b { font-size: .94rem; }

  .post-card__body { padding: 16px 16px 20px; }
  .post-card h3 { font-size: 1.06rem; }

  .faq__q { font-size: .98rem; padding: 18px 4px; gap: 14px; }
  .faq__a p { padding: 0 4px 18px; font-size: .95rem; }

  .review blockquote { font-size: .96rem; }

  .footer__col h4 { font-size: .88rem; }
  .footer__contact div { font-size: .9rem; }
  .footer__bar { font-size: .82rem; }
  .site-footer { padding-block: clamp(36px, 7vw, 60px) 0; }

  .nav__cta .btn { font-size: .88rem; padding: 10px 16px; }

  .wa-float { right: 14px; bottom: 14px; }
  .wa-float__btn { width: 52px; height: 52px; }
  .wa-float__btn svg { width: 26px; height: 26px; }
}

/* ============================================================
   Responsive — Very small phones (≤ 360px)
   ============================================================ */
@media (max-width: 360px) {
  :root { --gut: 14px; }
  .page-hero h1 { font-size: clamp(1.55rem, 8vw, 2rem); }
  .h-section { font-size: clamp(1.4rem, 7vw, 1.8rem); }
  .btn--lg { padding: 13px 16px; font-size: .9rem; }
  .stats { gap: 14px; }
}
