:root {
  --ink: #141713;
  --muted: #4f584d;
  --paper: #f7f5ee;
  --white: #fffdf8;
  --leaf: #2f6f42;
  --leaf-dark: #173f28;
  --gold: #c8a24a;
  --line: rgba(20, 23, 19, 0.15);
  --shadow: 0 24px 70px rgba(20, 23, 19, 0.18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

body.locked {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.page-header,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 12px 32px rgba(20, 23, 19, 0.08);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 122px;
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  border-radius: 8px;
  padding: 10px 4px;
  line-height: 1.2;
}

.header-cta {
  border: 1px solid currentColor;
  border-radius: 8px;
  min-height: 48px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.15;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.header-actions .btn {
  min-height: 48px;
  padding: 12px 18px;
  white-space: nowrap;
}

.site-header:not(.scrolled):not(.page-header):not(.menu-open) .header-actions .btn.outline {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.65);
  background: rgba(255, 253, 248, 0.1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 190px clamp(18px, 6vw, 86px) 88px;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 16, 10, 0.9), rgba(9, 16, 10, 0.62) 48%, rgba(9, 16, 10, 0.24)),
    linear-gradient(0deg, rgba(9, 16, 10, 0.68), transparent 46%),
    url("assets/hero.webp") center / cover;
  transform: scale(1.04);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

h1 {
  font-size: 6.8rem;
}

h2 {
  font-size: 4.7rem;
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 14px;
  color: rgba(255, 253, 248, 0.94);
  font-size: 1.28rem;
  line-height: 1.55;
}

.hero-location {
  margin: 0 0 28px;
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.35;
}

.hero-actions,
.store-actions,
.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .btn {
  min-width: min(100%, 220px);
  min-height: 64px;
  padding: 16px 28px;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 14px 22px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  cursor: pointer;
}

.btn:hover,
.location-item:hover,
.store-select:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--white);
  background: var(--leaf);
}

.btn.light {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.6);
  background: rgba(255, 253, 248, 0.12);
}

.btn.outline,
.btn.quiet {
  color: var(--leaf-dark);
  border-color: rgba(23, 63, 40, 0.34);
  background: var(--white);
}

.store-strip {
  position: fixed;
  top: 82px;
  left: 0;
  right: 0;
  z-index: 25;
  display: block;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(20, 23, 19, 0.07);
}

.store-select {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 12px;
  align-items: baseline;
  justify-content: start;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  font-size: 1.22rem;
  text-align: left;
}

.store-select > span:first-child {
  grid-column: 1;
}

.store-select .store-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}

.store-select .store-meta a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.store-select > span:last-child {
  grid-column: 2;
  grid-row: 1;
  color: var(--leaf);
  font-size: 0.84rem;
}

.section {
  padding: clamp(88px, 11vw, 156px) clamp(18px, 6vw, 86px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 7vw, 94px);
  align-items: end;
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.65;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 22px;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--leaf);
}

.light-list {
  color: rgba(255, 253, 248, 0.82);
}

.light-list li::before {
  background: var(--gold);
}

.intro-grid p,
.feature-copy p,
.split-copy p,
.site-footer p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.feature-band,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  min-height: 620px;
  background: var(--white);
}

.feature-band img,
.split-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy,
.split-copy {
  align-self: center;
  padding: clamp(48px, 8vw, 104px);
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  border: 0;
  padding: 0;
  color: var(--leaf);
  background: transparent;
  font-weight: 900;
  border-bottom: 2px solid currentColor;
  cursor: pointer;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 46px;
}

.location-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.location-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 160ms ease;
}

.location-item h3 {
  margin: 0 0 6px;
  font-size: 2rem;
  line-height: 1.15;
}

.location-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.location-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-bar div {
  padding: clamp(22px, 4vw, 34px) clamp(18px, 5vw, 56px);
  background: var(--white);
}

.trust-bar strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.25;
}

.trust-bar span {
  color: var(--muted);
  line-height: 1.55;
}

.categories {
  background: var(--white);
}

.reviews {
  background: var(--paper);
}

.review-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.review-item {
  display: grid;
  align-content: space-between;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0;
}

.review-item p {
  margin: 16px 0 20px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.55;
}

.review-item span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.category-item {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.category-item:hover {
  transform: translateY(-2px);
  border-color: var(--leaf);
  background: var(--white);
}

.category-item span {
  display: block;
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 900;
}

.category-item small {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.deals {
  background: #dfeaf2;
}

.deals-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.deals-hero h2 {
  max-width: 980px;
}

.deals-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.weekly-deals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.deal-item {
  position: relative;
  min-height: 148px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.proof {
  background: var(--white);
}

.page-gallery {
  background: var(--white);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.photo-grid figure {
  margin: 0;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.photo-grid figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.deal-item.active {
  color: var(--white);
  border-color: var(--leaf-dark);
  background: var(--leaf-dark);
  box-shadow: 0 20px 54px rgba(20, 23, 19, 0.18);
  transform: translateY(-4px);
}

.deal-item h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.deal-item p {
  margin: 0;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.55;
}

.deal-item.active p,
.deal-item.active small {
  color: rgba(255, 253, 248, 0.82);
}

.deal-item small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.today-badge {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.deals-cta {
  width: fit-content;
}

.split-section {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--leaf-dark);
  color: var(--white);
}

.split-copy p {
  color: rgba(255, 253, 248, 0.78);
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

summary {
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.35;
}

details p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  padding: 58px clamp(18px, 6vw, 86px);
  color: var(--white);
  background: #101410;
}

.site-footer p {
  color: rgba(255, 253, 248, 0.78);
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-main {
  padding-top: 82px;
  background: var(--paper);
}

.page-hero {
  padding: clamp(92px, 11vw, 162px) clamp(18px, 6vw, 86px) clamp(70px, 8vw, 108px);
  background:
    linear-gradient(90deg, rgba(9, 16, 10, 0.9), rgba(9, 16, 10, 0.58)),
    var(--page-hero-image, url("assets/hero.webp")) center / cover;
  color: var(--white);
}

.page-hero.farm-page {
  background:
    linear-gradient(90deg, rgba(13, 32, 21, 0.94), rgba(13, 32, 21, 0.68)),
    var(--page-farm-image, url("assets/flower.webp")) center / cover;
}

.page-hero h1 {
  max-width: 1120px;
  font-size: 5.8rem;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 253, 248, 0.94);
  font-size: 1.24rem;
  line-height: 1.6;
}

.page-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: clamp(54px, 8vw, 104px) clamp(18px, 6vw, 86px);
}

.page-detail h2 {
  margin-bottom: 18px;
  font-size: 3.2rem;
}

.page-detail p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.page-detail a {
  color: var(--leaf-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.legal {
  grid-column: 1 / -1;
  margin-top: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.16);
}

.age-gate,
.store-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(16, 20, 16, 0.72);
  backdrop-filter: blur(14px);
}

.age-gate.active,
.store-modal.active {
  display: grid;
}

.age-panel,
.modal-panel {
  width: min(100%, 590px);
  min-width: 0;
  max-height: min(760px, calc(100svh - 40px));
  overflow: auto;
  padding: clamp(28px, 6vw, 48px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.age-logo {
  width: 160px;
  margin-bottom: 18px;
}

.age-panel h1,
.modal-panel h2 {
  color: var(--ink);
  font-size: 3.6rem;
  line-height: 1.05;
}

.age-panel p {
  color: var(--muted);
}

.modal-close {
  float: right;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-size: 1.7rem;
}

.use-location {
  width: 100%;
  margin: 12px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--leaf-dark);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.store-search {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 900;
}

.store-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.view-toggle {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.view-toggle button {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--leaf-dark);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.view-toggle button.active {
  color: var(--white);
  border-color: var(--leaf);
  background: var(--leaf);
}

.modal-store {
  width: 100%;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  text-align: left;
  background: var(--paper);
}

.modal-store strong {
  display: block;
  font-size: 1.15rem;
}

.modal-store span {
  color: var(--muted);
}

.modal-store.active {
  border-color: var(--leaf);
  outline: 2px solid rgba(47, 111, 66, 0.16);
}

.store-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.store-card-head span,
.modal-store address,
.modal-store > span {
  display: block;
  color: var(--muted);
  font-style: normal;
}

.store-badge {
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--white) !important;
  background: var(--leaf);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.store-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.store-card-actions .btn {
  min-height: 46px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.btn.disabled {
  color: var(--muted);
  border-color: var(--line);
  background: rgba(20, 23, 19, 0.05);
  cursor: not-allowed;
}

.set-store {
  width: 100%;
  margin-top: 12px;
  border: 1px solid var(--leaf);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  background: var(--leaf);
  cursor: pointer;
  font-weight: 900;
}

.modal-store.active .set-store {
  color: var(--leaf-dark);
  background: transparent;
}

.map-canvas {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(47, 111, 66, 0.08), rgba(200, 162, 74, 0.1)),
    radial-gradient(circle at 25% 35%, rgba(47, 111, 66, 0.16), transparent 17%),
    radial-gradient(circle at 63% 31%, rgba(47, 111, 66, 0.12), transparent 16%),
    radial-gradient(circle at 58% 82%, rgba(47, 111, 66, 0.13), transparent 18%),
    var(--paper);
}

.map-canvas::before,
.map-canvas::after {
  content: "";
  position: absolute;
  background: rgba(20, 23, 19, 0.14);
  transform-origin: center;
}

.map-canvas::before {
  width: 120%;
  height: 3px;
  left: -10%;
  top: 48%;
  transform: rotate(-12deg);
}

.map-canvas::after {
  width: 3px;
  height: 120%;
  left: 52%;
  top: -10%;
  transform: rotate(9deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -50%);
  border: 2px solid var(--white);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--white);
  background: var(--leaf-dark);
  box-shadow: 0 12px 28px rgba(20, 23, 19, 0.22);
  cursor: pointer;
  font-weight: 900;
}

.map-pin.active {
  background: var(--gold);
  color: var(--ink);
}

.map-label {
  position: absolute;
  color: rgba(20, 23, 19, 0.42);
  font-weight: 900;
  text-transform: uppercase;
}

.map-label.eugene {
  left: 17%;
  top: 16%;
}

.map-label.springfield {
  right: 13%;
  top: 18%;
}

.map-label.cottage {
  left: 46%;
  bottom: 8%;
}

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

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

@keyframes heroDrift {
  from { transform: scale(1.04) translateX(0); }
  to { transform: scale(1.09) translateX(18px); }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 86px;
    padding-block: 12px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

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

  .header-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
    order: 3;
    gap: 8px;
  }

  .header-actions .btn {
    flex: 1;
  }

  .site-header.menu-open .main-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .site-header.menu-open .main-nav a {
    border-top: 1px solid var(--line);
    padding: 14px 0;
  }

  .hero {
    min-height: 88svh;
    padding-top: 226px;
    padding-bottom: 62px;
  }

  h1 {
    font-size: 4.45rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .hero-copy {
    font-size: 1.16rem;
  }

  .page-hero h1 {
    font-size: 4rem;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1.14rem;
  }

  .page-detail h2 {
    font-size: 2.55rem;
  }

  .intro-grid,
  .deals-hero,
  .trust-bar,
  .photo-grid,
  .feature-band,
  .split-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .page-detail {
    grid-template-columns: 1fr;
  }

  .store-actions,
  .location-links {
    justify-content: flex-start;
  }

  .feature-band img {
    min-height: 340px;
  }

  .split-section img {
    min-height: 320px;
  }

  .location-item {
    grid-template-columns: 1fr;
  }

  .weekly-deals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-item h3,
  .category-item span {
    font-size: 1.75rem;
  }

  .age-panel h1,
  .modal-panel h2 {
    font-size: 3rem;
  }
}

@media (max-width: 520px) {
  body {
    padding-bottom: 84px;
  }

  .age-gate,
  .store-modal {
    justify-items: stretch;
    padding: 12px;
  }

  .brand img {
    width: 104px;
  }

  .site-header {
    gap: 10px;
  }

  .header-actions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 45;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px;
    border: 1px solid rgba(20, 23, 19, 0.12);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 14px 34px rgba(20, 23, 19, 0.2);
    backdrop-filter: blur(14px);
  }

  .header-actions .btn {
    min-height: 52px;
    padding: 12px 10px;
    font-size: 0.92rem;
  }

  .site-header:not(.scrolled):not(.page-header):not(.menu-open) .header-actions .btn.outline {
    color: var(--leaf-dark);
    border-color: rgba(23, 63, 40, 0.34);
    background: var(--white);
  }

  .page-header .header-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 45;
    display: inline-flex;
    justify-content: center;
    min-height: 56px;
    color: var(--white);
    border-color: var(--leaf);
    background: var(--leaf);
    box-shadow: 0 14px 34px rgba(20, 23, 19, 0.2);
  }

  .store-strip {
    top: 86px;
    padding-block: 10px;
  }

  .store-select {
    grid-template-columns: 1fr;
    gap: 4px;
    font-size: 1.08rem;
  }

  .store-select > span:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-actions .btn,
  .store-actions .btn,
  .age-actions .btn {
    width: 100%;
    min-height: 60px;
  }

  .hero {
    min-height: 86svh;
    padding: 192px 18px 92px;
  }

  h1 {
    font-size: 3.05rem;
    line-height: 1.05;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 1.05rem;
  }

  .hero-location {
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .section {
    padding: 72px 18px;
  }

  .deals-hero {
    gap: 18px;
  }

  .deals-cta,
  .deals-hero .btn {
    width: 100%;
  }

  .feature-copy,
  .split-copy {
    padding: 44px 18px;
  }

  .page-main {
    padding-top: 86px;
  }

  .page-hero {
    padding: 76px 18px 64px;
  }

  .page-hero h1 {
    font-size: 2.75rem;
  }

  .page-detail {
    padding: 62px 18px;
  }

  .page-detail h2 {
    font-size: 2.15rem;
  }

  .weekly-deals {
    grid-template-columns: 1fr;
  }

  .category-list {
    grid-template-columns: 1fr;
  }

  .review-list {
    grid-template-columns: 1fr;
  }

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

  .location-links,
  .store-card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .location-links .btn,
  .store-card-actions .btn {
    width: 100%;
  }

  .age-panel,
  .modal-panel {
    width: 100%;
    max-width: none;
    overflow-x: hidden;
    padding: 24px 18px;
  }

  .age-panel h1,
  .modal-panel h2 {
    font-size: 2.1rem;
    overflow-wrap: normal;
    text-wrap: wrap;
  }

  .age-panel p,
  .modal-panel p {
    line-height: 1.6;
  }

  .age-actions {
    display: grid;
  }

  .map-canvas {
    min-height: 330px;
  }

  .map-pin {
    padding: 9px 10px;
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
