:root {
  --ink: #172725;
  --forest: #203936;
  --forest-deep: #142724;
  --cream: #f8f5ef;
  --paper: #fffdf8;
  --gold: #d9a85f;
  --plum: #745162;
  --line: rgba(23, 39, 37, 0.16);
  --muted: #5f6e6b;
  --shadow: 0 28px 70px rgba(20, 39, 36, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .75rem 1rem;
  color: white;
  background: var(--forest);
  border-radius: .4rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 1.4rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .92rem;
  line-height: 1.1;
  text-decoration: none;
  letter-spacing: .02em;
}
.brand strong { display: block; font-weight: 700; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  color: var(--cream);
  background: var(--forest);
  border-radius: 50% 50% 42% 58% / 46% 42% 58% 54%;
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: .85rem;
  letter-spacing: -.06em;
}
nav { display: flex; align-items: center; gap: 2rem; }
nav a {
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}
.store-nav { padding-bottom: .2rem; border-bottom: 1px solid transparent; }
.store-nav:hover, .store-nav[aria-current="page"] { border-bottom-color: var(--gold); }
.nav-cta { border-bottom: 2px solid var(--gold); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  min-height: 680px;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem max(3rem, calc((100vw - 1180px) / 2));
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--plum);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; font-weight: 400; }
h1, h2 {
  font-family: "Libre Caslon Display", Georgia, serif;
  line-height: .98;
  letter-spacing: -.035em;
}
h1 { margin-bottom: 1.75rem; font-size: clamp(3.9rem, 7vw, 7.2rem); }
h2 { margin-bottom: 1.25rem; font-size: clamp(2.7rem, 5vw, 5rem); }
.hero-intro { max-width: 620px; margin: 0 0 2.2rem; color: var(--muted); font-size: 1.1rem; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.4rem; }
.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: .82rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .tab-button:focus-visible, a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.button.primary { color: white; background: var(--forest); }
.button.primary:hover { background: var(--forest-deep); }
.button.secondary { border-color: var(--line); background: white; }
.text-link { font-size: .9rem; font-weight: 700; text-underline-offset: .35rem; }

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background-color: #d8c9b3;
  background-image: linear-gradient(to top, rgba(20,39,36,.45), transparent 42%), url("assets/shop-interior-wide.webp");
  background-position: center;
  background-size: cover;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(217,168,95,.12), transparent 48%);
}
.hero-note {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding-top: 1rem;
  color: white;
  border-top: 1px solid rgba(255,255,255,.55);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-note strong { text-align: right; }

.shops-section { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 8rem 0; }
.section-heading { display: grid; grid-template-columns: 1fr 1.2fr; column-gap: 4rem; margin-bottom: 3.4rem; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p:last-child { align-self: end; max-width: 460px; margin: 0 0 .5rem; color: var(--muted); }
.shop-tabs { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 1.4rem; box-shadow: var(--shadow); }
.tab-list { display: grid; grid-template-columns: 1fr 1fr; background: #edf0ec; border-bottom: 1px solid var(--line); }
.tab-button {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.75rem;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.tab-button + .tab-button { border-left: 1px solid var(--line); }
.tab-button span { font-family: "Libre Caslon Display", Georgia, serif; font-size: 1.5rem; }
.tab-button small { font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.tab-button.active { color: white; background: var(--forest); }
.tab-button.active::after { content: ""; position: absolute; right: 1.75rem; bottom: 0; left: 1.75rem; height: 3px; background: var(--gold); }
.shop-panel { display: grid; grid-template-columns: .95fr 1.05fr; min-height: 480px; }
.shop-panel[hidden], .shop-panel:not(.active) { display: none !important; }
.shop-summary { padding: 4.4rem; background: var(--cream); border-right: 1px solid var(--line); }
.shop-kicker { margin: 0 0 1rem; color: var(--plum); font-size: .82rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.shop-summary h3 { margin-bottom: 1.4rem; font-family: "Libre Caslon Display", Georgia, serif; font-size: clamp(2.2rem, 4vw, 3.8rem); line-height: 1.05; }
.shop-summary p:last-child { max-width: 430px; color: var(--muted); }
.shop-details { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-content: center; padding: 3.2rem 4rem; }
.shop-details p, .shop-details address { margin: .4rem 0 0; font-style: normal; line-height: 1.55; }
.detail-label { color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.detail-actions { display: flex; grid-column: 1 / -1; flex-wrap: wrap; gap: .75rem; padding-top: .5rem; }
.shop-page-link { align-self: center; margin-left: .35rem; }
.donation-note { grid-column: 1 / -1; padding: 1.1rem 1.2rem; background: #f2ecee; border-left: 3px solid var(--plum); border-radius: 0 .6rem .6rem 0; }
.donation-note p { margin-bottom: 0; color: #54434b; font-size: .92rem; }

.story-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 2rem 0 9rem;
}
.story-heading { position: relative; max-width: 820px; padding: 1.2rem 0 3.5rem; }
.story-heading h2 { max-width: 780px; font-size: clamp(3rem, 5.5vw, 5.6rem); }
.story-tag {
  max-width: 190px;
  margin-top: 2.2rem;
  padding-top: 1rem;
  color: var(--plum);
  border-top: 2px solid var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.7;
  text-transform: uppercase;
}
.founders-showcase { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); gap: 1.2rem; align-items: stretch; }
.founders-photo {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--forest);
  border-radius: 1.2rem;
  box-shadow: 0 24px 55px rgba(20, 39, 36, .12);
}
.founders-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.founders-photo figcaption {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  padding-top: .8rem;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, .62);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}
.founders-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; align-items: stretch; }
.story-copy {
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  box-shadow: 0 24px 55px rgba(20, 39, 36, .08);
}
.founder-card { box-shadow: 0 24px 55px rgba(20, 39, 36, .08); }
.founder-card-alt { background: #f2ecee; }
.founder-card h3 {
  margin-bottom: 2rem;
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1;
}
.founder-role {
  margin-bottom: .75rem !important;
  color: var(--plum) !important;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.story-copy p { margin: 0 0 1.45rem; color: var(--muted); }
.story-copy .story-lead {
  margin-bottom: 2rem;
  color: var(--ink);
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
}
.story-copy .story-closing { margin: 2.2rem 0 0; color: var(--ink); font-weight: 700; }
.story-copy .story-signature {
  margin: .55rem 0 0;
  color: var(--plum);
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 1.45rem;
}

.gallery-section { padding: 8rem max(3rem, calc((100vw - 1180px) / 2)); background: #edf0ec; }
.gallery-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.gallery-heading h2 { max-width: 780px; margin-bottom: 0; }
.gallery-heading > p { max-width: 470px; margin: 0 0 .6rem; color: var(--muted); }
.gallery-carousel { position: relative; outline: none; }
.gallery-carousel:focus-visible { outline: 3px solid var(--gold); outline-offset: 5px; border-radius: 1rem; }
.gallery-viewport { overflow: hidden; border-radius: 1rem; box-shadow: var(--shadow); }
.gallery-track { display: flex; transition: transform .7s cubic-bezier(.22, .75, .25, 1); will-change: transform; }
.gallery-item {
  position: relative;
  height: clamp(460px, 55vw, 680px);
  flex: 0 0 100%;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--forest-deep);
}
.gallery-item::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -2rem;
  background-image: linear-gradient(rgba(20, 39, 36, .2), rgba(20, 39, 36, .2)), var(--slide-image);
  background-position: center;
  background-size: cover;
  filter: blur(18px);
  opacity: .72;
  transform: scale(1.08);
}
.gallery-item img { position: relative; z-index: 1; display: block; width: 100%; height: 100%; object-fit: contain; }
.gallery-item::after { content: ""; position: absolute; z-index: 2; inset: 46% 0 0; background: linear-gradient(transparent, rgba(20, 39, 36, .86)); pointer-events: none; }
.gallery-item figcaption { position: absolute; z-index: 3; right: 5.5rem; bottom: 1.5rem; left: 5.5rem; color: white; font-size: .82rem; font-weight: 700; letter-spacing: .05em; text-align: center; text-transform: uppercase; text-shadow: 0 2px 14px rgba(0, 0, 0, .55); }
.carousel-control {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  padding: 0;
  color: var(--forest);
  background: rgba(255, 253, 248, .94);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(20, 39, 36, .22);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}
.carousel-control:hover { color: white; background: var(--forest); transform: translateY(-50%) scale(1.05); }
.carousel-control:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.carousel-control svg { width: 1.35rem; height: 1.35rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.carousel-previous { left: 1.25rem; }
.carousel-next { right: 1.25rem; }
.carousel-position {
  position: absolute;
  z-index: 4;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  gap: .32rem;
  padding: .48rem .72rem;
  color: white;
  background: rgba(20, 39, 36, .72);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.store-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr);
  min-height: 610px;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.store-page-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem max(3rem, calc((100vw - 1180px) / 2));
}
.store-page-copy h1 { margin-bottom: 1.6rem; }
.store-page-copy > p:not(.eyebrow) { max-width: 620px; margin: 0 0 2rem; color: var(--muted); font-size: 1.1rem; }
.store-logo {
  width: 190px;
  height: 95px;
  margin-bottom: 2rem;
  background-color: white;
  background-image: url("assets/store-logos.webp");
  background-repeat: no-repeat;
  background-size: 100% 200%;
  border: 1px solid var(--line);
  border-radius: .8rem;
  box-shadow: 0 12px 30px rgba(20, 39, 36, .09);
}
.store-logo-la { background-position: center top; }
.store-logo-act { background-position: center bottom; }
.store-page-visual {
  position: relative;
  min-height: 520px;
  background-image: linear-gradient(to top, rgba(20,39,36,.38), transparent 48%), url("assets/shop-interior-wide.webp");
  background-position: center;
  background-size: cover;
}
.store-page-visual.la-boheme { background-image: linear-gradient(to top, rgba(20,39,36,.38), transparent 48%), url("assets/founders-storefront.webp"); background-position: center 58%; }
.store-page-visual.act-two { background-position: center; }
.store-page-visual .hero-note { z-index: 1; }
.store-info-section { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 7rem 0; }
.store-info-heading { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; margin-bottom: 3rem; }
.store-info-heading h2 { margin-bottom: 0; }
.store-info-heading > p { align-self: end; max-width: 520px; margin: 0 0 .6rem; color: var(--muted); }
.store-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 1.1rem; box-shadow: var(--shadow); }
.store-info-grid > div { min-height: 210px; padding: 2rem; background: white; }
.store-info-grid > div + div { border-left: 1px solid var(--line); }
.store-info-grid address, .store-info-grid p { margin: .6rem 0 0; font-style: normal; }
.store-info-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.store-donation {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 4rem;
  margin-top: 4rem;
  padding: 3.5rem;
  color: white;
  background: var(--forest);
  border-radius: 1.1rem;
}
.store-donation h2 { margin-bottom: 0; font-size: clamp(2.4rem, 4.5vw, 4.5rem); }
.store-donation p { margin: 0; color: #d7dfdc; }
.store-crosslink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 7rem;
}
.store-crosslink h2 { max-width: 680px; margin: 0; font-size: clamp(2.4rem, 4vw, 4.2rem); }

.mission-section { padding: 8rem max(3rem, calc((100vw - 1180px) / 2)); color: white; background: var(--forest-deep); }
.mission-lead { max-width: 850px; }
.eyebrow.light { color: #edc88f; }
.mission-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin: 2.5rem 0 5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.18); }
.mission-copy p { margin: 0; color: #d5ddda; font-size: 1.05rem; }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.impact-grid article { min-height: 280px; padding: 1.8rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: .9rem; }
.impact-number { display: block; margin-bottom: 4rem; color: var(--gold); font-size: .75rem; letter-spacing: .12em; }
.impact-grid h3 { margin-bottom: .8rem; font-family: "Libre Caslon Display", Georgia, serif; font-size: 1.8rem; }
.impact-grid p { margin: 0; color: #bdc9c5; font-size: .94rem; }

.visit-section { display: flex; align-items: end; justify-content: space-between; gap: 3rem; width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 7rem 0; }
.visit-section > div { max-width: 820px; }
.visit-section h2 { margin-bottom: 0; }
footer { display: grid; grid-template-columns: 1fr 1.3fr auto; align-items: end; gap: 3rem; padding: 3.2rem max(3rem, calc((100vw - 1180px) / 2)); color: #c8d0cd; background: var(--forest); border-top: 1px solid rgba(255,255,255,.12); }
.footer-brand { display: flex; gap: 1rem; align-items: center; }
.footer-brand .brand-mark { color: var(--forest); background: var(--cream); }
.footer-brand p, .footer-note, .copyright { margin: 0; font-size: .8rem; }
.footer-note { max-width: 470px; }
.footer-socials { display: flex; align-items: center; gap: .7rem; }
.social-link {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.social-link:hover { color: var(--forest); background: var(--cream); border-color: var(--cream); transform: translateY(-2px); }
.social-link svg { width: 1.35rem; height: 1.35rem; overflow: visible; }
.social-link svg rect, .social-link svg circle { fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-link svg .social-icon-dot, .social-link svg path { fill: currentColor; stroke: none; }
.copyright { white-space: nowrap; }

@media (max-width: 900px) {
  .site-header { flex-wrap: wrap; row-gap: 1rem; }
  nav { width: 100%; justify-content: space-between; gap: 1rem; padding-top: .9rem; border-top: 1px solid var(--line); }
  nav .nav-home, nav .nav-secondary { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 5rem 2rem; }
  .hero-visual { min-height: 480px; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p:last-child { margin-top: 1rem; }
  .shop-panel { grid-template-columns: 1fr; }
  .shop-summary { padding: 3rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .founders-showcase { grid-template-columns: 1fr; }
  .founders-photo { height: 640px; }
  .gallery-heading { grid-template-columns: 1fr; gap: 1rem; }
  .store-page-hero { grid-template-columns: 1fr; }
  .store-page-copy { padding: 5rem 2rem; }
  .store-page-visual { min-height: 480px; }
  .store-info-heading { grid-template-columns: 1fr; gap: 1rem; }
  .store-info-grid { grid-template-columns: 1fr; }
  .store-info-grid > div { min-height: 0; }
  .store-info-grid > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .store-donation { grid-template-columns: 1fr; gap: 2rem; }
  .mission-copy { gap: 2rem; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-grid article { min-height: 0; }
  .impact-number { margin-bottom: 2rem; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-note { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 620px) {
  .site-header { width: min(100% - 32px, 1180px); }
  .brand > span:last-child { display: none; }
  nav { gap: .65rem; }
  nav a { font-size: .78rem; }
  nav .nav-cta { margin-left: auto; }
  h1 { font-size: clamp(3.4rem, 18vw, 5rem); }
  .hero-copy { padding: 4.2rem 1rem 3.5rem; }
  .hero-visual { min-height: 420px; }
  .hero-note { right: 1rem; bottom: 1rem; left: 1rem; flex-direction: column; align-items: start; }
  .hero-note strong { text-align: left; }
  .shops-section, .visit-section { width: min(100% - 32px, 1180px); padding: 5.5rem 0; }
  .tab-button { align-items: start; flex-direction: column; padding: 1.1rem; gap: .2rem; }
  .tab-button span { font-size: 1.25rem; }
  .tab-button small { font-size: .68rem; }
  .tab-button.active::after { right: 1rem; left: 1rem; }
  .shop-summary, .shop-details { padding: 2rem 1.3rem; }
  .shop-details { grid-template-columns: 1fr; }
  .detail-actions, .donation-note { grid-column: 1; }
  .detail-actions .button { width: 100%; }
  .story-section { width: min(100% - 32px, 1180px); padding: 0 0 5.5rem; }
  .founders-photo { height: 500px; }
  .story-copy { padding: 1.6rem 1.3rem; }
  .gallery-section { padding: 5.5rem 1rem; }
  .gallery-item { height: 480px; }
  .carousel-control { width: 2.9rem; height: 2.9rem; }
  .carousel-previous { left: .75rem; }
  .carousel-next { right: .75rem; }
  .gallery-item figcaption { right: 4rem; bottom: 1.1rem; left: 4rem; font-size: .72rem; }
  .carousel-position { top: .75rem; right: .75rem; }
  .store-page-copy { padding: 4.2rem 1rem 3.5rem; }
  .store-page-visual { min-height: 420px; }
  .store-info-section { width: min(100% - 32px, 1180px); padding: 5.5rem 0; }
  .store-info-grid > div { padding: 1.5rem 1.3rem; }
  .store-info-actions .button { width: 100%; }
  .store-donation { margin-top: 2.5rem; padding: 2rem 1.3rem; }
  .store-crosslink { align-items: flex-start; flex-direction: column; width: min(100% - 32px, 1180px); padding-bottom: 5.5rem; }
  .mission-section { padding: 5.5rem 1rem; }
  .mission-copy { grid-template-columns: 1fr; }
  .visit-section { align-items: start; flex-direction: column; }
  footer { grid-template-columns: 1fr; padding: 3rem 1rem; }
  .footer-note { grid-column: 1; grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
