:root {
  --ink: #1c2430;
  --ink-soft: #44505f;
  --navy: #16324a;
  --teal: #129e8f;
  --teal-deep: #0c7a70;
  --teal-soft: #d7f3ef;
  --cream: #f7f3ec;
  --paper: #fffdf8;
  --sand: #e8e0d2;
  --line: #d9d1c3;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(22, 50, 74, 0.08);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Source Sans 3", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-deep); }
p { margin: 0 0 1rem; }
h1, h2, h3 {
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 560;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.7rem;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.35rem); }
h3 { font-size: 1.25rem; }

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  background: var(--white);
  padding: 0.5rem 0.8rem;
  z-index: 20;
}

.topbar {
  background: var(--navy);
  color: #e7eef4;
  font-size: 0.92rem;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}
.topbar a { color: inherit; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 243, 236, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.7rem 0;
}
.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  height: 68px;
  overflow: hidden;
  border-radius: 10px;
  line-height: 0;
  contain: paint;
}
.logo img {
  height: 68px;
  width: auto;
  max-width: min(460px, 56vw);
  object-fit: contain;
}
.helix {
  position: absolute;
  left: 0;
  top: 0;
  width: 26%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(circle at 18% 50%, #08141d 0%, #05070e 70%);
  clip-path: ellipse(86% 68% at 2% 50%);
}
.helix svg {
  display: block;
  width: 86%;
  height: 78%;
  margin: 11% 4% 0 6%;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}
.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
}
.nav a:hover { color: var(--teal-deep); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal-deep); color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { color: var(--white); filter: brightness(1.08); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.header-call { white-space: nowrap; }

.hero {
  padding: 3.2rem 0 3.6rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2.4rem;
  align-items: center;
}
.eyebrow {
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.lede {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 38rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem 0 0.4rem;
}
.fine {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 1.5rem 1.5rem 1.3rem;
}
.hero-card h2 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
}
.meta {
  display: grid;
  gap: 0.85rem;
}
.meta div { color: var(--ink-soft); }
.meta strong {
  display: block;
  color: var(--navy);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.meta a { color: inherit; text-decoration: none; }
.meta a:hover { color: var(--teal-deep); }

.trust {
  padding: 0 0 2.6rem;
}
.trust-row {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 1rem;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.2rem;
}
.trust-row img { width: 78px; }
.trust-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.trust-row strong { color: var(--navy); }

.section { padding: 3.2rem 0; }
.section.alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-intro { max-width: 40rem; margin-bottom: 1.8rem; }

.pharmacist {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.6rem;
  align-items: center;
  max-width: 44rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.15rem 1.3rem 1.15rem 1.15rem;
  box-shadow: var(--shadow);
}
.headshot {
  width: 200px;
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
  background: #6d6d6d;
}
.headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.pharmacist h3 { margin-bottom: 0.2rem; }
.pharmacist .role {
  color: var(--teal-deep);
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.pharmacist p:last-child { margin-bottom: 0; }

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem 1.3rem 1.1rem;
}
.card p:last-child { margin-bottom: 0; }
.card .tag {
  display: inline-block;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  margin-bottom: 0.55rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
}
.panel.navy {
  background: var(--navy);
  color: #e8eef3;
  border-color: var(--navy);
}
.panel.navy h2, .panel.navy h3 { color: var(--white); }
.panel.navy p, .panel.navy li { color: #d5dee6; }
.panel ul { margin: 0 0 1.1rem; padding-left: 1.15rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1rem 1rem;
}
.step:before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  width: 1.7rem;
  height: 1.7rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}
.step h3 { font-size: 1.1rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

.visit {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: start;
}
.map-link {
  position: relative;
  display: block;
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  color: var(--white);
  text-decoration: none;
  background: #eef3ef;
}
.map-link img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center 60%;
}
.map-link span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 2rem);
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.legal {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.site-footer {
  background: var(--navy);
  color: #d7e0e8;
  padding: 2rem 0 1.4rem;
  font-size: 0.95rem;
}
.site-footer a:not(.foot-btn) { color: #eef5f8; }
.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.2rem;
}
.foot-links {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.foot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.foot-btn:hover { transform: translateY(-1px); }
.site-footer .foot-btn-teal,
.site-footer .foot-btn-light,
.site-footer .foot-btn-ghost {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.site-footer .foot-btn-teal:hover,
.site-footer .foot-btn-light:hover,
.site-footer .foot-btn-ghost:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: #fff;
}
.site-footer .foot-btn-phone {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  font-variant-numeric: tabular-nums;
}
.site-footer .foot-btn-phone:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.site-footer .small {
  margin: 0;
  color: #9eafbd;
  font-size: 0.86rem;
}

@media (max-width: 880px) {
  .hero-grid, .split, .visit, .trust-row, .steps, .cards, .pharmacist {
    grid-template-columns: 1fr;
  }
  .headshot { width: 160px; height: 160px; }
  .trust-row { justify-items: start; }
  .site-header .wrap { flex-wrap: wrap; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.2rem 0 0.7rem;
  }
  .menu-btn { display: inline-flex; }
  .logo { height: 48px; }
  .logo img { height: 48px; max-width: 72vw; }
}

@media (min-width: 881px) {
  .menu-btn { display: none; }
}

.menu-btn {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  font-weight: 700;
}
