:root {
  --green-950: #0d2f25;
  --green-850: #164735;
  --green-700: #23704f;
  --green-500: #39a26f;
  --green-200: #cfe8d6;
  --green-100: #e1f2e7;
  --mint-100: #eaf7ef;
  --mint-50: #f6fbf7;
  --cream: #fffaf0;
  --ink: #17332a;
  --muted: #61736b;
  --line: rgba(13, 47, 37, 0.12);
  --shadow: 0 24px 70px rgba(13, 47, 37, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(35, 112, 79, 0.26), transparent 29rem),
    radial-gradient(circle at 88% 10%, rgba(22, 71, 53, 0.16), transparent 30rem),
    radial-gradient(circle at 18% 78%, rgba(57, 162, 111, 0.13), transparent 28rem),
    linear-gradient(135deg, #eef8ef 0%, #f8fbf3 42%, #e6f2e9 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(247, 253, 248, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, var(--green-850), var(--green-500));
  box-shadow: 0 10px 22px rgba(35, 112, 79, 0.22);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: white;
}

.brand-mark::before {
  width: 1.35rem;
  height: 0.32rem;
}

.brand-mark::after {
  width: 0.32rem;
  height: 1.35rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 0.1rem;
}

nav {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

nav a:hover {
  color: var(--green-700);
}

.header-call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  padding-left: 1.25rem;
  border-left: 1px solid var(--line);
  color: var(--green-950);
  font-size: 0.95rem;
  font-weight: 750;
}

.header-call span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

#services,
#pharmacist,
#hours,
#contact {
  scroll-margin-top: 6.25rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
  min-height: 620px;
  padding: 2.4rem 0 3.5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-950);
}

h1,
h2 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 6.4vw, 5.4rem);
}

h2 {
  font-size: clamp(1.85rem, 3.2vw, 3.25rem);
}

h3 {
  font-size: 1.04rem;
  font-weight: 750;
}

.hero-text {
  max-width: 650px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 760;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--green-950);
  color: white;
  box-shadow: 0 14px 30px rgba(13, 47, 37, 0.2);
}

.button.secondary {
  background: white;
  color: var(--green-950);
  border: 1px solid var(--line);
}

.button.instagram {
  background: rgba(225, 242, 231, 0.72);
  color: var(--green-850);
  border: 1px solid rgba(35, 112, 79, 0.18);
  box-shadow: 0 12px 28px rgba(35, 112, 79, 0.1);
}

.visit-card,
.hours-card,
.contact-card,
.services-grid article {
  background: rgba(250, 255, 249, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.visit-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.2rem);
  border-radius: 2rem;
}

.visit-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% 30%;
  height: 260px;
  background: radial-gradient(circle, rgba(57, 162, 111, 0.22), transparent 70%);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  color: var(--green-850);
  background: var(--mint-100);
  font-weight: 760;
  font-size: 0.82rem;
}

.status-pill span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green-500);
}

.visit-card h2 {
  margin-top: 1.4rem;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
}

.visit-card p {
  color: var(--muted);
  line-height: 1.7;
}

.quick-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.quick-grid div {
  padding: 1rem;
  border-radius: 1.1rem;
  background: linear-gradient(145deg, rgba(225, 242, 231, 0.72), rgba(246, 251, 247, 0.86));
  border: 1px solid var(--line);
}

.quick-grid small,
.quick-grid strong {
  display: block;
}

.quick-grid small {
  color: var(--muted);
  font-size: 0.74rem;
  margin-bottom: 0.25rem;
}

.quick-grid strong {
  font-size: 0.88rem;
  font-weight: 760;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 4.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--line);
}

.trust-strip div {
  padding: 1.1rem 1.3rem;
  background: rgba(239, 249, 241, 0.82);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.services-section {
  padding: 1rem 0 4rem;
  position: relative;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.services-grid article {
  min-height: 230px;
  padding: 1.35rem;
  border-radius: 1.35rem;
  background: linear-gradient(160deg, rgba(250, 255, 249, 0.92), rgba(225, 242, 231, 0.66));
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.services-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(13, 47, 37, 0.13);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.3rem;
  border-radius: 1rem;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 900;
}

.services-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.service-list {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0 0;
  padding: 0;
  color: var(--muted);
  line-height: 1.55;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 1rem;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--green-500);
}

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-band {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-top: 1.5rem;
  margin-bottom: 4.5rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  border-radius: 2rem;
  background: var(--green-950);
  color: white;
  box-shadow: var(--shadow);
}

.feature-band h2,
.feature-band .eyebrow {
  color: white;
}

.feature-band p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  padding-bottom: 5rem;
}

.hours-card,
.contact-card {
  padding: clamp(1.35rem, 4vw, 2rem);
  border-radius: 1.6rem;
}

dl {
  margin: 1.6rem 0 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 850;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.75;
}

.location-highlight {
  display: grid;
  place-items: center;
  min-height: 230px;
  margin-top: 1.5rem;
  border-radius: 1.35rem;
  color: var(--green-850);
  font-weight: 850;
  text-align: center;
  background:
    linear-gradient(45deg, rgba(35, 112, 79, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(35, 112, 79, 0.08) 25%, transparent 25%),
    var(--mint-50);
  background-size: 28px 28px;
  border: 1px solid var(--line);
}

.location-highlight a {
  display: grid;
  gap: 0.45rem;
  color: var(--green-850);
}

.location-highlight span {
  color: var(--muted);
  font-size: 0.82rem;
}

.location-highlight strong {
  font-size: 1.05rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  background: var(--green-950);
  color: white;
}

.footer-note {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.68);
}

footer a {
  font-weight: 800;
  color: white;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero,
  .feature-band,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
  }

  .header-call {
    display: none;
  }

  h1 {
    font-size: 3.2rem;
  }

  .services-grid,
  .quick-grid {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }
}
