/* Production UI refresh: editorial hierarchy, patient-first actions, fewer moving parts. */
:root {
  --primary: #173425;
  --primary-2: #28523a;
  --accent: #e04434;
  --bg: #f3f1e9;
  --soft: #ece9df;
  --soft-2: #dde6d8;
  --text: #142019;
  --muted: #59645d;
  --line: rgba(20, 32, 25, .16);
  --shadow: 0 18px 55px rgba(20, 32, 25, .10);
  --radius: 10px;
  --max: 1320px;
}

html {
  overflow-x: clip;
  scroll-padding-top: 138px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f3c83b, var(--accent));
  transform: scaleX(0);
  transform-origin: left;
}

body {
  overflow-x: clip;
  padding-top: 132px;
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.55;
}

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

a,
button { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid #f3c83b;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 14px;
  background: #fff;
  color: var(--primary);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

.wrap { width: min(calc(100% - 48px), var(--max)); }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 36px;
  padding: 0;
  background: var(--primary);
  color: #fff;
  border: 0;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .04em;
}

.topbar-inner {
  height: 36px;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 24px;
}

.topbar-location,
.topbar-phone { color: #fff; }

.topbar-center {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.topbar-center span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b8ea72;
  box-shadow: 0 0 0 4px rgba(184, 234, 114, .13);
}

.topbar.holiday .topbar-center span { background: #f3c83b; }

nav {
  top: 36px;
  height: 96px;
  background: rgba(243, 241, 233, .96);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.nav-inner {
  height: 96px;
  padding: 0;
  gap: 28px;
}

.brand {
  gap: 12px;
  color: var(--text);
  font-size: .98rem;
  letter-spacing: -.02em;
  flex-shrink: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  padding: 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 650;
}

.nav-panel {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

.nav-links {
  gap: clamp(14px, 1.7vw, 26px);
  flex-wrap: nowrap;
  font-size: .77rem;
  font-weight: 750;
  white-space: nowrap;
}

.nav-links a { position: relative; }

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; gap: 8px; }

.nav-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 850;
  white-space: nowrap;
}

.nav-refill { background: var(--accent); border-color: var(--accent) !important; color: #fff; }
.nav-transfer { color: var(--primary); }
.nav-toggle,
.nav-toggle-label { display: none; }

.flash-sale-banner {
  border: 0;
  background: #f3c83b;
  color: var(--text);
}

.flash-sale-badge { background: var(--text); color: #fff; }

.mission {
  --hero-p: 0;
  height: 190vh;
  box-sizing: border-box;
  border: 0;
  background: var(--primary);
}

.mc-frame {
  position: sticky;
  top: 132px;
  height: calc(100svh - 132px);
  border: 0;
}

.mission .mc-track,
.mission .mc-slide { height: 100%; }

.mission .mc-slide:first-child {
  isolation: isolate;
  background-image: none;
}

.hero-scroll-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('/assets/images/monroe.jpeg') center 52% / cover no-repeat;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .32);
  transform: translate3d(calc(var(--hero-p) * 25vw), 0, 0) scale(calc(1 - var(--hero-p) * .44));
  will-change: transform;
}

.hero-scroll-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 12, .94) 0%, rgba(10, 25, 16, .78) 44%, rgba(10, 25, 16, .08) 78%),
    linear-gradient(0deg, rgba(7, 20, 12, .36), transparent 50%);
  opacity: calc(1 - var(--hero-p) * .84);
}

.hero-scroll-copy {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--bg);
  font-size: clamp(4.2rem, 10.5vw, 9.2rem);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .76;
  text-transform: uppercase;
  opacity: clamp(0, calc((var(--hero-p) - .18) * 1.8), 1);
  overflow: hidden;
}

.hero-scroll-copy::before {
  content: "PRESCRIPTIONS • DELIVERY • REAL PEOPLE";
  position: absolute;
  top: 9%;
  left: 5.8vw;
  color: #b8ea72;
  font-size: .65rem;
  letter-spacing: .16em;
  line-height: 1;
}

.hero-scroll-copy span {
  display: block;
  width: max-content;
  transform: translateX(calc(-18vw + var(--hero-p) * 18vw));
}

.hero-scroll-copy span:last-child {
  margin-left: 7vw;
  color: #b8ea72;
  transform: translateX(calc(-12vw + var(--hero-p) * 12vw));
}

.mission .mc-slide:first-child .mc-content {
  z-index: 2;
  animation: none;
  opacity: clamp(0, calc(1 - var(--hero-p) * 2.3), 1);
  transform: translateY(calc(var(--hero-p) * -7vh));
  will-change: opacity, transform;
}

.mission .mc-slide:first-child::before { display: none; }

.mc-slide--bg {
  min-height: min(700px, calc(100vh - 132px));
  align-items: center;
  background-position: center 52%;
}

.mc-slide--bg::before {
  background:
    linear-gradient(90deg, rgba(7, 20, 12, .94) 0%, rgba(10, 25, 16, .78) 44%, rgba(10, 25, 16, .08) 78%),
    linear-gradient(0deg, rgba(7, 20, 12, .36), transparent 50%);
}

.mc-slide--bg .mc-content {
  width: min(calc(100% - 12vw), var(--max));
  max-width: none;
  margin: 0 auto;
  padding: 64px 0 76px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-kicker::before { content: ""; width: 38px; height: 2px; background: #f3c83b; }

.mc-slide--bg .mc-h {
  max-width: 970px;
  margin: 0;
  color: #fff;
  font-size: clamp(4rem, 9.3vw, 8rem);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .82;
  text-transform: uppercase;
}

.mc-slide--bg .mc-sub {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.45;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.btn { min-height: 50px; padding: 0 22px; font-size: .78rem; }
.btn-primary { background: var(--accent); }
.btn-secondary { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); color: #fff; }

.mc-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(11, 24, 15, .45);
  color: #fff;
  backdrop-filter: blur(8px);
}

.mc-arrow--prev { left: 20px; }
.mc-arrow--next { right: 20px; }
.mc-dots { bottom: 24px; }
.mc-dot { width: 30px; height: 3px; border: 0; border-radius: 0; background: rgba(255,255,255,.4); }
.mc-dot.on { width: 54px; background: #f3c83b; }

.motion-ready .mc-content { animation: hero-content-in .8s cubic-bezier(.22, 1, .36, 1) both; }
.motion-ready .mc-slide--bg { animation: hero-drift 14s ease-out both; }

@keyframes hero-content-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-drift {
  from { background-position: 48% 52%; }
  to { background-position: 52% 50%; }
}

.quick-actions { background: var(--primary); color: #fff; border-top: 1px solid rgba(255,255,255,.17); }
.quick-actions-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.quick-actions a {
  position: relative;
  min-height: 144px;
  padding: 26px 56px 24px 24px;
  border-right: 1px solid rgba(255,255,255,.17);
  transition: background .2s ease;
}

.quick-actions a:first-child { border-left: 1px solid rgba(255,255,255,.17); }
.quick-actions a:hover { background: rgba(255,255,255,.07); }
.quick-actions span { display: block; margin-bottom: 18px; color: #b8ea72; font-size: .62rem; letter-spacing: .12em; }
.quick-actions strong { display: block; font-size: clamp(1.05rem, 2vw, 1.45rem); line-height: 1.1; letter-spacing: -.025em; }
.quick-actions small { display: block; margin-top: 7px; color: rgba(255,255,255,.62); }
.quick-actions b { position: absolute; top: 26px; right: 24px; font-size: 1.1rem; }

.care-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  background: var(--accent);
  color: #fff;
}

.care-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 22px;
  padding: 13px 0;
  animation: care-marquee 28s linear infinite;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.care-marquee-track span { white-space: nowrap; }
.care-marquee-track i { color: #f3c83b; font-style: normal; }

@keyframes care-marquee { to { transform: translateX(-50%); } }

.section { padding: clamp(76px, 9vw, 122px) 0; }
.section.alt { background: var(--soft); }
.section-head { max-width: 950px; margin: 0 0 50px; text-align: left; }
.section-head::before {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

#services .section-head::before { content: "What we do"; }
#how-it-works .section-head::before { content: "Three simple steps"; }
#supplements .section-head::before { content: "On the shelf"; }
#team .section-head::before { content: "The people behind your care"; }
#careers .section-head::before { content: "Work with us"; }
.section-head h2 {
  max-width: 900px;
  color: var(--text);
  font-size: clamp(2.7rem, 6.3vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .9;
  text-transform: uppercase;
}

.section-head p { max-width: 680px; margin-top: 20px; font-size: 1.03rem; }

.transfer-journey { background: var(--bg); }
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.journey-step {
  position: relative;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.26);
}

.journey-step > * { position: relative; z-index: 1; }
.journey-step > span { display: block; margin-bottom: 92px; color: var(--accent); font-size: .68rem; font-weight: 900; letter-spacing: .15em; }
.journey-step h3 { max-width: 280px; color: var(--text); font-size: clamp(1.45rem, 2.4vw, 2.2rem); line-height: 1; letter-spacing: -.045em; }
.journey-step p { max-width: 330px; margin-top: 16px; color: var(--muted); font-size: .9rem; }
.journey-cta {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  min-height: 54px;
  margin-top: 24px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: .78rem;
  font-weight: 850;
}
.journey-cta span { transition: transform .2s ease; }
.journey-cta:hover span { transform: translateX(5px); }

.circle-wrap { padding: 0; overflow: visible; }
.service-wheel {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-ring { display: none; }
.wheel-center,
.service-node {
  position: static !important;
  width: auto !important;
  height: auto !important;
  min-height: 205px !important;
  transform: none !important;
  border: 0 !important;
  border-right: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.wheel-center {
  grid-column: span 3;
  padding: clamp(28px, 4vw, 54px);
  background: var(--primary);
  color: #fff;
  text-align: left;
}

.wheel-center > div { max-width: 550px; color: rgba(255,255,255,.7); font-size: 1.05rem; }
.wheel-center strong { margin-bottom: 14px; color: #fff; font-size: clamp(1.7rem, 3vw, 2.8rem); letter-spacing: -.04em; }
.service-node {
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  padding: 28px !important;
  background: transparent !important;
  text-align: left !important;
}

.service-node .icon { margin: 0 0 auto !important; font-size: 1.5rem !important; }
.service-node h4 { font-size: 1.12rem !important; }
.service-node p { flex: 0; color: var(--muted); font-size: .85rem !important; }
.node-cta { margin-top: 4px; padding: 0; border: 0; border-radius: 0; background: transparent; color: var(--accent); font-size: .72rem; }
.node-cta:hover { background: transparent; color: var(--primary); }

.otc-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
.otc-card { border: 1px solid var(--line); border-radius: 0; box-shadow: none; background: rgba(255,255,255,.45); }
.otc-card-media { min-height: 190px; background: var(--soft-2); }
.otc-card-body { padding: 24px; }
.otc-card h4 { color: var(--text); font-size: 1.1rem; }

.care-proof { padding: clamp(76px, 9vw, 122px) 0; background: #f3c83b; }
.care-proof-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(48px, 8vw, 110px); align-items: end; }
.care-proof-intro .eyebrow { margin-bottom: 18px; color: var(--primary); font-size: .65rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.care-proof-intro h2 { max-width: 680px; color: var(--text); font-size: clamp(2.7rem, 5.4vw, 5rem); font-weight: 900; letter-spacing: -.065em; line-height: .9; text-transform: uppercase; }
.care-proof-stats { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(20,32,25,.28); border-left: 1px solid rgba(20,32,25,.28); }
.care-proof-stats article { min-height: 150px; padding: 24px; border-right: 1px solid rgba(20,32,25,.28); border-bottom: 1px solid rgba(20,32,25,.28); }
.care-proof-stats strong { display: block; color: var(--primary); font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1; letter-spacing: -.055em; }
.care-proof-stats span { display: block; margin-top: 12px; color: rgba(20,32,25,.7); font-size: .75rem; font-weight: 800; text-transform: uppercase; }

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(360px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(243,200,59,.24), transparent 50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.spotlight-card:hover::before { opacity: 1; }
.spotlight-card > * { position: relative; z-index: 1; }
.service-node.spotlight-card { position: relative !important; overflow: hidden; }
.otc-card.spotlight-card { position: relative; overflow: hidden; }

html.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

html.motion-ready [data-reveal].is-visible { opacity: 1; transform: none; }

#team { background: var(--primary); color: #fff; }
#team .section-head h2 { color: #fff; }
#team .section-head p { color: rgba(255,255,255,.62); }
#team .section-head::before { color: #b8ea72; }
.team-grid { grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.16); }
.team-card { border: 0; border-radius: 0; box-shadow: none; background: var(--primary); }
.team-body { padding: 24px; }
.team-header { display: block; }
.team-photo { position: relative; width: 100%; height: auto; aspect-ratio: 4 / 3; margin-bottom: 22px; overflow: hidden; border: 0; border-radius: 0; }
.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.2) 48%, transparent 61%);
  transform: translateX(-120%);
  transition: transform .75s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}
.team-photo img { object-position: center 22%; filter: saturate(.78) contrast(1.05); transition: filter .45s ease, transform .65s cubic-bezier(.22, 1, .36, 1); }
.team-card { transition: background-color .35s ease; }
.team-card:hover { background: #1d3d2c; }
.team-card:hover .team-photo img { filter: saturate(1) contrast(1.03); transform: scale(1.045); }
.team-card:hover .team-photo::after { transform: translateX(120%); }
.team-card h3 { color: #fff; font-size: 1.35rem; letter-spacing: -.03em; }
.team-card .role { margin-top: 4px; color: #b8ea72; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; }
.team-desc { color: rgba(255,255,255,.68); font-size: .84rem; }
.team-quote { border: 0; border-left: 2px solid var(--accent); border-radius: 0; background: transparent; }
.team-quote-label { color: #b8ea72; }
.team-quote p { color: #fff; }
.bit { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: rgba(255,255,255,.78); }

.job-posting { border: 1px solid var(--line); border-radius: 0; box-shadow: none; }
.job-posting-header { background: var(--primary); }
.job-posting-body { background: rgba(255,255,255,.52); }
.job-posting-col,
.job-gain-card { border-radius: 0; }

footer {
  margin: 0;
  padding: 72px 24px 30px;
  background: #0d1c13;
  text-align: left;
}

.contact-grid { max-width: var(--max); margin: 0 auto 52px; justify-content: space-between; gap: 42px; }
.contact-grid h4 { color: #b8ea72; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-grid p { color: rgba(255,255,255,.7); font-size: .86rem; }
.footer-socials { display: none; }
.footer-copy {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.48);
  font-size: .72rem;
  text-align: left;
}

.mp-modal-card { border-radius: 10px; }

@media (max-width: 1040px) {
  .topbar-location { display: none; }
  .topbar-inner { grid-template-columns: 1fr auto auto; }
  .nav-links { gap: 14px; }
  .nav-links li:nth-child(4) { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1380px) {
  html { scroll-padding-top: 116px; }
  body { padding-top: 116px; }
  .wrap { width: min(calc(100% - 32px), var(--max)); }
  .topbar,
  .topbar-inner { height: 40px; }
  .topbar-inner { grid-template-columns: 1fr auto; gap: 14px; }
  .topbar-hours { display: none; }
  nav { top: 40px; height: 76px; }
  .mc-frame { top: 116px; height: calc(100svh - 116px); }
  .nav-inner { position: relative; height: 76px; flex-direction: row; align-items: center; }
  .brand-logo { width: 46px; height: 46px; }
  .brand small { display: none; }
  .nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
  }
  .nav-toggle-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-left: auto;
    font-size: .75rem;
    font-weight: 850;
    text-transform: uppercase;
    cursor: pointer;
  }
  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    width: 19px;
    height: 2px;
    background: currentColor;
    content: "";
  }
  .nav-toggle-label span { position: relative; }
  .nav-toggle-label span::before { position: absolute; top: -6px; }
  .nav-toggle-label span::after { position: absolute; top: 6px; }
  .nav-panel {
    position: absolute;
    top: 76px;
    right: -16px;
    left: -16px;
    display: none;
    padding: 24px 16px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(20,32,25,.12);
  }
  .nav-toggle:checked ~ .nav-panel { display: block; }
  .nav-links { display: grid; gap: 0; }
  .nav-links li:nth-child(4) { display: block; }
  .nav-links a { display: block; padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-actions { margin-top: 18px; }
  .nav-actions a { flex: 1; }
  .mc-slide--bg { min-height: min(660px, calc(100vh - 116px)); }
  .mc-slide--bg .mc-content { width: min(calc(100% - 64px), var(--max)); padding: 70px 0 86px; }
  .mc-slide--bg .mc-h { font-size: clamp(3.2rem, 12vw, 6rem); line-height: .86; }
  .mc-arrow { display: none; }
  .quick-actions-grid { grid-template-columns: 1fr; }
  .quick-actions a,
  .quick-actions a:first-child { min-height: 118px; border: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .service-wheel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wheel-center { grid-column: span 2; }
  .otc-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-step { min-height: 250px; }
  .journey-step > span { margin-bottom: 54px; }
  .care-proof-grid { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 620px) {
  .topbar-center { font-size: .62rem; }
  .topbar-phone { font-size: .68rem; }
  .flash-sale-copy > span:last-child { display: none; }
  .flash-sale-inner { align-items: center; }
  .flash-sale-action { white-space: nowrap; }
  .mission { height: auto; margin-top: 0; }
  .mc-frame { position: relative; top: auto; height: auto; }
  .mission .mc-track,
  .mission .mc-slide { height: auto; }
  .hero-scroll-copy { display: none; }
  .hero-scroll-photo { transform: none; }
  .hero-scroll-photo::after { opacity: 1; }
  .mission .mc-slide:first-child .mc-content { opacity: 1; transform: none; }
  .mc-slide--bg { min-height: 600px; background-position: 58% center; }
  .mc-slide--bg::before { background: linear-gradient(90deg, rgba(7,20,12,.94), rgba(7,20,12,.52)); }
  .mc-slide--bg .mc-content { width: calc(100% - 40px); padding: 64px 0 84px; }
  .mc-slide--bg .mc-h { font-size: clamp(3.15rem, 16vw, 4.8rem); }
  .mc-slide--bg .mc-sub { font-size: .96rem; }
  .hero-kicker { font-size: .58rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .service-wheel { grid-template-columns: 1fr; }
  .wheel-center { grid-column: span 1; }
  .wheel-center,
  .service-node { min-height: 190px !important; }
  .otc-grid,
  .team-grid { grid-template-columns: 1fr; }
  .care-proof-stats { grid-template-columns: 1fr; }
  .care-proof-stats article { min-height: 125px; }
  .otc-grid { display: grid; overflow: visible; }
  .otc-card { min-width: 0; }
  .contact-grid { display: grid; justify-content: start; }
  .footer-copy { line-height: 1.7; }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.r-force-motion-page) *,
  html:not(.r-force-motion-page) *::before,
  html:not(.r-force-motion-page) *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  html.motion-ready [data-reveal] { opacity: 1; transform: none; }
  .care-marquee-track { animation: none; }
  .mission { height: auto; margin-top: 0; }
  .mc-frame { position: relative; top: auto; height: auto; }
  .mission .mc-track,
  .mission .mc-slide { height: auto; }
  .hero-scroll-copy { display: none; }
  .hero-scroll-photo { transform: none; }
  .hero-scroll-photo::after { opacity: 1; }
  .mission .mc-slide:first-child .mc-content { opacity: 1; transform: none; }
}

/* Shared chrome for the premium React pages and PHP fallbacks. */
.topbar-center span { animation: chrome-status-pulse 2s ease-out infinite; }
@keyframes chrome-status-pulse { 50% { box-shadow: 0 0 0 9px rgba(184,234,114,0); } }

nav { isolation: isolate; }
nav::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(83,103,58,.5), transparent);
  content: "";
  transform: scaleX(.15);
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
nav:hover::after { transform: scaleX(1); }
.brand { position: relative; transition: color .3s ease; }
.brand-logo { position: relative; transition: transform .55s cubic-bezier(.22,1,.36,1), filter .35s ease; }
.brand-logo::after { position: absolute; inset: -4px; border: 1px solid rgba(83,103,58,.22); border-radius: 50%; content: ""; opacity: 0; transform: scale(.75) rotate(-18deg); transition: opacity .35s ease, transform .55s cubic-bezier(.22,1,.36,1); }
.brand:hover .brand-logo { filter: drop-shadow(0 10px 16px rgba(33,62,42,.17)); transform: rotate(-5deg) scale(1.06); }
.brand:hover .brand-logo::after { opacity: 1; transform: scale(1) rotate(0); }
.nav-links a { transition: color .25s ease, transform .3s cubic-bezier(.22,1,.36,1); }
.nav-links a:hover { color: var(--primary); transform: translateY(-2px); }
.nav-actions a { position: relative; overflow: hidden; isolation: isolate; transition: color .3s ease, transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease; }
.nav-actions a::before { position: absolute; z-index: -1; inset: 0; background: #f0ca3c; content: ""; transform: translateX(-102%); transition: transform .45s cubic-bezier(.22,1,.36,1); }
.nav-actions a:hover { color: #18271e; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(28,58,39,.14); }
.nav-actions a:hover::before { transform: translateX(0); }

footer { position: relative; overflow: hidden; isolation: isolate; }
footer::before { position: absolute; z-index: -1; right: -14vw; bottom: -20vw; width: 46vw; aspect-ratio: 1; border: 1px solid rgba(184,234,114,.13); border-radius: 50%; content: ""; box-shadow: 0 0 0 7vw rgba(184,234,114,.018), 0 0 0 14vw rgba(184,234,114,.012); }
.footer-wordmark { max-width: var(--max); margin: 0 auto 60px; overflow: visible; color: transparent; font-size: clamp(3rem, 8.5vw, 7.8rem); font-weight: 950; letter-spacing: -.08em; line-height: .9; white-space: nowrap; word-spacing: clamp(18px, 3vw, 48px); -webkit-text-stroke: 1px rgba(255,255,255,.2); transition: color .6s ease, -webkit-text-stroke-color .6s ease, transform .8s cubic-bezier(.22,1,.36,1); }
footer:hover .footer-wordmark { color: rgba(184,234,114,.055); -webkit-text-stroke-color: rgba(184,234,114,.5); transform: translateX(1.5vw); }
.contact-grid > div { position: relative; padding-top: 18px; }
.contact-grid > div::before { position: absolute; top: 0; left: 0; width: 30px; height: 2px; background: #b8ea72; content: ""; transition: width .45s cubic-bezier(.22,1,.36,1); }
.contact-grid > div:hover::before { width: 74px; }
.contact-grid a { transition: color .25s ease; }
.contact-grid a:hover { color: #b8ea72 !important; }

@media (max-width: 620px) {
  .footer-wordmark { margin-bottom: 42px; font-size: clamp(2.25rem, 12vw, 4.2rem); white-space: normal; word-spacing: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.r-force-motion-page) .topbar-center span { animation: none; }
  html:not(.r-force-motion-page) .brand-logo,
  html:not(.r-force-motion-page) .footer-wordmark { transform: none !important; }
}
