:root {
  --green: #2f7c36;
  --green-2: #42a24a;
  --violet: #5b4cc4;
  --violet-2: #7a66e8;
  --ink: #1d1b22;
  --cream: #f7f2ea;
  --sand: #efe6d9;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(27, 20, 8, 0.18);
  --shadow-soft: 0 14px 30px rgba(27, 20, 8, 0.12);
  --radius: 24px;
  --bg-1: #fdf8f1;
  --bg-2: #f7f2ea;
  --bg-3: #f2ebe1;
  --header-bg: rgba(247, 242, 234, 0.9);
  --muted: rgba(29, 27, 34, 0.6);
  --border: rgba(47, 124, 54, 0.08);
  --toggle-thumb: #ffffff;
  --accent: linear-gradient(130deg, rgba(66, 162, 74, 0.8), rgba(91, 76, 196, 0.8));
  --display-font: "Unbounded", "Yeseva One", "Times New Roman", serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f7f3ea;
    --cream: #14161c;
    --sand: #1e2027;
    --white: #23252d;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.25);
    --bg-1: #0f1014;
    --bg-2: #14161c;
    --bg-3: #1b1d24;
    --header-bg: rgba(20, 22, 28, 0.9);
    --muted: rgba(247, 243, 234, 0.65);
    --border: rgba(66, 162, 74, 0.2);
    --toggle-thumb: #f7f3ea;
    --accent: linear-gradient(130deg, rgba(66, 162, 74, 0.8), rgba(122, 102, 232, 0.8));
  }
}

html[data-theme="light"] {
  --ink: #1d1b22;
  --cream: #f7f2ea;
  --sand: #efe6d9;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(27, 20, 8, 0.18);
  --shadow-soft: 0 14px 30px rgba(27, 20, 8, 0.12);
  --bg-1: #fdf8f1;
  --bg-2: #f7f2ea;
  --bg-3: #f2ebe1;
  --header-bg: rgba(247, 242, 234, 0.9);
  --muted: rgba(29, 27, 34, 0.6);
  --border: rgba(47, 124, 54, 0.08);
  --toggle-thumb: #ffffff;
  --accent: linear-gradient(130deg, rgba(66, 162, 74, 0.8), rgba(91, 76, 196, 0.8));
}

html[data-theme="dark"] {
  --ink: #f7f3ea;
  --cream: #14161c;
  --sand: #1e2027;
  --white: #23252d;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.25);
  --bg-1: #0f1014;
  --bg-2: #14161c;
  --bg-3: #1b1d24;
  --header-bg: rgba(20, 22, 28, 0.9);
  --muted: rgba(247, 243, 234, 0.65);
  --border: rgba(66, 162, 74, 0.2);
  --toggle-thumb: #f7f3ea;
  --accent: linear-gradient(130deg, rgba(66, 162, 74, 0.8), rgba(122, 102, 232, 0.8));
}

html[data-theme="dark"] .map-warning {
  background: rgba(20, 22, 28, 0.92);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .map-warning {
    background: rgba(20, 22, 28, 0.92);
  }
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background-color: var(--bg-1);
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background-color: var(--bg-1);
  background: radial-gradient(circle at top left, var(--bg-1) 0%, var(--bg-2) 40%, var(--bg-3) 100%);
  line-height: 1.6;
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

.paw-pattern {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23000' fill-opacity='0.12'%3E%3Ccircle cx='20' cy='20' r='4'/%3E%3Ccircle cx='34' cy='16' r='4'/%3E%3Ccircle cx='48' cy='20' r='4'/%3E%3Ccircle cx='30' cy='34' r='7'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 140px 140px;
  background-repeat: repeat;
  mix-blend-mode: multiply;
  z-index: 0;
}

html[data-theme="dark"] .paw-pattern {
  opacity: 0.12;
  filter: invert(1);
  mix-blend-mode: screen;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .paw-pattern {
    opacity: 0.12;
    filter: invert(1);
    mix-blend-mode: screen;
  }
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
  position: relative;
}

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

.logo-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.logo-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo-text {
  width: min(230px, 42vw);
  height: auto;
  transition: filter 0.3s ease;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .logo-text {
    filter: brightness(0) invert(1);
  }
}

html[data-theme="dark"] .logo-text {
  filter: brightness(0) invert(1);
}


.nav-toggle {
  display: none;
  border: 1px solid rgba(47, 124, 54, 0.3);
  background: transparent;
  color: var(--green);
  padding: 8px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 600;
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-left: auto;
  min-width: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
  flex-shrink: 0;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: var(--sand);
  color: var(--ink);
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.theme-toggle-track {
  position: relative;
  width: 56px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(91, 76, 196, 0.18), rgba(47, 124, 54, 0.18));
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
}

.theme-toggle-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-toggle-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle-icon.moon svg {
  fill: currentColor;
  stroke: none;
}

.theme-toggle-thumb {
  position: absolute;
  top: 4px;
  left: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--toggle-thumb);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, background 0.35s ease;
}

.theme-toggle[data-theme="system"] .theme-toggle-thumb {
  transform: translateX(12px);
}

.theme-toggle[data-theme="light"] .theme-toggle-thumb {
  transform: translateX(0);
}

.theme-toggle[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(24px);
}

.theme-toggle[data-theme="light"] .theme-toggle-icon.sun,
.theme-toggle[data-theme="dark"] .theme-toggle-icon.moon {
  opacity: 1;
  transform: scale(1.08);
}

.theme-toggle[data-theme="system"] .theme-toggle-icon {
  opacity: 0.85;
}


.nav a {
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--green);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta-icon {
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--violet);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.nav-cta:hover .nav-cta-icon {
  animation: ring 0.6s ease;
}

.nav-cta:focus-visible {
  outline: 2px solid rgba(91, 76, 196, 0.5);
  outline-offset: 2px;
}

@keyframes ring {
  0% { transform: rotate(0deg) scale(1); }
  20% { transform: rotate(-12deg) scale(1.05); }
  40% { transform: rotate(10deg) scale(1.05); }
  60% { transform: rotate(-8deg) scale(1.05); }
  80% { transform: rotate(6deg) scale(1.02); }
  100% { transform: rotate(0deg) scale(1); }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 40;
}

body.menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  padding: 90px 0 60px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(66, 162, 74, 0.18), transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(91, 76, 196, 0.16), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--display-font);
  font-size: clamp(32px, 4vw, 52px);
  margin: 16px 0 12px;
  color: var(--ink);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  line-height: 1.1;
}

.lead {
  font-size: 18px;
  max-width: 520px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--white), var(--sand));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin: 16px 0;
  animation: badge-float 3s ease-in-out infinite;
}

.trust-badge span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sand);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: scale(0.8);
}

.btn.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(66, 162, 74, 0.5), 0 0 12px rgba(66, 162, 74, 0.3), var(--shadow);
  animation: glow-pulse 2s ease-in-out infinite;
}

.btn.ghost {
  border-color: var(--green);
  color: var(--green);
  background: transparent;
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover::after {
  opacity: 1;
  transform: scale(1);
}

.btn.ghost:hover {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 0 20px rgba(66, 162, 74, 0.4), var(--shadow-soft);
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 24px rgba(66, 162, 74, 0.5), 0 0 12px rgba(66, 162, 74, 0.3), var(--shadow);
  }
  50% {
    box-shadow: 0 0 32px rgba(66, 162, 74, 0.6), 0 0 16px rgba(66, 162, 74, 0.4), var(--shadow);
  }
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.meta-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

.meta-value {
  font-weight: 600;
}

.meta-value a {
  color: var(--violet);
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  background: color-mix(in srgb, var(--white) 85%, transparent);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  backdrop-filter: blur(16px);
  z-index: 2;
}

.hero-card::after {
  content: "";
  position: absolute;
  top: -24px;
  right: -12px;
  width: 120px;
  height: 120px;
  background: url("images/icon_purple.svg") no-repeat center / contain;
  opacity: 0.08;
  pointer-events: none;
}

.card-top {
  display: flex;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(91, 76, 196, 0.12);
  color: var(--violet);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tag.green {
  background: rgba(47, 124, 54, 0.12);
  color: var(--green);
}

.hero-card h2 {
  margin: 16px 0 8px;
  font-family: var(--display-font);
}

.card-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.card-list .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-2);
  display: inline-block;
  margin-right: 10px;
}

.card-list div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
}

.card-footer {
  background: var(--sand);
  border-radius: 18px;
  padding: 12px 16px;
  display: grid;
  gap: 6px;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  z-index: 1;
}

.hero-visual .hero-card {
  position: absolute;
  bottom: -24px;
  left: 12%;
  width: min(360px, 80%);
}

.hero-photo {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo.primary {
  width: 70%;
  height: 60%;
  top: 0;
  left: 0;
  transform: rotate(-2deg);
}

.hero-photo.secondary {
  width: 52%;
  height: 45%;
  bottom: 8%;
  right: 6%;
  transform: rotate(3deg);
}

.hero-glow {
  position: absolute;
  inset: auto 0 0 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(40px);
  opacity: 0.45;
  right: 15%;
  bottom: 20%;
  pointer-events: none;
  z-index: 0;
}

.hero-ticker {
  margin-top: 40px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
  background: color-mix(in srgb, var(--white) 70%, transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--ink);
  animation: ticker 18s linear infinite;
  width: max-content;
  will-change: transform;
}

.ticker-track span {
  white-space: nowrap;
  padding-right: 40px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-ticker {
  white-space: nowrap;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}

.card-brand {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(47, 124, 54, 0.08);
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-brand img {
  width: 24px;
  height: 24px;
}

.hours {
  font-weight: 600;
  color: var(--violet);
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 162, 74, 0.5), transparent 70%);
  filter: blur(0.5px);
  animation: float 8s ease-in-out infinite;
}

.hero-shapes .one {
  width: 220px;
  height: 220px;
  right: -60px;
  top: 40px;
}

.hero-shapes .two {
  width: 140px;
  height: 140px;
  left: -40px;
  bottom: 40px;
  animation-delay: 1s;
  background: radial-gradient(circle, rgba(91, 76, 196, 0.4), transparent 70%);
}

.hero-shapes .three {
  width: 180px;
  height: 180px;
  right: 30%;
  bottom: -80px;
  background: radial-gradient(circle, rgba(47, 124, 54, 0.35), transparent 70%);
  animation-delay: 2s;
}

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

.about {
  padding: 70px 0 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.about-copy h2 {
  font-family: var(--display-font);
  margin-bottom: 12px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.stat {
  background: var(--white);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  opacity: 0.6;
}

.stat-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
}

.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-panel {
  background: linear-gradient(160deg, rgba(91, 76, 196, 0.12), rgba(47, 124, 54, 0.12));
  padding: 26px;
  border-radius: var(--radius);
}

.about-panel h3 {
  margin-top: 0;
}

.about-panel ul {
  margin: 16px 0;
  padding-left: 18px;
}

.note {
  background: var(--white);
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  box-shadow: var(--shadow-soft);
}

.bento {
  padding: 60px 0;
  position: relative;
}

.bento::before,
.bento::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0.45;
  z-index: 0;
}

.bento::before {
  background: radial-gradient(circle, rgba(66, 162, 74, 0.25), transparent 70%);
  top: -80px;
  right: 10%;
}

.bento::after {
  background: radial-gradient(circle, rgba(91, 76, 196, 0.2), transparent 70%);
  bottom: -80px;
  left: 5%;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(150px, auto);
  grid-auto-flow: dense;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.bento-card {
  background: var(--white);
  border-radius: 22px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(122, 102, 232, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 22px rgba(66, 162, 74, 0.2), var(--shadow);
  border-color: var(--green);
}

.bento-card:hover::after {
  opacity: 1;
}

.bento-card.large {
  grid-column: span 2;
  grid-row: span 2;
  justify-content: space-between;
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-card.tall {
  grid-row: span 2;
}

.bento-card.highlight {
  background: linear-gradient(135deg, var(--green), var(--violet));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 0 28px rgba(66, 162, 74, 0.35), var(--shadow);
  grid-column: span 2;
}

.bento-card.highlight::after {
  background: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.28), transparent 55%);
  opacity: 1;
}

.bento-card.accent {
  background: linear-gradient(150deg, rgba(91, 76, 196, 0.18), rgba(47, 124, 54, 0.12));
}

.bento-card h3 {
  margin: 8px 0 6px;
  font-size: 16px;
}

.bento-card p {
  font-size: 13px;
  margin: 0;
  color: var(--muted);
}

.bento-card.highlight p {
  color: rgba(255, 255, 255, 0.85);
}

.bento-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--violet);
  font-weight: 600;
}

.bento-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.bento-stat {
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  display: block;
}

.bento-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.bento-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(47, 124, 54, 0.12);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.bento-card.highlight .bento-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.catalog {
  padding: 60px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  position: relative;
}

.section-head h2 {
  font-family: var(--display-font);
  margin: 0;
}

.section-head::after {
  content: "";
  width: 60px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 8px;
  flex-basis: 100%;
}

.section-head p {
  font-size: 17px;
  max-width: 520px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.catalog-card {
  background: var(--white);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.catalog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(122, 102, 232, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(66, 162, 74, 0.2), var(--shadow);
  border-color: var(--green);
}

.catalog-card:hover::after {
  opacity: 1;
}

.catalog-card h3 {
  margin-top: 0;
  color: var(--green);
  transition: color 0.3s ease;
}

.catalog-card:hover h3 {
  color: var(--violet);
}

.guide {
  padding: 60px 0;
  background: linear-gradient(140deg, rgba(66, 162, 74, 0.08), rgba(91, 76, 196, 0.08));
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.guide-card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.guide-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 20px;
  background: linear-gradient(130deg, rgba(66, 162, 74, 0.4), rgba(91, 76, 196, 0.4)) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.guide-card h3 {
  margin-top: 0;
  color: var(--green);
  transition: color 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 16px rgba(91, 76, 196, 0.2), var(--shadow);
  border-color: var(--violet);
}

.guide-card:hover h3 {
  color: var(--violet);
}

.guide-card:hover::before {
  opacity: 1;
}

.guide-note {
  margin-top: 20px;
  background: var(--sand);
  padding: 16px 20px;
  border-radius: 16px;
  font-size: 14px;
}

.steps {
  padding: 70px 0;
  background: linear-gradient(120deg, rgba(91, 76, 196, 0.06), rgba(66, 162, 74, 0.06));
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.step-card {
  background: var(--white);
  border-radius: 22px;
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(66, 162, 74, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(91, 76, 196, 0.2), var(--shadow);
  border-color: var(--violet);
}

.step-card:hover::after {
  opacity: 1;
}

.step-num {
  font-family: var(--display-font);
  font-size: 28px;
  color: var(--violet);
  margin-bottom: 10px;
}

.step-card h3 {
  margin-top: 0;
  color: var(--green);
}

.store-page {
  padding-top: 40px;
}

.store-hero {
  padding: 50px 0 30px;
}

.store-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--violet);
  margin-bottom: 12px;
}

.store-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 18px 0 24px;
}

.store-meta-item {
  background: var(--white);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow-soft);
  font-size: 13px;
}

.store-meta-item span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  color: var(--muted);
}

.store-hero-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.store-gallery {
  padding: 30px 0 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.pharmacy {
  padding: 70px 0;
  background: linear-gradient(120deg, rgba(247, 242, 234, 0.7), rgba(241, 236, 252, 0.7));
}

.pharmacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
}

.pharmacy-copy h2 {
  font-family: var(--display-font);
}

.pharmacy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pharmacy-tags span {
  background: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px dashed rgba(91, 76, 196, 0.4);
  font-size: 13px;
}

.pharmacy-card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pharmacy-points {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.pharmacy-points .icon {
  color: var(--violet);
  font-weight: 700;
  margin-right: 8px;
}

.pharmacy-points div {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.delivery {
  padding: 70px 0;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.delivery-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.delivery-highlight {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
}

.delivery-highlight span {
  background: rgba(47, 124, 54, 0.12);
  padding: 8px 16px;
  border-radius: 999px;
}

.delivery-note {
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(47, 124, 54, 0.12), rgba(91, 76, 196, 0.12));
}

.promo {
  padding: 70px 0;
  background: linear-gradient(130deg, rgba(66, 162, 74, 0.08), rgba(91, 76, 196, 0.12));
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.promo-copy h2 {
  font-family: var(--display-font);
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 16px;
}

.promo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.promo-tags span {
  background: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--border);
}

.promo-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/icon_purple.svg") no-repeat right 24px top 18px / 120px;
  opacity: 0.08;
  pointer-events: none;
}

.promo-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--violet);
}

.promo-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(47, 124, 54, 0.12);
  color: var(--green);
  font-weight: 600;
}

.promo-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  font-size: 14px;
}

.promo-list div {
  display: flex;
  align-items: center;
}

.promo-list .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-2);
  display: inline-block;
  margin-right: 8px;
}

.stores {
  padding: 70px 0;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.store-card {
  background: var(--white);
  border-radius: 20px;
  padding: 18px;
  border-left: 4px solid var(--green);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.store-card h3 {
  margin-top: 0;
  font-size: 16px;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(66, 162, 74, 0.25), var(--shadow);
  border-left-color: var(--violet);
}

.store-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(66, 162, 74, 0.25), var(--shadow);
  border-left-color: var(--violet);
}

.store-title-link {
  color: inherit;
  text-decoration: none;
  position: relative;
}

.store-title-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--green);
  opacity: 0;
  transform: scaleX(0.7);
  transform-origin: left;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.store-title-link:hover::after,
.store-title-link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.store-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.store-page-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
}

.store-page-link:hover {
  color: var(--green);
}

.store-route-link {
  font-size: 13px;
  color: var(--muted);
}

.store-route-link:hover,
.store-route-link:focus-visible {
  color: var(--violet);
}

.stores-note {
  margin-top: 24px;
  background: var(--sand);
  padding: 16px 20px;
  border-radius: 16px;
  font-size: 14px;
}

.map-section {
  padding: 70px 0;
  background: linear-gradient(120deg, rgba(91, 76, 196, 0.08), rgba(47, 124, 54, 0.08));
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.map-info h2 {
  font-family: var(--display-font);
  margin-top: 0;
}

.map-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  font-size: 14px;
}

.map-list span {
  background: var(--white);
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.map-note {
  font-size: 13px;
  color: var(--muted);
}

.map-box {
  background: var(--white);
  padding: 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  display: grid;
  gap: 12px;
}

.map-canvas {
  width: 100%;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
}

.map-canvas.is-idle {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(91, 76, 196, 0.16), transparent 45%),
    radial-gradient(circle at bottom left, rgba(47, 124, 54, 0.14), transparent 40%),
    linear-gradient(135deg, var(--bg-2), var(--sand));
}

.map-placeholder {
  display: grid;
  gap: 14px;
  padding: 4px 6px 8px;
}

.map-placeholder p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.map-placeholder .btn {
  justify-self: start;
}

.map-warning {
  position: absolute;
  inset: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.map-warning.is-visible {
  display: flex;
}

.map-canvas.is-dark {
  filter: brightness(0.8) contrast(1.1) saturate(0.8);
}

.seo {
  padding: 70px 0;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}

.seo-copy h2 {
  font-family: var(--display-font);
}

.seo-panel {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.seo-panel ul {
  margin: 16px 0;
  padding-left: 18px;
}

.seo-callout {
  background: var(--sand);
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
}

.faq {
  padding: 70px 0;
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--green);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--violet);
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14px;
}

.contacts {
  padding: 70px 0 90px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.contacts-card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contacts-card .phone {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  margin: 12px 0;
  color: var(--green);
}

.contacts-card .small {
  font-size: 14px;
}

.contacts-card .btn {
  margin-top: 12px;
}

.contacts-card .btn + .btn {
  margin-top: 8px;
}

.contact-mark {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-tags span {
  background: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.footer {
  padding: 26px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.footer-brand img:first-child {
  width: 46px;
  height: 46px;
}

.footer-brand img:last-child {
  width: min(200px, 45vw);
  height: auto;
}


.footer-info {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--green);
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--violet);
}

.breadcrumbs-separator {
  color: var(--muted);
  user-select: none;
}

.breadcrumbs-current {
  color: var(--ink);
  font-weight: 600;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
  box-shadow: var(--shadow);
  z-index: 100;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--violet);
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(91, 76, 196, 0.4), var(--shadow);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Mobile Bottom Navigation */
.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 8px 0;
  display: none;
  z-index: 90;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, transform 0.3s ease;
  min-width: 60px;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
  color: var(--green);
  transform: translateY(-2px);
}

.mobile-nav-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

@media (max-width: 768px) {
  .mobile-nav {
    display: block;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
  }
  
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }
  
  .scroll-to-top {
    bottom: calc(84px + env(safe-area-inset-bottom));
  }
}

/* Parallax Elements */
.parallax-layer {
  transition: transform 0.3s ease-out;
  will-change: transform;
}

/* Focus Styles for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.nav a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Skip to Main Content Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--green);
  color: var(--white);
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --border: rgba(0, 0, 0, 0.3);
  }
  
  .btn {
    border-width: 2px;
  }
  
  .store-card,
  .catalog-card,
  .guide-card {
    border-width: 2px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .parallax-layer {
    transform: none !important;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

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

@media (max-width: 1200px) {
  .nav {
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.4px;
  }

  .logo-text {
    width: min(200px, 40vw);
  }
}

@media (max-width: 1024px) {
  .nav {
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.3px;
  }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: var(--header-height, 76px);
    left: 50%;
    right: auto;
    margin: 12px auto 0;
    width: min(520px, 92vw);
    background: var(--white);
    flex-direction: column;
    align-items: center;
    padding: 18px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    font-size: 13px;
    opacity: 0;
    transform: translate(-50%, -8px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 80;
    max-height: calc(100vh - var(--header-height, 76px) - 24px);
    overflow-y: auto;
    margin-left: 0;
  }

  .nav.is-open {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    padding-top: 50px;
  }

  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .bento-card.large,
  .bento-card.wide,
  .bento-card.tall,
  .bento-card.highlight {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 40px 0 20px;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 8vw, 40px);
  }

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

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .hero-photo,
  .hero-visual .hero-card {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
  }

  .hero-photo.primary,
  .hero-photo.secondary {
    height: 220px;
  }

  .hero-glow {
    display: none;
  }

  .hero-ticker {
    margin-top: 24px;
  }

  .ticker-track {
    font-size: 10px;
    letter-spacing: 1px;
  }

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

  .catalog-grid,
  .stats,
  .pharmacy-tags,
  .contact-tags {
    gap: 12px;
  }

  .map-canvas {
    height: 300px;
  }

  .promo-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
  }

  .logo {
    flex: 1 1 100%;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .theme-toggle {
    font-size: 11px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-card {
    padding: 22px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .bento-card.large,
  .bento-card.wide,
  .bento-card.tall,
  .bento-card.highlight {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .logo-icon {
    width: 44px;
    height: 44px;
  }

  .logo-text {
    width: min(190px, 55vw);
  }

  .nav {
    padding: 16px;
  }

  .hero-card {
    padding: 20px;
  }

  .delivery-card,
  .contacts-card,
  .pharmacy-card {
    padding: 20px;
  }

  .map-canvas {
    height: 260px;
  }
}
