/* =========================================================================
   Healing Technologies — design system
   Editorial-clinical. Navy + gold from the AADP seal, vermilion as accent.
   Written with logical properties throughout so the Hebrew RTL build needs
   no direction-specific overrides.
   ========================================================================= */

:root {
  /* ink */
  --ink-900: #071a33;
  --ink-800: #0a2140;
  --ink-700: #123156;
  --ink-600: #1d4270;
  --ink-400: #55708f;
  --ink-300: #8296ad;

  /* paper */
  --paper: #fbfaf7;
  --paper-2: #f4f1ea;
  --paper-3: #ebe6db;
  --white: #ffffff;

  /* accents */
  --gold-600: #a8802c;
  --gold-500: #c9a24a;
  --gold-300: #e6d29a;
  --gold-100: #f6eeda;
  --verm: #c4472c;
  --verm-dark: #9e3520;
  --good: #2f7d5f;

  /* surfaces */
  --line: rgba(10, 33, 64, 0.12);
  --line-soft: rgba(10, 33, 64, 0.07);
  --shadow-sm: 0 1px 2px rgba(7, 26, 51, 0.05), 0 4px 12px rgba(7, 26, 51, 0.05);
  --shadow-md: 0 2px 4px rgba(7, 26, 51, 0.05), 0 14px 34px rgba(7, 26, 51, 0.09);
  --shadow-lg: 0 4px 8px rgba(7, 26, 51, 0.06), 0 28px 60px rgba(7, 26, 51, 0.14);

  /* type */
  --font-display: 'Frank Ruhl Libre', Georgia, 'Times New Roman', serif;
  --font-body: 'Assistant', 'Segoe UI', sans-serif;

  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --step-1: clamp(1.15rem, 1.08rem + 0.35vw, 1.35rem);
  --step-2: clamp(1.38rem, 1.24rem + 0.68vw, 1.75rem);
  --step-3: clamp(1.7rem, 1.44rem + 1.3vw, 2.45rem);
  --step-4: clamp(2.1rem, 1.6rem + 2.4vw, 3.4rem);
  --step-5: clamp(2.5rem, 1.6rem + 4.2vw, 4.6rem);

  /* layout */
  --shell: 1180px;
  --shell-narrow: 820px;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --sec-y: clamp(3.75rem, 8vw, 7.5rem);
  --radius: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.22, 0.68, 0.3, 1);
  --head-h: 74px;
}

/* ---------------------------------------------------------------- reset */

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

html {
  scroll-behavior: smooth;
  scroll-padding-block-start: calc(var(--head-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-800);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle paper grain, kept cheap: one repeating SVG, no extra request. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

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

/* Components below set explicit display values; keep [hidden] authoritative. */
[hidden] { display: none !important; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-block-end: 0; }

a { color: inherit; }

ul, ol { margin: 0; padding: 0; list-style: none; }

button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--gold-300); color: var(--ink-900); }

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

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

.skip {
  position: absolute;
  inset-block-start: -100%;
  inset-inline-start: 1rem;
  z-index: 200;
  background: var(--ink-800);
  color: var(--white);
  padding: 0.8rem 1.2rem;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  font-weight: 600;
}
.skip:focus { inset-block-start: 0; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}

/* ---------------------------------------------------------------- icons */

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
}
.icon--sm { width: 1em; height: 1em; }
.icon--up { transform: rotate(-90deg); }
.icon--down { transform: rotate(90deg); }
.icon--quote { width: 2.2rem; height: 2.2rem; color: var(--gold-500); }
.icon--mute { color: var(--ink-300); }

/* Directional icons flip in RTL. */
[dir='rtl'] .btn .icon,
[dir='rtl'] .link-arrow .icon,
[dir='rtl'] .scard__tag .icon,
[dir='rtl'] .icon--go,
[dir='rtl'] .ticks--mute .icon { transform: scaleX(-1); }
[dir='rtl'] .icon--up { transform: rotate(-90deg); }
[dir='rtl'] .icon--down { transform: rotate(90deg); }

/* -------------------------------------------------------------- buttons */

.btn {
  --btn-bg: var(--ink-800);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 0.78em 1.5em;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn .icon { transition: transform 0.25s var(--ease); }
.btn:hover .icon { transform: translateX(3px); }
[dir='rtl'] .btn:hover .icon { transform: scaleX(-1) translateX(3px); }

.btn--solid { --btn-bg: var(--verm); --btn-fg: var(--white); }
.btn--solid:hover { --btn-bg: var(--verm-dark); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: currentColor;
  border-color: currentColor;
  opacity: 0.92;
}
.btn--ghost:hover { --btn-bg: rgba(255, 255, 255, 0.1); opacity: 1; }

.btn--line {
  --btn-bg: rgba(255, 255, 255, 0.08);
  --btn-fg: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}
.btn--line:hover { --btn-bg: rgba(255, 255, 255, 0.18); }

.btn--lg { padding: 0.95em 1.9em; font-size: var(--step-0); }
.btn--sm { padding: 0.55em 1.1em; font-size: var(--step--1); }
.btn--block { display: flex; width: 100%; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 600;
  color: var(--ink-700);
  text-decoration: none;
  border-block-end: 2px solid var(--gold-300);
  padding-block-end: 2px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.link-arrow:hover { color: var(--verm); border-color: var(--verm); }
.link-arrow .icon { transition: transform 0.25s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }
[dir='rtl'] .link-arrow:hover .icon { transform: scaleX(-1) translateX(4px); }

/* --------------------------------------------------------------- header */

.site-head {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  border-block-end: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-head.is-stuck {
  border-block-end-color: var(--line-soft);
  box-shadow: 0 8px 24px rgba(7, 26, 51, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-inline-end: auto;
}
.brand__seal { width: 42px; height: 42px; flex: none; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.16rem;
  letter-spacing: -0.02em;
  color: var(--ink-800);
}
.brand__name em { font-style: normal; font-weight: 400; color: var(--gold-600); }
.brand__sub {
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-400);
  font-weight: 600;
}

/* The tagline wraps to two lines on narrow phones and inflates the header. */
@media (max-width: 520px) {
  .brand__sub { display: none; }
  .brand__seal { width: 38px; height: 38px; }
}

.nav { display: none; }
.nav__list { display: flex; gap: 0.35rem; }
.nav__list a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-700);
  position: relative;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__list a::after {
  content: '';
  position: absolute;
  inset-block-end: 0.25rem;
  inset-inline: 0.75rem;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: inline-start;
  transition: transform 0.28s var(--ease);
}
.nav__list a:hover { color: var(--ink-900); background: rgba(10, 33, 64, 0.04); }
.nav__list a:hover::after,
.nav__list a[aria-current='page']::after { transform: scaleX(1); }
.nav__list a[aria-current='page'] { color: var(--ink-900); font-weight: 600; }

.head-actions { display: flex; align-items: center; gap: 0.5rem; }

.lang {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink-700);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.lang:hover { border-color: var(--gold-500); background: var(--gold-100); }

.head-actions .btn { display: none; }

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.burger__box { display: grid; gap: 4px; width: 18px; }
.burger__box span {
  display: block;
  height: 2px;
  background: var(--ink-800);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.burger[aria-expanded='true'] .burger__box span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded='true'] .burger__box span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] .burger__box span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mnav {
  border-block-start: 1px solid var(--line-soft);
  background: var(--paper);
  padding: 1rem var(--gutter) 1.5rem;
  animation: mnav-in 0.28s var(--ease);
}
@keyframes mnav-in {
  from { opacity: 0; transform: translateY(-8px); }
}
.mnav__list { display: grid; gap: 0.15rem; margin-block-end: 1.15rem; }
.mnav__list a {
  display: block;
  padding: 0.8rem 0.5rem;
  border-block-end: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--ink-800);
}
.mnav__list a[aria-current='page'] { color: var(--verm); }
.mnav__foot { display: grid; gap: 0.85rem; justify-items: center; }

@media (min-width: 1020px) {
  .nav { display: block; }
  .burger { display: none; }
  .head-actions .btn { display: inline-flex; }
  .mnav { display: none !important; }
}

/* ----------------------------------------------------------------- hero */

.hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  padding-block: clamp(4.5rem, 11vw, 9rem) clamp(4rem, 9vw, 7.5rem);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(7, 26, 51, 0.94) 0%, rgba(10, 33, 64, 0.85) 42%, rgba(18, 49, 86, 0.6) 100%),
    radial-gradient(120% 90% at 85% 15%, rgba(201, 162, 74, 0.28), transparent 60%);
}
[dir='rtl'] .hero::after { background:
    linear-gradient(-120deg, rgba(7, 26, 51, 0.94) 0%, rgba(10, 33, 64, 0.85) 42%, rgba(18, 49, 86, 0.6) 100%),
    radial-gradient(120% 90% at 15% 15%, rgba(201, 162, 74, 0.28), transparent 60%); }

.hero__in { max-width: 800px; }

.hero__title {
  font-size: var(--step-5);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-block: 0.35em 0.55em;
  display: grid;
}
.hero__title-em {
  font-weight: 900;
  background: linear-gradient(100deg, var(--gold-300), var(--gold-500) 55%, var(--gold-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: var(--step-1);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  max-width: 62ch;
  margin-block-end: 2rem;
  font-weight: 300;
}
.hero__lead em { font-style: italic; color: var(--gold-300); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.hero__note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-block-start: 1.75rem;
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.9rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before {
  content: '';
  width: 1.9rem;
  height: 1px;
  background: currentColor;
}
.eyebrow--light { color: var(--gold-300); }

/* ------------------------------------------------------------ trust band */

.band--trust {
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.8);
  padding-block: clamp(1.75rem, 3.5vw, 2.5rem);
}
.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem 2rem;
}
.trust__item {
  display: grid;
  gap: 0.2rem;
  padding-inline-start: 1rem;
  border-inline-start: 2px solid var(--gold-500);
}
.trust__val {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.trust__lab { font-size: 0.84rem; line-height: 1.4; color: rgba(255, 255, 255, 0.62); }

/* ------------------------------------------------------------- sections */

.sec { padding-block: var(--sec-y); position: relative; }
.sec--paper2 { background: var(--paper-2); }
.sec--ink {
  background: var(--ink-800);
  color: rgba(255, 255, 255, 0.84);
}
.sec--ink h2, .sec--ink h3 { color: var(--white); }
.sec--ink .shead__lead { color: rgba(255, 255, 255, 0.7); }

.shead { max-width: 62ch; margin-block-end: clamp(2.25rem, 5vw, 3.5rem); }
.shead--center { margin-inline: auto; text-align: center; }
.shead--center .eyebrow::before { display: none; }
.shead__title { font-size: var(--step-3); }
.shead__lead {
  margin-block-start: 0.9rem;
  font-size: var(--step-1);
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-600);
}

.sec__more { margin-block-start: clamp(2rem, 4vw, 3rem); }

/* ------------------------------------------------------- symptom cards */

.scards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 1.15rem;
}
.scard {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.scard::before {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--verm));
  transform: scaleX(0);
  transform-origin: inline-start;
  transition: transform 0.4s var(--ease);
}
.scard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-300); }
.scard:hover::before { transform: scaleX(1); }
.scard__icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--gold-100);
  color: var(--gold-600);
  margin-block-end: 0.35rem;
}
.scard__icon .icon { width: 26px; height: 26px; }
.scard__title { font-size: var(--step-1); }
.scard__body { font-size: 0.94rem; color: var(--ink-400); line-height: 1.6; margin: 0; }
.scard__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  /* pushes the label to the card floor so all four share a baseline
     regardless of how many lines the body copy runs to */
  margin-block-start: auto;
  padding-block-start: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--verm);
}
.scard__tag .icon { width: 1em; height: 1em; transition: transform 0.25s var(--ease); }
.scard:hover .scard__tag .icon { transform: translateX(4px); }
[dir='rtl'] .scard:hover .scard__tag .icon { transform: scaleX(-1) translateX(4px); }

/* ------------------------------------------------------ difference grid */

.dgrid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.dcol {
  padding: 1.9rem 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}
.dcol--ours {
  background: linear-gradient(180deg, rgba(201, 162, 74, 0.16), rgba(201, 162, 74, 0.05));
  border-color: rgba(201, 162, 74, 0.4);
}
.dcol__h {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-block-end: 1.1rem;
  color: rgba(255, 255, 255, 0.55) !important;
}
.dcol--ours .dcol__h { color: var(--gold-300) !important; }
.dcol__list { display: grid; gap: 0.8rem; }
.dcol__list li { display: flex; gap: 0.7rem; align-items: flex-start; line-height: 1.5; }
.dcol__list .icon { margin-block-start: 0.18em; }
.dcol--ours .dcol__list .icon { color: var(--gold-500); }

.pullquote {
  max-width: 44rem;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1rem;
}
.pullquote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.4;
  font-weight: 400;
  color: var(--white);
}
.pullquote figcaption {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
}

/* ---------------------------------------------------------------- steps */

.steps {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  counter-reset: step;
}
.steps--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.step {
  padding: 1.6rem 1.4rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.sec--ink .step { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.12); box-shadow: none; }
.step__n {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold-500);
  margin-block-end: 0.7rem;
}
.step__h { font-size: var(--step-1); margin-block-end: 0.45rem; }
.step__b { font-size: 0.94rem; color: var(--ink-400); line-height: 1.6; margin: 0; }
.sec--ink .step__b { color: rgba(255, 255, 255, 0.68); }

/* -------------------------------------------------------------- science */

.scis {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
}
.sci {
  padding-block-start: 1.25rem;
  border-block-start: 3px solid var(--ink-800);
}
.sci__name { font-size: var(--step-1); margin-block-end: 0.1rem; }
.sci__work {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-block-end: 0.65rem;
}
.sci__body { font-size: 0.93rem; line-height: 1.62; color: var(--ink-400); margin: 0; }

/* The fuller entries on the How it works page. Same card, more in it: two
   columns rather than four so the longer bodies are not read through a slot. */
.scis--full { grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: 2rem 2.5rem; }
.sci-note {
  max-width: 62ch;
  margin-block: -0.5rem 2.25rem;
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--ink-400);
  padding-inline-start: 0.9rem;
  border-inline-start: 2px solid var(--gold-600);
}
.sci--full .sci__work { margin-block-end: 0.2rem; }
.sci__where {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-300);
  margin-block-end: 0.7rem;
}
.sci__note {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ink-300);
  margin-block-start: 0.7rem;
  padding-block-start: 0.7rem;
  border-block-start: 1px solid var(--line-soft);
}

/* ------------------------------------------------------- practical cards */

.pcards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.pcard {
  display: grid;
  align-content: start;
  gap: 0.5rem;
  padding: 1.7rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.pcard__icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ink-800);
  color: var(--gold-300);
  margin-block-end: 0.3rem;
}
.pcard__h { font-size: var(--step-1); }
.pcard__b { font-size: 0.94rem; color: var(--ink-400); line-height: 1.6; margin: 0; }

/* --------------------------------------------------------- testimonials */

.tfeat {
  max-width: 50rem;
  margin: 0 auto clamp(2.25rem, 5vw, 3.5rem);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1.1rem;
}
.tfeat blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.45;
  color: var(--ink-900);
}
.tfeat figcaption { display: grid; gap: 0.15rem; }
.tfeat figcaption strong { font-size: 1.05rem; }
.tfeat figcaption span { color: var(--ink-400); font-size: 0.9rem; }
.tfeat figcaption em {
  font-style: normal;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--verm);
  font-weight: 700;
  margin-block-start: 0.3rem;
}

.tminis {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.tmini {
  margin: 0;
  padding: 1.6rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.tmini blockquote { margin: 0 0 1rem; font-size: 0.98rem; line-height: 1.62; color: var(--ink-700); }
.tmini blockquote::before { content: '“'; font-family: var(--font-display); color: var(--gold-500); font-size: 1.4em; line-height: 0; vertical-align: -0.25em; margin-inline-end: 0.1em; }
.tmini figcaption { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: baseline; font-size: 0.88rem; }
.tmini figcaption span { color: var(--ink-400); }

/* --------------------------------------------------------- page heroes */

.phero {
  background:
    radial-gradient(90% 120% at 80% 0%, var(--gold-100), transparent 60%),
    var(--paper-2);
  border-block-end: 1px solid var(--line-soft);
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2.5rem, 6vw, 4.5rem);
}
[dir='rtl'] .phero { background: radial-gradient(90% 120% at 20% 0%, var(--gold-100), transparent 60%), var(--paper-2); }
.phero__in { max-width: 42rem; }
.phero__title { font-size: var(--step-4); }
.phero__lead {
  margin-block-start: 1rem;
  font-size: var(--step-1);
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-600);
}
.phero__creds {
  margin: 0.6rem 0 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
}

/* -------------------------------------------------------------- jumpbar */

.jumpbar {
  position: sticky;
  inset-block-start: var(--head-h);
  z-index: 50;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(10px);
  border-block-end: 1px solid var(--line-soft);
}
.jumpbar__in {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-block: 0.75rem;
  scrollbar-width: none;
}
.jumpbar__in::-webkit-scrollbar { display: none; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex: none;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-700);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.chip:hover { border-color: var(--gold-500); background: var(--gold-100); }
.chip .icon { width: 1.05em; height: 1.05em; color: var(--gold-600); }
.chip--btn.is-on { background: var(--ink-800); border-color: var(--ink-800); color: var(--white); }

/* ---------------------------------------------------- condition groups */

.cg { padding-block: clamp(2.75rem, 6vw, 5rem); }
.cg:nth-of-type(even) { background: var(--paper-2); }
.cg__head { max-width: 60ch; margin-block-end: 2.25rem; }
.cg__icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 15px;
  background: var(--ink-800);
  color: var(--gold-300);
  margin-block-end: 1rem;
}
.cg__icon .icon { width: 28px; height: 28px; }
.cg__title { font-size: var(--step-3); margin-block-end: 0.7rem; }
.cg__intro { color: var(--ink-600); font-size: var(--step-0); line-height: 1.65; margin: 0; }
.cg__h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-block-end: 1rem;
}
.cg__split {
  display: grid;
  gap: 2rem clamp(2rem, 5vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.cg__tags { margin-block-start: 2.25rem; }
.cg__items {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
}

.ticks { display: grid; gap: 0.62rem; }
.ticks li { display: flex; gap: 0.7rem; align-items: flex-start; line-height: 1.5; font-size: 0.97rem; }
.ticks .icon { margin-block-start: 0.22em; color: var(--good); }
.ticks--mute .icon { color: var(--ink-300); width: 0.95em; height: 0.95em; margin-block-start: 0.3em; }

.cols3 {
  display: grid;
  gap: 0.62rem 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}
.cols3 li { display: flex; gap: 0.7rem; align-items: flex-start; line-height: 1.5; font-size: 0.97rem; }
.cols3 .icon { margin-block-start: 0.22em; color: var(--good); }

.taglist { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.taglist li {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--ink-600);
}
.cg:nth-of-type(even) .taglist li { background: var(--paper); }

.ncard {
  padding: 1.5rem 1.4rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.ncard__h { font-size: var(--step-1); margin-block-end: 0.45rem; }
.ncard__b { font-size: 0.94rem; line-height: 1.6; color: var(--ink-400); margin: 0; }

.callout {
  margin-block-start: 2.25rem;
  padding: 1.75rem 1.6rem;
  background: var(--ink-800);
  color: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  border-inline-start: 4px solid var(--gold-500);
}
.callout__h {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--step-1);
  color: var(--white);
  margin-block-end: 0.75rem;
}
.callout__h .icon { color: var(--gold-300); }
.callout p { font-size: 0.96rem; line-height: 1.65; }
.callout__foot {
  margin-block-start: 1rem;
  padding-block-start: 1rem;
  border-block-start: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.note {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-block-start: 1.75rem;
  padding: 1rem 1.2rem;
  background: var(--gold-100);
  border-radius: var(--radius);
  font-size: 0.93rem;
  color: var(--ink-700);
  line-height: 1.55;
}
.note .icon { color: var(--gold-600); margin-block-start: 0.2em; }

/* ----------------------------------------------------------- treatments */

.techs {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}
.tech {
  padding: 2rem 1.8rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.tech::before {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--gold-500), var(--verm));
}
.tech__name {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 900;
  line-height: 1;
  color: var(--ink-800);
  margin: 0 0 0.3rem;
  letter-spacing: -0.02em;
}
.tech__full {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-block-end: 1.1rem;
}
.tech__body { font-size: 0.98rem; line-height: 1.65; color: var(--ink-600); }
.tech__for {
  margin: 1.15rem 0 0;
  padding-block-start: 1.15rem;
  border-block-start: 1px solid var(--line-soft);
  font-size: 0.88rem;
  color: var(--ink-400);
}

.contras {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.contra {
  padding: 1.75rem 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
}
.contra--a { border-inline-start: 4px solid var(--verm); }
.contra--b { border-inline-start: 4px solid var(--gold-500); }
.contra__h {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--step-1);
  margin-block-end: 1rem;
}
.contra--a .contra__h .icon { color: var(--verm); }
.contra--b .contra__h .icon { color: var(--gold-600); }
.contra__list { display: grid; gap: 0.55rem; }
.contra__list li {
  position: relative;
  padding-inline-start: 1.1rem;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--ink-600);
}
.contra__list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.62em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ink-300);
}

.disclaimer {
  margin-block-start: 2.25rem;
  padding: 1.6rem 1.5rem;
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  font-size: 0.91rem;
  line-height: 1.65;
}
.disclaimer h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--white);
  margin-block-end: 0.55rem;
}
.disclaimer h3 .icon { color: var(--gold-300); }
.disclaimer--soft {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-400);
}
.disclaimer--soft p { display: flex; gap: 0.6rem; align-items: flex-start; }
.disclaimer--soft .icon { color: var(--gold-600); margin-block-start: 0.2em; }

/* -------------------------------------------------------------- stories */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block-end: 2.25rem;
}
.stories {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  align-items: start;
}
.story {
  padding: 1.8rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.story:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.story__tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verm);
  margin-block-end: 0.8rem;
}
.story__body { font-size: 0.95rem; line-height: 1.65; color: var(--ink-600); }
.story__quote {
  display: flex;
  gap: 0.8rem;
  margin: 1.25rem 0;
  padding: 1.15rem 1.2rem;
  background: var(--paper-2);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--ink-900);
}
.story__quote .icon { flex: none; width: 1.6rem; height: 1.6rem; }
.story__by { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: baseline; font-size: 0.9rem; }
.story__by span { color: var(--ink-400); }
.stories__none { margin-block-start: 2rem; color: var(--ink-400); }

/* ----------------------------------------------------------------- bio */

.bio {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: 1fr;
}
.bio__side { display: grid; gap: 1.25rem; justify-items: start; }
.bio__facts { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.bio__facts li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-600);
}
.bio__facts .icon { color: var(--gold-600); }
.prose { max-width: 64ch; }
.prose p { font-size: var(--step-0); line-height: 1.75; color: var(--ink-600); }
.prose p:first-child {
  font-size: var(--step-1);
  color: var(--ink-800);
  font-weight: 300;
  line-height: 1.6;
}
@media (min-width: 880px) {
  .bio { grid-template-columns: 220px 1fr; }
  .bio__side { position: sticky; inset-block-start: calc(var(--head-h) + 2rem); align-self: start; }
}

/* ------------------------------------------------------------- contact */

.contact-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
@media (min-width: 920px) {
  .contact-grid { grid-template-columns: 22rem 1fr; }
  .channels { position: sticky; inset-block-start: calc(var(--head-h) + 2rem); }
}

.channels__h { font-size: var(--step-2); margin-block-end: 1.25rem; }
.chan {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.1rem;
  margin-block-end: 0.6rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.chan:hover { transform: translateY(-2px); border-color: var(--gold-300); }
.chan__ico {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  flex: none;
  border-radius: 11px;
  background: var(--paper-2);
  color: var(--ink-700);
}
.chan--wa .chan__ico { background: #e7f5ec; color: #1f8a4c; }
.chan__txt { display: grid; gap: 0.05rem; margin-inline-end: auto; }
.chan__txt strong { font-size: 0.94rem; }
.chan__txt span { font-size: 0.88rem; color: var(--ink-400); }
.chan .icon--go { color: var(--ink-300); }

.chan-block {
  margin-block-start: 1.75rem;
  padding-block-start: 1.5rem;
  border-block-start: 1px solid var(--line-soft);
}
.chan-block h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-block-end: 0.7rem;
}
.chan-block h3 .icon { color: var(--gold-600); }
.chan-block li, .chan-block p { font-size: 0.94rem; line-height: 1.6; color: var(--ink-600); }
.chan-note {
  margin-block-start: 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-400);
}

/* ---------------------------------------------------------------- form */

.formwrap {
  padding: clamp(1.6rem, 4vw, 2.75rem);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.formwrap__h { font-size: var(--step-2); margin-block-end: 0.6rem; }
.formwrap__l { color: var(--ink-400); font-size: 0.95rem; margin-block-end: 2rem; }

.fgroup { border: 0; padding: 0; margin: 0 0 2rem; }
.fgroup__legend {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0 0 0.8rem;
  margin-block-end: 1.25rem;
  border-block-end: 1px solid var(--line-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.fgroup__legend .icon { color: var(--verm); }

.fgrid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}

.field { margin: 0; display: grid; gap: 0.4rem; border: 0; padding: 0; }
.field--wide { grid-column: 1 / -1; }
.field label, .field legend {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-700);
  padding: 0;
}
.req { color: var(--verm); }

.field input[type='text'],
.field input[type='email'],
.field input[type='tel'],
.field input[type='number'],
.field textarea,
.field select {
  width: 100%;
  padding: 0.72rem 0.9rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.96rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  appearance: none;
}
.field textarea { resize: vertical; line-height: 1.55; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px var(--gold-100);
}
.field input.is-bad, .field textarea.is-bad { border-color: var(--verm); }

.sel { position: relative; display: block; }
.sel .icon {
  position: absolute;
  inset-inline-end: 0.85rem;
  inset-block-start: 50%;
  translate: 0 -50%;
  pointer-events: none;
  color: var(--ink-300);
  width: 1.05em; height: 1.05em;
}

.checks { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.check:hover { border-color: var(--gold-500); }
.check input { accent-color: var(--verm); width: 1rem; height: 1rem; }
.check:has(input:checked) { background: var(--gold-100); border-color: var(--gold-500); }

.check--consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: var(--paper-2);
  border-color: transparent;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-block-end: 1.5rem;
}
.check--consent input { margin-block-start: 0.2em; }

.formmsg {
  margin-block-start: 1.25rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.94rem;
  line-height: 1.6;
}
.formmsg strong { display: block; margin-block-end: 0.25rem; font-size: 1rem; }
.formmsg.is-ok { background: #e8f5ee; color: #17603d; border: 1px solid #b9dfc9; }
.formmsg.is-bad { background: #fdeeea; color: var(--verm-dark); border: 1px solid #f2c6bb; }

/* --------------------------------------------------------------- finale */

.finale {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  background:
    radial-gradient(100% 130% at 50% 0%, rgba(201, 162, 74, 0.22), transparent 62%),
    var(--ink-900);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}
.finale__in { max-width: 46rem; margin-inline: auto; }
.finale__h { font-size: var(--step-3); color: var(--white); margin-block-end: 0.85rem; }
.finale__l { font-size: var(--step-1); font-weight: 300; line-height: 1.55; margin-block-end: 2rem; }

/* --------------------------------------------------------------- footer */

.site-foot {
  background: var(--ink-800);
  color: rgba(255, 255, 255, 0.62);
  padding-block: clamp(2.75rem, 6vw, 4.25rem) 1.5rem;
  font-size: 0.92rem;
}
.foot-grid {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  padding-block-end: 2.25rem;
  border-block-end: 1px solid rgba(255, 255, 255, 0.12);
}
.foot-brand img { width: 56px; height: 56px; margin-block-end: 1rem; }
.foot-blurb { line-height: 1.6; max-width: 28ch; }
.foot-h {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-block-end: 1rem;
}
.foot-list { display: grid; gap: 0.55rem; }
.foot-list a { text-decoration: none; transition: color 0.2s var(--ease); }
.foot-list a:hover { color: var(--white); }
.foot-list--contact li { display: flex; align-items: center; gap: 0.55rem; }
.foot-list--contact .icon { color: var(--gold-500); }
.foot-legal { line-height: 1.6; font-size: 0.86rem; color: rgba(255, 255, 255, 0.45); }
.foot-base {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-block-start: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}
.foot-base p { margin: 0; }
.foot-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.foot-top:hover { color: var(--white); }

/* ------------------------------------------------------- mobile callbar */

.callbar {
  position: fixed;
  inset-block-end: 0;
  inset-inline: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-block-start: 1px solid var(--line);
  box-shadow: 0 -6px 22px rgba(7, 26, 51, 0.1);
  padding-block-end: env(safe-area-inset-bottom);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}
.callbar.is-on { transform: translateY(0); }
.callbar__btn {
  display: grid;
  justify-items: center;
  gap: 0.15rem;
  padding: 0.6rem 0.4rem 0.65rem;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-700);
}
.callbar__btn .icon { width: 1.35rem; height: 1.35rem; }
.callbar__btn--wa { color: #1f8a4c; }
.callbar__btn--go { color: var(--verm); }

@media (min-width: 760px) {
  .callbar { display: none; }
}
@media (max-width: 759px) {
  body { padding-block-end: 4.25rem; }
}

/* -------------------------------------------------------------- reveals */

/* Scoped to .js so the page is fully readable if the script never runs. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0ms);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

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