:root {
  --bg: #f6fbf9;
  --surface: #ffffff;
  --surface-soft: #ebf5f1;
  --text: #162a23;
  --muted: #476057;
  --brand: #0d7668;
  --brand-strong: #085e53;
  --accent: #d97706;
  --border: #d4e5dd;
  --shadow: 0 16px 42px rgba(10, 35, 25, 0.08);
  --radius: 18px;
  --container: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, #d7eee6 0, transparent 28%),
    radial-gradient(circle at 85% 5%, #d8ecef 0, transparent 24%),
    var(--bg);
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand-strong);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 2000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(92vw, var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.8rem 0;
}

.section-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f2f8f5 100%);
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: var(--brand-strong);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
  font-family: "Fraunces", "Georgia", serif;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

a {
  color: var(--brand-strong);
}

a:hover,
a:focus-visible {
  color: var(--brand);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(246, 251, 249, 0.88);
  border-bottom: 1px solid rgba(212, 229, 221, 0.8);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  text-decoration: none;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand strong {
  display: block;
  font-size: 0.9rem;
}

.brand small {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.brand-mark {
  min-width: 3.55rem;
  height: 1.95rem;
  padding: 0 0.6rem;
  display: inline-grid;
  place-content: center;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--brand);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 0.45rem 0.7rem;
  border-radius: 12px;
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 5.2rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.lede {
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.fine-print {
  margin-top: 1rem;
  font-size: 0.88rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  padding: 0.72rem 1.15rem;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 140ms ease, background-color 140ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-strong);
  color: #fff;
}

.btn-ghost {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.today-hours {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.quick-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.quick-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--border);
}

.quick-list li:first-child {
  border-top: 0;
}

.quick-list strong {
  color: var(--text);
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: start;
}

.feature-list {
  margin: 0;
  padding: 1.25rem;
  list-style: none;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.feature-list li {
  padding: 0.8rem 0;
  border-top: 1px solid var(--border);
}

.feature-list li:first-child {
  border-top: 0;
}

.team-intro {
  max-width: 64ch;
}

.pharmacist-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pharmacist-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.pharmacist-head {
  display: grid;
  grid-template-columns: 7.2rem 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.headshot-placeholder {
  width: 7.2rem;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  border: 1px solid #c5d9d1;
  background:
    linear-gradient(150deg, rgba(13, 118, 104, 0.2), rgba(8, 94, 83, 0.06)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.35) 0,
      rgba(255, 255, 255, 0.35) 6px,
      transparent 6px,
      transparent 12px
    ),
    #dfede7;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 0.6rem;
}

.headshot-image {
  width: 7.2rem;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  border: 1px solid #c5d9d1;
  object-fit: cover;
  object-position: center;
  display: block;
}

.headshot-placeholder span {
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #335147;
}

.pharmacist-head h3 {
  margin: 0;
  font-size: 1.12rem;
}

.pharmacist-role {
  margin: 0.15rem 0 0;
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.85rem;
}

.pharmacist-focus {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

th,
td {
  padding: 0.85rem 1rem;
  text-align: left;
}

th {
  width: 40%;
  color: var(--text);
  background: #f9fcfa;
  font-weight: 700;
}

tr + tr td,
tr + tr th {
  border-top: 1px solid var(--border);
}

address {
  font-style: normal;
  color: var(--text);
  margin-bottom: 1rem;
}

.map-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.map-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-frame {
  width: 100%;
  min-height: 390px;
  border: 0;
  border-radius: 14px;
  display: block;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #f0f7f4;
}

.footer-wrap {
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-wrap p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-phone a {
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}

.footer-phone a:hover,
.footer-phone a:focus-visible {
  color: var(--brand-strong);
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.bg-orb-a {
  width: 320px;
  height: 320px;
  top: -120px;
  left: -100px;
  background: rgba(13, 118, 104, 0.16);
}

.bg-orb-b {
  width: 260px;
  height: 260px;
  right: -100px;
  bottom: 40px;
  background: rgba(217, 119, 6, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 950px) {
  .hero-grid,
  .split,
  .map-wrap,
  .card-grid,
  .pharmacist-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4.4rem;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    gap: 0.55rem;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 0.5rem;
  }

  .brand strong {
    font-size: 0.8rem;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    min-width: 2.8rem;
    height: 1.75rem;
    padding: 0 0.45rem;
    font-size: 0.68rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.42rem 0.62rem;
  }

  .nav {
    position: absolute;
    right: 4vw;
    top: calc(100% + 0.35rem);
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 0.45rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: var(--surface-soft);
  }

  .section {
    padding: 4rem 0;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .brand strong {
    font-size: 0.74rem;
  }

  .nav-toggle {
    font-size: 0.85rem;
    padding: 0.38rem 0.55rem;
  }

  .pharmacist-head {
    grid-template-columns: 1fr;
  }

  .headshot-placeholder,
  .headshot-image {
    width: 100%;
    max-width: 9.5rem;
  }
}
