/* ==========================================================================
   Spycaa Lifecare Sciences, design system
   Clean clinical white, brand blue, spectrum accents drawn from the logo mark.
   ========================================================================== */

:root {
  --blue-900: #071c4d;
  --blue-800: #0b2a75;
  --blue-700: #0f3fc4;
  --blue-600: #1a4fe0;
  --blue-100: #e8eeff;
  --blue-50:  #f4f7ff;

  --ink:      #0d1b33;
  --ink-2:    #3d4a63;
  --ink-3:    #6b7893;
  --line:     #e4e9f2;
  --bg:       #ffffff;
  --bg-soft:  #f7f9fc;

  --teal:  #12a594;
  --lime:  #7ec636;
  --amber: #f5a524;
  --orange:#f2662d;
  --violet:#7b3fe4;
  --whatsapp: #25d366;

  --spectrum: linear-gradient(90deg, var(--violet), var(--blue-600), var(--teal), var(--lime), var(--amber), var(--orange));

  --radius:   3px;
  --radius-s: 2px;
  --radius-btn:  6px;   /* buttons, soft-cornered, per reference */
  --radius-pill: 3px;
  --shadow:   0 1px 2px rgba(13,27,51,.04), 0 8px 24px -12px rgba(13,27,51,.14);
  --shadow-l: 0 2px 4px rgba(13,27,51,.04), 0 20px 48px -20px rgba(13,27,51,.22);

  --header-h: 76px;   /* logo is 50px, leaving 13px clear above and below */
  --wrap: 1180px;
  --sans: 'Merriweather Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --display: 'Merriweather', Georgia, 'Times New Roman', serif;

  --footer: #050d1c;   /* blackish blue */
  --icon-tint: rgba(15,63,196,.06);   /* ~2% blue wash behind icons */
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-700); text-decoration: none; }
a:hover { color: var(--blue-600); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.28; margin: 0 0 .6em; font-weight: 700; letter-spacing: -.015em; }
h1 { font-size: clamp(1.95rem, 4.1vw, 3rem); line-height: 1.2; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.08rem; }
p  { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--blue-600); outline-offset: 3px; border-radius: var(--radius); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.ico { width: 20px; height: 20px; flex: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -9999px; top: 8px; z-index: 100;
  background: var(--blue-700); color: #fff; padding: 10px 16px; border-radius: var(--radius);
}
.skip:focus { left: 16px; color: #fff; }

/* ---------- header ---------- */
/* Transparent and borderless over the banner; solid once the page scrolls. */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s, backdrop-filter .3s;
}
.site-header.is-stuck,
body.nav-open .site-header {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px -18px rgba(13,27,51,.45);
}
/* Even space above and below: the bar itself is short rather than the content
   being nudged off centre. */
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; position: relative; }
.brand img { width: auto; height: 50px; }
.brand__mark--light { position: absolute; left: 0; top: 50%; translate: 0 -50%; opacity: 0; transition: opacity .3s; }

/* Over the dark home slideshow: light logo and nav until the header goes solid. */
.nav-on-dark .site-header:not(.is-stuck) .brand__mark { opacity: 0; }
.nav-on-dark .site-header:not(.is-stuck) .brand__mark--light { opacity: 1; }
.nav-on-dark .site-header:not(.is-stuck) .nav__item > a { color: rgba(255,255,255,.88); }
.nav-on-dark .site-header:not(.is-stuck) .nav__item > a:hover,
.nav-on-dark .site-header:not(.is-stuck) .nav__item > a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.12); }
.nav-on-dark .site-header:not(.is-stuck) .burger span { background: #fff; }
.nav-on-dark .site-header:not(.is-stuck) .nav__cta {
  background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.32);
}
.nav-on-dark .site-header:not(.is-stuck) .nav__cta:hover { background: #fff; color: var(--blue-800); border-color: #fff; }
/* Menu open on mobile forces the solid treatment back. */
body.nav-open .site-header:not(.is-stuck) .brand__mark { opacity: 1; }
body.nav-open .site-header:not(.is-stuck) .brand__mark--light { opacity: 0; }
body.nav-open .site-header:not(.is-stuck) .nav__item > a { color: var(--ink-2); }
body.nav-open .site-header:not(.is-stuck) .burger span { background: var(--ink); }
body.nav-open .site-header:not(.is-stuck) .nav__cta { background: var(--blue-50); color: var(--blue-700); border-color: #dbe4ff; }

/* items stretch to full header height so the hover zone reaches the panel
   that opens flush against the bottom of the (fixed) header — no dead gap. */
.nav { display: flex; align-items: stretch; gap: 2px; }
.nav__item { position: relative; display: flex; align-items: center; }
.nav__cta { align-self: center; }
.nav__item > a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 15px; border-radius: var(--radius); font-size: .945rem; font-weight: 500; color: var(--ink-2);
  transition: background .18s, color .18s;
}
.nav__item > a:hover { background: var(--blue-50); color: var(--blue-700); }
.nav__item > a[aria-current="page"] { color: var(--blue-700); font-weight: 600; }
.nav__chev { width: 15px; height: 15px; opacity: .55; transition: transform .2s; }
.nav__toggle { display: none; }

/* products mega menu */
.mega {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translate(-50%, -8px);
  width: min(760px, 88vw); background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-l); padding: 10px; overflow: hidden;
  opacity: 0; visibility: hidden; transition: .2s; z-index: 5;
}
.mega::before {
  content: ''; position: absolute; inset: -1px -1px auto -1px; height: 4px;
  background: var(--spectrum); border-radius: var(--radius) var(--radius) 0 0;
}
.nav__item--has-menu:hover .mega,
.nav__item--has-menu:focus-within .mega,
.nav__item--has-menu.is-open .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav__item--has-menu:hover .nav__chev,
.nav__item--has-menu.is-open .nav__chev { transform: rotate(180deg); }

/* wide, viewport-centred panel: pharma in 3 columns + a tinted nutra column */
.mega--wide {
  position: fixed; top: var(--header-h); left: 50%; right: auto; z-index: 55;
  width: min(84vw, 1200px); transform: translate(-50%, -8px); padding: 0;
}
.nav__item--has-menu:hover .mega--wide,
.nav__item--has-menu.is-open .mega--wide { transform: translate(-50%, 0); }
.mega__grid { display: grid; grid-template-columns: 1fr 300px; }
.mega__zone { padding: 22px 26px; }
.mega__zone--nutra {
  background: rgba(18,165,148,.05);          /* mild ~5% tint to differentiate */
  border-left: 1px solid var(--line);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.mega__head {
  display: flex; align-items: center; gap: 9px; margin-bottom: 12px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue-800);
}
.mega__zone--nutra .mega__head { color: #0b6f63; }
.mega__head .ico { width: 18px; height: 18px; color: var(--blue-700); }
.mega__zone--nutra .mega__head .ico { color: var(--teal); }
.mega__head em { margin-left: auto; font-style: normal; font-size: .68rem; font-weight: 600; color: var(--ink-3); letter-spacing: .02em; text-transform: none; }
.mega__items { display: flex; flex-direction: column; gap: 1px; }
.mega__items--3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px 12px; }
.mega__item {
  display: flex; align-items: center; gap: 10px; padding: 9px 11px; border-radius: var(--radius);
  font-size: .875rem; color: var(--ink-2); transition: background .15s, color .15s;
}
.mega__item .ico { width: 30px; height: 30px; padding: 7px; border-radius: var(--radius); background: var(--icon-tint); color: var(--blue-700); flex: none; }
.mega__item:hover { background: #fff; color: var(--blue-700); box-shadow: var(--shadow); }
.mega__item:hover .ico { color: var(--blue-700); }
.mega__zone--nutra .mega__item:hover { color: #0b6f63; }
.mega__zone--nutra .mega__item:hover .ico { color: var(--teal); }

/* simple text dropdown (About) */
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 210px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-l); padding: 8px; z-index: 5; overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s;
}
.dropdown::before {
  content: ''; position: absolute; inset: -1px -1px auto -1px; height: 4px; background: var(--spectrum);
  border-radius: var(--radius) var(--radius) 0 0;
}
.nav__item--simple:hover .dropdown,
.nav__item--simple:focus-within .dropdown,
.nav__item--simple.is-open .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown__link { display: block; padding: 9px 14px; border-radius: var(--radius); font-size: .9rem; color: var(--ink-2); font-weight: 500; }
.dropdown__link:hover { background: var(--blue-50); color: var(--blue-700); }

.mega__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; padding: 8px 4px 4px; }
.mega__link { display: flex; gap: 11px; align-items: center; padding: 10px 12px; border-radius: var(--radius); transition: background .16s; }
.mega__link:hover { background: var(--blue-50); }
.mega__icon {
  width: 34px; height: 34px; border-radius: var(--radius); display: grid; place-items: center; flex: none;
  background: var(--blue-50); color: var(--blue-700);
}
.mega__link:hover .mega__icon { background: var(--blue-700); color: #fff; }
.mega__icon .ico { width: 17px; height: 17px; }
.mega__link strong { display: block; font-size: .875rem; color: var(--ink); font-weight: 600; line-height: 1.3; }
.mega__link em { font-style: normal; font-size: .74rem; color: var(--ink-3); }
.mega__foot {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 8px; padding: 14px 16px; background: var(--bg-soft); border-radius: var(--radius); font-size: .84rem; color: var(--ink-3);
}
.mega__foot a { font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.mega__foot .ico { width: 15px; height: 15px; }

/* compact, low-weight so it does not shout next to the nav links */
.nav__cta {
  margin-left: 12px; padding: 9px 16px; font-size: .875rem; font-weight: 600;
  background: var(--blue-50); color: var(--blue-700); border-color: #dbe4ff;
}
.nav__cta:hover { background: var(--blue-700); color: #fff; border-color: var(--blue-700); transform: none; box-shadow: none; }
.nav__cta .ico { width: 15px; height: 15px; }

.burger { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 1px; transition: .25s; }
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 9px; align-self: flex-start;
  padding: 12px 22px; border-radius: var(--radius-btn); border: 1px solid transparent;
  font-size: .93rem; font-weight: 600; cursor: pointer; transition: .22s; white-space: nowrap;
  overflow: hidden;
}
.btn .ico { width: 17px; height: 17px; }
.btn--primary { background: var(--blue-700); color: #fff; }
.btn--primary:hover { background: var(--blue-800); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -14px rgba(15,63,196,.9); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: #c9d6f5; color: var(--blue-700); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.32); backdrop-filter: blur(4px); }
.btn--light:hover { background: #fff; color: var(--blue-800); transform: translateY(-2px); }
.btn--solid { background: #fff; color: var(--blue-800); }
.btn--solid:hover { color: var(--blue-700); transform: translateY(-2px); box-shadow: 0 14px 30px -16px rgba(0,0,0,.6); }

/* spectrum top edge, matching the product cards */
.btn--spectrum::after {
  content: ''; position: absolute; inset: -1px -1px auto -1px; height: 4px;
  background: var(--spectrum);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.btn--spectrum:hover::after, .btn--spectrum:focus-visible::after { transform: scaleX(1); }

/* ---------- home hero slideshow (video + pharma + nutra) ---------- */
.heroshow { position: relative; overflow: hidden; background: #04101f; }
.heroshow__track { position: relative; height: 100vh; }
.heroslide {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  opacity: 0; visibility: hidden; transition: opacity 1s ease, visibility 1s;
}
.heroslide.is-active { opacity: 1; visibility: visible; }
.heroslide__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center; transform: scale(1.06); transition: transform 9s linear;
}
.heroslide.is-active .heroslide__bg { transform: scale(1); }
.heroslide__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(4,14,35,.9) 0%, rgba(4,14,35,.6) 46%, rgba(4,14,35,.25) 100%),
    linear-gradient(0deg, rgba(4,14,35,.55), rgba(4,14,35,0) 40%);
}
.heroslide__inner { position: relative; width: 100%; padding-inline: 18px; padding-bottom: clamp(84px, 13vh, 150px); }
.heroslide__body { max-width: 640px; color: rgba(255,255,255,.82); }
.heroslide__body h1 {
  color: #fff; font-family: var(--display); font-weight: 700; letter-spacing: -.015em;
  font-size: clamp(2rem, 4.4vw, 3.3rem); line-height: 1.16; margin: 0 0 .45em;
}
.heroslide__body p { font-size: 17px; font-weight: 300; max-width: 34em; margin: 0 0 28px; }
.heroslide__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.heroslide.is-active .heroslide__body > * { animation: heroIn .8s both; }
.heroslide.is-active .heroslide__body > *:nth-child(2) { animation-delay: .1s; }
.heroslide.is-active .heroslide__body > *:nth-child(3) { animation-delay: .2s; }
.heroslide.is-active .heroslide__body > *:nth-child(4) { animation-delay: .3s; }

.heroshow__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: none; border: 0; color: rgba(255,255,255,.5);
  cursor: pointer; transition: color .2s, background .2s;
}
.heroshow__arrow .ico { width: 18px; height: 18px; }
.heroshow__arrow:hover { color: #fff; background: rgba(255,255,255,.12); }
.heroshow__arrow--prev { left: 14px; }
.heroshow__arrow--prev .ico { transform: rotate(180deg); }
.heroshow__arrow--next { right: 14px; }

.heroshow__dots { position: absolute; left: 0; right: 0; bottom: 30px; z-index: 3; display: flex; justify-content: center; gap: 10px; }
.hdot {
  position: relative; width: 34px; height: 4px; padding: 0; border: 0; border-radius: 999px;
  background: rgba(255,255,255,.28); cursor: pointer; overflow: hidden; transition: background .2s;
}
.hdot:hover { background: rgba(255,255,255,.5); }
.hdot__fill { position: absolute; inset: 0; width: 0; background: #7ee0d2; border-radius: 999px; }
.hdot.is-active { background: rgba(255,255,255,.35); }
.hdot.is-active .hdot__fill { animation: hdotFill var(--dur, 7s) linear forwards; }
@keyframes hdotFill { from { width: 0; } to { width: 100%; } }

@media (max-width: 820px) {
  .heroshow__track { height: 100vh; }
  .heroshow__arrow { display: none; }
}

/* ---------- full-width image band (after About) ---------- */
.imgband { position: relative; overflow: hidden; background: var(--blue-900); height: clamp(320px, 42vw, 420px); }
.imgband__slide {
  position: absolute; inset: 0; display: flex; align-items: center;
  opacity: 0; visibility: hidden; transition: opacity .8s ease, visibility .8s;
}
.imgband__slide.is-active { opacity: 1; visibility: visible; }
.imgband__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 9s linear; }
.imgband__slide.is-active .imgband__bg { transform: scale(1); }
.imgband__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(4,14,40,.86) 0%, rgba(4,14,40,.55) 46%, rgba(4,14,40,.15) 100%);
}
.imgband__inner { position: relative; width: 100%; color: rgba(255,255,255,.78); }
.imgband__inner h2 {
  color: #fff; font-family: var(--display); font-weight: 700; letter-spacing: -.015em;
  font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.28; margin: 0 0 .5em; max-width: 16em;
}
.imgband__slide.is-active .imgband__inner > * { animation: heroIn .7s both; }
.imgband__slide.is-active .imgband__inner > *:nth-child(2) { animation-delay: .08s; }
.imgband__slide.is-active .imgband__inner > *:nth-child(3) { animation-delay: .16s; }

.imgband__link {
  display: inline-flex; align-items: center; gap: 8px; color: #fff;
  font-size: .9rem; font-weight: 600; padding-bottom: 3px;
  border-bottom: 1px solid rgba(255,255,255,.35); transition: .2s;
}
.imgband__link:hover { color: #7ee0d2; border-color: #7ee0d2; }
.imgband__link .ico { width: 15px; height: 15px; transition: transform .2s; }
.imgband__link:hover .ico { transform: translateX(4px); }

/* deliberately understated controls */
.imgband__controls {
  position: absolute; right: 22px; bottom: 18px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
}
.imgband__arrow {
  width: 22px; height: 22px; padding: 0; display: grid; place-items: center;
  background: none; border: 0; color: rgba(255,255,255,.45); cursor: pointer; transition: color .2s;
}
.imgband__arrow:hover { color: #fff; }
.imgband__arrow .ico { width: 14px; height: 14px; }
.imgband__arrow[data-slide="prev"] .ico { transform: rotate(180deg); }

.imgband__dots { display: flex; gap: 7px; }
.minidot {
  width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.32); cursor: pointer; transition: .22s;
}
.minidot:hover { background: rgba(255,255,255,.6); }
.minidot.is-active { background: #7ee0d2; width: 20px; border-radius: 4px; }

/* thin autoplay progress line along the foot of the band */
.imgband__progress {
  position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: rgba(255,255,255,.14); z-index: 3;
}
.imgband__progress i {
  display: block; height: 100%; width: 0; background: #7ee0d2;
  transition: width .2s linear;
}

/* ---------- back to top ---------- */
.totop {
  position: fixed; left: 22px; bottom: 22px; z-index: 65;
  width: 46px; height: 46px; display: grid; place-items: center;
  background: #fff; color: var(--blue-700); border: 1px solid var(--line);
  border-radius: 50%; box-shadow: var(--shadow); cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s, transform .25s, visibility .25s, background .2s, color .2s;
}
.totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--blue-700); color: #fff; border-color: var(--blue-700); }
.totop .ico { width: 18px; height: 18px; transform: rotate(-90deg); }

/* ---------- section shell ---------- */
.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 64px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .73rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-700); margin-bottom: 14px; align-self: flex-start;
  padding: 5px 12px 5px 9px; border-radius: var(--radius);
  background: var(--blue-50); border: 0;
}
.eyebrow::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--spectrum); background-size: 300% 100%;
  animation: eyebrowHue 6s linear infinite;
}
@keyframes eyebrowHue { to { background-position: 300% 0; } }
.eyebrow--light { color: #9fe4d9; background: rgba(255,255,255,.1); }

.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.06rem; color: var(--ink-3); margin: 0; }

.lede { font-size: 17px; font-weight: 300; color: var(--ink-2); }

/* About block copy also sits at 17px */
.split p, .split li { font-size: 17px; font-weight: 300; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden; background: #fff;
}

/* soft blue gradient mesh, drifting like a slow breeze */
.hero__mesh { position: absolute; inset: -12%; pointer-events: none; }
.hero__blob {
  position: absolute; display: block; border-radius: 50%; filter: blur(78px);
}
.hero__blob--a {
  width: 44vw; height: 44vw; top: -6%; left: 4%;
  background: radial-gradient(circle, rgba(104,158,255,.85), rgba(104,158,255,0) 70%);
  animation: breeze 16s ease-in-out infinite;
}
.hero__blob--b {
  width: 58vw; height: 58vw; top: -4%; right: -16%;
  background: radial-gradient(circle, rgba(104,220,204,.82), rgba(104,220,204,0) 72%);
  animation: breeze 19s ease-in-out infinite reverse;
}
.hero__blob--c {
  width: 38vw; height: 38vw; bottom: -18%; left: 26%;
  background: radial-gradient(circle, rgba(148,186,255,.8), rgba(148,186,255,0) 70%);
  animation: breeze 22s ease-in-out infinite 2s;
}
@keyframes breeze {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  30%      { transform: translate3d(7vw, -4.5vw, 0) scale(1.24); }
  60%      { transform: translate3d(-5.5vw, 5vw, 0) scale(.86); }
  80%      { transform: translate3d(2.5vw, 2vw, 0) scale(1.08); }
}

/* fine concentric arc linework in the corners */
.hero__arcs {
  position: absolute; width: 62vw; height: 62vw; border-radius: 50%; pointer-events: none;
  background: repeating-radial-gradient(
    circle at center,
    rgba(15,63,196,.04) 0 1px,
    transparent 1px 13px
  );
  -webkit-mask-image: radial-gradient(circle at center, #000 42%, transparent 72%);
          mask-image: radial-gradient(circle at center, #000 42%, transparent 72%);
}
.hero__arcs--left  { bottom: -34vw; left: -26vw;  animation: breeze 30s ease-in-out infinite; }
.hero__arcs--right { top: -30vw;    right: -24vw; animation: breeze 36s ease-in-out infinite reverse; }

/* 17px body copy through the hero, and a little extra breathing room at the
   sides so the text lines up with the padded cards in the sections below */
.hero { font-size: 17px; }
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px;
  align-items: center; padding: calc(96px + var(--header-h)) 0 104px; padding-inline: 18px;
}
.hero__body > * { animation: heroIn .8s both; }
.hero__body > *:nth-child(2) { animation-delay: .07s; }
.hero__body > *:nth-child(3) { animation-delay: .14s; }
.hero__body > *:nth-child(4) { animation-delay: .21s; }
.hero__body > *:nth-child(5) { animation-delay: .28s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* Banner headline setting, shared by the hero, the inner page banners and the
   image band: Merriweather bold with slightly tightened tracking. */
.hero h1 {
  font-family: var(--display); font-weight: 700; letter-spacing: -.015em;
  line-height: 1.28; margin-bottom: .4em;
}
.hero h1 em { font-style: normal; color: var(--blue-700); }
/* Weight 300 is used only on the two large intro paragraphs, where the size and
   contrast carry it. Body copy elsewhere stays at 400. */
.hero__lede { font-size: 17px; font-weight: 300; max-width: 33em; color: var(--ink-2); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

.hero__badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 38px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.75); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: var(--radius); font-size: .8rem; font-weight: 600;
  color: var(--ink-2); backdrop-filter: blur(6px);
}
.badge .ico { width: 14px; height: 14px; color: var(--teal); }

.hero__visual { position: relative; display: grid; place-items: center; min-height: 380px; }

/* the brand mnemonic, used as the hero visual */
.ring-mark {
  width: min(320px, 74%); height: auto;
  animation: spin 52s linear infinite;
  filter: drop-shadow(0 18px 44px rgba(13,27,51,.14));
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__stat {
  position: absolute; padding: 15px 20px; overflow: hidden; color: inherit;
  background: rgba(255,255,255,.86); border: 1px solid var(--line);
  border-radius: var(--radius); backdrop-filter: blur(10px); box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.hero__stat::after {
  content: ''; position: absolute; inset: -1px -1px auto -1px; height: 3px; background: var(--spectrum);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.hero__stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-l); color: inherit; }
.hero__stat:hover::after { transform: scaleX(1); }
.hero__stat strong {
  display: block; font-family: var(--display); font-size: 1.65rem; color: var(--blue-800);
  font-weight: 600; letter-spacing: -.02em; line-height: 1.1;
}
.hero__stat span { font-size: .76rem; color: var(--ink-3); }
.hero__stat--a { top: 20px; left: -6px; animation: floaty 7s ease-in-out infinite; }
.hero__stat--b { bottom: 30px; right: -6px; animation: floaty 7s ease-in-out infinite 3.5s; }
@keyframes floaty { 0%,100% { translate: 0 0; } 50% { translate: 0 -10px; } }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden; background: var(--bg-soft);
  color: var(--ink-2);
  min-height: 100vh; display: flex; align-items: flex-end; padding: calc(64px + var(--header-h)) 0 clamp(56px, 10vh, 120px);
}
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* White card with a spectrum edge, so the copy reads over any photograph
   without washing the image out. */
.page-hero__card {
  position: relative; max-width: 640px; margin-left: 18px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(6px) saturate(120%);
  border-radius: var(--radius); padding: 40px 44px 42px 46px;
  box-shadow: 0 2px 6px rgba(13,27,51,.06), 0 30px 60px -28px rgba(13,27,51,.4);
}
.page-hero__card::before {
  content: ''; position: absolute; inset: 0 auto 0 0; width: 5px;
  /* the shared spectrum runs left to right; turned 90deg it reads down the bar */
  background: linear-gradient(180deg, var(--violet), var(--blue-600), var(--teal), var(--lime), var(--amber), var(--orange));
  background-size: 100% 300%;
  border-radius: var(--radius) 0 0 var(--radius);
  animation: edgeShift 9s ease-in-out infinite alternate;
}
@keyframes edgeShift { to { background-position: 0 100%; } }

.page-hero__card .eyebrow { background: var(--blue-50); }
.page-hero h1 {
  font-family: var(--display); font-weight: 700; letter-spacing: -.015em;
  line-height: 1.28; margin-bottom: .35em;
}
.page-hero p { font-size: 17px; font-weight: 300; margin: 0; }

/* ---------- grids & cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: .22s; position: relative; overflow: hidden;
}
.card::after {
  content: ''; position: absolute; inset: -1px -1px auto -1px; height: 4px; background: var(--spectrum);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.card:hover { border-color: #c9d6f5; box-shadow: var(--shadow); transform: translateY(-3px); }
.card:hover::after { transform: scaleX(1); }
.card h3 { margin-bottom: .4em; }
.card p { font-size: .93rem; color: var(--ink-3); margin: 0; }

.card__icon {
  width: 46px; height: 46px; border-radius: var(--radius); display: grid; place-items: center;
  background: var(--icon-tint); color: var(--blue-700); margin-bottom: 18px; transition: .22s;
}
.card:hover .card__icon { background: var(--blue-700); color: #fff; }
.card__icon .ico { width: 22px; height: 22px; }

.cat-card { display: flex; flex-direction: column; }
.cat-card__link { margin-top: auto; padding-top: 18px; display: inline-flex; align-items: center; gap: 7px; font-size: .87rem; font-weight: 600; color: var(--blue-700); }
.cat-card__link .ico { width: 15px; height: 15px; transition: transform .2s; }
.cat-card:hover .cat-card__link .ico { transform: translateX(4px); }

/* shaded formulation count */
.count-pill {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; align-self: flex-start;
  padding: 5px 13px; border-radius: var(--radius-pill); font-size: .76rem; font-weight: 700;
  background: linear-gradient(120deg, var(--blue-50), #eafaf6);
  color: var(--blue-800); border: 1px solid #dbe6ff;
}
.count-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

/* ---------- stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { position: relative; background: #fff; padding: 34px 26px; text-align: center; overflow: hidden; transition: background .22s; color: inherit; }
.stat::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 3px; background: var(--spectrum);
  transform: scaleX(0); transition: transform .3s;
}
.stat:hover { background: var(--blue-50); color: inherit; }
.stat:hover::after { transform: scaleX(1); }
.stat strong { display: block; font-family: var(--display); font-size: 2.4rem; color: var(--blue-800); line-height: 1; letter-spacing: -.02em; }
.stat span { display: block; margin-top: 9px; font-size: .82rem; color: var(--ink-3); letter-spacing: .03em; }

/* ---------- leadership card ---------- */
.leader-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 34px 32px; box-shadow: var(--shadow); overflow: hidden;
}
.leader-card::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--spectrum); }
.leader-card__avatar {
  width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center;
  background: var(--blue-700); color: #fff; font-family: var(--display); font-weight: 700;
  font-size: 1.5rem; margin-bottom: 18px;
}
.leader-card strong { display: block; font-family: var(--display); font-size: 1.35rem; color: var(--ink); }
.leader-card__role { display: block; font-size: .86rem; color: var(--ink-3); margin-top: 4px; }
.leader-card__quote {
  margin: 20px 0 0; padding-top: 20px; border-top: 1px solid var(--line);
  font-family: var(--display); font-style: italic; font-size: 1.02rem; color: var(--blue-800); line-height: 1.5;
}

/* ---------- timeline (alternating) ---------- */
.journey-timeline { position: relative; overflow: hidden; }
.journey-timeline::before {
  content: ''; position: absolute; inset: 0;
  background: url('../../images/banners/journey-bg.svg') no-repeat center top / cover;
  pointer-events: none;
}
.journey-timeline > .wrap { position: relative; z-index: 1; }

.timeline { position: relative; margin: 12px auto 0; max-width: 940px; padding: 8px 0; list-style: none; }
/* centre rail */
.timeline::before {
  content: ''; position: absolute; top: 6px; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 2px; background: var(--line);
}
.timeline__item { position: relative; width: 50%; padding: 0 44px 40px; box-sizing: border-box; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item:nth-child(odd)  { left: 50%; text-align: left; }
.timeline__item:nth-child(even) { left: 0;   text-align: right; }
/* the dot, sitting on the centre rail */
.timeline__item::after {
  content: ''; position: absolute; top: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 3px solid var(--blue-600); box-shadow: 0 0 0 4px rgba(15,63,196,.06); z-index: 2;
}
.timeline__item:nth-child(odd)::after  { left: -8px; }
.timeline__item:nth-child(even)::after { right: -8px; }

.timeline__body {
  display: inline-block; text-align: left; max-width: 400px;
  background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; box-shadow: 0 14px 34px -26px rgba(6,20,60,.5); backdrop-filter: blur(1px);
}
.timeline__year {
  display: block; font-family: var(--display); font-weight: 700; font-size: 1.05rem;
  color: var(--blue-700); margin-bottom: .35em;
}
.timeline__body h3 { margin: 0 0 .4em; font-size: 1.12rem; }
.timeline__body p { margin: 0; font-size: .95rem; color: var(--ink-3); }
.timeline__stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 18px; margin-top: 16px;
  padding-top: 15px; border-top: 1px solid var(--line);
}
.timeline__stats div strong {
  display: block; font-family: var(--display); font-weight: 700; color: var(--blue-700); font-size: 1.22rem;
}
.timeline__stats div span { font-size: .78rem; color: var(--ink-3); line-height: 1.3; }

.journey-close { text-align: center; max-width: 760px; margin: 0 auto; }
.journey-close p { color: var(--ink-2); }
.journey-promise {
  margin-top: 26px; font-family: var(--display); font-size: 1.2rem; line-height: 1.7; color: var(--blue-800);
}

@media (max-width: 720px) {
  .timeline { max-width: 560px; }
  .timeline::before { left: 7px; }
  .timeline__item { width: 100%; left: 0 !important; text-align: left !important; padding: 0 0 34px 40px; }
  .timeline__item:nth-child(even) { left: 0 !important; }
  .timeline__item::after { left: -1px !important; right: auto !important; }
  .timeline__body { max-width: none; display: block; }
  .timeline__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- split content ---------- */
/* The two columns share a height and the image fills it, so the picture always
   matches the depth of the text beside it rather than keeping a fixed ratio. */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.split--wide { grid-template-columns: .95fr 1.05fr; }
.split > * { display: flex; flex-direction: column; justify-content: center; }
.split .media { flex: 1; min-height: 340px; }
.split .media img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
/* reversed split puts the media on the right (desktop only) */
.split--rev > *:first-child { order: 2; }
.split--rev > *:last-child { order: 1; }
.eyebrow .ico { width: 14px; height: 14px; }
.media { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-l); }
.media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media--tall img { aspect-ratio: 5 / 4; }
.media--art { position: relative; border: 0; }
.media--art img { aspect-ratio: 5 / 4; }
.media__tag {
  position: absolute; left: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--radius-pill); background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  font-size: .8rem; font-weight: 600; color: var(--ink);
}
.media__tag .ico { width: 15px; height: 15px; color: var(--blue-700); }

.tick-list li { display: flex; gap: 12px; padding: 10px 0; font-size: .96rem; color: var(--ink-2); }
.tick-list .ico { width: 18px; height: 18px; color: var(--teal); margin-top: 4px; }

/* ---------- values ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { position: relative; padding: 30px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); overflow: hidden; transition: .22s; }
.value::after {
  content: ''; position: absolute; inset: -1px -1px auto -1px; height: 4px; background: var(--spectrum);
  transform: scaleX(0); transform-origin: left; transition: transform .3s; z-index: 1;
}
.value:hover { border-color: #c9d6f5; transform: translateY(-3px); box-shadow: var(--shadow); }
.value:hover::after { transform: scaleX(1); }
.value strong { display: block; font-family: var(--display); font-size: 1.35rem; color: var(--ink); margin-bottom: 8px; }
.value p { font-size: .92rem; color: var(--ink-3); margin: 0; }
.value::before { content: ''; position: absolute; inset: -1px -1px auto -1px; height: 4px; }
.value:nth-child(1)::before { background: var(--blue-600); }
.value:nth-child(2)::before { background: var(--teal); }
.value:nth-child(3)::before { background: var(--amber); }

/* ---------- division switcher ---------- */
.divbar { border-bottom: 1px solid var(--line); background: #fff; }
.divbar__inner { display: flex; justify-content: center; padding: 22px 0; }
.segmented {
  display: inline-flex; gap: 4px; padding: 5px; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 999px;
}
.seg {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 20px; border-radius: 999px;
  font-size: .92rem; font-weight: 600; color: var(--ink-2); transition: .2s;
}
.seg span {
  font-size: .72rem; font-weight: 700; padding: 2px 8px; border-radius: 999px;
  background: #fff; color: var(--ink-3); border: 1px solid var(--line);
}
.seg:hover { color: var(--blue-700); }
.seg.is-active { background: var(--blue-700); color: #fff; }
.seg.is-active span { background: rgba(255,255,255,.2); color: #fff; border-color: transparent; }

.divgroup + .divgroup { margin-top: 48px; }
.divgroup__title {
  display: flex; align-items: center; gap: 11px; font-size: 1.35rem; margin-bottom: 22px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.divgroup__title .ico { width: 24px; height: 24px; color: var(--blue-700); }

/* ---------- catalogue toolbar ---------- */
.toolbar {
  position: sticky; top: var(--header-h); z-index: 20; background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); padding: 18px 0;
}
.toolbar__inner { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.search { position: relative; flex: 1 1 300px; max-width: 460px; }
.search .ico { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--ink-3); width: 18px; height: 18px; }
.search input {
  width: 100%; padding: 13px 16px 13px 46px; border: 1px solid var(--line); border-radius: var(--radius-pill);
  font: inherit; font-size: .94rem; color: var(--ink); background: #fff; transition: .18s;
}
.search input:focus { outline: none; border-color: var(--blue-600); box-shadow: 0 0 0 4px var(--blue-100); }
.select {
  padding: 13px 40px 13px 16px; border: 1px solid var(--line); border-radius: var(--radius-pill); background: #fff;
  font: inherit; font-size: .9rem; color: var(--ink); cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7893' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.result-count {
  margin-left: auto; font-size: .8rem; font-weight: 700; color: var(--blue-800);
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: linear-gradient(120deg, var(--blue-50), #eafaf6); border: 1px solid #dbe6ff;
}

/* ---------- product table ---------- */
.table-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
table.products { width: 100%; border-collapse: collapse; font-size: .92rem; }
table.products th {
  text-align: left; padding: 15px 20px; background: var(--bg-soft); color: var(--ink-3);
  font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border-bottom: 1px solid var(--line);
}
table.products td { padding: 16px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.products tr:last-child td { border-bottom: 0; }
table.products tbody tr:nth-child(even) { background: #fafbfe; }
table.products tbody tr:hover { background: var(--blue-50); }
.p-name { color: var(--ink); font-weight: 600; }
.p-comp { color: var(--ink-3); font-size: .87rem; }
.chip {
  display: inline-block; padding: 4px 11px; border-radius: var(--radius-pill); font-size: .74rem; font-weight: 600;
  background: var(--blue-50); color: var(--blue-800); white-space: nowrap;
}
.chip--form { background: #eefaf7; color: #0b6f63; }

.empty { padding: 64px 24px; text-align: center; color: var(--ink-3); }
.empty .ico { width: 34px; height: 34px; margin: 0 auto 14px; opacity: .4; }

.pdf-note {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: space-between;
  margin-top: 26px; padding: 22px 26px; border-radius: var(--radius);
  background: linear-gradient(120deg, var(--blue-50), #eafaf6); border: 1px solid #dbe6ff; font-size: .92rem;
}

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-soft); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s; }
.gallery figure:hover img { transform: scale(1.05); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius-s);
  font: inherit; font-size: .94rem; color: var(--ink); background: #fff; transition: .18s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue-600); box-shadow: 0 0 0 4px var(--blue-100);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.field__hint { font-weight: 400; color: var(--ink-3); font-size: .78rem; }
.field input[type="file"] { padding: 9px 12px; font-size: .88rem; color: var(--ink-3); cursor: pointer; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* contact form head + tabs (per reference) */
.form-head { text-align: center; margin-bottom: 22px; }
.form-head__label {
  display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue-700); padding-bottom: 10px; border-bottom: 2px solid var(--blue-600);
}
.tabs {
  display: flex; gap: 4px; padding: 5px; margin: 0 auto 26px; max-width: 520px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px;
}
.tab {
  flex: 1; padding: 12px 16px; border: 0; border-radius: 999px; cursor: pointer;
  font-size: .92rem; font-weight: 600; color: var(--ink-2); background: none; transition: .2s;
}
.tab:hover { color: var(--blue-700); }
.tab.is-active { background: var(--blue-100); color: var(--blue-800); box-shadow: 0 2px 6px -3px rgba(15,63,196,.4); }

.tabpane { display: none; }
.tabpane.is-active { display: block; animation: heroIn .4s both; }

@media (max-width: 620px) {
  .field-row, .field-row--3 { grid-template-columns: 1fr; }
  .tabs { flex-direction: column; border-radius: var(--radius); }
  .tab { border-radius: var(--radius); }
}

.alert { padding: 14px 18px; border-radius: var(--radius-s); font-size: .92rem; margin-bottom: 22px; }
.alert--ok { background: #e9f9f5; color: #0b6f63; border: 1px solid #b6e8dd; }
.alert--err { background: #fdeeee; color: #9b1c1c; border: 1px solid #f5c6c6; }

.info-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.info-item { display: flex; gap: 15px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-item:last-child { border-bottom: 0; padding-bottom: 0; }
.info-item .ico { color: var(--blue-700); margin-top: 3px; }
.info-item h4 { margin: 0 0 3px; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.info-item p, .info-item address { margin: 0; font-size: .95rem; color: var(--ink); }

/* full-bleed map */
.map-full { position: relative; line-height: 0; border-top: 1px solid var(--line); }
.map-full iframe { display: block; width: 100%; height: 460px; border: 0; filter: grayscale(.2); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; padding: 76px 0;
  background: linear-gradient(115deg, #061a45 0%, var(--blue-800) 45%, var(--blue-700) 100%);
  color: rgba(255,255,255,.8);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--spectrum);
}
.cta-band__glow {
  position: absolute; right: -120px; top: -140px; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(126,224,210,.42), transparent 65%); filter: blur(30px);
  animation: floaty 9s ease-in-out infinite;
}
.cta-band__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 44px; flex-wrap: wrap; }
.cta-band__copy { max-width: 46em; }
.cta-band h2 { color: #fff; margin: 0 0 .3em; font-family: var(--display); font-weight: 600; }
.cta-band p { margin: 0; font-size: 1.04rem; }
.cta-band__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

/* matches .btn height and shape so the pair reads as one row */
.cta-band__phone {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 24px;
  border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08); color: #fff; font-size: .95rem; font-weight: 700;
  letter-spacing: .01em; white-space: nowrap; transition: .22s; backdrop-filter: blur(4px);
}
.cta-band__phone:hover { background: rgba(255,255,255,.2); color: #fff; transform: translateY(-2px); }
.cta-band__phone .ico { width: 17px; height: 17px; color: #7ee0d2; }

/* ---------- WhatsApp floating button ---------- */
.whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; padding: 0; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  box-shadow: 0 12px 28px -10px rgba(37,211,102,.7);
  transition: width .32s ease, padding .32s ease, background .2s;
}
.whatsapp:hover { color: #fff; background: #1eb956; width: 186px; padding: 0 18px 0 0; border-radius: 28px; justify-content: flex-start; }
.whatsapp__ico {
  width: 26px; height: 26px; flex: none; position: relative; z-index: 2;
  margin: 0 0 0 15px; transition: margin .32s ease;
}
.whatsapp:not(:hover) .whatsapp__ico { margin: 0; }
.whatsapp__label {
  max-width: 0; overflow: hidden; white-space: nowrap; font-size: .9rem; font-weight: 600;
  transition: max-width .32s ease, margin .32s ease; position: relative; z-index: 2;
}
.whatsapp:hover .whatsapp__label { max-width: 130px; margin-left: 11px; }
.whatsapp__pulse {
  position: absolute; left: 50%; top: 50%; width: 56px; height: 56px; margin: -28px 0 0 -28px;
  border-radius: 50%; background: var(--whatsapp);
  animation: waPulse 2.6s ease-out infinite; pointer-events: none;
}
.whatsapp:hover .whatsapp__pulse { display: none; }
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .5; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ---------- footer ---------- */
.site-footer { background: var(--footer); color: rgba(255,255,255,.6); padding: 66px 0 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 48px; }
.site-footer img { height: 48px; width: auto; }
.footer-blurb { margin: 20px 0 14px; max-width: 32em; }
.footer-tag { font-family: var(--display); color: #8fd8ce; font-size: 1rem; margin: 0; }
.footer-col h4 { color: #fff; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col li { margin-bottom: 9px; }
.footer-col a, .site-footer address, .footer-col p { color: rgba(255,255,255,.62); }
.footer-col a:hover { color: #fff; }
.site-footer address strong { color: #fff; font-weight: 600; }
.footer-base {
  display: flex; justify-content: space-between; align-items: center; gap: 8px 22px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08); padding-block: 22px;
  /* side clearance so the fixed WhatsApp (right) and back-to-top (left) buttons
     never sit over the footer text */
  padding-inline: 78px; font-size: .82rem; color: rgba(255,255,255,.4);
}
.footer-base__mid { flex: 1; }
.footer-credit { flex: none; text-align: right; color: rgba(255,255,255,.34); }
.footer-credit a { color: rgba(255,255,255,.6); font-weight: 600; }
.footer-credit a:hover { color: #7ee0d2; }

@media (max-width: 720px) {
  .footer-base { flex-direction: column; text-align: center; gap: 6px; padding-inline: 24px; padding-bottom: 84px; }
  .footer-base__left, .footer-base__mid, .footer-credit { flex: none; text-align: center; }
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ring-mark, .hero__blob, .hero__arcs, .page-hero__card::before, .cta-band__glow, .hero__stat--a, .hero__stat--b, .whatsapp__pulse, .eyebrow::before { animation: none; }
  .imgband__bg { transition: none; }
  .hero__body > *, .imgband__inner > * { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; padding: calc(76px + var(--header-h)) 0 84px; padding-inline: 6px; }
  .page-hero__card { margin-left: 0; padding: 30px 26px 32px 28px; }
  .hero__visual { min-height: 300px; }
  .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split, .split--wide, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split--rev > *:first-child { order: 1; }
  .split--rev > *:last-child { order: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: 1fr; }
  .mega { width: min(560px, 92vw); }
  .mega__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 14px 24px 24px;
    box-shadow: 0 20px 40px -24px rgba(13,27,51,.4); max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    transform: translateY(-14px); opacity: 0; visibility: hidden; transition: .22s;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__item > a { padding: 13px 12px; }
  .nav__item--has-menu { display: flex; flex-wrap: wrap; align-items: center; }
  .nav__item--has-menu > a { flex: 1; }
  .nav__chev { display: none; }
  .nav__toggle {
    display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line);
    border-radius: var(--radius); background: #fff; color: var(--ink-3); cursor: pointer; transition: .2s;
  }
  .nav__toggle[aria-expanded="true"] { background: var(--blue-50); color: var(--blue-700); transform: rotate(180deg); }
  .mega {
    position: static; transform: none; width: 100%; box-shadow: none; border: 0; padding: 0;
    max-height: 0; overflow: hidden; visibility: visible; opacity: 1; transition: max-height .3s ease;
  }
  .mega::before { display: none; }
  .nav__item--has-menu:hover .mega { transform: none; }
  .nav__item--has-menu.is-open .mega { max-height: 1200px; overflow-y: auto; }
  .mega--wide { position: static; width: 100%; transform: none; }
  .nav__item--has-menu:hover .mega--wide,
  .nav__item--has-menu.is-open .mega--wide { transform: none; }
  .mega__grid { grid-template-columns: 1fr; }
  .mega__items--3 { grid-template-columns: 1fr; }
  .mega__zone { padding: 12px 4px; }
  .mega__zone--nutra { border-left: 0; border-top: 1px solid var(--line); border-radius: 0; }

  /* About dropdown collapses inline like the mega on mobile */
  .dropdown {
    position: static; transform: none; min-width: 0; width: 100%; box-shadow: none;
    border: 0; padding: 0 0 0 8px; max-height: 0; overflow: hidden;
    opacity: 1; visibility: visible; transition: max-height .3s ease;
  }
  .dropdown::before { display: none; }
  .nav__item--simple:hover .dropdown { transform: none; }
  .nav__item--simple.is-open .dropdown { max-height: 320px; }

  .nav__cta { margin: 12px 0 0; justify-content: center; align-self: stretch; }

  .toolbar { position: static; }
  .section { padding: 64px 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero__stat--a, .hero__stat--b { display: none; }
  .imgband { height: 300px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .map-full iframe { height: 340px; }
}

@media (max-width: 620px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }

  .whatsapp { right: 16px; bottom: 16px; }
  table.products thead { display: none; }
  table.products tr { display: block; border-bottom: 1px solid var(--line); padding: 14px 4px; }
  table.products td { display: block; border: 0; padding: 4px 16px; }
}

@media print {
  .site-header, .cta-band, .toolbar, .site-footer, .imgband, .whatsapp { display: none; }
}
