:root {
  --teal: #00a69c;
  --teal-deep: #007c75;
  --teal-soft: rgba(0, 166, 156, 0.09);
  --teal-softer: rgba(0, 166, 156, 0.045);
  --red: #ed1c24;
  --ink: #000000;
  --ink-soft: rgba(0, 0, 0, 0.68);
  --line: rgba(0, 0, 0, 0.1);
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 10px 35px rgba(0, 0, 0, 0.07);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 166, 156, 0.1), transparent 26rem),
    radial-gradient(circle at 5% 44%, rgba(0, 166, 156, 0.055), transparent 24rem),
    var(--white);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

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

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--teal-deep);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 6px rgba(237, 28, 36, 0.08);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 420;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.section-heading p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 92px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 7px 4px;
}

.brand img {
  width: 92px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
}

.main-nav a {
  position: relative;
  color: rgba(0, 0, 0, 0.74);
  font-size: 0.94rem;
  font-weight: 620;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 170ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 720;
  transition: border-color 170ms ease, background 170ms ease;
}

.language-switcher:hover {
  border-color: rgba(0, 166, 156, 0.5);
  background: var(--teal-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 21px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 740;
  line-height: 1.1;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, color 170ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(0, 166, 156, 0.22);
}

.button-primary:hover {
  background: var(--teal-deep);
  box-shadow: 0 16px 34px rgba(0, 166, 156, 0.25);
}

.button-secondary {
  border-color: rgba(0, 0, 0, 0.14);
  background: var(--white);
}

.button-secondary:hover {
  border-color: rgba(0, 166, 156, 0.42);
  background: var(--teal-soft);
}

.button svg,
.quick-link svg,
.mobile-action svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 72px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 10%;
  right: -110px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(0, 166, 156, 0.22);
  border-radius: 50%;
  content: "";
  animation: breathe 7s ease-in-out infinite;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 10%;
  bottom: 7%;
  width: 18px;
  height: 18px;
  background: var(--red);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 16px rgba(237, 28, 36, 0.06);
  animation: float 5.4s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  align-items: center;
  gap: clamp(52px, 7vw, 96px);
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.25rem);
  font-weight: 360;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-copy h1 span {
  color: var(--teal);
}

.hero-copy .lead {
  max-width: 630px;
  margin: 27px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.27rem);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 12px;
}

.hero-note {
  display: flex;
  align-items: center;
  margin-top: 26px;
  gap: 11px;
  color: rgba(0, 0, 0, 0.58);
  font-size: 0.9rem;
}

.hero-note::before {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.visual-orbit {
  position: absolute;
  inset: 8% 2% 4% 6%;
  border: 1px solid rgba(0, 166, 156, 0.2);
  border-radius: 50%;
  animation: rotate-slow 26s linear infinite;
}

.visual-orbit::before,
.visual-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.visual-orbit::before {
  top: 12%;
  right: 2%;
  width: 15px;
  height: 15px;
  background: var(--red);
  box-shadow: 0 0 0 10px rgba(237, 28, 36, 0.06);
}

.visual-orbit::after {
  bottom: 6%;
  left: 8%;
  width: 12px;
  height: 12px;
  background: var(--teal);
  box-shadow: 0 0 0 11px rgba(0, 166, 156, 0.08);
}

.pharmacy-card {
  position: absolute;
  top: 52%;
  left: 50%;
  width: min(88%, 430px);
  padding: 45px 42px 38px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(16px);
}

.pharmacy-card::before {
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  width: 110px;
  height: 110px;
  background: var(--teal);
  border-radius: 30px;
  content: "";
  opacity: 0.09;
  transform: rotate(12deg);
}

.pharmacy-card .logo-wrap {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(0, 166, 156, 0.07), rgba(255, 255, 255, 0.65));
  border-radius: 25px;
}

.pharmacy-card .logo-wrap img {
  width: 230px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  gap: 16px;
}

.card-meta strong {
  display: block;
  font-size: 1rem;
}

.card-meta span {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  gap: 7px;
  color: var(--teal-deep);
  background: var(--teal-soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 760;
  white-space: nowrap;
}

.status-pill::before {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  max-width: 245px;
  padding: 14px 17px;
  gap: 12px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  font-size: 0.85rem;
  font-weight: 690;
  animation: float 5.8s ease-in-out infinite;
  backdrop-filter: blur(14px);
}

.floating-card.one {
  top: 11%;
  left: 0;
}

.floating-card.two {
  right: -2%;
  bottom: 12%;
  animation-delay: -2.2s;
}

.floating-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 12px;
  font-weight: 800;
}

.floating-card.two .floating-icon {
  background: var(--red);
}

.quick-actions {
  position: relative;
  z-index: 4;
  padding: 0 0 86px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quick-link {
  display: flex;
  align-items: center;
  min-height: 118px;
  padding: 25px 26px;
  gap: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.quick-link:hover {
  border-color: rgba(0, 166, 156, 0.38);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.quick-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 16px;
}

.quick-link:last-child .quick-icon {
  color: var(--red);
  background: rgba(237, 28, 36, 0.07);
}

.quick-link strong {
  display: block;
  font-size: 1rem;
}

.quick-link span {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.services {
  padding: 106px 0;
  background: linear-gradient(180deg, var(--teal-softer), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(0, 166, 156, 0.08);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 255px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.service-card:hover {
  border-color: rgba(0, 166, 156, 0.3);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.service-card::after {
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 126px;
  height: 126px;
  border: 19px solid rgba(0, 166, 156, 0.06);
  border-radius: 50%;
  content: "";
}

.service-number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.service-card:nth-child(2) .service-number,
.service-card:nth-child(4) .service-number {
  background: var(--ink);
}

.service-card h3 {
  max-width: 220px;
  margin: 44px 0 10px;
  font-size: 1.28rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.store-preview {
  padding: 118px 0;
}

.store-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  min-height: 580px;
  padding: clamp(38px, 6vw, 76px);
  gap: clamp(46px, 7vw, 90px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.store-shell::before {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(0, 166, 156, 0.16);
  border-radius: 50%;
  content: "";
}

.store-shell::after {
  position: absolute;
  bottom: -120px;
  left: 32%;
  width: 300px;
  height: 300px;
  background: rgba(0, 166, 156, 0.08);
  border-radius: 50%;
  content: "";
  filter: blur(2px);
}

.store-copy,
.store-mockup {
  position: relative;
  z-index: 2;
}

.store-copy .eyebrow {
  color: var(--white);
}

.store-copy h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.7vw, 4.6rem);
  font-weight: 350;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.store-copy p {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.06rem;
}

.store-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.store-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
}

.store-list li::before {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 5px rgba(0, 166, 156, 0.12);
}

.store-mockup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-tile {
  min-height: 205px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  transition: transform 190ms ease, background 190ms ease;
}

.product-tile:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.product-shape {
  display: grid;
  min-height: 118px;
  place-items: center;
  background: var(--white);
  border-radius: 15px;
}

.product-shape::before {
  width: 44px;
  height: 78px;
  background: linear-gradient(180deg, var(--teal) 0 58%, rgba(0, 166, 156, 0.18) 58% 100%);
  border-radius: 11px 11px 15px 15px;
  content: "";
  box-shadow: 0 -10px 0 -5px var(--ink);
}

.product-tile:nth-child(2) .product-shape::before {
  width: 76px;
  height: 46px;
  background: var(--teal);
  border-radius: 50% 50% 18px 18px;
  box-shadow: inset 0 -12px rgba(0, 0, 0, 0.13);
}

.product-tile:nth-child(3) .product-shape::before {
  width: 62px;
  height: 70px;
  background: var(--white);
  border: 5px solid var(--teal);
  border-radius: 13px;
  box-shadow: inset 0 -25px var(--teal-soft);
}

.product-tile:nth-child(4) .product-shape::before {
  width: 68px;
  height: 68px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: inset 0 0 0 15px var(--white), inset 0 0 0 21px var(--teal);
}

.product-tile strong {
  display: block;
  margin-top: 15px;
  font-size: 0.93rem;
}

.product-tile span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.visit {
  padding: 40px 0 120px;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 18px;
}

.visit-card,
.map-card {
  min-height: 450px;
  border-radius: var(--radius-lg);
}

.visit-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(36px, 5vw, 62px);
  color: var(--white);
  background: var(--teal);
}

.visit-card .eyebrow {
  color: var(--white);
}

.visit-card h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  font-weight: 340;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.visit-details {
  display: grid;
  margin-top: 55px;
  gap: 22px;
}

.visit-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.visit-row span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit-row strong,
.visit-row a {
  font-size: 1rem;
  font-weight: 630;
}

.visit-row-hours {
  align-items: start;
}

.hours-content {
  min-width: 0;
}

.hours-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 12px;
  padding: 7px 11px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.hours-status::before {
  width: 8px;
  height: 8px;
  margin-right: 7px;
  background: var(--ink-soft);
  border-radius: 50%;
  content: "";
}

.hours-status[data-state="open"]::before {
  background: var(--teal-dark);
}

.hours-status[data-state="closing"]::before {
  background: #d98200;
}

.hours-status[data-state="closed"]::before {
  background: var(--red);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.hours-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-table tr:last-child {
  border-bottom: 0;
}

.hours-table th,
.hours-table td {
  padding: 8px 0;
  vertical-align: top;
  font-size: 0.92rem;
  line-height: 1.35;
}

.hours-table th {
  width: 48%;
  text-align: left;
  font-weight: 620;
}

.hours-table td {
  text-align: right;
  font-weight: 680;
}

.hours-table tr.is-today th,
.hours-table tr.is-today td {
  font-weight: 800;
}

.today-label {
  display: inline-block;
  margin-left: 7px;
  padding: 2px 6px;
  color: var(--teal-dark);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.map-card {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  background: var(--teal-soft);
  border: 1px solid rgba(0, 166, 156, 0.18);
}

.map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-card .button {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  box-shadow: var(--shadow-soft);
}

.site-footer {
  padding: 46px 0 100px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 88px;
}

.footer-brand p {
  max-width: 500px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.footer-meta {
  text-align: right;
  color: rgba(0, 0, 0, 0.56);
  font-size: 0.8rem;
}

.footer-meta a {
  text-decoration: underline;
  text-decoration-color: rgba(0, 166, 156, 0.4);
  text-underline-offset: 4px;
}

.mobile-actions {
  position: fixed;
  z-index: 70;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: none;
  grid-template-columns: 1fr 1fr;
  padding: 7px;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.mobile-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 8px;
  border-radius: 13px;
  font-size: 0.88rem;
  font-weight: 750;
}

.mobile-action:first-child {
  color: var(--white);
  background: var(--teal);
}

.mobile-action:last-child {
  background: var(--teal-soft);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.74; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 38px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .pharmacy-card {
    width: 95%;
    padding: 32px;
  }

  .pharmacy-card .logo-wrap {
    min-height: 220px;
  }

  .floating-card.one {
    left: -5%;
  }

  .floating-card.two {
    right: -8%;
  }

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

  .store-shell {
    grid-template-columns: 1fr;
  }

  .store-copy {
    max-width: 680px;
  }

  .store-mockup {
    max-width: 620px;
  }
}

@media (max-width: 790px) {
  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .header-inner {
    grid-template-columns: auto 1fr;
    min-height: 82px;
  }

  .brand img {
    width: 86px;
  }

  .main-nav,
  .header-actions .button {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .hero {
    padding: 66px 0 50px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(3.15rem, 15vw, 5.2rem);
  }

  .hero-visual {
    min-height: 530px;
  }

  .pharmacy-card {
    width: min(92%, 430px);
  }

  .floating-card.one {
    top: 7%;
    left: 0;
  }

  .floating-card.two {
    right: 0;
    bottom: 7%;
  }

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

  .quick-actions {
    padding-bottom: 72px;
  }

  .quick-link {
    min-height: 104px;
  }

  .services,
  .store-preview {
    padding: 82px 0;
  }

  .store-shell {
    padding: 38px 24px;
    border-radius: 27px;
  }

  .visit {
    padding: 15px 0 88px;
  }

  .visit-card,
  .map-card {
    min-height: 430px;
    border-radius: 27px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    text-align: left;
  }

  .mobile-actions {
    display: grid;
  }
}

@media (max-width: 540px) {
  .hero-buttons {
    display: grid;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-note {
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 485px;
  }

  .pharmacy-card {
    padding: 24px;
    border-radius: 27px;
  }

  .pharmacy-card .logo-wrap {
    min-height: 205px;
  }

  .pharmacy-card .logo-wrap img {
    width: 190px;
  }

  .card-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-card {
    max-width: 190px;
    padding: 11px 13px;
    font-size: 0.76rem;
  }

  .floating-card.one {
    top: 0;
  }

  .floating-card.two {
    bottom: 0;
  }

  .service-grid,
  .store-mockup {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 220px;
  }

  .store-mockup .product-tile:nth-child(n+3) {
    display: none;
  }

  .visit-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
