/* Calm Clinical — tokeni templata, scopovani na .sec-calm-header. */

/* ============================================================
   DESIGN TOKENS — Template 1 "Calm Clinical"
   Niche variant: A — General / Family practice
   Source of truth for color, spacing, radius, type, motion.
   Change ONLY this file to re-skin the whole template.
   ============================================================ */

.sec-calm-header {
  /* ---------- Color ---------- */
  --c-bg:            #FAFBFC;
  --c-bg-alt:        #F7F9FA;
  --c-surface:       #E8F1F5;
  --c-surface-soft:  #F1F7FA;
  --c-white:         #FFFFFF;

  --c-primary:       #2C5F7C;
  --c-primary-dk:    #1B4B66;
  --c-primary-lt:    #4A8AAD;
  --c-primary-05:    rgba(44, 95, 124, 0.05);
  --c-primary-10:    rgba(44, 95, 124, 0.10);
  --c-primary-20:    rgba(44, 95, 124, 0.20);

  --c-accent:        #E8A87C;   /* warm coral — CTAs / small highlights only */
  --c-accent-dk:     #CE8657;
  --c-accent-soft:   #FBEDE2;

  --c-text:          #1F2937;
  --c-text-muted:    #566573;   /* 5.6:1 on --c-bg */
  --c-text-invert:   #FFFFFF;

  --c-border:        rgba(44, 95, 124, 0.14);
  --c-border-strong: rgba(44, 95, 124, 0.26);

  --c-whatsapp:      #128C7E;   /* AA-safe WhatsApp teal-green */
  --c-whatsapp-dk:   #0E6F63;
  --c-whatsapp-vivid:#25D366;   /* icon / glow only, never behind text */
  --c-star:          #E5A32B;
  --c-google-blue:   #4285F4;

  /* ---------- Elevation ---------- */
  --sh-xs: 0 1px 2px rgba(27, 75, 102, 0.06);
  --sh-sm: 0 2px 8px rgba(27, 75, 102, 0.07);
  --sh-md: 0 8px 24px -6px rgba(27, 75, 102, 0.12), 0 2px 6px rgba(27, 75, 102, 0.05);
  --sh-lg: 0 20px 48px -12px rgba(27, 75, 102, 0.18), 0 4px 12px rgba(27, 75, 102, 0.06);
  --sh-xl: 0 32px 72px -16px rgba(27, 75, 102, 0.24);
  --sh-focus: 0 0 0 3px var(--c-bg), 0 0 0 6px var(--c-primary-lt);

  /* ---------- Radius (soft curves are the motif) ---------- */
  --r-xs:   8px;
  --r-sm:  12px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-2xl: 40px;
  --r-pill: 999px;
  --r-circle: 50%;

  /* ---------- Spacing — 8px base ---------- */
  --sp-1:   4px;
  --sp-2:   8px;
  --sp-3:  16px;
  --sp-4:  24px;
  --sp-5:  32px;
  --sp-6:  48px;
  --sp-7:  64px;
  --sp-8:  96px;
  --sp-9: 128px;

  --section-y: clamp(64px, 9vw, 128px);
  --gutter:    clamp(20px, 5vw, 48px);
  --maxw:      1200px;
  --maxw-text: 68ch;

  /* ---------- Typography ---------- */
  --ff-display: "Poppins", "Segoe UI", system-ui, sans-serif;
  --ff-body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --fs-xs:   0.8125rem;                          /* 13px — labels only */
  --fs-sm:   0.9375rem;                          /* 15px */
  --fs-base: 1rem;                               /* 16px minimum body */
  --fs-md:   1.0625rem;                          /* 17px */
  --fs-lg:   clamp(1.125rem, 0.4vw + 1.05rem, 1.25rem);
  --fs-h4:   clamp(1.25rem, 0.6vw + 1.1rem, 1.4rem);
  --fs-h3:   clamp(1.5rem, 1vw + 1.25rem, 1.875rem);
  --fs-h2:   clamp(2rem, 2.4vw + 1.35rem, 3rem);
  --fs-h1:   clamp(2.5rem, 4.4vw + 1.25rem, 4.25rem);

  --lh-tight: 1.12;
  --lh-snug:  1.28;
  --lh-body:  1.65;

  --ls-tight: -0.02em;
  --ls-label:  0.12em;

  /* ---------- Motion ---------- */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --t-fast: 160ms;
  --t-base: 260ms;
  --t-slow: 620ms;

  /* ---------- Layout ---------- */
  --header-h: 76px;
  --z-header: 100;
  --z-mobilebar: 90;
  --z-menu: 95;    /* BELOW the header, so the burger stays clickable while open */
}

@media (max-width: 700px) {
  .sec-calm-header { --header-h: 64px; }
}

/* Calm Clinical — reset i zajedničke primitive (base.css). */

/* ============================================================
   BASE — reset, typography, shared primitives (buttons,
   section headers, eyebrows, smile-arc device, reveal states)
   Loaded once, before any section stylesheet.
   ============================================================ */

.sec-calm-header *, .sec-calm-header *::before, .sec-calm-header *::after { box-sizing: border-box; }

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

.sec-calm-header {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.sec-calm-header h1, .sec-calm-header h2, .sec-calm-header h3, .sec-calm-header h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--c-primary-dk);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-snug);
  margin: 0;
  text-wrap: balance;
}
.sec-calm-header h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); }
.sec-calm-header h2 { font-size: var(--fs-h2); line-height: var(--lh-tight); }
.sec-calm-header h3 { font-size: var(--fs-h3); }
.sec-calm-header h4 { font-size: var(--fs-h4); }

.sec-calm-header p { margin: 0; text-wrap: pretty; }
.sec-calm-header ul, .sec-calm-header ol { margin: 0; padding: 0; list-style: none; }

.sec-calm-header a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

.sec-calm-header button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }

.sec-calm-header :focus-visible {
  outline: 3px solid var(--c-primary-lt);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}
.sec-calm-header :focus:not(:focus-visible) { outline: none; }

.sec-calm-header ::selection { background: var(--c-accent); color: var(--c-text); }

/* ---------- Layout primitives ---------- */

.sec-calm-header .u-container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sec-calm-header .u-section { position: relative; padding-block: var(--section-y); }

.sec-calm-header .u-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap; border: 0;
}

.sec-calm-header .u-skip-link {
  position: absolute; top: 8px; left: 8px;
  transform: translateY(-160%);
  z-index: 999;
  background: var(--c-primary-dk); color: var(--c-white);
  padding: 12px 20px; border-radius: var(--r-sm);
  font-weight: 600; font-size: var(--fs-sm);
}
.sec-calm-header .u-skip-link:focus { transform: translateY(0); }

/* ---------- Section header block ---------- */

.sec-calm-header .u-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body);
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--c-primary);
}
.sec-calm-header .u-eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--c-accent); flex: none;
}
.sec-calm-header .u-eyebrow--center::after {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--c-accent); flex: none;
}

.sec-calm-header .u-head { max-width: 60ch; }
.sec-calm-header .u-head--center { margin-inline: auto; text-align: center; }
.sec-calm-header .u-head > * + * { margin-top: var(--sp-3); }
.sec-calm-header .u-head p {
  color: var(--c-text-muted);
  font-size: var(--fs-lg);
  max-width: 56ch;
}
.sec-calm-header .u-head--center p { margin-inline: auto; }

/* Signature device: soft upward smile arc under a word */
.sec-calm-header .u-arc { position: relative; white-space: nowrap; color: var(--c-primary); }
.sec-calm-header .u-arc::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: -0.24em;
  height: 0.34em;
  background:
    radial-gradient(120% 190% at 50% -85%, transparent 63%, var(--c-accent) 64%, var(--c-accent) 78%, transparent 79%);
  pointer-events: none;
}

/* ---------- Buttons ---------- */

.sec-calm-header .u-btn {
  --btn-bg: var(--c-primary);
  --btn-fg: var(--c-white);
  --btn-bd: transparent;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--ff-display);
  font-size: var(--fs-md); font-weight: 600; letter-spacing: -0.01em;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  isolation: isolate;
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              background-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
}
.sec-calm-header .u-btn svg { flex: none; }
.sec-calm-header .u-btn:hover { transform: translateY(-2px); }
.sec-calm-header .u-btn:active { transform: translateY(0); transition-duration: 60ms; }

.sec-calm-header .u-btn--primary { box-shadow: var(--sh-md); }
.sec-calm-header .u-btn--primary:hover { --btn-bg: var(--c-primary-dk); box-shadow: var(--sh-lg); }

.sec-calm-header .u-btn--accent { --btn-bg: var(--c-accent); --btn-fg: var(--c-text); box-shadow: var(--sh-sm); }
.sec-calm-header .u-btn--accent:hover { --btn-bg: var(--c-accent-dk); box-shadow: var(--sh-md); }

.sec-calm-header .u-btn--ghost { --btn-bg: transparent; --btn-fg: var(--c-primary-dk); --btn-bd: var(--c-border-strong); }
.sec-calm-header .u-btn--ghost:hover { --btn-bg: var(--c-white); --btn-bd: var(--c-primary); box-shadow: var(--sh-sm); }

.sec-calm-header .u-btn--white { --btn-bg: var(--c-white); --btn-fg: var(--c-primary-dk); box-shadow: var(--sh-md); }
.sec-calm-header .u-btn--white:hover { --btn-bg: var(--c-surface); box-shadow: var(--sh-lg); }

.sec-calm-header .u-btn--wa { --btn-bg: var(--c-whatsapp); --btn-fg: var(--c-white); box-shadow: var(--sh-md); }
.sec-calm-header .u-btn--wa:hover { --btn-bg: var(--c-whatsapp-dk); box-shadow: var(--sh-lg); }

.sec-calm-header .u-btn--lg { min-height: 60px; padding: 18px 34px; font-size: var(--fs-lg); border-radius: var(--r-md); }
.sec-calm-header .u-btn--block { width: 100%; }

/* ---------- Soft organic background blob (max one per section) ---------- */

.sec-calm-header .u-blob {
  position: absolute;
  border-radius: 50% 42% 58% 46% / 48% 54% 44% 56%;
  filter: blur(2px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Scroll reveal ---------- */

/* The hidden start state is scoped to .has-js (set by app.js). If the
   script never runs, content renders normally instead of staying blank. */
.sec-calm-header.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.sec-calm-header.has-js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .sec-calm-header { scroll-behavior: auto; }
  .sec-calm-header *, .sec-calm-header *::before, .sec-calm-header *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .sec-calm-header.has-js [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .sec-calm-header .site-header, .sec-calm-header .mobile-bar, .sec-calm-header .cta, .sec-calm-header .parallax { display: none !important; }
  .sec-calm-header { background: #fff; }
}

/* ============================================================
   MEDIA SLOTS — every image slot also takes a <video>

   Each slot rule is written as `:is(img,video)`, so swapping the
   tag is the whole job — sizing, crop and radius stay identical:

     <img   src="_shared/img/hero.svg" width="900" height="1120" alt="…">
     <video src="_shared/video/hero.mp4" poster="_shared/img/hero.svg"
            width="900" height="1120" data-inline muted loop playsinline
            aria-label="…"></video>

   `data-inline` hands the element to app.js, which plays it only
   while it is on screen, pauses it when the tab is hidden, adds a
   pause control (WCAG 2.2.2) and skips autoplay entirely under
   prefers-reduced-motion — the poster stays in that case.

   Keep width/height (or let the slot's aspect-ratio do it) so the
   layout does not shift while the file loads.
   ============================================================ */

/* Baseline for slots that never sized their <img> explicitly. */
.sec-calm-header video { width: 100%; height: auto; }

/* Parent of an inline video: only promoted when it is static, so a
   slot that already positions itself is left alone. */
.sec-calm-header .has-inline-video { position: relative; }

.sec-calm-header .u-mediactl {
  position: absolute;
  right: 10px; bottom: 10px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--sh-sm);
  color: var(--c-text);
  font-family: var(--ff-display);
  font-size: var(--fs-xs); font-weight: 600;
  cursor: pointer;
  transition: background-color var(--t-base) var(--ease);
}
.sec-calm-header .u-mediactl:hover { background: #fff; }
.sec-calm-header .u-mediactl__ic { position: relative; width: 12px; height: 12px; flex: none; }
.sec-calm-header .u-mediactl__ic::before, 
.sec-calm-header .u-mediactl__ic::after {
  content: "";
  position: absolute; top: 0;
  width: 4px; height: 12px;
  border-radius: 1px;
  background: currentColor;
}
.sec-calm-header .u-mediactl__ic::before { left: 0; }
.sec-calm-header .u-mediactl__ic::after { right: 0; }

/* paused -> the icon becomes a play triangle */
.sec-calm-header .u-mediactl[aria-pressed="true"] .u-mediactl__ic::before {
  left: 1px;
  width: 0; height: 0;
  border-radius: 0;
  background: none;
  border-left: 11px solid currentColor;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.sec-calm-header .u-mediactl[aria-pressed="true"] .u-mediactl__ic::after { opacity: 0; }

/* Small slots (avatars, thumbnails) do not get room for a label. */
.sec-calm-header .u-mediactl--compact { padding: 0; width: 44px; justify-content: center; }
.sec-calm-header .u-mediactl--compact .u-mediactl__tx { display: none; }

/* Sekcija header. */

/* ============================================================
   SECTION: HEADER — sticky nav, mobile drawer, mobile action bar
   ============================================================ */

.sec-calm-header .site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-header);
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
}

.sec-calm-header .site-header::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(250, 251, 252, 0.86);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid var(--c-border);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
  pointer-events: none;
}
.sec-calm-header .site-header.is-stuck::after { opacity: 1; }
.sec-calm-header .site-header.is-stuck { box-shadow: var(--sh-sm); }

.sec-calm-header .site-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

/* ---------- Brand ---------- */

.sec-calm-header .brand {
  display: flex; align-items: center; gap: 12px;
  margin-right: auto;
  color: var(--c-primary-dk);
  flex: none;
}
.sec-calm-header .brand__mark {
  width: 42px; height: 42px;
  color: var(--c-primary);
  border-radius: var(--r-circle);
  background: var(--c-white);
  box-shadow: var(--sh-sm);
  display: grid; place-items: center;
  transition: transform var(--t-base) var(--ease-out);
}
.sec-calm-header .brand__mark svg { width: 30px; height: 30px; }
.sec-calm-header .brand:hover .brand__mark { transform: rotate(-8deg) scale(1.05); }

.sec-calm-header .brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.sec-calm-header .brand__text strong {
  font-family: var(--ff-display);
  font-size: 1.2rem; font-weight: 600; letter-spacing: -0.02em;
}
.sec-calm-header .brand__text small {
  font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-text-muted);
}

/* ---------- Desktop nav ---------- */

.sec-calm-header .site-nav__list { display: flex; align-items: center; gap: 4px; }
.sec-calm-header .site-nav__list a {
  position: relative;
  display: block;
  padding: 10px 14px;
  border-radius: var(--r-xs);
  font-size: var(--fs-sm); font-weight: 500;
  color: var(--c-text);
}
.sec-calm-header .site-nav__list a::after {
  content: "";
  position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; border-radius: 2px;
  background: var(--c-accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-base) var(--ease-out);
}
.sec-calm-header .site-nav__list a:hover { color: var(--c-primary-dk); }
.sec-calm-header .site-nav__list a:hover::after { transform: scaleX(1); }

/* ---------- Header actions ---------- */

.sec-calm-header .site-header__actions { display: flex; align-items: center; gap: 12px; flex: none; }

.sec-calm-header .header-phone {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  color: var(--c-primary-dk);
}
.sec-calm-header .header-phone:hover { background: var(--c-primary-05); }
.sec-calm-header .header-phone__icon {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  border-radius: var(--r-circle);
  background: var(--c-surface);
  color: var(--c-primary);
}
.sec-calm-header .header-phone__icon svg { width: 18px; height: 18px; }
.sec-calm-header .header-phone__text { display: flex; flex-direction: column; line-height: 1.15; }
.sec-calm-header .header-phone__text small {
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-text-muted);
}
.sec-calm-header .header-phone__text strong { font-size: var(--fs-sm); font-weight: 600; white-space: nowrap; }

.sec-calm-header .header-cta { min-height: 46px; padding: 12px 22px; font-size: var(--fs-sm); }

/* ---------- Burger ---------- */

.sec-calm-header .nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: var(--c-white);
  box-shadow: var(--sh-sm);
  place-items: center;
}
.sec-calm-header .nav-toggle__bars { display: block; width: 20px; }
.sec-calm-header .nav-toggle__bars i {
  display: block; height: 2px; border-radius: 2px;
  background: var(--c-primary-dk);
  transition: transform var(--t-base) var(--ease-out), opacity var(--t-fast) var(--ease);
}
.sec-calm-header .nav-toggle__bars i + i { margin-top: 5px; }
.sec-calm-header .nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sec-calm-header .nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(2) { opacity: 0; }
.sec-calm-header .nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile drawer ---------- */

.sec-calm-header .mobile-menu { position: fixed; inset: 0; z-index: var(--z-menu); }
.sec-calm-header .mobile-menu[hidden] { display: none; }

.sec-calm-header .mobile-menu__scrim {
  position: absolute; inset: 0;
  background: rgba(27, 75, 102, 0.4);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
  cursor: default;
}
.sec-calm-header .mobile-menu__panel {
  position: absolute; inset: 0 0 auto 0;
  z-index: 1;
  padding: calc(var(--header-h) + 20px) var(--gutter) var(--sp-5);
  background: var(--c-bg);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  box-shadow: var(--sh-xl);
  transform: translateY(-102%);
  transition: transform 420ms var(--ease-out);
}
.sec-calm-header .mobile-menu.is-open .mobile-menu__scrim { opacity: 1; }
.sec-calm-header .mobile-menu.is-open .mobile-menu__panel { transform: none; }

.sec-calm-header .mobile-menu__list { display: grid; gap: 2px; margin-bottom: var(--sp-4); }
.sec-calm-header .mobile-menu__list a {
  display: flex; align-items: center;
  min-height: 54px; padding: 12px 16px;
  border-radius: var(--r-sm);
  font-family: var(--ff-display);
  font-size: 1.125rem; font-weight: 500;
  color: var(--c-primary-dk);
  border-bottom: 1px solid var(--c-border);
}
.sec-calm-header .mobile-menu__list a:active { background: var(--c-surface); }

.sec-calm-header .mobile-menu__foot { display: grid; gap: 12px; text-align: center; }
.sec-calm-header .mobile-menu__tel {
  font-family: var(--ff-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--c-primary);
  padding: 10px;
}
.sec-calm-header .mobile-menu__hours { font-size: var(--fs-sm); color: var(--c-text-muted); }

/* ---------- Sticky mobile action bar ---------- */

.sec-calm-header .mobile-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: var(--z-mobilebar);
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -6px 24px -10px rgba(27, 75, 102, 0.24);
  transform: translateY(110%);
  transition: transform 420ms var(--ease-out);
}
.sec-calm-header .mobile-bar.is-visible { transform: none; }

.sec-calm-header .mobile-bar__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  min-height: 52px;
  border-radius: var(--r-sm);
  font-size: 0.75rem; font-weight: 600;
  color: var(--c-primary-dk);
}
.sec-calm-header .mobile-bar__item svg { width: 21px; height: 21px; }
.sec-calm-header .mobile-bar__item--wa { color: var(--c-whatsapp); }
.sec-calm-header .mobile-bar__item--cta { background: var(--c-primary); color: var(--c-white); }
.sec-calm-header .mobile-bar__item:active { transform: scale(0.97); }

/* ---------- Breakpoints ---------- */

@media (max-width: 1080px) {
  .sec-calm-header .site-nav { display: none; }
  .sec-calm-header .nav-toggle { display: grid; }
}

@media (max-width: 760px) {
  .sec-calm-header .header-phone__text, .sec-calm-header .header-cta { display: none; }
  .sec-calm-header .mobile-bar { display: grid; }
  .sec-calm-header { padding-bottom: 76px; }
}

@media (max-width: 420px) {
  .sec-calm-header .brand__text small { display: none; }
}