:root {
  --ink: #245F8F;
  --pine: #087D3A;
  --pine-light: #12B95B;
  --amber: #D92D20;
  --amber-light: #FF8A80;
  --coral: #D92D20;
  --mint: #F2FBF5;
  --paper: #FFFFFF;
  --paper-dim: #F5FAF7;
  --white: #ffffff;
  --blue: #2A72AF;
  --line: rgba(36, 95, 143, 0.14);
  --ink-soft: rgba(25, 64, 94, 0.76);
  --ink-faint: rgba(25, 64, 94, 0.66);
  --shadow-sm: 0 10px 30px -22px rgba(17, 53, 47, 0.42);
  --shadow: 0 24px 70px -38px rgba(17, 53, 47, 0.46);
  --shadow-lg: 0 32px 90px -42px rgba(10, 64, 54, 0.5);
  --ff-display: 'Manrope', system-ui, -apple-system, sans-serif;
  --ff-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --ff-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --pill: 999px;
  --gutter: clamp(1.1rem, 5.5vw, 5.5rem);
  --section-y: clamp(4rem, 7vw, 7rem);
  --maxw: 1380px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3 { font-family: var(--ff-display); font-weight: 600; letter-spacing: -0.015em; line-height: 1.1; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.15rem; }

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

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 0.8rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--pine);
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--amber); }

.lede { font-size: 1.06rem; color: var(--ink-soft); max-width: 56ch; }

.prose { max-width: 68ch; }
.prose h3 { margin: 2rem 0 0.6rem; font-size: 1.25rem; }
.prose p { margin-bottom: 1rem; color: var(--ink-soft); }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.2rem; color: var(--ink-soft); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--pine); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }

.notice {
  margin-top: 1.5rem; padding: 1rem 1.2rem; border-left: 3px solid var(--amber);
  background: var(--mint); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.92rem; color: var(--ink-soft);
}

.empty { color: var(--ink-faint); font-style: italic; padding: 2rem 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Shared, accessible pagination for public pages and CMS lists. */
.pagination { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.pagination__summary { color:var(--ink-faint); font-size:.82rem; }
.pagination__links { display:flex; align-items:center; gap:.35rem; flex-wrap:wrap; }
.pagination__link { min-width:44px; min-height:44px; padding:.45rem .65rem; border:1px solid var(--line); border-radius:9px; background:#fff; color:var(--ink-soft); display:inline-flex; align-items:center; justify-content:center; font-size:.83rem; font-weight:700; text-decoration:none; }
.pagination__link:hover { border-color:var(--pine); color:var(--pine); }
.pagination__link.is-current { background:var(--pine); border-color:var(--pine); color:#fff; }
.pagination__link.is-disabled { opacity:.45; cursor:not-allowed; }
.pagination__link--nav { padding-inline:.8rem; }
.pagination__ellipsis { padding:.35rem .25rem; color:var(--ink-faint); }
@media (max-width:620px) { .pagination { align-items:flex-start; } .pagination__summary { width:100%; } .pagination__link--nav { font-size:.78rem; } }

.section { padding: var(--section-y) var(--gutter); }
.section--top { padding-top: 3rem; }
.section--mint { background: var(--mint); }
.section--dark { background: var(--ink); color: #fff; }
.section--dark .eyebrow { color: var(--amber-light); }
.section--dark .eyebrow::before { background: var(--amber-light); }
.section--dark .section__head p { color: rgba(255, 255, 255, 0.7); }
.section--prose { padding-top: 2rem; }

.section__head { max-width: 640px; margin-bottom: 3rem; }
.section__head p { color: var(--ink-soft); margin-top: 0.8rem; }
.section__head--split {
  max-width: none; display: flex; justify-content: space-between;
  align-items: flex-end; gap: 2rem; flex-wrap: wrap;
}
.section__head--split > div { max-width: 640px; }
.section__cta { margin-top: 2.5rem; }

.section--split {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 3rem; align-items: start;
}

.grid { display: grid; gap: 1.6rem; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--gap-lg { gap: 1.5rem; margin-top: 2.5rem; grid-template-columns: repeat(5, minmax(0, 1fr)); }

.page-hero {
  padding: clamp(3.25rem, 5vw, 5rem) var(--gutter) clamp(2.75rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 88% 10%, rgba(28, 103, 88, 0.10), transparent 55%),
    var(--paper);
}
.page-hero--narrow { max-width: 900px; }
.page-hero h1 { margin-bottom: 0.8rem; }

.crumbs {
  font-family: var(--ff-mono); font-size: 0.75rem; letter-spacing: 0.04em;
  color: var(--ink-faint); margin-bottom: 1rem;
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.crumbs a { color: var(--pine); }

@media (max-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--gap-lg { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .section--split { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  :root { --section-y: 3.5rem; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--gap-lg { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-hero { padding-top: 3.5rem; }
}
@media (max-width: 520px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .grid--gap-lg { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.9rem; padding: 0.78rem 1.5rem;
  border-radius: var(--pill); border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 26px -14px rgba(15, 61, 62, 0.7); }
.btn--amber { background: var(--amber); color: #fff; }
.btn--amber:hover { transform: translateY(-2px); box-shadow: 0 14px 26px -14px rgba(232, 151, 75, 0.8); }
.btn--outline { border-color: currentColor; background: transparent; }
.btn--outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.section--dark .btn--outline:hover { background: #fff; color: var(--ink); }
.btn--small { padding: 0.5rem 1rem; font-size: 0.82rem; }

/* ---------- Top bar + header ---------- */
.topbar {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.5rem var(--gutter);
  background: var(--ink); color: rgba(255, 255, 255, 0.82);
  font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.06em;
  text-transform: uppercase; position: relative; z-index: 101;
}
.topbar a:hover { color: var(--amber-light); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem var(--gutter);
  background: rgba(245, 247, 243, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.is-stuck { box-shadow: 0 10px 30px -22px rgba(15, 61, 62, 0.7); }

.brand { display: flex; align-items: center; gap: 0.65rem; font-family: var(--ff-display); font-weight: 700; font-size: 1.25rem; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 9px; background: var(--pine);
  position: relative; flex-shrink: 0;
}
.brand__mark::before, .brand__mark::after {
  content: ""; position: absolute; background: var(--paper);
  top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 2px;
}
.brand__mark::before { width: 13px; height: 3px; }
.brand__mark::after { width: 3px; height: 13px; }
.brand__text small {
  display: block; font-family: var(--ff-mono); font-size: 0.58rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400; color: var(--ink-faint);
}
.brand--light { color: #fff; }
.brand--light .brand__text small { color: rgba(255, 255, 255, 0.6); }

.site-nav ul { display: flex; align-items: center; gap: 1.8rem; }
.nav-link { font-size: 0.92rem; font-weight: 500; position: relative; padding: 0.3rem 0; }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--amber); transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 0.4rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform 0.3s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: 4.5rem var(--gutter) 5rem;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center;
  background:
    radial-gradient(circle at 85% 8%, rgba(28, 103, 88, 0.12), transparent 55%),
    var(--paper);
}
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: var(--pine); }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.8rem 0 2.4rem; }

.stats { display: flex; gap: 2.2rem; flex-wrap: wrap; }
.stats div { display: flex; flex-direction: column; }
.stats dt { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 600; }
.stats dd {
  font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-faint);
}

.blister {
  position: relative; width: 100%; max-width: 420px; margin-inline: auto;
  aspect-ratio: 4 / 5; padding: 2rem;
  background: linear-gradient(160deg, #fff, var(--mint));
  border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.blister::before {
  content: "℞"; position: absolute; top: 1.1rem; left: 1.3rem;
  font-family: var(--ff-mono); color: var(--pine); font-size: 0.95rem;
}
.pill {
  width: 100%; aspect-ratio: 1; border-radius: 50%; background: var(--pine);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 -6px 10px rgba(0, 0, 0, 0.15), 0 6px 12px rgba(15, 61, 62, 0.22);
  opacity: 0; transform: scale(0.2) translateY(18px);
}
.pill::after { content: ""; width: 34%; height: 34%; border-radius: 50%; background: rgba(255, 255, 255, 0.35); }
.pill.amber { background: var(--amber); }
.pill.coral { background: var(--coral); }
.pill.mint { background: var(--mint); border: 1px solid var(--line); }
.pill.mint::after { background: rgba(15, 61, 62, 0.15); }
.blister.is-ready .pill { animation: pop-pill 0.55s cubic-bezier(0.2, 1.4, 0.4, 1) forwards; }
.blister.is-ready .pill:nth-child(1) { animation-delay: 0.08s; }
.blister.is-ready .pill:nth-child(2) { animation-delay: 0.16s; }
.blister.is-ready .pill:nth-child(3) { animation-delay: 0.24s; }
.blister.is-ready .pill:nth-child(4) { animation-delay: 0.32s; }
.blister.is-ready .pill:nth-child(5) { animation-delay: 0.40s; }
.blister.is-ready .pill:nth-child(6) { animation-delay: 0.48s; }
.blister.is-ready .pill:nth-child(7) { animation-delay: 0.56s; }
.blister.is-ready .pill:nth-child(8) { animation-delay: 0.64s; }
.blister.is-ready .pill:nth-child(9) { animation-delay: 0.72s; }
@keyframes pop-pill {
  0% { opacity: 0; transform: scale(0.2) translateY(18px); }
  70% { opacity: 1; transform: scale(1.08) translateY(-4px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.blister__caption {
  margin: 1.6rem auto 0; width: fit-content;
  background: var(--ink); color: #fff; font-family: var(--ff-mono);
  font-size: 0.68rem; letter-spacing: 0.05em; padding: 0.5rem 1rem; border-radius: var(--pill);
}

/* ---------- Trust strip ---------- */
.strip {
  background: var(--ink); color: rgba(255, 255, 255, 0.85);
  padding: 1.3rem var(--gutter);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-family: var(--ff-mono); font-size: 0.74rem;
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* ---------- Signature perforated card ---------- */
.rx-card {
  position: relative; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.rx-card::before, .rx-card::after {
  content: ""; position: absolute; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; border: 1px solid var(--line);
  border-radius: 50%; background: var(--paper);
}
.rx-card::before { left: -10px; }
.rx-card::after { right: -10px; }
.section--mint .rx-card::before, .section--mint .rx-card::after { background: var(--mint); }

.service-card {
  display: block; padding: 2rem 1.8rem 1.7rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 26px 44px -26px rgba(15, 61, 62, 0.55); }
.service-card__icon {
  width: 46px; height: 46px; border-radius: 14px; background: var(--mint);
  display: flex; align-items: center; justify-content: center;
  color: var(--pine); font-size: 1.2rem; margin-bottom: 1.1rem;
}
.service-card h3 { margin-bottom: 0.4rem; }
.service-card p { color: var(--ink-soft); font-size: 0.94rem; }
.tag {
  display: inline-block; margin-top: 1rem; font-family: var(--ff-mono);
  font-size: 0.66rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--pine);
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; counter-reset: step; list-style: none; margin: 0; padding: 0; }
.steps li { position: relative; padding-top: 0.5rem; }
.steps li::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-family: var(--ff-display); font-size: 2.4rem;
  color: var(--amber); line-height: 1; margin-bottom: 0.7rem;
}
.steps p { color: var(--ink-soft); font-size: 0.95rem; margin-top: 0.4rem; }

/* ---------- Chips + product cards ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 1.1rem; border-radius: var(--pill);
  background: #fff; border: 1px solid var(--line); font-size: 0.88rem; font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.chip:hover { background: var(--ink); color: #fff; transform: translateY(-3px); }
.chip__icon { color: var(--pine); }
.chip:hover .chip__icon { color: var(--amber-light); }

.product-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card__media { display: block; aspect-ratio: 4 / 3; background: var(--mint); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { display: flex; flex-direction: column; gap: 0.3rem; padding: 1.1rem 1.2rem 1.3rem; }
.product-card__cat {
  font-family: var(--ff-mono); font-size: 0.64rem; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--pine);
}
.product-card__meta { font-size: 0.82rem; color: var(--ink-faint); }

.badge {
  display: inline-block; width: fit-content; margin-top: 0.4rem;
  font-family: var(--ff-mono); font-size: 0.64rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: var(--pill);
}
.badge--rx { background: rgba(193, 91, 74, 0.12); color: var(--coral); }
.badge--ok { background: rgba(28, 103, 88, 0.12); color: var(--pine); }
.badge--out { background: rgba(15, 61, 62, 0.08); color: var(--ink-faint); }
.badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 0.8rem 0 1.4rem; }

.product-hero {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--mint); aspect-ratio: 4 / 3;
}
.product-hero img { width: 100%; height: 100%; object-fit: cover; }
.product-meta { color: var(--ink-faint); font-size: 0.92rem; margin-top: 0.4rem; }

/* ---------- Filters ---------- */
.filters {
  display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: flex-end;
  padding: 1.2rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); margin-bottom: 1.5rem;
}
.filters .field { flex: 1 1 180px; }
.field--search { flex: 2 1 260px; }
.results-count {
  font-family: var(--ff-mono); font-size: 0.75rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1.2rem;
}

.branch-filter { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2rem; }
.pill-btn {
  padding: 0.5rem 1.1rem; border-radius: var(--pill);
  border: 1px solid var(--line); background: #fff;
  font-size: 0.84rem; font-weight: 500; transition: all 0.25s ease;
}
.pill-btn:hover { border-color: var(--pine); }
.pill-btn.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Locations, posts, jobs ---------- */
.loc-card {
  display: block; padding: 1.7rem; border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.3s ease, transform 0.3s ease;
}
.loc-card:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-4px); }
.loc-card p { color: rgba(255, 255, 255, 0.65); font-size: 0.9rem; margin-top: 0.3rem; }
.loc-card__hours { display: block; margin-top: 0.9rem; font-family: var(--ff-mono); font-size: 0.76rem; color: var(--amber-light); }

.branch-card { padding: 1.7rem; }
.branch-card h3 a:hover { color: var(--pine); }
.branch-card__addr { color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.4rem; }
.branch-card__hours { font-family: var(--ff-mono); font-size: 0.78rem; color: var(--pine); margin-top: 0.6rem; }
.branch-card__links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; font-size: 0.85rem; }
.branch-card__links a { color: var(--pine); text-decoration: underline; text-underline-offset: 3px; }

.post-card {
  display: flex; flex-direction: column; gap: 0.6rem; padding: 1.7rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card__cat {
  font-family: var(--ff-mono); font-size: 0.64rem; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--pine);
}
.post-card p { color: var(--ink-soft); font-size: 0.92rem; }
.post-card time { font-family: var(--ff-mono); font-size: 0.72rem; color: var(--ink-faint); margin-top: auto; }
.post-byline { font-family: var(--ff-mono); font-size: 0.78rem; color: var(--ink-faint); margin-top: 0.6rem; }

.job-list { display: flex; flex-direction: column; gap: 1rem; }
.job-row {
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.5rem 1.8rem; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.job-row:hover { transform: translateX(4px); border-color: var(--pine); }
.job-row__title { display: flex; flex-direction: column; gap: 0.3rem; }
.job-row__title span { color: var(--ink-soft); font-size: 0.9rem; }
.job-row__meta { display: flex; flex-direction: column; align-items: flex-end; font-size: 0.85rem; color: var(--ink-faint); white-space: nowrap; }

/* ---------- Sidebar ---------- */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 6rem; }
.sidebar__card { padding: 1.7rem; display: flex; flex-direction: column; gap: 0.8rem; }
.sidebar__card h3 { margin-top: 0.4rem; }
.sidebar__card p { color: var(--ink-soft); font-size: 0.92rem; }
.sidebar__list h3 { margin-bottom: 0.8rem; }
.sidebar__list li { padding: 0.6rem 0; border-bottom: 1px dashed var(--line); font-size: 0.92rem; }
.sidebar__list a:hover { color: var(--pine); }
.plain-list li { padding: 0.35rem 0; font-size: 0.92rem; color: var(--ink-soft); }
.plain-list a:hover { color: var(--pine); }

.map-embed, .map-placeholder {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  background: var(--mint); min-height: 380px;
}
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }
.map-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--ink-faint); text-align: center; padding: 2rem;
}

/* ---------- Forms ---------- */
.form { padding: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.form__title { margin-bottom: 0.2rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form__hp { position: absolute; left: -9999px; }
.form__note { font-size: 0.82rem; color: var(--ink-faint); }
.form__status { font-family: var(--ff-mono); font-size: 0.8rem; min-height: 1.2em; }
.form__status.is-ok { color: var(--pine); }
.form__status.is-error { color: var(--coral); }

.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field > span { font-size: 0.85rem; font-weight: 500; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.92rem; padding: 0.75rem 0.9rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); color: var(--ink); width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--pine); outline-offset: 1px; }
.field__error { color: var(--coral); font-size: 0.8rem; font-style: normal; }

.cta-band {
  margin: 0 var(--gutter) var(--section-y);
  padding: 2.5rem; border-radius: var(--radius-lg);
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-band p { color: rgba(255, 255, 255, 0.7); margin-top: 0.5rem; }

/* ---------- Newsletter receipt ---------- */
.newsletter { display: flex; justify-content: center; padding: var(--section-y) var(--gutter); background: var(--paper-dim); }
.receipt {
  width: 100%; max-width: 470px; background: #fff; border: 1px solid var(--line);
  padding: 2.4rem 2.1rem 3.2rem; text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 96% 100%, 92% 96%, 88% 100%, 84% 96%, 80% 100%, 76% 96%, 72% 100%, 68% 96%, 64% 100%, 60% 96%, 56% 100%, 52% 96%, 48% 100%, 44% 96%, 40% 100%, 36% 96%, 32% 100%, 28% 96%, 24% 100%, 20% 96%, 16% 100%, 12% 96%, 8% 100%, 4% 96%, 0 100%);
}
.receipt h3 { font-family: var(--ff-mono); font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; }
.receipt__sub { font-family: var(--ff-mono); font-size: 0.8rem; color: var(--ink-faint); margin-top: 0.3rem; }
.receipt hr { border: 0; border-top: 1px dashed var(--line); margin: 1.2rem 0; }
.receipt__note { font-family: var(--ff-mono); font-size: 0.7rem; color: var(--ink-faint); }
.subscribe { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.subscribe input { flex: 1 1 200px; font: inherit; padding: 0.75rem 0.9rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); }
.subscribe .form__status { flex-basis: 100%; }

/* ---------- Toasts + floating WhatsApp ---------- */
.toast {
  position: fixed; top: 5.5rem; right: var(--gutter); z-index: 120;
  padding: 0.9rem 1.2rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; box-shadow: var(--shadow); animation: toast-in 0.4s ease both;
}
.toast--ok { background: var(--pine); color: #fff; }
.toast--error { background: var(--coral); color: #fff; }
@keyframes toast-in { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }

.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--pine); color: #fff; padding: 0.8rem 1.2rem;
  border-radius: var(--pill); box-shadow: var(--shadow);
  font-size: 0.88rem; font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease;
}
.wa-float:hover { transform: translateY(-3px); background: var(--pine-light); }
.wa-float__icon { font-size: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.75); padding: 4rem var(--gutter) 2rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.site-footer h3 {
  font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber-light); margin-bottom: 1rem;
}
.site-footer li { margin-bottom: 0.55rem; font-size: 0.9rem; }
.site-footer a:hover { color: #fff; }
.site-footer__blurb { margin: 1rem 0 0.6rem; font-size: 0.92rem; max-width: 34ch; }
.site-footer__meta { font-family: var(--ff-mono); font-size: 0.72rem; color: rgba(255, 255, 255, 0.5); }
.social { display: flex; gap: 1rem; margin-top: 1rem; font-size: 0.85rem; }
.site-footer__bar {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem; color: rgba(255, 255, 255, 0.55);
}
.site-footer__note { max-width: 46ch; }

/* ---------- Scroll reveal ---------- */
/* Progressive enhancement: server-rendered content must remain visible even if JS
   is unavailable or an old/cached bundle fails to initialise. */
.reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-ready .reveal { opacity: 0; transform: translateY(26px); }
.reveal-ready .reveal.is-visible { opacity: 1; transform: none; }

.page-updated { font-family: var(--ff-mono); font-size: 0.74rem; color: var(--ink-faint); margin-top: 2.5rem; }
.error-page { min-height: 55vh; }

@media (max-width: 1000px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; order: 1; }
  .hero { grid-template-columns: 1fr; padding-top: 3rem; }
  .form__row { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .job-row { flex-direction: column; align-items: flex-start; }
  .job-row__meta { align-items: flex-start; }
  .topbar__item--hide-sm { display: none; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .toast { left: var(--gutter); right: var(--gutter); }
}

/* ===== 2026 corporate pharmacy redesign ===== */
body { background: var(--paper); }
.topbar { background: var(--ink); color: rgba(255,255,255,.82); font-size: .78rem; }
.topbar__inner { max-width: var(--maxw); margin:auto; padding:.55rem var(--gutter); display:flex; gap:1.2rem; justify-content:space-between; align-items:center; }
.topbar__call { color:#fff; font-weight:700; }
.site-header { max-width: var(--maxw); margin: 0 auto; padding: 1rem var(--gutter); background: rgba(251,253,252,.94); backdrop-filter: blur(18px); }
.brand__mark { width: 44px; height:44px; border-radius:14px; background:var(--pine); position:relative; box-shadow:0 8px 22px -12px var(--pine); display:grid; place-items:center; }
.brand__mark::before,.brand__mark::after { content:""; position:absolute; background:#fff; border-radius:4px; }
.brand__mark::before { width:22px; height:7px; }.brand__mark::after { width:7px; height:22px; }
.brand__logo { max-height:58px; width:auto; max-width:360px; object-fit:contain; }
.brand__text { font-family:var(--ff-display); font-weight:800; letter-spacing:-.04em; font-size:1.15rem; }
.brand__text small { font-family:var(--ff-body); font-size:.61rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-faint); }
.site-nav ul { gap:.35rem; }.nav-link { padding:.62rem .72rem; border-radius:10px; font-size:.9rem; font-weight:600; }.nav-link:hover,.nav-link.is-active { background:var(--mint); color:var(--pine); }
.btn { border-radius:12px; font-weight:700; min-height:44px; display:inline-flex; align-items:center; justify-content:center; gap:.5rem; }
.btn--primary { background:var(--pine); color:#fff; border:1px solid var(--pine); box-shadow:0 12px 28px -18px var(--pine); }.btn--primary:hover{background:#075f50; transform:translateY(-1px)}
.btn--ghost { background:#fff; color:var(--ink); border:1px solid var(--line); }.btn--ghost:hover{border-color:rgba(10,121,101,.35); color:var(--pine)}
.btn--large { padding:.82rem 1.15rem; min-height:52px; }
.hero--corporate { max-width:var(--maxw); margin:0 auto; min-height:680px; padding:clamp(4rem,8vw,7.5rem) var(--gutter) clamp(3.5rem,7vw,6rem); display:grid; grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr); gap:clamp(2rem,6vw,6rem); align-items:center; }
.hero--corporate::before { content:""; position:absolute; inset:100px 0 auto 55%; width:38vw; height:38vw; max-width:600px; max-height:600px; border-radius:50%; background:radial-gradient(circle,rgba(23,161,132,.12),transparent 68%); pointer-events:none; }
.hero__copy { position:relative; z-index:1; }.hero__copy h1 { font-size:clamp(3rem,6.3vw,6rem); line-height:.98; letter-spacing:-.065em; max-width:760px; margin:.8rem 0 1.5rem; }.hero__copy h1 span{color:var(--pine)}
.hero__copy .lede { font-size:clamp(1.02rem,1.7vw,1.22rem); line-height:1.7; max-width:620px; }
.trust-line { display:inline-flex; align-items:center; gap:.55rem; padding:.48rem .72rem; border:1px solid rgba(10,121,101,.18); background:var(--mint); color:var(--pine); border-radius:999px; font-size:.78rem; font-weight:700; }.trust-line__dot{width:7px;height:7px;background:var(--pine-light);border-radius:50%;box-shadow:0 0 0 4px rgba(23,161,132,.12)}
.hero__ctas { display:flex; gap:.75rem; flex-wrap:wrap; margin:2rem 0 1.15rem; }.hero__assurance{display:flex;flex-wrap:wrap;gap:.6rem 1.15rem;color:var(--ink-soft);font-size:.82rem;margin-bottom:2.2rem}.hero__assurance span{white-space:nowrap}
.hero--corporate .stats { display:grid; grid-template-columns:repeat(4,1fr); gap:0; border-top:1px solid var(--line); padding-top:1.3rem; }.hero--corporate .stats div{padding-right:1rem}.hero--corporate .stats dt{font-family:var(--ff-display);font-size:1.45rem;font-weight:800;color:var(--ink)}.hero--corporate .stats dd{font-size:.72rem;color:var(--ink-faint);margin-top:.2rem}
.hero-media { position:relative; min-height:560px; }.hero-media__image,.hero-fallback{width:100%;height:560px;border-radius:32px;object-fit:cover;box-shadow:var(--shadow-lg)}
.hero-fallback{background:linear-gradient(145deg,#dff3ed,#eff9f6 45%,#c7e9df);display:grid;place-items:center;position:relative;overflow:hidden}.hero-fallback::before{content:"";position:absolute;width:320px;height:320px;border:1px solid rgba(10,121,101,.18);border-radius:50%;box-shadow:0 0 0 70px rgba(255,255,255,.22),0 0 0 140px rgba(255,255,255,.15)}.hero-fallback__cross{width:122px;height:122px;position:relative;z-index:1}.hero-fallback__cross span{position:absolute;background:var(--pine);border-radius:14px}.hero-fallback__cross span:first-child{width:100%;height:36px;top:43px}.hero-fallback__cross span:last-child{height:100%;width:36px;left:43px}.hero-fallback__label{position:absolute;bottom:40px;text-align:center;color:var(--ink);z-index:1}.hero-fallback__label strong,.hero-fallback__label small{display:block}.hero-fallback__label strong{font:800 1.15rem var(--ff-display);letter-spacing:.12em}.hero-fallback__label small{font-size:.65rem;letter-spacing:.16em;margin-top:.3rem}
.hero-media__card{position:absolute;left:-34px;bottom:38px;display:flex;gap:.8rem;align-items:center;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow);padding:1rem 1.1rem;border-radius:18px;max-width:300px}.hero-media__icon{width:42px;height:42px;border-radius:12px;background:var(--mint);color:var(--pine);display:grid;place-items:center;font-size:1.15rem}.hero-media__card strong,.hero-media__card small{display:block}.hero-media__card strong{font-size:.88rem}.hero-media__card small{font-size:.72rem;color:var(--ink-faint);margin-top:.2rem}
.strip--trust { max-width:var(--maxw); margin:0 auto; padding:0 var(--gutter) 2rem; display:grid; grid-template-columns:repeat(4,1fr); background:transparent; color:var(--ink-soft); gap:0; }.strip--trust span{padding:1.1rem 1.2rem;border:1px solid var(--line);border-right:0;background:#fff;font-size:.82rem;font-weight:600}.strip--trust span:first-child{border-radius:14px 0 0 14px}.strip--trust span:last-child{border-right:1px solid var(--line);border-radius:0 14px 14px 0}.strip--trust b{font-family:var(--ff-mono);font-size:.64rem;color:var(--pine);margin-right:.45rem}
.section { max-width:var(--maxw); margin:0 auto; }.section--mint,.section--dark{max-width:none}.section--mint > *,.section--dark > *{max-width:calc(var(--maxw) - (var(--gutter) * 2));margin-left:auto;margin-right:auto}
.rx-card,.product-card,.post-card,.loc-card,.card{border:1px solid var(--line);box-shadow:var(--shadow-sm);background:#fff}.rx-card:hover,.product-card:hover,.post-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:rgba(10,121,101,.24)}
.service-card{min-height:230px;padding:1.6rem}.service-card__icon{background:var(--mint);color:var(--pine);border-radius:12px;width:46px;height:46px;display:grid;place-items:center}.service-card h3{font-family:var(--ff-display);font-weight:800}.product-card__media{background:linear-gradient(145deg,#f5faf8,#eaf4f1)}
.page-hero{background:linear-gradient(180deg,#f0f9f6 0%,var(--paper) 100%);border-bottom:1px solid rgba(10,121,101,.08)}.page-hero h1{letter-spacing:-.05em;font-weight:800}.eyebrow{font-family:var(--ff-body);font-weight:800;letter-spacing:.12em;color:var(--pine)}
.site-footer{background:#173F61}.site-footer h3{font-family:var(--ff-body);font-weight:800;color:#BFDDF4}.site-footer__bar{border-color:rgba(255,255,255,.1)}
.wa-float{background:#087D3A;color:#fff;border:0}.wa-float:hover{background:#076B32}
@media(max-width:980px){.hero--corporate{grid-template-columns:1fr;min-height:auto}.hero-media{min-height:460px}.hero-media__image,.hero-fallback{height:460px}.hero-media__card{left:18px}.strip--trust{grid-template-columns:1fr 1fr}.strip--trust span{border-right:1px solid var(--line);border-bottom:0;border-radius:0!important}.strip--trust span:first-child{border-radius:14px 0 0 0!important}.strip--trust span:nth-child(2){border-radius:0 14px 0 0!important}.strip--trust span:nth-child(3){border-bottom:1px solid var(--line);border-radius:0 0 0 14px!important}.strip--trust span:last-child{border-bottom:1px solid var(--line);border-radius:0 0 14px 0!important}}
@media(max-width:650px){.topbar__inner{padding:.55rem 1rem}.hero--corporate{padding-top:3.2rem}.hero__copy h1{font-size:clamp(2.75rem,14vw,4.2rem)}.hero--corporate .stats{grid-template-columns:1fr 1fr;gap:1rem}.hero-media{min-height:380px}.hero-media__image,.hero-fallback{height:380px}.hero-media__card{left:12px;right:12px;bottom:12px}.strip--trust{grid-template-columns:1fr}.strip--trust span{border-bottom:0!important;border-radius:0!important}.strip--trust span:first-child{border-radius:14px 14px 0 0!important}.strip--trust span:last-child{border-bottom:1px solid var(--line)!important;border-radius:0 0 14px 14px!important}.brand__logo{max-height:44px;max-width:245px}}


/* ===== Visual QA / accessibility hardening ===== */
/* The corporate topbar owns its spacing through the inner container; avoid double padding. */
.topbar { padding: 0; }
.hero--corporate { position: relative; isolation: isolate; }
.hero--corporate::before { z-index: -1; }
.chip, .pill-btn { min-height: 44px; }

@media (max-width: 760px) {
  .site-header { position: sticky; top: 0; }
  .site-nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    inset-inline: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 1.25rem var(--gutter) 1.5rem;
    background: rgba(251,253,252,.985);
    box-shadow: 0 24px 50px -34px rgba(17,53,47,.55);
    transform: translateY(-130%);
    transition: transform 0.35s ease;
  }
  .site-nav.is-open ul { transform: translateY(0); }
  .site-nav .nav-link, .site-nav .btn--nav { width: 100%; min-height: 46px; justify-content: flex-start; }
  body.site-nav-open { overflow: hidden; }
}

/* CMS-managed announcement banners */
.site-announcement{border-bottom:1px solid var(--line);background:var(--paper-dim);color:var(--ink)}
.site-announcement__inner{max-width:var(--maxw);margin:auto;padding:.75rem var(--gutter);display:flex;align-items:center;justify-content:space-between;gap:1rem}
.site-announcement__inner>div{display:flex;gap:.6rem;align-items:center;flex-wrap:wrap}
.site-announcement--success{background:var(--mint)}
.site-announcement--warning{background:#fff5df}
.site-announcement--urgent{background:#fff0f1;color:#8c252b}
@media(max-width:700px){.site-announcement__inner{align-items:flex-start;flex-direction:column}}
.hero-slider{position:relative}.hero-slide{display:none}.hero-slide.is-active{display:grid}.hero-slider__dots{display:flex;justify-content:center;gap:.5rem;margin:-1.5rem 0 2rem;position:relative;z-index:2}.hero-slider__dots button{width:10px;height:10px;border-radius:999px;border:0;background:rgba(17,53,47,.25);cursor:pointer}.hero-slider__dots button.is-active{width:28px;background:var(--pine)}.testimonial-card{margin:0}.testimonial-card>p{font-size:1.03rem;line-height:1.75}.testimonial-card footer{display:flex;flex-direction:column;gap:.2rem;margin-top:1rem}.testimonial-card footer span{color:var(--ink-soft);font-size:.9rem}.testimonial-card__rating{color:var(--amber);letter-spacing:.12em;margin-top:1rem}


/* ===== Official Med-Tim logo integration ===== */
.site-header .brand__logo{display:block;max-width:min(300px,30vw);height:auto}
.site-footer .brand__logo{background:#fff;border-radius:10px;padding:.4rem .55rem;max-width:310px;max-height:72px}
.nav-link::after{background:var(--amber)}
@media(max-width:1100px){.site-header .brand__logo{max-width:220px}}
@media(max-width:650px){.site-header .brand__logo{max-width:190px;max-height:46px}.site-footer .brand__logo{max-width:245px}}

/* ============================================================
   MED-TIM PREMIUM CORPORATE UI — public website
   Visual-only layer: no business logic is changed here.
   ============================================================ */
:root {
  --mt-green: var(--pine);
  --mt-green-700: #056b31;
  --mt-green-800: #045728;
  --mt-blue: var(--ink);
  --mt-blue-800: #173f61;
  --mt-red: var(--amber);
  --mt-text: #162b37;
  --mt-muted: #62727b;
  --mt-border: #dfe8e4;
  --mt-bg: #f7faf8;
  --mt-bg-green: #eff8f2;
  --mt-bg-blue: #eef5fa;
  --mt-card: #ffffff;
  --mt-shadow-sm: 0 12px 34px rgba(18,55,43,.08);
  --mt-shadow-md: 0 22px 55px rgba(18,55,43,.12);
  --mt-shadow-lg: 0 38px 90px rgba(18,55,43,.16);
  --mt-radius: 18px;
  --mt-radius-lg: 28px;
}

body {
  color: var(--mt-text);
  background: #fff;
  font-size: 16px;
  letter-spacing: -.005em;
}

h1,h2,h3 { color: var(--mt-text); }
.lede,.section__head p,.prose p,.prose li { color: var(--mt-muted); }

/* ---------- premium header ---------- */
.topbar {
  background: linear-gradient(90deg, var(--mt-blue-800), #1d527d);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner {
  max-width: var(--maxw);
  min-height: 38px;
  padding: .48rem var(--gutter);
  gap: 1rem;
}
.topbar__item { letter-spacing: .045em; }
.topbar__call {
  padding: .28rem .62rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
}

.site-header {
  max-width: none;
  margin: 0;
  min-height: 86px;
  padding: .9rem max(var(--gutter), calc((100vw - var(--maxw))/2 + var(--gutter)));
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(11,66,45,.09);
  box-shadow: 0 1px 0 rgba(255,255,255,.8);
}
.site-header.is-stuck {
  box-shadow: 0 16px 42px rgba(18,55,43,.11);
}
.site-header .brand__logo {
  max-width: min(330px, 30vw);
  max-height: 64px;
  object-fit: contain;
}
.site-nav ul { gap: .22rem; }
.nav-link {
  color: #314b58;
  font-weight: 700;
  padding: .7rem .78rem;
  border-radius: 11px;
}
.nav-link::after { display:none; }
.nav-link:hover,.nav-link.is-active {
  background: var(--mt-bg-green);
  color: var(--mt-green-800);
}
.site-nav .btn--nav {
  margin-left: .35rem;
  padding-inline: 1.15rem;
  box-shadow: 0 10px 24px rgba(8,125,58,.18);
}

/* ---------- buttons ---------- */
.btn {
  border-radius: 12px;
  min-height: 46px;
  padding: .76rem 1.25rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.btn--primary {
  background: linear-gradient(135deg, var(--mt-green), var(--mt-green-700));
  border-color: var(--mt-green);
  box-shadow: 0 13px 28px rgba(8,125,58,.22);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--mt-green-700), var(--mt-green-800));
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(8,125,58,.26);
}
.btn--amber {
  background: var(--mt-red);
  border-color: var(--mt-red);
  box-shadow: 0 13px 28px rgba(217,45,32,.19);
}
.btn--outline,.btn--ghost {
  border: 1px solid #cfdcd6;
  background:#fff;
  color:var(--mt-text);
  box-shadow:0 7px 20px rgba(18,55,43,.04);
}
.btn--outline:hover,.btn--ghost:hover {
  background:var(--mt-bg-green);
  border-color:rgba(8,125,58,.34);
  color:var(--mt-green-800);
}

/* ---------- homepage hero ---------- */
.hero-slider {
  background:
    linear-gradient(115deg, rgba(239,248,242,.92), rgba(255,255,255,.98) 52%, rgba(238,245,250,.78)),
    #fff;
  border-bottom:1px solid rgba(8,125,58,.08);
}
.hero--corporate {
  min-height: 650px;
  padding-top: clamp(3.6rem,7vw,6.5rem);
  padding-bottom: clamp(3.5rem,6vw,5.6rem);
  gap: clamp(2.2rem,6vw,5.8rem);
}
.hero--corporate::before {
  inset: 7% -8% auto auto;
  width: 46vw;
  height: 46vw;
  max-width: 700px;
  max-height: 700px;
  background:
    radial-gradient(circle at center, rgba(8,125,58,.13), rgba(36,95,143,.055) 42%, transparent 70%);
}
.hero--corporate::after {
  content:"";
  position:absolute;
  left:-9%; bottom:5%;
  width:270px; height:270px;
  border:42px solid rgba(36,95,143,.035);
  border-radius:50%;
  z-index:-1;
}
.trust-line {
  min-height: 38px;
  padding: .5rem .82rem;
  background: rgba(255,255,255,.84);
  border-color: rgba(8,125,58,.18);
  box-shadow:0 8px 24px rgba(18,55,43,.05);
  color: var(--mt-green-800);
}
.hero__copy h1 {
  max-width: 760px;
  font-size: clamp(3rem,5.6vw,5.55rem);
  line-height: .99;
  letter-spacing: -.064em;
  font-weight: 800;
  text-wrap: balance;
}
.hero__copy .lede {
  font-size: clamp(1.05rem,1.5vw,1.2rem);
  line-height: 1.75;
  max-width: 610px;
}
.hero__ctas { margin-top:2rem; }
.hero__assurance {
  gap:.65rem 1.15rem;
  margin:1.15rem 0 1.8rem;
  color:#52666f;
  font-size:.86rem;
}
.hero__assurance span {
  display:inline-flex;
  gap:.35rem;
  align-items:center;
}
.hero--corporate .stats {
  margin-top:.5rem;
  padding-top:1.4rem;
  border-color:rgba(8,125,58,.13);
}
.hero--corporate .stats dt {
  color:var(--mt-blue-800);
  font-size:1.55rem;
}
.hero--corporate .stats dd { color:#75848a; }

.hero-media { min-height: 540px; }
.hero-media::before {
  content:"";
  position:absolute;
  width:82%; height:88%;
  right:-24px; top:-24px;
  border:1px solid rgba(8,125,58,.15);
  border-radius:34px;
  z-index:-1;
}
.hero-media__image,.hero-fallback {
  height:540px;
  border-radius:30px;
  border:7px solid rgba(255,255,255,.88);
  box-shadow:var(--mt-shadow-lg);
}
.hero-media__image { object-position:center; }
.hero-media__card {
  left:-42px;
  bottom:30px;
  border:0;
  border-left:4px solid var(--mt-green);
  border-radius:16px;
  box-shadow:0 26px 60px rgba(18,55,43,.18);
  padding:1rem 1.15rem;
}
.hero-media__icon {
  background:var(--mt-bg-green);
  color:var(--mt-green);
  border:1px solid rgba(8,125,58,.12);
}
.hero-slider__dots { margin:-1rem 0 2rem; }
.hero-slider__dots button { transition:.25s ease; }

/* ---------- trust strip ---------- */
.strip--trust {
  position:relative;
  z-index:3;
  margin-top:-22px;
  padding-bottom:1.5rem;
}
.strip--trust span {
  min-height:72px;
  display:flex;
  align-items:center;
  gap:.5rem;
  background:#fff;
  box-shadow:0 15px 34px rgba(18,55,43,.06);
  border-color:#e1eae6;
  font-size:.86rem;
}
.strip--trust b {
  width:28px; height:28px;
  display:grid; place-items:center;
  flex:0 0 auto;
  border-radius:50%;
  background:var(--mt-bg-green);
  color:var(--mt-green-800);
}

/* ---------- section system ---------- */
.section {
  padding-top: clamp(4.5rem,7vw,7rem);
  padding-bottom: clamp(4.5rem,7vw,7rem);
}
.section--mint {
  background:
    radial-gradient(circle at 4% 16%, rgba(8,125,58,.06), transparent 24%),
    linear-gradient(180deg,#f2f9f4,#f8fbf9);
}
.section--dark {
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,#123850 0%,#173f61 45%,#0b5b3a 135%);
}
.section--dark::after {
  content:"";
  position:absolute; right:-140px; top:-150px;
  width:420px;height:420px;
  border-radius:50%;
  border:70px solid rgba(255,255,255,.035);
  pointer-events:none;
}
.section__head { max-width:720px; margin-bottom:2.6rem; }
.section__head--split { align-items:end; }
.section__head h2 {
  font-size:clamp(2rem,3.45vw,3.3rem);
  font-weight:800;
  letter-spacing:-.048em;
  text-wrap:balance;
}
.section__head p { line-height:1.75; }
.eyebrow {
  font-size:.72rem;
  letter-spacing:.13em;
  font-weight:800;
  color:var(--mt-green-700);
}
.eyebrow::before {
  width:28px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--mt-green),var(--mt-red));
}

/* ---------- service / product / content cards ---------- */
.grid { gap:1.35rem; }
.rx-card,.product-card,.post-card,.card {
  border:1px solid var(--mt-border);
  border-radius:var(--mt-radius);
  box-shadow:var(--mt-shadow-sm);
  background:#fff;
}
.rx-card::before,.rx-card::after { display:none; }
.service-card {
  min-height:250px;
  padding:1.7rem;
  display:flex;
  flex-direction:column;
  border-top:4px solid transparent;
  transition:.28s ease;
}
.service-card:hover {
  border-top-color:var(--mt-green);
  transform:translateY(-6px);
  box-shadow:var(--mt-shadow-md);
}
.service-card__icon {
  width:52px;height:52px;
  margin-bottom:1.4rem;
  border-radius:15px;
  background:linear-gradient(145deg,#edf8f1,#e4f4e9);
  border:1px solid rgba(8,125,58,.12);
  color:var(--mt-green-800);
  font-size:1.25rem;
}
.service-card h3 { font-size:1.16rem; margin-bottom:.6rem; }
.service-card p { line-height:1.65; color:var(--mt-muted); }
.service-card .tag { margin-top:auto; align-self:flex-start; }
.tag {
  background:var(--mt-bg-blue);
  color:var(--mt-blue-800);
  border:1px solid rgba(36,95,143,.12);
  font-weight:800;
}

.chips { gap:.65rem; }
.chip {
  min-height:48px;
  background:#fff;
  border:1px solid #dce7e2;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(18,55,43,.035);
  font-weight:700;
}
.chip:hover {
  background:var(--mt-blue-800);
  border-color:var(--mt-blue-800);
  transform:translateY(-2px);
}

.product-card {
  overflow:hidden;
  border-radius:18px;
  transition:.28s ease;
}
.product-card:hover {
  transform:translateY(-7px);
  box-shadow:var(--mt-shadow-md);
  border-color:rgba(8,125,58,.2);
}
.product-card__media {
  aspect-ratio:1.12/1;
  padding:.55rem;
  background:linear-gradient(145deg,#f6faf8,#edf5f0);
  border-bottom:1px solid #edf2ef;
}
.product-card__media img {
  border-radius:13px;
  object-fit:contain;
  background:#fff;
}
.product-card__body { padding:1.15rem 1.2rem 1.35rem; gap:.42rem; }
.product-card__cat {
  color:var(--mt-green-700);
  font-weight:800;
  letter-spacing:.08em;
}
.product-card__body strong { font-size:1.03rem; line-height:1.35; }
.product-card__meta { color:#77878d; }
.badge { border-radius:8px; font-weight:800; }

.steps { gap:1.25rem; }
.steps li {
  min-height:210px;
  padding:1.55rem 1.5rem 1.5rem;
  background:#fff;
  border:1px solid var(--mt-border);
  border-radius:18px;
  box-shadow:var(--mt-shadow-sm);
}
.steps li::before {
  position:static;
  display:grid;
  place-items:center;
  width:42px;height:42px;
  margin-bottom:1.15rem;
  background:var(--mt-green);
  color:#fff;
  border-radius:12px;
  font-size:1rem;
  font-family:var(--ff-display);
}
.steps h3 { font-size:1.08rem; }
.steps p { color:var(--mt-muted); line-height:1.65; }

.loc-card {
  position:relative;
  min-height:210px;
  padding:1.6rem;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.075);
  backdrop-filter:blur(8px);
  box-shadow:none;
}
.loc-card::after {
  content:"↗";
  position:absolute;
  right:1.3rem; top:1.2rem;
  width:36px;height:36px;
  display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.16);
  border-radius:10px;
  color:#fff;
}
.loc-card:hover { background:rgba(255,255,255,.12); transform:translateY(-5px); }
.loc-card h3 { color:#fff; padding-right:44px; }
.loc-card p { color:rgba(255,255,255,.73); }
.loc-card__hours { color:#c9f7d7; }

.post-card {
  min-height:265px;
  padding:1.55rem;
  border-top:4px solid var(--mt-blue);
  transition:.28s ease;
}
.post-card:hover { border-top-color:var(--mt-green); }
.post-card__cat {
  align-self:flex-start;
  background:var(--mt-bg-blue);
  color:var(--mt-blue-800);
  border-radius:999px;
  padding:.32rem .6rem;
  font-weight:800;
}
.post-card h3 { margin:.9rem 0 .55rem; font-size:1.16rem; }
.post-card p { line-height:1.7; color:var(--mt-muted); }
.post-card time { margin-top:auto; padding-top:1rem; color:#849096; }

.testimonial-card {
  position:relative;
  min-height:230px;
  padding:1.7rem;
  border-radius:18px;
  overflow:hidden;
}
.testimonial-card::after {
  content:'“';
  position:absolute;
  top:-12px;right:16px;
  font:800 6rem/1 var(--ff-display);
  color:rgba(8,125,58,.06);
}
.testimonial-card>p { position:relative; z-index:1; color:#3e535e; }
.testimonial-card__rating { color:#d89a21; }

/* ---------- page heroes / listings ---------- */
.page-hero {
  position:relative;
  overflow:hidden;
  padding-top:clamp(3.8rem,6vw,5.6rem);
  padding-bottom:clamp(3.8rem,6vw,5.5rem);
  background:
    radial-gradient(circle at 87% 22%,rgba(8,125,58,.13),transparent 26%),
    radial-gradient(circle at 96% 84%,rgba(36,95,143,.10),transparent 25%),
    linear-gradient(125deg,#f2f9f4 0%,#fff 54%,#eff6fb 100%);
  border-bottom:1px solid #e5ede9;
}
.page-hero::before {
  content:"";
  position:absolute;
  right:9%;top:50%;
  width:150px;height:150px;
  transform:translateY(-50%);
  border-radius:50%;
  border:28px solid rgba(8,125,58,.045);
}
.page-hero::after {
  content:"";
  position:absolute;
  right:4%;top:36%;
  width:115px;height:38px;
  border-radius:999px;
  background:rgba(217,45,32,.035);
  transform:rotate(-24deg);
}
.page-hero > * {
  position:relative;
  z-index:1;
  max-width:min(760px,calc(100% - 2*var(--gutter)));
}
.page-hero h1 {
  font-size:clamp(2.5rem,4.6vw,4.4rem);
  line-height:1.02;
  letter-spacing:-.058em;
  margin-bottom:1rem;
}
.page-hero .lede { font-size:1.08rem; line-height:1.75; }

.filters {
  padding:1rem;
  background:#fff;
  border:1px solid var(--mt-border);
  border-radius:16px;
  box-shadow:var(--mt-shadow-sm);
  margin-bottom:1.4rem;
}
.field input,.field select,.field textarea {
  min-height:48px;
  border:1px solid #d7e2dd;
  border-radius:11px;
  background:#fff;
  color:var(--mt-text);
}
.field input:focus,.field select:focus,.field textarea:focus {
  outline:3px solid rgba(8,125,58,.10);
  border-color:rgba(8,125,58,.48);
}
.results-count {
  color:#728087;
  font-weight:700;
  margin-bottom:1.3rem;
}
.pill-btn {
  border-radius:999px;
  padding:.62rem .9rem;
  background:#fff;
  font-weight:700;
}
.pill-btn.is-active {
  background:var(--mt-green);
  border-color:var(--mt-green);
  box-shadow:0 8px 20px rgba(8,125,58,.17);
}

.branch-card {
  position:relative;
  min-height:220px;
  padding:1.65rem;
  border-radius:18px;
  transition:.25s ease;
}
.branch-card:hover { transform:translateY(-5px); box-shadow:var(--mt-shadow-md); }
.branch-card h3 { padding-right:35px; }
.branch-card::after {
  content:"⌖";
  position:absolute;right:1.3rem;top:1.2rem;
  color:var(--mt-green);
  font-size:1.2rem;
}
.branch-card__addr { color:var(--mt-muted); line-height:1.6; }
.branch-card__hours {
  display:inline-flex;
  margin-top:.8rem;
  padding:.32rem .55rem;
  background:var(--mt-bg-green);
  border-radius:8px;
  color:var(--mt-green-800);
  font-family:var(--ff-body);
  font-weight:800;
}
.branch-card__links { margin-top:1.2rem; }
.branch-card__links a { font-weight:800; text-decoration:none; }

.form {
  border-radius:20px;
  box-shadow:var(--mt-shadow-sm);
  border:1px solid var(--mt-border);
}
.sidebar__card { border-radius:18px; }
.sidebar__list li { border-color:#e5ece9; }
.notice { border-left-color:var(--mt-red); background:#fff7f6; color:#6c5552; }

.cta-band {
  margin:0 var(--gutter) clamp(4rem,7vw,7rem);
  max-width:calc(var(--maxw) - 2*var(--gutter));
  margin-left:auto;margin-right:auto;
  border-radius:24px;
  background:
    radial-gradient(circle at 92% 15%,rgba(255,255,255,.12),transparent 27%),
    linear-gradient(120deg,var(--mt-blue-800),#185074 58%,#0a6b3d);
  box-shadow:0 28px 68px rgba(18,55,43,.17);
}
.cta-band h2 { color:#fff; }

/* ---------- newsletter ---------- */
.newsletter {
  padding:clamp(4rem,7vw,6rem) var(--gutter);
  background:linear-gradient(180deg,#fff,#f3f8f5);
}
.receipt {
  max-width:940px;
  margin:auto;
  padding:clamp(2rem,5vw,3.4rem);
  border:1px solid var(--mt-border);
  border-radius:26px;
  background:
    radial-gradient(circle at 92% 5%,rgba(8,125,58,.08),transparent 30%),
    #fff;
  box-shadow:var(--mt-shadow-md);
  text-align:left;
}
.receipt::before,.receipt::after { display:none; }
.receipt h3 { font-size:clamp(1.75rem,3vw,2.55rem); }
.receipt__sub { max-width:650px; color:var(--mt-muted); }
.receipt hr { border:0;border-top:1px solid #e5ece8;margin:1.35rem 0; }
.subscribe { display:grid;grid-template-columns:1fr auto;gap:.8rem; }
.subscribe input { min-height:52px;border:1px solid #d6e1dc;border-radius:12px;padding:0 1rem; }
.receipt__note { color:#7a878c; }

/* ---------- footer ---------- */
.site-footer {
  position:relative;
  overflow:hidden;
  background:linear-gradient(145deg,#123850 0%,#173f61 52%,#0b4d35 135%);
  border-top:5px solid var(--mt-green);
}
.site-footer::after {
  content:"";
  position:absolute;right:-120px;bottom:-150px;
  width:430px;height:430px;border-radius:50%;
  border:75px solid rgba(255,255,255,.025);
}
.site-footer__grid,.site-footer__bar { position:relative;z-index:1; }
.site-footer__grid { gap:3rem; }
.site-footer .brand__logo {
  max-width:330px;
  max-height:78px;
  border-radius:10px;
  padding:.48rem .6rem;
  box-shadow:0 12px 28px rgba(0,0,0,.12);
}
.site-footer__blurb { color:rgba(255,255,255,.68); line-height:1.7; }
.site-footer h3 { color:#fff; font-size:.88rem; letter-spacing:.08em; text-transform:uppercase; }
.site-footer li,.site-footer a { color:rgba(255,255,255,.72); }
.site-footer a:hover { color:#fff; }
.social a {
  display:inline-flex;
  padding:.42rem .6rem;
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
}

.wa-float {
  box-shadow:0 16px 34px rgba(8,125,58,.29);
  border:3px solid rgba(255,255,255,.9);
}

/* ---------- responsive ---------- */
@media (max-width:1100px) {
  .site-header .brand__logo { max-width:230px; }
  .hero--corporate { grid-template-columns:1fr 1fr; }
  .hero__copy h1 { font-size:clamp(3rem,6vw,4.5rem); }
}
@media (max-width:980px) {
  .hero--corporate { grid-template-columns:1fr; min-height:auto; }
  .hero-media { min-height:430px; max-width:690px; }
  .hero-media__image,.hero-fallback { height:430px; }
  .hero-media::before { width:90%; }
  .strip--trust { margin-top:0; }
}
@media (max-width:760px) {
  .site-header { min-height:72px; padding:.7rem 1rem; }
  .site-header .brand__logo { max-width:205px; max-height:48px; }
  .site-nav ul {
    background:rgba(255,255,255,.99);
    border-top:1px solid #e3ebe7;
    box-shadow:0 24px 44px rgba(18,55,43,.14);
  }
  .site-nav .btn--nav { margin-left:0; }
  .hero--corporate { padding:3.1rem 1rem 3.5rem; }
  .hero__copy h1 { font-size:clamp(2.7rem,13vw,4.05rem); }
  .hero-media { min-height:360px; }
  .hero-media__image,.hero-fallback { height:360px; border-radius:22px; }
  .hero-media__card { left:12px;right:12px;bottom:12px;max-width:none; }
  .section { padding-left:1rem;padding-right:1rem; }
  .page-hero { padding-left:1rem;padding-right:1rem; }
  .page-hero > * { max-width:100%; }
  .page-hero::before,.page-hero::after { opacity:.45; }
  .cta-band { margin-left:1rem;margin-right:1rem; border-radius:20px; }
  .newsletter { padding-left:1rem;padding-right:1rem; }
  .subscribe { grid-template-columns:1fr; }
}
@media (max-width:520px) {
  .topbar__item--hide-sm { display:none; }
  .topbar__inner { padding-inline:1rem; }
  .hero__assurance { display:grid;grid-template-columns:1fr; }
  .hero--corporate .stats { grid-template-columns:1fr 1fr;gap:1rem; }
  .strip--trust { padding-inline:1rem; }
  .section__head--split { align-items:flex-start; }
  .section__head--split .btn { width:100%; }
  .receipt { padding:1.5rem; border-radius:18px; }
  .grid--gap-lg .product-card__body { padding:.75rem .8rem .9rem; gap:.28rem; }
  .grid--gap-lg .product-card__body strong { font-size:.88rem; }
  .grid--gap-lg .product-card__cat { font-size:.6rem; }
  .grid--gap-lg .product-card__meta { font-size:.72rem; }
  .grid--gap-lg .badge { font-size:.62rem; padding:.25rem .5rem; }
}

/* Default branded hero artwork when no photography has been uploaded yet. */
.hero-fallback {
  display:block;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 72% 20%,rgba(8,125,58,.18),transparent 28%),
    radial-gradient(circle at 22% 84%,rgba(36,95,143,.15),transparent 28%),
    linear-gradient(145deg,#f4faf6 0%,#eaf5ee 48%,#edf4f9 100%);
}
.hero-fallback::before {
  width:380px;height:380px;
  right:-100px;left:auto;top:-70px;
  border:1px solid rgba(8,125,58,.14);
  box-shadow:0 0 0 68px rgba(255,255,255,.22),0 0 0 136px rgba(255,255,255,.13);
}
.hero-fallback__brand-card {
  position:absolute;
  left:8%;top:10%;
  width:74%;
  display:flex;align-items:center;gap:1rem;
  padding:1rem;
  border:1px solid rgba(255,255,255,.9);
  border-radius:18px;
  background:rgba(255,255,255,.88);
  box-shadow:0 18px 44px rgba(18,55,43,.10);
  backdrop-filter:blur(8px);
  z-index:2;
}
.hero-fallback__brand-card img {
  width:78px;height:70px;
  object-fit:contain;
  border-radius:10px;
  background:#fff;
}
.hero-fallback__brand-card strong {
  display:block;
  color:var(--mt-green);
  font:800 1.35rem/1 var(--ff-display);
  letter-spacing:.05em;
}
.hero-fallback__brand-card small {
  display:block;
  margin-top:.4rem;
  color:var(--mt-blue-800);
  font-size:.68rem;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.hero-fallback__capsules {
  position:absolute;
  left:10%;top:43%;
  display:flex;
  gap:.7rem;
  transform:rotate(-7deg);
}
.hero-fallback__capsules span {
  width:88px;height:36px;
  border-radius:999px;
  box-shadow:0 12px 25px rgba(18,55,43,.12);
}
.hero-fallback__capsules span:nth-child(1){background:linear-gradient(90deg,var(--mt-red) 50%,#fff 50%)}
.hero-fallback__capsules span:nth-child(2){background:linear-gradient(90deg,var(--mt-green) 50%,#fff 50%)}
.hero-fallback__capsules span:nth-child(3){background:linear-gradient(90deg,var(--mt-blue) 50%,#fff 50%)}
.hero-fallback__panel {
  position:absolute;
  left:9%;right:9%;bottom:9%;
  display:flex;align-items:center;gap:.9rem;
  padding:1rem 1.05rem;
  border:1px solid rgba(255,255,255,.94);
  border-radius:17px;
  background:rgba(255,255,255,.91);
  box-shadow:0 18px 42px rgba(18,55,43,.13);
  z-index:2;
}
.hero-fallback__panel-icon {
  width:44px;height:44px;
  display:grid;place-items:center;
  flex:0 0 auto;
  border-radius:12px;
  background:#e9f7ee;
  color:var(--mt-green);
  font-size:1.15rem;
}
.hero-fallback__panel b,.hero-fallback__panel small { display:block; }
.hero-fallback__panel b { color:var(--mt-text);font-size:.9rem; }
.hero-fallback__panel small { margin-top:.2rem;color:var(--mt-muted);font-size:.72rem; }
.hero-fallback__seal {
  position:absolute;
  right:7%;top:43%;
  width:105px;height:105px;
  display:grid;place-items:center;
  align-content:center;
  border-radius:50%;
  background:linear-gradient(145deg,var(--mt-green),var(--mt-green-700));
  color:#fff;
  box-shadow:0 20px 45px rgba(8,125,58,.28);
  z-index:2;
}
.hero-fallback__seal::before,.hero-fallback__seal::after {
  content:"";
  position:absolute;
  background:rgba(255,255,255,.92);
  border-radius:3px;
}
.hero-fallback__seal::before{width:48px;height:12px;}
.hero-fallback__seal::after{width:12px;height:48px;}
.hero-fallback__seal b,.hero-fallback__seal span {
  position:absolute;
  font-size:.57rem;
  letter-spacing:.06em;
  z-index:2;
}
.hero-fallback__seal b{top:15px}.hero-fallback__seal span{bottom:14px}
@media(max-width:520px){
  .hero-fallback__brand-card{left:6%;width:88%}.hero-fallback__brand-card img{width:62px;height:58px}
  .hero-fallback__capsules{left:8%;top:44%}.hero-fallback__capsules span{width:64px;height:28px}
  .hero-fallback__seal{width:84px;height:84px;right:7%;top:45%}
}

/* ============================================================
   MED-TIM HOMEPAGE 2.0 — full corporate pharmacy experience
   ============================================================ */
.hero--single,
.hero-slider--premium {
  position: relative;
}
.hero--single::before,
.hero-slider--premium::before {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(8,125,58,.018) 1px, transparent 1px),
    linear-gradient(rgba(8,125,58,.018) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(to right,#000,transparent 72%);
}
.hero--corporate { position:relative; z-index:1; }
.hero__copy { position:relative; z-index:2; }
.hero__copy h1 { max-width: 720px; }
.hero__copy .lede { max-width: 650px; }
.stats--hero { grid-template-columns:repeat(4,minmax(0,1fr)); }
.hero-media { position:relative; isolation:isolate; }
.hero-media__availability {
  position:absolute;
  right:-20px;
  top:34px;
  z-index:4;
  max-width:255px;
  display:flex;
  align-items:flex-start;
  gap:.7rem;
  padding:.9rem 1rem;
  border:1px solid rgba(255,255,255,.9);
  border-radius:15px;
  background:rgba(255,255,255,.94);
  box-shadow:0 20px 48px rgba(18,55,43,.14);
  backdrop-filter:blur(10px);
}
.hero-media__availability-dot {
  width:10px;height:10px;border-radius:50%;
  flex:0 0 auto;margin-top:.34rem;
  background:var(--mt-green);
  box-shadow:0 0 0 5px rgba(8,125,58,.1);
}
.hero-media__availability strong,.hero-media__availability small { display:block; }
.hero-media__availability strong { font-size:.82rem;color:var(--mt-text); }
.hero-media__availability small { margin-top:.18rem;color:var(--mt-muted);font-size:.68rem;line-height:1.45; }

/* Quick-action bridge from hero into the rest of the page. */
.home-quick-actions {
  position:relative;
  z-index:8;
  max-width:var(--maxw);
  margin:-34px auto 0;
  padding:0 var(--gutter) 1rem;
}
.home-quick-actions__inner {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  background:#fff;
  border:1px solid #dfe9e4;
  border-radius:20px;
  box-shadow:0 24px 65px rgba(18,55,43,.12);
  overflow:hidden;
}
.quick-action {
  min-height:104px;
  display:grid;
  grid-template-columns:44px 1fr auto;
  gap:.8rem;
  align-items:center;
  padding:1.15rem 1.2rem;
  border-right:1px solid #e7eeea;
  transition:background .22s ease,transform .22s ease;
}
.quick-action:last-child { border-right:0; }
.quick-action:hover { background:#f5faf7; }
.quick-action__icon {
  width:44px;height:44px;
  display:grid;place-items:center;
  border-radius:13px;
  background:linear-gradient(145deg,#edf8f1,#e5f3ea);
  color:var(--mt-green-800);
  font-weight:900;
  font-size:1.05rem;
}
.quick-action strong,.quick-action small { display:block; }
.quick-action strong { color:var(--mt-text);font-size:.87rem;line-height:1.3; }
.quick-action small { margin-top:.25rem;color:#738188;font-size:.71rem;line-height:1.4; }
.quick-action>b { color:var(--mt-green);font-size:1.05rem; }

/* Why Med-Tim */
.home-about { padding-top:clamp(5rem,8vw,8rem); }
.home-about__grid {
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:clamp(2.5rem,7vw,6.5rem);
  align-items:center;
}
.home-about__copy h2 {
  margin-top:.65rem;
  max-width:680px;
  font-size:clamp(2.25rem,4vw,3.8rem);
  line-height:1.02;
  letter-spacing:-.052em;
}
.home-about__lead { margin-top:1.3rem;max-width:620px;color:var(--mt-muted);font-size:1.04rem;line-height:1.8; }
.home-about__actions { display:flex;align-items:center;gap:1.2rem;flex-wrap:wrap;margin-top:1.8rem; }
.home-text-link { display:inline-flex;align-items:center;gap:.45rem;color:var(--mt-green-800);font-weight:800;font-size:.9rem; }
.home-text-link:hover { gap:.7rem;color:var(--mt-blue-800); }
.home-about__metrics {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  margin-top:2rem;
  padding-top:1.5rem;
  border-top:1px solid #e2ebe6;
}
.home-about__metrics>div { padding-right:.8rem; }
.home-about__metrics dt { font:800 clamp(1.25rem,2vw,1.75rem)/1 var(--ff-display);color:var(--mt-blue-800); }
.home-about__metrics dd { margin-top:.4rem;color:#7b898f;font-size:.69rem;line-height:1.35; }
.home-about__benefits {
  position:relative;
  display:flex;
  flex-direction:column;
  gap:.8rem;
  padding:1.1rem;
  border:1px solid #dce8e2;
  border-radius:28px;
  background:
    radial-gradient(circle at 92% 4%,rgba(8,125,58,.10),transparent 24%),
    linear-gradient(145deg,#f8fbf9,#eff7f2);
  box-shadow:var(--mt-shadow-md);
}
.benefit-card {
  display:grid;
  grid-template-columns:54px 1fr;
  gap:1rem;
  align-items:start;
  padding:1.25rem;
  border:1px solid rgba(8,125,58,.09);
  border-radius:18px;
  background:rgba(255,255,255,.9);
}
.benefit-card__number {
  width:48px;height:48px;display:grid;place-items:center;
  border-radius:14px;background:var(--mt-bg-green);
  color:var(--mt-green-800);font:800 .78rem/1 var(--ff-mono);
}
.benefit-card h3 { font-size:1rem;margin-bottom:.35rem; }
.benefit-card p { color:var(--mt-muted);font-size:.87rem;line-height:1.6; }
.home-about__brand-panel {
  display:flex;align-items:center;gap:.9rem;
  margin-top:.2rem;padding:1.05rem 1.2rem;
  border-radius:18px;
  background:linear-gradient(125deg,var(--mt-green-800),var(--mt-green));
  color:#fff;
}
.home-about__brand-panel img { width:58px;height:58px;object-fit:contain;border-radius:9px;background:#fff;padding:.25rem; }
.home-about__brand-panel strong,.home-about__brand-panel span { display:block; }
.home-about__brand-panel strong { color:#fff;font-size:1.05rem;letter-spacing:.07em; }
.home-about__brand-panel span { margin-top:.2rem;color:rgba(255,255,255,.75);font-size:.65rem;text-transform:uppercase;letter-spacing:.045em; }

/* Services */
.home-services { padding-top:clamp(4.5rem,7vw,7rem); }
.service-showcase {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1rem;
}
.service-feature {
  min-height:230px;
  display:flex;
  flex-direction:column;
  padding:1.45rem;
  border:1px solid var(--mt-border);
  border-radius:20px;
  background:#fff;
  box-shadow:0 11px 35px rgba(18,55,43,.055);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.service-feature:hover { transform:translateY(-5px);box-shadow:var(--mt-shadow-md);border-color:rgba(8,125,58,.23); }
.service-feature--lead {
  grid-column:span 2;
  min-height:300px;
  padding:clamp(1.7rem,3vw,2.3rem);
  background:
    radial-gradient(circle at 88% 12%,rgba(8,125,58,.12),transparent 27%),
    linear-gradient(145deg,#f7fbf8,#eef7f1);
  border-color:rgba(8,125,58,.15);
}
.service-feature__top { display:flex;align-items:center;justify-content:space-between;gap:1rem; }
.service-feature__icon { width:52px;height:52px;display:grid;place-items:center;border-radius:15px;background:#e9f7ee;color:var(--mt-green-800);font-size:1.15rem;font-weight:900; }
.service-feature--lead .service-feature__icon { width:62px;height:62px;font-size:1.4rem; }
.service-feature__body { display:block;margin-top:1.25rem; }
.service-feature__body strong { display:block;color:var(--mt-text);font:800 1.08rem/1.35 var(--ff-display); }
.service-feature--lead .service-feature__body strong { font-size:clamp(1.55rem,2.3vw,2.15rem); }
.service-feature__body>span { display:block;margin-top:.55rem;color:var(--mt-muted);font-size:.87rem;line-height:1.65; }
.service-feature--lead .service-feature__body>span { max-width:650px;font-size:.96rem; }
.service-feature__link { margin-top:auto;padding-top:1.25rem;color:var(--mt-green-800);font-weight:800;font-size:.82rem; }
.service-feature__link b { margin-left:.35rem; }
.service-support {
  display:flex;align-items:center;justify-content:space-between;gap:1.5rem;
  margin-top:1.2rem;padding:1.2rem 1.35rem;
  border:1px dashed rgba(36,95,143,.22);border-radius:16px;background:#f7fafc;
}
.service-support strong,.service-support span { display:block; }
.service-support strong { font-size:.92rem; }
.service-support>div>span { margin-top:.2rem;color:var(--mt-muted);font-size:.78rem; }

/* Product catalogue */
.home-products {
  max-width:none;
  background:linear-gradient(180deg,#f8fbf9 0%,#fff 100%);
}
.home-products>.section__head,
.home-products>.category-rail,
.home-products>.product-showcase,
.home-products>.catalogue-note { max-width:calc(var(--maxw) - (var(--gutter)*2));margin-left:auto;margin-right:auto; }
.category-rail {
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr));
  gap:.65rem;
  margin-bottom:1.5rem;
}
.category-pill {
  min-height:100px;
  display:flex;flex-direction:column;align-items:flex-start;justify-content:space-between;gap:.45rem;
  padding:.9rem;
  border:1px solid #dce7e2;
  border-radius:15px;
  background:#fff;
  color:var(--mt-text);
  box-shadow:0 7px 20px rgba(18,55,43,.035);
  font-size:.72rem;font-weight:800;
  transition:.22s ease;
}
.category-pill:hover { transform:translateY(-3px);border-color:rgba(8,125,58,.28);box-shadow:0 14px 30px rgba(18,55,43,.08); }
.category-pill__icon { width:34px;height:34px;display:grid;place-items:center;border-radius:10px;background:var(--mt-bg-green);color:var(--mt-green-800);font-size:.9rem; }
.category-pill b { align-self:flex-end;color:var(--mt-green); }
.product-showcase { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem; }
.product-card--home { display:grid;grid-template-columns:44% 56%;min-height:230px; }
.product-card--home .product-card__media { aspect-ratio:auto;height:100%;min-height:230px;border:0;border-right:1px solid #edf2ef; }
.product-card--home .product-card__body { min-width:0;padding:1.2rem; }
.product-card__footer { display:flex;align-items:center;justify-content:space-between;gap:.6rem;margin-top:auto;padding-top:.8rem; }
.product-card__footer>b { color:var(--mt-green); }
.badge--stock { background:#edf7f0;color:var(--mt-green-800);border:1px solid rgba(8,125,58,.11); }
.catalogue-note {
  display:flex;gap:.8rem;align-items:flex-start;
  margin-top:1.25rem;padding:1rem 1.1rem;
  border-radius:14px;background:#f6f9fb;border:1px solid #dfe8ee;
}
.catalogue-note__icon { width:28px;height:28px;display:grid;place-items:center;flex:0 0 auto;border-radius:50%;background:#e7f5ec;color:var(--mt-green-800);font-weight:900;font-size:.75rem; }
.catalogue-note p { color:#6d7d85;font-size:.78rem;line-height:1.55; }
.catalogue-note strong { color:var(--mt-text); }

/* Prescription journey */
.home-prescription { padding-top:clamp(4rem,7vw,7rem);padding-bottom:clamp(4rem,7vw,7rem); }
.prescription-panel {
  display:grid;
  grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr);
  overflow:hidden;
  border-radius:28px;
  background:#fff;
  box-shadow:var(--mt-shadow-lg);
  border:1px solid #dde8e3;
}
.prescription-panel__intro {
  position:relative;
  padding:clamp(2rem,5vw,4rem);
  background:
    radial-gradient(circle at 8% 92%,rgba(8,125,58,.28),transparent 34%),
    linear-gradient(145deg,#123850,#173f61 60%,#0c5139 130%);
  color:#fff;
}
.prescription-panel__intro::after { content:"Rx";position:absolute;right:7%;bottom:0;color:rgba(255,255,255,.035);font:900 9rem/1 var(--ff-display); }
.eyebrow--light { color:#a9e9bd!important; }
.eyebrow--light::before { background:#a9e9bd!important; }
.prescription-panel__intro h2 { position:relative;z-index:1;margin-top:.7rem;color:#fff;font-size:clamp(2rem,3.2vw,3.1rem);line-height:1.05;letter-spacing:-.045em; }
.prescription-panel__intro>p { position:relative;z-index:1;margin-top:1rem;color:rgba(255,255,255,.72);line-height:1.75; }
.prescription-panel__note { position:relative;z-index:1;display:flex;gap:.7rem;margin:1.5rem 0;padding:1rem;border:1px solid rgba(255,255,255,.14);border-radius:14px;background:rgba(255,255,255,.07); }
.prescription-panel__note>span { width:27px;height:27px;display:grid;place-items:center;flex:0 0 auto;border-radius:50%;background:#fff;color:var(--mt-blue-800);font-weight:900;font-family:serif; }
.prescription-panel__note p { color:rgba(255,255,255,.72);font-size:.77rem;line-height:1.55; }
.btn--light { background:#fff;color:var(--mt-blue-800);border:1px solid #fff;box-shadow:0 12px 26px rgba(0,0,0,.12); }
.btn--light:hover { background:#eff7f2;color:var(--mt-green-800);transform:translateY(-2px); }
.prescription-steps { list-style:none;margin:0;padding:clamp(1.6rem,4vw,3rem);display:flex;flex-direction:column;justify-content:center;gap:.8rem; }
.prescription-steps li { display:grid;grid-template-columns:54px 1fr;gap:1rem;align-items:start;padding:1.2rem;border:1px solid #e3ebe7;border-radius:16px;background:#fff; }
.prescription-steps__number { width:48px;height:48px;display:grid;place-items:center;border-radius:14px;background:var(--mt-bg-green);color:var(--mt-green-800);font:800 .75rem/1 var(--ff-mono); }
.prescription-steps h3 { font-size:1rem;margin:.1rem 0 .35rem; }
.prescription-steps p { color:var(--mt-muted);font-size:.83rem;line-height:1.6; }

/* Branch finder */
.home-branches {
  position:relative;
  overflow:hidden;
  padding:clamp(3rem,5vw,4.5rem);
  border-radius:30px;
  background:
    radial-gradient(circle at 92% 5%,rgba(8,125,58,.28),transparent 27%),
    linear-gradient(135deg,#123850,#173f61 55%,#0b5138 125%);
  box-shadow:0 30px 70px rgba(18,55,43,.17);
}
.home-branches::after { content:"";position:absolute;right:-130px;bottom:-180px;width:430px;height:430px;border:75px solid rgba(255,255,255,.03);border-radius:50%;pointer-events:none; }
.home-branches__intro { position:relative;z-index:1;display:flex;justify-content:space-between;align-items:end;gap:2rem;margin-bottom:2rem; }
.home-branches__intro>div { max-width:760px; }
.home-branches__intro h2 { margin-top:.65rem;color:#fff;font-size:clamp(2.2rem,3.8vw,3.6rem);line-height:1.03;letter-spacing:-.05em; }
.home-branches__intro p { margin-top:.85rem;color:rgba(255,255,255,.7);line-height:1.7; }
.branch-showcase { position:relative;z-index:1;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem; }
.branch-feature { min-height:265px;display:flex;flex-direction:column;padding:1.35rem;border:1px solid rgba(255,255,255,.13);border-radius:18px;background:rgba(255,255,255,.075);backdrop-filter:blur(8px); }
.branch-feature:hover { background:rgba(255,255,255,.105); }
.branch-feature__head { display:flex;gap:.75rem;align-items:flex-start; }
.branch-feature__pin { width:40px;height:40px;display:grid;place-items:center;flex:0 0 auto;border-radius:12px;background:rgba(169,233,189,.14);color:#bdf0cc; }
.branch-feature__head span:not(.branch-feature__pin) { display:block;color:#a9e9bd;font-size:.62rem;text-transform:uppercase;letter-spacing:.1em;font-weight:800; }
.branch-feature h3 { margin-top:.2rem;font-size:1.08rem; }
.branch-feature h3 a { color:#fff; }
.branch-feature__address { margin-top:1rem;color:rgba(255,255,255,.68);font-size:.82rem;line-height:1.6; }
.branch-feature__meta { margin-top:1rem;display:grid;grid-template-columns:1fr 1fr;gap:.8rem; }
.branch-feature__meta dt { color:rgba(255,255,255,.4);font-size:.58rem;text-transform:uppercase;letter-spacing:.08em; }
.branch-feature__meta dd { margin-top:.25rem;color:rgba(255,255,255,.82);font-size:.72rem;line-height:1.4; }
.branch-feature__links { display:flex;gap:.9rem;flex-wrap:wrap;margin-top:auto;padding-top:1rem;border-top:1px solid rgba(255,255,255,.1); }
.branch-feature__links a { color:#c7f2d3;font-size:.72rem;font-weight:800; }
.branch-finder-bar { position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;gap:1.5rem;margin-top:1rem;padding:1rem 1.15rem;border-radius:14px;background:rgba(255,255,255,.09); }
.branch-finder-bar strong,.branch-finder-bar span { display:block; }
.branch-finder-bar strong { color:#fff;font-size:.86rem; }
.branch-finder-bar>div>span { margin-top:.2rem;color:rgba(255,255,255,.58);font-size:.72rem; }
.branch-finder-bar>a { color:#c9f5d5;font-size:.78rem;font-weight:800;white-space:nowrap; }

/* Action / contact section */
.home-care { padding-top:clamp(4.5rem,7vw,7rem); }
.home-care__panel {
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);
  gap:clamp(2rem,5vw,4rem);
  align-items:center;
  padding:clamp(2rem,5vw,4rem);
  border-radius:28px;
  background:
    radial-gradient(circle at 5% 100%,rgba(8,125,58,.22),transparent 32%),
    linear-gradient(130deg,#173f61,#205a87 60%,#0f6941 145%);
  box-shadow:var(--mt-shadow-lg);
}
.home-care__panel::after { content:"+";position:absolute;left:4%;bottom:-75px;color:rgba(255,255,255,.035);font:800 15rem/1 var(--ff-display); }
.home-care__copy { position:relative;z-index:1; }
.home-care__copy h2 { margin-top:.65rem;color:#fff;font-size:clamp(2rem,3.4vw,3.2rem);line-height:1.04;letter-spacing:-.048em; }
.home-care__copy>p:last-child { margin-top:1rem;color:rgba(255,255,255,.7);line-height:1.7; }
.home-care__actions { position:relative;z-index:1;display:flex;flex-direction:column;gap:.65rem; }
.care-action { display:grid;grid-template-columns:45px 1fr auto;gap:.85rem;align-items:center;padding:1rem 1.05rem;border:1px solid rgba(255,255,255,.15);border-radius:15px;background:rgba(255,255,255,.085);transition:.22s ease; }
.care-action:hover { transform:translateX(4px);background:rgba(255,255,255,.13); }
.care-action__icon { width:42px;height:42px;display:grid;place-items:center;border-radius:12px;background:#fff;color:var(--mt-green-800);font-weight:900; }
.care-action strong,.care-action small { display:block; }
.care-action strong { color:#fff;font-size:.88rem; }
.care-action small { margin-top:.2rem;color:rgba(255,255,255,.58);font-size:.7rem; }
.care-action>b { color:#c8f2d3; }

/* Testimonials */
.home-testimonials { background:linear-gradient(180deg,#fff,#f6faf8);max-width:none; }
.home-testimonials>.section__head,.home-testimonials>.testimonial-grid { max-width:calc(var(--maxw) - (var(--gutter)*2));margin-left:auto;margin-right:auto; }
.testimonial-summary { text-align:right; }
.testimonial-summary__stars { display:block;color:#d59b22;letter-spacing:.11em;font-size:1rem; }
.testimonial-summary small { display:block;margin-top:.3rem;color:var(--mt-muted);font-size:.68rem; }
.testimonial-grid { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem; }
.testimonial-card--home { min-height:260px;display:flex;flex-direction:column;padding:1.5rem;border:1px solid var(--mt-border);border-radius:18px;background:#fff;box-shadow:0 10px 30px rgba(18,55,43,.05); }
.testimonial-card--home .testimonial-card__quote { color:rgba(8,125,58,.12);font:800 4rem/.6 Georgia,serif; }
.testimonial-card--home>p { margin-top:.55rem;color:#425862;line-height:1.75;font-size:.9rem; }
.testimonial-card--home footer { display:flex;align-items:center;gap:.7rem;margin-top:auto;padding-top:1rem;border-top:1px solid #edf2ef; }
.testimonial-card__avatar { width:38px;height:38px;display:grid;place-items:center;flex:0 0 auto;border-radius:50%;background:var(--mt-bg-green);color:var(--mt-green-800);font-weight:900;font-size:.82rem; }
.testimonial-card--home footer strong,.testimonial-card--home footer small { display:block; }
.testimonial-card--home footer small { margin-top:.18rem;color:var(--mt-muted);font-size:.65rem; }

/* Health articles */
.post-showcase { display:grid;grid-template-columns:1.35fr 1fr;grid-template-rows:1fr 1fr;gap:1rem; }
.post-feature { min-height:190px;display:grid;grid-template-columns:38% 62%;overflow:hidden;border:1px solid var(--mt-border);border-radius:19px;background:#fff;box-shadow:0 10px 30px rgba(18,55,43,.05);transition:.25s ease; }
.post-feature:hover { transform:translateY(-4px);box-shadow:var(--mt-shadow-md); }
.post-feature--lead { grid-row:span 2;grid-template-columns:1fr;grid-template-rows:55% 45%;min-height:430px; }
.post-feature__image { min-height:100%;overflow:hidden;background:linear-gradient(145deg,#eef7f1,#edf4f8); }
.post-feature__image img { width:100%;height:100%;object-fit:cover;transition:transform .4s ease; }
.post-feature:hover .post-feature__image img { transform:scale(1.035); }
.post-feature__image--placeholder { display:grid;place-items:center;color:rgba(8,125,58,.25);font-size:3rem; }
.post-feature__body { min-width:0;display:flex;flex-direction:column;padding:1.2rem; }
.post-feature__body>strong { margin-top:.55rem;color:var(--mt-text);font:800 1.02rem/1.38 var(--ff-display); }
.post-feature--lead .post-feature__body>strong { font-size:1.35rem; }
.post-feature__body>span:not(.post-card__cat) { margin-top:.5rem;color:var(--mt-muted);font-size:.79rem;line-height:1.6; }
.post-feature__body time { margin-top:auto;padding-top:.8rem;color:#829097;font-size:.66rem; }

/* Newsletter */
.newsletter--home { max-width:none;padding:clamp(4.5rem,7vw,7rem) var(--gutter);background:linear-gradient(180deg,#f7faf8,#eef6f1); }
.newsletter-panel { max-width:calc(var(--maxw) - (var(--gutter)*2));margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,6vw,5rem);align-items:center;padding:clamp(2rem,5vw,3.7rem);border:1px solid #dbe7e1;border-radius:28px;background:#fff;box-shadow:var(--mt-shadow-md); }
.newsletter-panel__copy h2 { margin-top:.65rem;font-size:clamp(2rem,3.2vw,3.05rem);line-height:1.04;letter-spacing:-.046em; }
.newsletter-panel__copy>p:not(.eyebrow) { margin-top:.8rem;color:var(--mt-muted);line-height:1.7; }
.newsletter-panel__privacy { display:flex;gap:.45rem;align-items:center;margin-top:1rem;color:#76868c;font-size:.72rem; }
.newsletter-panel__privacy span { width:23px;height:23px;display:grid;place-items:center;border-radius:50%;background:var(--mt-bg-green);color:var(--mt-green-800);font-weight:900; }
.subscribe--home { display:block;padding:1.35rem;border:1px solid #e1e9e5;border-radius:18px;background:#f8fbf9; }
.subscribe--home>label { display:block;margin-bottom:.55rem;color:var(--mt-text);font-size:.78rem;font-weight:800; }
.subscribe__row { display:grid;grid-template-columns:1fr auto;gap:.65rem; }
.subscribe--home input { min-height:50px;width:100%;padding:0 .9rem;border:1px solid #d5e1db;border-radius:11px;background:#fff;font:inherit; }
.subscribe--home input:focus { outline:3px solid rgba(8,125,58,.10);border-color:rgba(8,125,58,.45); }
.subscribe--home .form__status { margin-top:.5rem; }

@media (max-width:1180px) {
  .home-quick-actions__inner { grid-template-columns:1fr 1fr; }
  .quick-action:nth-child(2) { border-right:0; }
  .quick-action:nth-child(-n+2) { border-bottom:1px solid #e7eeea; }
  .category-rail { grid-template-columns:repeat(4,minmax(0,1fr)); }
  .product-card--home { grid-template-columns:40% 60%; }
}
@media (max-width:1000px) {
  .stats--hero { grid-template-columns:1fr 1fr; }
  .hero-media__availability { right:12px; }
  .home-about__grid,.prescription-panel,.home-care__panel,.newsletter-panel { grid-template-columns:1fr; }
  .home-about__benefits { max-width:720px; }
  .service-showcase { grid-template-columns:1fr 1fr; }
  .service-feature--lead { grid-column:span 2; }
  .product-showcase { grid-template-columns:1fr 1fr; }
  .branch-showcase,.testimonial-grid { grid-template-columns:1fr 1fr; }
  .branch-feature:last-child { grid-column:span 2; }
  .post-showcase { grid-template-columns:1fr 1fr;grid-template-rows:auto; }
  .post-feature--lead { grid-column:span 2;grid-row:auto;grid-template-columns:45% 55%;grid-template-rows:none;min-height:300px; }
}
@media (max-width:760px) {
  .home-quick-actions { margin-top:-12px;padding-inline:1rem; }
  .home-quick-actions__inner { border-radius:16px; }
  .quick-action { min-height:92px;padding:.9rem;grid-template-columns:38px 1fr auto; }
  .quick-action__icon { width:38px;height:38px;border-radius:11px; }
  .home-about__metrics { grid-template-columns:1fr 1fr;gap:1rem; }
  .home-about__metrics>div { padding:.7rem 0;border-bottom:1px solid #edf2ef; }
  .service-showcase,.product-showcase,.branch-showcase,.testimonial-grid,.post-showcase { grid-template-columns:1fr; }
  .service-feature--lead,.branch-feature:last-child,.post-feature--lead { grid-column:auto; }
  .service-feature--lead { min-height:260px; }
  .service-support,.home-branches__intro,.branch-finder-bar { align-items:flex-start;flex-direction:column; }
  .category-rail { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .product-card--home { grid-template-columns:38% 62%; }
  .home-branches { margin-left:1rem;margin-right:1rem;padding:2rem 1.2rem;border-radius:22px; }
  .branch-feature:last-child { grid-column:auto; }
  .post-feature,.post-feature--lead { grid-template-columns:38% 62%;grid-template-rows:none;min-height:200px; }
  .newsletter--home { padding-left:1rem;padding-right:1rem; }
  .newsletter-panel { padding:1.5rem;border-radius:20px; }
}
@media (max-width:560px) {
  .hero-media__availability { top:12px;right:12px;left:12px;max-width:none; }
  .home-quick-actions__inner { grid-template-columns:1fr; }
  .quick-action { border-right:0!important;border-bottom:1px solid #e7eeea!important; }
  .quick-action:last-child { border-bottom:0!important; }
  .home-about__grid { gap:2rem; }
  .benefit-card { grid-template-columns:42px 1fr;padding:1rem; }
  .benefit-card__number { width:40px;height:40px;border-radius:11px; }
  .category-rail { display:flex;overflow-x:auto;padding-bottom:.4rem;scroll-snap-type:x proximity; }
  .category-pill { min-width:145px;scroll-snap-align:start; }
  .product-card--home { grid-template-columns:1fr; }
  .product-card--home .product-card__media { min-height:210px;border-right:0;border-bottom:1px solid #edf2ef; }
  .prescription-panel { border-radius:20px; }
  .prescription-panel__intro { padding:1.6rem; }
  .prescription-steps { padding:1rem; }
  .prescription-steps li { grid-template-columns:42px 1fr;padding:1rem; }
  .prescription-steps__number { width:40px;height:40px;border-radius:11px; }
  .branch-feature__meta { grid-template-columns:1fr; }
  .home-care__panel { padding:1.5rem;border-radius:20px; }
  .post-feature,.post-feature--lead { grid-template-columns:1fr;grid-template-rows:170px auto; }
  .post-feature__image { min-height:170px; }
  .subscribe__row { grid-template-columns:1fr; }
  .subscribe__row .btn { width:100%; }
}

/* ============================================================
   FULL-WIDTH INNER PAGES — 2026-08 visual correction
   Keep full browser-width bands while constraining text for readability.
   ============================================================ */

/* `page-hero--narrow` used to constrain the whole section to 900px.
   The modifier now narrows only the readable copy, never the background. */
.page-hero--narrow {
  max-width: none !important;
  width: 100%;
  margin: 0;
}

/* Every public inner-page hero is a true full-width band. */
body:not([data-page="home"]) main > .page-hero,
body:not([data-page="home"]) main > article > .page-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: clamp(1.1rem, 5.5vw, 5.5rem);
  min-height: clamp(300px, 31vw, 430px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body:not([data-page="home"]) .page-hero > * {
  width: 100%;
  max-width: min(1040px, 100%);
}

body:not([data-page="home"]) .page-hero h1 {
  max-width: 980px;
}

body:not([data-page="home"]) .page-hero .lede {
  max-width: 780px;
}

/* Give all inner pages a generous, centered working canvas. */
body:not([data-page="home"]) main > .section,
body:not([data-page="home"]) main > article > .section {
  width: 100%;
  max-width: 1560px;
  margin-inline: auto;
}

/* Detail pages use the canvas rather than collapsing into a narrow left column. */
body:not([data-page="home"]) .section--split {
  grid-template-columns: minmax(0, 1.6fr) minmax(310px, .72fr);
  gap: clamp(2rem, 4vw, 4.5rem);
}

body:not([data-page="home"]) .section--split > .prose,
body:not([data-page="home"]) .section--split > div > .prose {
  max-width: 88ch;
}

body:not([data-page="home"]) .sidebar {
  width: 100%;
}

body:not([data-page="home"]) .sidebar__card,
body:not([data-page="home"]) .sidebar__list {
  width: 100%;
}

/* Generic CMS / legal / informational pages. */
.page-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(290px, .62fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-top: clamp(3rem, 5vw, 5.2rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.page-content-card {
  max-width: none;
  min-width: 0;
  padding: clamp(1.6rem, 3vw, 3.2rem);
  border: 1px solid var(--mt-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--mt-shadow-sm);
}

.page-content-card > :first-child { margin-top: 0; }
.page-content-card > :last-child { margin-bottom: 0; }

.page-content-card h2 {
  margin: 2.5rem 0 .85rem;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -.035em;
}

.page-content-card h3 {
  margin: 2rem 0 .65rem;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
}

.page-content-card p,
.page-content-card li {
  font-size: 1rem;
  line-height: 1.82;
}

.page-content-card ul,
.page-content-card ol {
  padding-left: .4rem;
}

.page-info-rail {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 1rem;
}

.page-info-card,
.page-meta-card {
  border: 1px solid var(--mt-border);
  border-radius: 22px;
  background: linear-gradient(145deg, #f5fbf7, #fff 68%);
  box-shadow: var(--mt-shadow-sm);
}

.page-info-card {
  padding: clamp(1.4rem, 2.5vw, 2rem);
}

.page-info-card__label {
  display: block;
  margin-bottom: .55rem;
  color: var(--mt-green-800);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.page-info-card h2 {
  margin-bottom: .7rem;
  font-size: 1.45rem;
}

.page-info-card p {
  margin-bottom: 1.2rem;
  color: var(--mt-muted);
  line-height: 1.7;
}

.page-info-card .btn {
  width: 100%;
  margin-top: .65rem;
}

.page-meta-card {
  padding: 1.15rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
}

.page-meta-card span {
  color: var(--mt-muted);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.page-meta-card strong {
  text-align: right;
  color: var(--mt-text);
  font-size: .86rem;
}

/* List pages should feel like a full catalogue, not a narrow card island. */
body[data-page="products"] main > .section,
body[data-page="services"] main > .section,
body[data-page="branches"] main > .section,
body[data-page="health-tips"] main > .section,
body[data-page="careers"] main > .section,
body[data-page="contact"] main > .section {
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

/* Larger desktop grids use the room that is available. */
@media (min-width: 1420px) {
  body[data-page="products"] .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  body[data-page="services"] .grid--3,
  body[data-page="branches"] .grid--3,
  body[data-page="health-tips"] .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Detail cards and map areas receive a more substantial presentation. */
body[data-page^="products/"] .section--split,
body[data-page^="branches/"] .section--split,
body[data-page^="services/"] .section--split,
body[data-page^="health-tips/"] .section--split,
body[data-page^="careers/"] .section--split,
body[data-page="contact"] .section--split {
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

body[data-page^="products/"] .product-hero,
body[data-page^="branches/"] .map-embed,
body[data-page^="branches/"] .map-placeholder {
  min-height: clamp(380px, 42vw, 620px);
  border-radius: 26px;
  box-shadow: var(--mt-shadow-md);
}

body[data-page^="branches/"] .map-embed iframe {
  min-height: clamp(380px, 42vw, 620px);
}

/* The CTA band remains intentionally inset, but now follows the same large canvas. */
.cta-band {
  width: calc(100% - (2 * var(--gutter)));
  max-width: 1450px;
}

@media (max-width: 980px) {
  body:not([data-page="home"]) main > .page-hero,
  body:not([data-page="home"]) main > article > .page-hero {
    min-height: 320px;
  }

  body:not([data-page="home"]) .section--split,
  .page-content-layout {
    grid-template-columns: 1fr;
  }

  .page-info-rail {
    position: static;
    grid-template-columns: minmax(0, 1fr) minmax(240px, .65fr);
  }
}

@media (max-width: 680px) {
  body:not([data-page="home"]) main > .page-hero,
  body:not([data-page="home"]) main > article > .page-hero {
    min-height: 270px;
    padding-inline: 1rem;
    padding-top: 2.7rem;
    padding-bottom: 2.7rem;
  }

  body:not([data-page="home"]) .page-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  .page-content-layout {
    padding-inline: 1rem;
    gap: 1.2rem;
  }

  .page-content-card {
    padding: 1.35rem;
    border-radius: 18px;
  }

  .page-info-rail {
    grid-template-columns: 1fr;
  }

  .page-info-card,
  .page-meta-card {
    border-radius: 17px;
  }

  .cta-band {
    width: calc(100% - 2rem);
  }
}

/* ============================================================
   HEALTH TIP DETAIL — full-canvas editorial layout
   ============================================================ */
.health-article-hero { min-height:auto!important;padding-top:clamp(3.4rem,6vw,6rem)!important;padding-bottom:clamp(3.4rem,6vw,6rem)!important; }
.health-article-hero > .health-article-hero__inner {
  width:100%;
  max-width:1460px!important;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(330px,.72fr);
  align-items:center;
  gap:clamp(2rem,4.5vw,5rem);
}
.health-article-hero__inner:not(.has-cover) { grid-template-columns:minmax(0,980px);justify-content:start; }
.health-article-hero__copy { min-width:0; }
.health-article__category {
  display:inline-flex;
  margin:.8rem 0 1rem;
  padding:.34rem .62rem;
  border:1px solid rgba(8,125,58,.18);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:var(--mt-green-800);
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.07em;
  text-transform:uppercase;
}
.health-article-hero h1 { max-width:950px!important;margin:0;font-size:clamp(2.5rem,5.3vw,5.25rem);line-height:1.02;letter-spacing:-.055em; }
.health-article-hero__excerpt { max-width:760px;margin:1.25rem 0 0;color:#4f6871;font-size:clamp(1rem,1.6vw,1.23rem);line-height:1.72; }
.health-article-hero .post-byline { margin-top:1.25rem;color:#71828a;font-size:.76rem; }
.health-article-hero__media {
  overflow:hidden;
  margin:0;
  min-height:clamp(320px,34vw,520px);
  border:1px solid rgba(36,95,143,.10);
  border-radius:30px;
  background:linear-gradient(145deg,#edf7f1,#eef4f8);
  box-shadow:0 28px 70px rgba(16,47,71,.13);
}
.health-article-hero__media img { width:100%;height:100%;min-height:inherit;object-fit:cover;display:block; }

.health-article-layout {
  display:grid!important;
  grid-template-columns:minmax(0,1.65fr) minmax(300px,.62fr)!important;
  align-items:start;
  gap:clamp(2rem,4vw,4.5rem)!important;
  padding-top:clamp(3.2rem,5vw,5rem)!important;
  padding-bottom:clamp(4.5rem,7vw,7rem)!important;
}
.health-article__main { min-width:0; }
.health-article__prose {
  max-width:none!important;
  padding:clamp(1.6rem,3.5vw,3.4rem);
  border:1px solid var(--mt-border);
  border-radius:26px;
  background:#fff;
  box-shadow:var(--mt-shadow-sm);
}
.health-article__prose > :first-child { margin-top:0; }
.health-article__prose > :last-child { margin-bottom:0; }
.health-article__prose p,
.health-article__prose li { color:#3d545e;font-size:clamp(.98rem,1.15vw,1.07rem);line-height:1.86; }
.health-article__prose h2 { margin-top:2.6rem;font-size:clamp(1.55rem,2.4vw,2.15rem);letter-spacing:-.035em; }
.health-article__prose h3 { margin-top:2rem;font-size:clamp(1.2rem,1.8vw,1.48rem);letter-spacing:-.02em; }
.health-article__prose ul,.health-article__prose ol { display:grid;gap:.55rem;margin:1rem 0 1.5rem;padding-left:1.2rem; }
.health-article__prose hr { margin:2.6rem 0 1.4rem;border:0;border-top:1px solid #e3ece7; }
.health-article__prose small { color:#728188;line-height:1.65; }
.health-article__notice {
  margin-top:1rem;
  padding:1.15rem 1.3rem;
  border:1px solid #dce9e2;
  border-left:4px solid var(--mt-green);
  border-radius:14px;
  background:#f6fbf8;
}
.health-article__notice strong { color:#173f61;font-size:.87rem; }
.health-article__notice p { margin:.3rem 0 0;color:#617279;font-size:.8rem;line-height:1.6; }
.health-article__sidebar { position:sticky;top:112px;display:grid;gap:1rem; }
.health-article__help,.health-article__more {
  padding:1.35rem;
  border:1px solid var(--mt-border);
  border-radius:22px;
  background:#fff;
  box-shadow:var(--mt-shadow-sm);
}
.health-article__help { background:linear-gradient(150deg,#f3faf6,#fff 72%); }
.health-article__aside-label { display:block;margin-bottom:.55rem;color:var(--mt-green-800);font-size:.66rem;font-weight:850;letter-spacing:.11em;text-transform:uppercase; }
.health-article__help h3,.health-article__more h3 { margin:0 0 .65rem;color:var(--mt-text);font-size:1.25rem; }
.health-article__help p { margin-bottom:1rem;color:var(--mt-muted);line-height:1.65;font-size:.86rem; }
.health-article__help .btn { width:100%;margin-top:.55rem; }
.health-article__more ul { display:grid;gap:.2rem;margin:0;padding:0;list-style:none; }
.health-article__more li + li { border-top:1px solid #edf2ef; }
.health-article__more a { display:flex;flex-direction:column;gap:.2rem;padding:.8rem 0;color:inherit; }
.health-article__more a span { color:#819096;font-size:.62rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase; }
.health-article__more a strong { color:#314953;font-size:.78rem;line-height:1.4; }
.health-article__more a:hover strong { color:var(--mt-green-800); }

@media(max-width:980px) {
  .health-article-hero > .health-article-hero__inner { grid-template-columns:1fr; }
  .health-article-hero__media { min-height:360px; }
  .health-article-layout { grid-template-columns:1fr!important; }
  .health-article__sidebar { position:static;grid-template-columns:1fr 1fr; }
}
@media(max-width:680px) {
  .health-article-hero { padding-inline:1rem!important; }
  .health-article-hero h1 { font-size:clamp(2.2rem,11vw,3.5rem); }
  .health-article-hero__media { min-height:250px;border-radius:20px; }
  .health-article-layout { padding-inline:1rem!important; }
  .health-article__prose { padding:1.35rem;border-radius:18px; }
  .health-article__sidebar { grid-template-columns:1fr; }
  .health-article__help,.health-article__more { border-radius:17px; }
}


