/* =========================================================
   Mako's Market & Pharmacy — rebranded design system
   ========================================================= */
:root {
  /* Brand palette — ocean navy, mako blue, fresh teal, warm coral */
  --navy-900: #06182b;
  --navy-800: #0a2a43;
  --navy-700: #0f3a5c;
  --blue-600: #0d8ecf;
  --blue-500: #1ba5e0;
  --blue-300: #7ed0f0;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --coral-500: #ff7a59;
  --coral-400: #ff9576;
  --amber-400: #f6b73c;

  --ink: #14222e;
  --body: #41525e;
  --muted: #6b7c88;
  --line: #e4ecf1;
  --bg: #ffffff;
  --bg-soft: #f4f9fc;
  --bg-tint: #eaf5fb;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(10, 42, 67, .07);
  --shadow: 0 18px 50px rgba(10, 42, 67, .12);
  --shadow-lg: 0 30px 70px rgba(10, 42, 67, .20);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --maxw: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.ic { width: 1em; height: 1em; fill: currentColor; flex: none; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 16px;
}
.eyebrow--light { color: var(--blue-300); }

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
}
.section__title--light { color: #fff; }

.section__head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section__sub { font-size: 1.08rem; color: var(--muted); margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue-600);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .96rem;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn--primary { background: var(--btn-bg); color: var(--btn-fg); box-shadow: 0 10px 24px rgba(13, 142, 207, .32); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(13, 142, 207, .42); }
.btn--light { background: #fff; color: var(--navy-800); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--navy-800); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue-500); color: var(--blue-600); }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-900);
  color: #cfe3f0;
  font-size: .85rem;
}
.topbar__inner { display: flex; align-items: center; gap: 24px; height: 42px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: #fff; }
.topbar__item .ic { color: var(--teal-400); }
.topbar__hours { display: inline-flex; align-items: center; gap: 8px; color: #aecbdf; margin-right: auto; }
.topbar__hours .ic { color: var(--blue-300); }
.topbar__hours strong { color: #fff; font-weight: 700; }
.topbar__links { display: flex; align-items: center; gap: 20px; }
.topbar__links a { color: #cfe3f0; font-weight: 600; transition: color .2s; }
.topbar__links a:hover { color: var(--teal-400); }
.topbar__links .ic { font-size: 1.1rem; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.nav.is-stuck { box-shadow: var(--shadow-sm); border-color: var(--line); background: rgba(255,255,255,.92); }
.nav__inner { display: flex; align-items: center; height: 78px; gap: 24px; }

.brand { display: inline-flex; align-items: center; color: var(--navy-800); }
.brand__logo { height: 44px; width: auto; display: block; transition: transform .35s var(--ease); }
.brand:hover .brand__logo { transform: scale(1.03); }

.nav__links { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav__links > a:not(.btn) {
  padding: 10px 14px; font-weight: 600; font-size: .96rem; color: var(--ink);
  border-radius: 10px; transition: color .2s, background .2s;
}
.nav__links > a:not(.btn):hover { color: var(--blue-600); background: var(--bg-tint); }
.nav__cta { margin-left: 6px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav__toggle span { width: 26px; height: 2.5px; background: var(--navy-800); border-radius: 3px; transition: .3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  position: absolute; inset: 0;
  background: var(--navy-800) center/cover no-repeat;
  transform: scale(1.06);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(27,165,224,.45), transparent 60%),
    linear-gradient(115deg, rgba(6,24,43,.94) 0%, rgba(10,42,67,.86) 42%, rgba(10,42,67,.55) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.5fr .85fr; gap: 48px; align-items: center;
  min-height: 640px; padding: 90px 24px 110px;
}
.hero__content { max-width: 640px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.2vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -.025em;
  margin: 8px 0 22px;
}
.hero__title .hl {
  background: linear-gradient(100deg, var(--teal-400), var(--blue-300));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lede { font-size: 1.18rem; color: #d7e7f2; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 28px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 22px; list-style: none; }
.hero__badges li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .95rem; color: #cfe3f0; }
.hero__badges .ic { color: var(--teal-400); background: rgba(45,212,191,.16); border-radius: 50%; padding: 4px; width: 1.5em; height: 1.5em; }

.hero__card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
}
.hero__card-row { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.16); }
.hero__card-k { font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .72rem; color: var(--blue-300); }
.hero__card-v { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: #fff; }
.hero__card-v::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--teal-400); box-shadow: 0 0 0 4px rgba(45,212,191,.3); }
.hero__card-v.is-closed::before { background: var(--coral-400); box-shadow: 0 0 0 4px rgba(255,149,118,.3); }
.hero__card-hours { margin: 16px 0; display: grid; gap: 7px; font-size: .92rem; }
.hero__card-hours .row { display: flex; justify-content: space-between; color: #d7e7f2; }
.hero__card-hours .row strong { color: #fff; font-weight: 600; }
.hero__card-hours .row.today { color: #fff; }
.hero__card-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--teal-400); font-size: .92rem; }
.hero__card-link:hover { color: #fff; }

.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; z-index: 3; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 3px; background: #fff; transform: translateX(-50%); animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* ---------- Stats ---------- */
.stats { background: var(--navy-800); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 38px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.stat:last-child { border-right: 0; }
.stat__num { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem, 4vw, 3rem); color: #fff; line-height: 1; }
.stat__label { display: block; margin-top: 10px; font-size: .9rem; color: #9fc0d6; letter-spacing: .01em; }

/* ---------- About ---------- */
.about { padding: 110px 0; background: var(--bg); }
.about__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.about__media { position: relative; }
.about__photo { aspect-ratio: 4/5; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--blue-500), var(--teal-500)) center/cover; box-shadow: var(--shadow); }
.about__tag {
  position: absolute; right: -22px; bottom: -26px; width: 250px;
  background: #fff; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 6px;
}
.about__tag-num { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; color: var(--blue-600); line-height: 1; }
.about__tag-txt { font-size: .9rem; color: var(--muted); }
.about__body p { margin-bottom: 16px; font-size: 1.05rem; }
.about__points { list-style: none; margin: 24px 0 30px; display: grid; gap: 14px; }
.about__points li { position: relative; padding-left: 34px; font-size: 1.02rem; }
.about__points li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 22px; height: 22px; border-radius: 7px;
  background: var(--bg-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230d8ecf'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
}
.about__points strong { color: var(--ink); }

/* ---------- Departments ---------- */
.depts { padding: 110px 0; background: var(--bg-soft); }
.depts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dept {
  position: relative; overflow: hidden; isolation: isolate;
  background: #fff; border-radius: var(--radius); padding: 30px 28px 26px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .35s;
  min-height: 230px; display: flex; flex-direction: column;
}
.dept::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: var(--img) center/cover no-repeat; opacity: 0; transform: scale(1.1);
  transition: opacity .4s var(--ease), transform .6s var(--ease);
}
.dept::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6,24,43,.35), rgba(6,24,43,.88));
  opacity: 0; transition: opacity .4s var(--ease);
}
.dept:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); color: #fff; border-color: transparent; }
.dept:hover::before { opacity: 1; transform: scale(1); }
.dept:hover::after { opacity: 1; }
.dept:hover h3 { color: #fff; }
.dept:hover .dept__more { color: var(--teal-400); }
.dept__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.7rem; background: var(--bg-tint); margin-bottom: 18px;
  transition: background .35s, transform .35s var(--ease);
}
.dept:hover .dept__icon { background: rgba(255,255,255,.18); transform: scale(1.05); }
.dept h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--ink); margin-bottom: 8px; transition: color .35s; }
.dept p { font-size: .98rem; flex: 1; }
.dept__more { margin-top: 16px; font-weight: 700; font-size: .9rem; color: var(--blue-600); transition: color .35s; }

/* ---------- Feature (alternating) ---------- */
.feature { padding: 110px 0; background: var(--bg); }
.feature__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.feature__photo { aspect-ratio: 5/4; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--teal-500), var(--blue-600)) center/cover; box-shadow: var(--shadow); }
.feature__body p { font-size: 1.06rem; margin-bottom: 22px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.chip { background: var(--bg-tint); color: var(--navy-700); font-weight: 600; font-size: .9rem; padding: 8px 16px; border-radius: 999px; }

/* ---------- Duo split ---------- */
.duo { padding: 0 0 110px; background: var(--bg); }
.duo__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.duo__card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.duo__photo { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--blue-500), var(--navy-700)) center/cover; }
.duo__txt { padding: 30px 32px 34px; }
.duo__txt h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; color: var(--ink); margin-bottom: 10px; }

/* ---------- Pharmacy ---------- */
.pharmacy { padding: 110px 0; background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: #fff; position: relative; overflow: hidden; }
.pharmacy::before {
  content: ""; position: absolute; top: -120px; right: -120px; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(27,165,224,.35), transparent 70%);
}
.pharmacy__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.pharmacy__lede { font-size: 1.12rem; color: #d7e7f2; margin-bottom: 24px; }
.pharmacy__list { list-style: none; display: grid; gap: 14px; margin-bottom: 26px; }
.pharmacy__list li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 1.04rem; }
.pharmacy__list .ic { color: var(--navy-900); background: var(--teal-400); border-radius: 50%; padding: 5px; width: 1.7em; height: 1.7em; }
.pharmacy__phone { font-size: 1.05rem; color: #cfe3f0; }
.pharmacy__phone a { color: var(--teal-400); font-weight: 700; }

.refill { background: #fff; border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-lg); color: var(--body); }
.refill__title { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; color: var(--ink); }
.refill__sub { color: var(--muted); margin-bottom: 22px; font-size: .96rem; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: 7px; }
.field label span { color: var(--muted); font-weight: 500; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .98rem; color: var(--ink); background: var(--bg-soft); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 4px rgba(27,165,224,.14); }
.field textarea { resize: vertical; }
.refill__fine { margin-top: 14px; font-size: .8rem; color: var(--muted); text-align: center; }

/* ---------- Partners ---------- */
.partners { padding: 56px 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partners__label { text-align: center; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; color: var(--muted); margin-bottom: 26px; }
.partners__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 40px; }
.partners__row span { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 1.25rem; color: var(--navy-700); opacity: .65; transition: opacity .2s, color .2s; }
.partners__row span:hover { opacity: 1; color: var(--blue-600); }

/* ---------- Offers ---------- */
.offers { padding: 110px 0; background: var(--bg); }
.offers__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offer {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 36px 32px 40px; color: #fff;
  min-height: 230px; display: flex; flex-direction: column; box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.offer:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offer--ad { background: linear-gradient(135deg, var(--blue-600), var(--navy-700)); }
.offer--coupon { background: linear-gradient(135deg, var(--coral-500), var(--amber-400)); }
.offer--news { background: linear-gradient(135deg, var(--teal-500), var(--blue-500)); }
.offer__kicker { font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .74rem; opacity: .9; }
.offer h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; margin: 12px 0 8px; }
.offer p { flex: 1; opacity: .92; }
.offer__cta { margin-top: 18px; font-weight: 700; }

/* ---------- Quotes ---------- */
.quotes { padding: 110px 0; background: var(--bg-soft); }
.quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: #fff; border-radius: var(--radius); padding: 32px 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.quote__stars { color: var(--amber-400); letter-spacing: 3px; font-size: 1.1rem; margin-bottom: 14px; }
.quote blockquote { font-family: var(--font-display); font-size: 1.18rem; line-height: 1.5; color: var(--ink); font-weight: 500; }
.quote figcaption { margin-top: 18px; font-weight: 600; color: var(--muted); font-size: .92rem; }
.quotes__note { text-align: center; margin-top: 30px; font-size: .85rem; color: var(--muted); }

/* ---------- Visit ---------- */
.visit { padding: 110px 0; background: var(--bg); }
.visit__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: stretch; }
.visit__info p { font-size: 1.05rem; }
.visit__block { margin-top: 26px; }
.visit__block h4 { display: flex; align-items: center; gap: 9px; font-size: 1rem; color: var(--ink); margin-bottom: 8px; }
.visit__block h4 .ic { color: var(--blue-600); font-size: 1.2rem; }
.visit__block a { color: var(--body); }
.visit__block a:hover { color: var(--blue-600); }
.visit__link { color: var(--blue-600) !important; font-weight: 700; }
.visit__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.visit__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 420px; }
.visit__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: saturate(1.05); }

/* ---------- Newsletter ---------- */
.newsletter { padding: 0 0 110px; background: var(--bg); }
.newsletter__inner {
  background: linear-gradient(120deg, var(--blue-600), var(--teal-500));
  border-radius: var(--radius-lg); padding: 56px; color: #fff;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
  box-shadow: var(--shadow);
}
.newsletter__txt h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 10px; }
.newsletter__txt p { opacity: .94; }
.newsletter__form { display: flex; gap: 10px; }
.newsletter__form input {
  flex: 1; padding: 15px 18px; border-radius: 999px; border: 0; font-family: var(--font-body);
  font-size: 1rem; color: var(--ink);
}
.newsletter__form input:focus { outline: none; box-shadow: 0 0 0 4px rgba(255,255,255,.4); }
.newsletter__form .btn { background: var(--navy-800); color: #fff; box-shadow: none; }
.newsletter__form .btn:hover { background: var(--navy-900); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #aecbdf; padding: 70px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__logo { height: 84px; width: auto; display: block; }
.footer__blurb { margin-top: 18px; max-width: 280px; font-size: .95rem; color: #8fb2c9; }
.footer__col h5 { color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a { display: block; padding: 6px 0; color: #aecbdf; font-size: .96rem; transition: color .2s, padding-left .2s; }
.footer__col a:hover { color: var(--teal-400); padding-left: 4px; }
.footer__base { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: .85rem; color: #7a9bb3; gap: 16px; flex-wrap: wrap; }
.footer__credit { color: var(--blue-300); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 30px; translate: -50% 30px;
  background: var(--navy-800); color: #fff; padding: 15px 24px; border-radius: 999px;
  font-weight: 600; box-shadow: var(--shadow-lg); z-index: 999; opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), translate .35s var(--ease);
  display: flex; align-items: center; gap: 10px; max-width: 90vw;
}
.toast::before { content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--teal-400); color: var(--navy-900); font-size: .8rem; font-weight: 800; }
.toast.show { opacity: 1; translate: -50% 0; pointer-events: auto; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; min-height: auto; padding: 70px 24px 90px; }
  .hero__card { max-width: 420px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .about__grid, .feature__grid, .pharmacy__grid, .visit__grid { grid-template-columns: 1fr; gap: 44px; }
  .about__media { max-width: 460px; }
  .depts__grid, .offers__grid, .quotes__grid { grid-template-columns: 1fr 1fr; }
  .duo__grid { grid-template-columns: 1fr; }
  .newsletter__inner { grid-template-columns: 1fr; padding: 40px; }
  .feature__grid { direction: ltr; }
}

@media (max-width: 860px) {
  .topbar__hours { display: none; }
  .topbar__inner { justify-content: space-between; }
  .topbar__item { margin-right: auto; }
  .nav__links {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 18px 24px 26px; gap: 4px; box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform .4s var(--ease); margin: 0;
    border-top: 1px solid var(--line); max-height: calc(100vh - 78px); overflow: auto;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links > a:not(.btn) { padding: 14px 12px; border-radius: 10px; font-size: 1.05rem; }
  .nav__cta { margin: 6px 0 0; text-align: center; }
  .nav__toggle { display: flex; }
}

@media (max-width: 620px) {
  .container { padding: 0 18px; }
  .brand__logo { height: 36px; }
  .footer__logo { height: 72px; }
  .about, .depts, .feature, .offers, .quotes, .visit, .pharmacy { padding: 72px 0; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .depts__grid, .offers__grid, .quotes__grid, .visit__cols { grid-template-columns: 1fr; }
  .about__tag { right: 14px; bottom: -20px; width: 210px; }
  .hero__actions .btn { flex: 1; }
  .newsletter__form { flex-direction: column; }
  .newsletter__form .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .topbar__links a:not(:last-child) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
