:root {
  --ink: #23332e;
  --ink-soft: #4c5b55;
  --paper: #fffdf6;
  --paper-warm: #fff8e7;
  --cream: #ffedbd;
  --sun: #f5c85b;
  --coral: #dd6c52;
  --coral-dark: #913c2b;
  --sky: #bde5e5;
  --teal: #286f70;
  --teal-dark: #174f50;
  --sage: #cce0bd;
  --wood: #80583d;
  --line: #d9c9aa;
  --white: #fff;
  --shadow: 0 22px 60px rgba(35, 51, 46, .14);
  --shadow-soft: 0 12px 34px rgba(35, 51, 46, .1);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1160px;
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(245, 200, 91, .13), transparent 25rem),
    radial-gradient(circle at 88% 28%, rgba(189, 229, 229, .16), transparent 28rem),
    var(--paper);
  color: var(--ink);
  font: 400 1rem/1.65 var(--sans);
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-underline-offset: .18em; }

button, input, select, textarea { font: inherit; }

h1, h2, h3 {
  margin: 0 0 .85rem;
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.025em;
  text-wrap: balance;
}

h1 { font-size: clamp(3.15rem, 8vw, 6.6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.55rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

p { margin: 0 0 1rem; }

.container {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
}

.narrow { max-width: 760px; }
.muted { color: var(--ink-soft); }
.center { text-align: center; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: .75rem;
  left: .75rem;
  transform: translateY(-160%);
  border: 3px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: .75rem 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s ease;
}

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

:focus-visible {
  outline: 4px solid #0c7f80;
  outline-offset: 4px;
}

.eyebrow {
  margin-bottom: .9rem;
  color: var(--coral-dark);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--light { color: var(--cream); }

.section { padding: clamp(3rem, 5vw, 4.75rem) 0; }
.section--compact { padding: clamp(2rem, 4vw, 3.25rem) 0; }

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.section-heading p {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid rgba(128, 88, 61, .2);
  background: rgba(255, 253, 246, .96);
  box-shadow: 0 4px 20px rgba(35, 51, 46, .05);
  backdrop-filter: blur(14px);
}

.utility-bar {
  background: var(--ink);
  color: var(--white);
  font-size: .76rem;
}

.utility-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.utility-inner span { color: #f4f0e7; }
.utility-inner a { color: var(--cream); font-weight: 800; }

.nav {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  object-fit: cover;
}

.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: .2rem;
  color: var(--ink-soft);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
}

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

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .64rem .78rem;
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--cream);
  color: var(--ink);
}

.nav-links .nav-shop-hop {
  margin-left: .35rem;
  border: 2px solid var(--ink);
  background: var(--sun);
  box-shadow: 3px 3px 0 var(--ink);
}

.nav-links .nav-shop-hop:hover {
  background: var(--sky);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}

.menu-button {
  min-width: 48px;
  min-height: 44px;
  display: none;
  align-items: center;
  gap: .55rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  padding: .55rem .78rem;
  font-size: .82rem;
  font-weight: 850;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 17px;
  height: 2px;
  display: block;
  border-radius: 99px;
  background: currentColor;
  transition: transform .15s ease, opacity .15s ease;
}

.menu-icon { position: relative; }
.menu-icon::before, .menu-icon::after { position: absolute; content: ""; left: 0; }
.menu-icon::before { top: -5px; }
.menu-icon::after { top: 5px; }
.menu-button[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-button[aria-expanded="true"] .menu-icon::before { top: 0; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-icon::after { top: 0; transform: rotate(-45deg); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: .72rem 1.05rem;
  font-size: .9rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 rgba(35, 51, 46, .12);
}

.button.primary { background: var(--teal-dark); color: var(--white); border-color: var(--teal-dark); }
.button.sunny { background: var(--sun); color: var(--ink); }
.button.light { border-color: var(--white); color: var(--white); }
.button.ghost { border-color: var(--line); background: var(--white); }

.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }

.home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(255, 237, 189, .86), rgba(255, 253, 246, .7) 52%, rgba(189, 229, 229, .68)),
    var(--paper-warm);
  padding: clamp(3.4rem, 7vw, 6.5rem) 0;
}

.home-hero::before,
.home-hero::after {
  position: absolute;
  border: 2px solid rgba(35, 51, 46, .12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.home-hero::before { width: 360px; height: 360px; top: -210px; left: 38%; }
.home-hero::after { width: 260px; height: 260px; right: -100px; bottom: -150px; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.hero-copy h1 { max-width: 720px; }

.hero-copy > p {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.27rem);
}

.finders-note {
  width: fit-content;
  margin-top: 1.75rem;
  border-left: 5px solid var(--coral);
  background: rgba(255, 255, 255, .74);
  padding: .8rem 1rem;
  color: var(--ink-soft);
  font-size: .82rem;
  font-weight: 750;
}

.hero-store-panel { margin: 0; overflow: hidden; border: 3px solid var(--ink); border-radius: var(--radius-lg); background: var(--white); box-shadow: 14px 14px 0 var(--sun), var(--shadow); }
.hero-store-images { position:relative; height:clamp(320px,36vw,500px); overflow:hidden; }
.hero-store-images img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; opacity:0; animation:heroRotate 15s infinite; animation-fill-mode:both; }
.hero-store-images img:first-child { opacity:1; }
.hero-store-images img:nth-child(1){animation-delay:0s}.hero-store-images img:nth-child(2){animation-delay:5s}.hero-store-images img:nth-child(3){animation-delay:10s}
@keyframes heroRotate { 0%,30%{opacity:1} 36%,94%{opacity:0} 100%{opacity:1} }
.hero-store-panel figcaption { display: grid; gap: .15rem; padding: .85rem 1rem; border-top: 2px solid var(--ink); }
.hero-store-panel figcaption strong { font-family: var(--font-display); }
.hero-store-panel figcaption span { color: var(--ink-soft); font-size: .84rem; }

.hero-route { min-height: clamp(360px, 38vw, 500px); }

.store-photo-card {
  width: min(100%, 430px);
  margin: 0 0 2.25rem auto;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--sky);
  overflow: hidden;
}

.store-photo-crop {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}

.store-photo-crop img {
  width: 132%;
  max-width: none;
  height: 132%;
  object-fit: cover;
  object-position: left top;
}

.store-photo-card figcaption {
  display: grid;
  gap: .15rem;
  border-top: 2px solid var(--ink);
  padding: .75rem .9rem;
}

.store-photo-card figcaption strong { font-family: var(--display); font-size: 1.05rem; }
.store-photo-card figcaption span { color: var(--ink-soft); font-size: .78rem; }

.browse-section { background: linear-gradient(115deg, rgba(255, 240, 194, .45), rgba(223, 244, 242, .5)); }
.browse-intro { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); align-items: center; gap: clamp(2rem, 5vw, 4.5rem); margin-bottom: clamp(2rem, 4vw, 3rem); }
.browse-intro .section-heading { margin: 0; }
.browse-intro .store-photo-card { width: 100%; margin: 0; box-shadow: 10px 10px 0 var(--sun); }
.browse-intro .store-photo-crop { aspect-ratio: 16 / 10; }
.browse-intro .store-photo-crop img { width: 115%; height: 115%; object-position: center 38%; }

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

.discovery-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 6px 6px 0 var(--ink);
}

.discovery-card:nth-child(1) { background: var(--cream); transform: rotate(-.4deg); }
.discovery-card:nth-child(2) { background: var(--sky); transform: rotate(.45deg); }
.discovery-card:nth-child(3) { background: var(--sage); transform: rotate(-.25deg); }

.card-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  font-size: .78rem;
  font-weight: 900;
}

.discovery-card h3 { margin-top: 2rem; }
.discovery-card p { margin: 0; color: var(--ink-soft); }

.shop-hop-preview {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 0 0, rgba(221, 108, 82, .17), transparent 26rem),
    radial-gradient(circle at 100% 100%, rgba(189, 229, 229, .6), transparent 30rem),
    var(--paper-warm);
}

.shop-hop-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.shop-hop-image {
  position: relative;
  display: block;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--coral), var(--shadow-soft);
  overflow: hidden;
}

.shop-hop-image img { width: 100%; aspect-ratio: 14 / 9; object-fit: cover; }
.shop-hop-image .shop-hop-cover {
  object-fit: contain;
  padding: clamp(.75rem, 3vw, 1.5rem);
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,.8), transparent 10rem),
    linear-gradient(135deg, var(--sky), var(--sun-soft));
}

.shop-hop-image::after {
  position: absolute;
  right: .8rem;
  bottom: .8rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--sun);
  padding: .48rem .68rem;
  color: var(--ink);
  content: "Open guide →";
  font-size: .74rem;
  font-weight: 900;
}

.shop-hop-copy p { max-width: 600px; color: var(--ink-soft); font-size: 1.06rem; }

.addition-note {
  margin: 1.35rem 0 0;
  border-left: 4px solid var(--teal);
  padding-left: 1rem;
  color: var(--ink-soft);
  font-size: .88rem;
}

.route-band { background: var(--ink); color: var(--white); }

.route-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.route-copy p { max-width: 550px; color: #d9e2dd; }

.route-map {
  min-height: 360px;
  border: 2px solid rgba(255, 255, 255, .65);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.route-map iframe { display: block; width: 100%; height: 100%; min-height: 430px; border: 0; }

.online-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.online-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  border-right: 1px solid var(--line);
  padding: 1.5rem;
  text-decoration: none;
}

.online-card:last-child { border-right: 0; }
.online-card:hover { background: var(--paper-warm); }
.online-card span { color: var(--ink-soft); font-size: .84rem; }
.online-card strong { display: flex; justify-content: space-between; gap: 1rem; font-family: var(--display); font-size: 1.25rem; }

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, var(--cream), rgba(255, 253, 246, .9) 55%, var(--sky));
  padding: clamp(3.6rem, 7vw, 6rem) 0;
}

.page-hero::after {
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: -210px;
  border: 3px dashed rgba(35, 51, 46, .16);
  border-radius: 50%;
  content: "";
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.page-hero p { max-width: 650px; color: var(--ink-soft); font-size: clamp(1.06rem, 2vw, 1.2rem); }

.page-hero--simple .page-hero-grid { grid-template-columns: minmax(0, 720px) minmax(280px, 1fr); }

.page-photo-panel { margin: 0; overflow: hidden; border: 2px solid var(--ink); border-radius: var(--radius-lg); background: var(--white); box-shadow: 9px 9px 0 var(--sun); }
.page-photo-panel img { width: 100%; height: clamp(250px, 30vw, 390px); object-fit: cover; object-position: center 34%; }
.page-photo-panel figcaption { border-top: 2px solid var(--ink); padding: .7rem .9rem; color: var(--ink-soft); font-size: .82rem; font-weight: 800; }

.mini-route {
  position: relative;
  min-height: 230px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle, rgba(35, 51, 46, .16) 0 2px, transparent 3px) 0 0 / 34px 34px,
    var(--paper);
  box-shadow: 9px 9px 0 var(--sun);
  overflow: hidden;
}

.mini-route::before {
  position: absolute;
  width: 65%;
  height: 45%;
  left: 18%;
  top: 25%;
  border: 3px dashed var(--teal);
  border-radius: 50%;
  content: "";
  transform: rotate(-8deg);
}

.mini-route__pin {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  top: 34%;
  left: 25%;
  border: 4px solid var(--ink);
  border-radius: 50% 50% 50% 0;
  background: var(--coral);
  transform: rotate(-45deg);
}

.mini-route__copy {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  max-width: 210px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: .75rem;
  font-size: .74rem;
  font-weight: 800;
  line-height: 1.4;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.prose > p { color: var(--ink-soft); font-size: 1.06rem; }
.prose > p + p { margin-top: 1.1rem; }

.feature-list {
  display: grid;
  gap: .75rem;
  margin-top: 2rem;
}
.feature-list--row { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: clamp(1.5rem, 3vw, 2.5rem); }

.about-support { display: grid; gap: 1.25rem; }
.about-support .feature-list { margin-top: 0; }
.store-photo-card--compact { width: min(100%, 390px); margin: 0; }

.feature-item {
  border: 1px solid var(--line);
  border-left: 6px solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--white);
  padding: 1rem 1.1rem;
}

.feature-item:nth-child(2) { border-left-color: var(--teal); }
.feature-item:nth-child(3) { border-left-color: #71945d; }
.feature-item strong { display: block; margin-bottom: .2rem; font-family: var(--display); font-size: 1.15rem; }
.feature-item p { margin: 0; color: var(--ink-soft); }

.callout {
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--cream);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 8px 8px 0 var(--ink);
}

.callout p { max-width: 680px; color: var(--ink-soft); }

.visit-cards,
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.info-card,
.channel-card {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.5rem;
  box-shadow: 5px 5px 0 var(--ink);
}

.info-card:nth-child(1), .channel-card:nth-child(1) { background: var(--cream); }
.info-card:nth-child(2), .channel-card:nth-child(2) { background: var(--sky); }
.info-card:nth-child(3), .channel-card:nth-child(3) { background: var(--sage); }
.info-card p, .channel-card p { color: var(--ink-soft); }
.info-card .button, .channel-card .button { width: fit-content; margin-top: auto; }
.info-label { margin-bottom: 1.2rem; color: var(--coral-dark); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.address-block { font-style: normal; font-weight: 800; }

.map-shell {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-copy { padding: clamp(1.5rem, 4vw, 2.6rem); background: var(--paper-warm); }
.map-copy p { color: var(--ink-soft); }
.map { min-height: 430px; }
.map iframe { width: 100%; height: 100%; min-height: 430px; display: block; border: 0; }

.contact-note {
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper-warm);
  padding: 1rem 1.15rem;
  color: var(--ink-soft);
  font-size: .86rem;
}

.error-page {
  min-height: 58vh;
  display: grid;
  place-items: center;
  padding: 5rem 0;
  text-align: center;
}

.error-page .actions { justify-content: center; }

.site-footer {
  border-top: 4px solid var(--sun);
  background: var(--ink);
  color: var(--white);
  padding: 3.5rem 0 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(2, minmax(160px, .8fr));
  gap: 2.5rem;
}

.footer-brand strong { display: block; font-family: var(--display); font-size: 1.6rem; }
.footer-brand p { max-width: 360px; margin: .7rem 0; color: #dbe4df; }
.footer-brand address { color: var(--cream); font-size: .84rem; font-style: normal; }
.footer-column h2 { margin-bottom: .8rem; color: var(--cream); font-family: var(--sans); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a { width: fit-content; display: block; margin: .45rem 0; color: #e9eeeb; font-size: .86rem; }
.footer-bottom {
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-top: 1rem;
  color: #bbc8c2;
  font-size: .74rem;
}

.staff-link { color: #dbe4df; }

@media (max-width: 920px) {
  .menu-button { display: inline-flex; }

  .nav-links {
    position: absolute;
    z-index: 100;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    border: 2px solid var(--ink);
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
    padding: .75rem;
  }

  .nav-links.open { display: grid; }
  .nav-links a { justify-content: space-between; border-radius: var(--radius-sm); padding: .8rem .9rem; }
  .nav-links .nav-shop-hop { margin: .4rem 0 0; box-shadow: 3px 3px 0 var(--ink); }

  .hero-grid,
  .page-hero-grid,
  .page-hero--simple .page-hero-grid,
  .shop-hop-grid,
  .route-grid,
  .content-grid { grid-template-columns: 1fr; }

  .browse-intro { grid-template-columns: 1fr; gap: 1.5rem; }

  .hero-grid { gap: 3rem; }
  .home-hero { padding-top: 3.25rem; }
  .store-photo-card { margin-right: auto; margin-left: 0; }
  .route-map { min-height: 330px; }
  .page-hero-grid .mini-route { max-width: 620px; width: 100%; }

  .discovery-grid,
  .visit-cards,
  .contact-cards,
  .feature-list--row { grid-template-columns: 1fr; }

  .discovery-card { min-height: 215px; }
  .discovery-card:nth-child(n) { transform: none; }
  .card-number { margin-bottom: 1rem; }
  .discovery-card h3 { margin-top: 0; }

  .online-grid { grid-template-columns: 1fr; }
  .online-card { min-height: 130px; border-right: 0; border-bottom: 1px solid var(--line); }
  .online-card:last-child { border-bottom: 0; }

  .map-shell { grid-template-columns: 1fr; }
  .map, .map iframe { min-height: 380px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 1.5rem), var(--max)); }
  .utility-inner { min-height: 35px; justify-content: center; }
  .utility-inner span { display: none; }
  .nav { min-height: 70px; }
  .brand img { width: 46px; height: 46px; }
  .brand strong { font-size: .96rem; }
  .brand small { display: none; }
  .menu-button__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .menu-button { min-width: 44px; justify-content: center; padding-inline: .7rem; }
  h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .home-hero { padding: 2.7rem 0 3.5rem; }
  .actions { display: grid; }
  .actions .button { width: 100%; }
  .finders-note { width: 100%; }
  .hero-store-images { height: 260px; }
  .hero-store-panel { box-shadow: 8px 8px 0 var(--sun); }
  .store-photo-card { width: 100%; box-shadow: 6px 6px 0 var(--sky); }
  .shop-hop-image { box-shadow: 7px 7px 0 var(--coral); }
  .route-map { min-height: 400px; }
  .route-label { max-width: 185px; }
  .route-label--store { top: 8%; left: 5%; }
  .route-label--hop { right: 5%; bottom: 7%; }
  .not-to-scale { right: .6rem; top: auto; bottom: .5rem; }
  .mini-route { min-height: 250px; }
  .page-hero { padding: 3.2rem 0 4rem; }
  .page-hero h1 { font-size: clamp(2.8rem, 14vw, 4.1rem); }
  .map, .map iframe { min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.7rem; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .button:hover, .nav-links .nav-shop-hop:hover { transform: none; }
  .hero-store-images img { animation:none; opacity:0; }
  .hero-store-images img:first-child { opacity:1; }
}


@media (forced-colors: active) {
  .button, .discovery-card, .shop-hop-image, .route-map, .info-card, .channel-card { border: 2px solid CanvasText; }
}

@media print {
  .site-header, .site-footer, .actions, .shop-hop-preview, .online-links { display: none !important; }
  body { background: #fff; color: #000; }
  .section, .page-hero { padding: 1.5rem 0; }
}
