:root {
  color-scheme: light;
  --ink: #1c1915;
  --paper: #f5efe3;
  --cream: #fffaf1;
  --gold: #f2b632;
  --orange: #d9622d;
  --wheat: #b18448;
  --muted: #675f54;
  --line: rgba(28, 25, 21, 0.18);
  --radius: 1.5rem;
  --max: 90rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

button {
  cursor: pointer;
}

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

[hidden] {
  display: none !important;
}

a:focus-visible,
button:focus-visible,
.leaflet-container:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-180%);
}

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

.site-header {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0.75rem auto 0;
  padding: 0.7rem 0.8rem 0.7rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.86);
  box-shadow: 0 0.65rem 2rem rgba(34, 24, 14, 0.08);
  backdrop-filter: blur(18px);
  transition: transform 420ms var(--ease-out);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 1.25rem));
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: baseline;
  gap: 0.5rem;
}

.brand__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand__descriptor,
.eyebrow,
.desktop-nav,
.header-cta,
.map-stage__kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand__descriptor {
  color: #756b5e;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
}

.desktop-nav a,
.text-link {
  position: relative;
}

.desktop-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -0.28rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.map-locate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease, opacity 200ms ease;
}

.header-cta {
  justify-self: end;
  padding: 0.72rem 1rem;
}

.header-cta:hover,
.header-cta:focus-visible,
.map-locate:hover,
.map-locate:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0.7rem 1.5rem rgba(28, 25, 21, 0.2);
}

[data-find-nearest][aria-busy="true"] {
  cursor: wait;
  opacity: 0.72;
}

[data-find-nearest]:disabled {
  cursor: wait;
  opacity: 0.62;
}

.hero {
  display: grid;
  grid-template-columns: minmax(27rem, 0.82fr) minmax(38rem, 1.18fr);
  min-height: 100svh;
  overflow: clip;
}

.hero__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: clamp(8rem, 12vw, 11rem) clamp(1.5rem, 4.7vw, 5.5rem) clamp(4rem, 7vw, 6rem) max(1.5rem, calc((100vw - var(--max)) / 2 + 1rem));
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(242, 182, 50, 0.18), transparent 24rem),
    radial-gradient(circle at 92% 84%, rgba(217, 98, 45, 0.1), transparent 19rem),
    var(--paper);
}

.hero__copy::before,
.hero__copy::after {
  position: absolute;
  border: 1px solid rgba(28, 25, 21, 0.09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero__copy::before {
  right: -10rem;
  bottom: -14rem;
  width: 32rem;
  aspect-ratio: 1;
}

.hero__copy::after {
  right: 4rem;
  bottom: 5rem;
  width: 0.75rem;
  aspect-ratio: 1;
  background: var(--gold);
  animation: float-dot 5s ease-in-out infinite;
}

.hero__copy > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
}

.eyebrow > span {
  width: 1.8rem;
  height: 0.18rem;
  border-radius: 1rem;
  background: var(--orange);
}

.eyebrow--light > span {
  background: var(--cream);
}

h1 {
  max-width: 9.5ch;
  margin-bottom: 1.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.55rem, 6vw, 7.25rem);
  font-weight: 500;
  letter-spacing: -0.067em;
  line-height: 0.86;
}

h1 em,
.map-stage__bar h2 em,
.order-strip h2 em,
.section-heading h2 em,
.story h2 em {
  color: var(--orange);
  font-weight: 600;
}

.hero__lead {
  max-width: 33rem;
  margin-bottom: 2rem;
  color: #4f493f;
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 3.25rem;
  padding: 0.8rem 1rem 0.8rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 0.8rem 1.8rem rgba(28, 25, 21, 0.17);
}

.button--dark {
  background: var(--ink);
  color: white;
}

.text-link {
  font-size: 0.82rem;
  font-weight: 700;
}

.text-link--light {
  display: inline-block;
}

.hero__note {
  margin: clamp(2.8rem, 7vh, 5rem) 0 0;
  color: #756b5e;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-stage {
  position: relative;
  min-height: 100svh;
  scroll-margin-top: 5rem;
  overflow: hidden;
  isolation: isolate;
  background:
    repeating-radial-gradient(circle at 48% 44%, transparent 0 4.2rem, rgba(28, 25, 21, 0.08) 4.25rem 4.3rem),
    #dfbd66;
}

.map-stage__bar {
  position: absolute;
  z-index: 650;
  top: 6.8rem;
  right: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(28, 25, 21, 0.26);
  pointer-events: none;
}

.map-stage__bar > * {
  pointer-events: auto;
}

.map-stage__kicker {
  margin: 0 0 0.25rem;
}

.map-stage__bar h2 {
  max-width: 18ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.25vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.map-locate {
  flex: none;
  min-height: 2.8rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-locate__dot {
  width: 0.62rem;
  aspect-ratio: 1;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
}

[data-find-nearest][aria-busy="true"] .map-locate__dot {
  animation: locate-pulse 1s ease-out infinite;
}

.map-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #dfbd66;
}

.map-canvas__fallback {
  position: absolute;
  z-index: 0;
  top: 48%;
  left: 50%;
  width: min(22rem, calc(100% - 4rem));
  margin: 0;
  color: rgba(28, 25, 21, 0.65);
  text-align: center;
  transform: translate(-50%, -50%);
}

.map-canvas__fallback a {
  font-weight: 700;
  text-decoration: underline;
}

.map-canvas.is-ready .map-canvas__fallback {
  opacity: 0;
}

.map-canvas.leaflet-container {
  background:
    repeating-radial-gradient(circle at 48% 44%, transparent 0 4.2rem, rgba(28, 25, 21, 0.08) 4.25rem 4.3rem),
    #dfbd66;
  font: inherit;
}

.map-canvas .leaflet-tile-pane {
  filter: grayscale(0.58) sepia(0.48) saturate(0.72) contrast(0.82) brightness(1.08);
}

.map-canvas .leaflet-tile {
  transition: opacity 320ms ease;
}

.map-canvas .leaflet-control-zoom {
  margin-top: 11.6rem;
  margin-right: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(28, 25, 21, 0.18);
  border-radius: 999px;
  box-shadow: 0 0.8rem 1.8rem rgba(63, 39, 11, 0.12);
}

.map-canvas .leaflet-control-zoom a {
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  background: rgba(255, 250, 241, 0.92);
  color: var(--ink);
  font: 400 1.15rem/2.35rem Georgia, serif;
}

.map-canvas .leaflet-control-zoom a:first-child {
  border-bottom: 1px solid rgba(28, 25, 21, 0.16);
}

.map-canvas .leaflet-control-attribution {
  padding: 0.15rem 0.4rem;
  background: rgba(255, 250, 241, 0.76);
  color: #62594c;
  font-size: 0.58rem;
  backdrop-filter: blur(8px);
}

.map-canvas .leaflet-control-attribution a {
  color: inherit;
  text-decoration: underline;
}

.map-canvas .leaflet-tooltip {
  padding: 0.38rem 0.55rem;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 0.55rem 1rem rgba(45, 30, 13, 0.2);
  color: var(--cream);
  font-size: 0.62rem;
  font-weight: 800;
}

.map-canvas .leaflet-tooltip::before {
  border-top-color: var(--ink);
}

.map-stage__wash {
  position: absolute;
  z-index: 450;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(242, 182, 50, 0.42) 0, transparent 26%, transparent 72%, rgba(49, 34, 15, 0.19) 100%),
    linear-gradient(to right, rgba(242, 182, 50, 0.18), transparent 34%);
  pointer-events: none;
}

.location-tabs {
  position: absolute;
  z-index: 650;
  top: 50%;
  right: 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
  transform: translateY(-30%);
}

.location-tabs__fallback {
  display: none;
}

.location-tab {
  display: grid;
  width: 2.65rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(28, 25, 21, 0.2);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.86);
  box-shadow: 0 0.65rem 1.2rem rgba(51, 35, 16, 0.11);
  backdrop-filter: blur(12px);
  font-size: 0.65rem;
  font-weight: 800;
  transition: color 220ms ease, background-color 220ms ease, transform 320ms var(--ease-out);
}

.location-tab:hover,
.location-tab:focus-visible {
  transform: translateX(-0.25rem);
}

.location-tab.is-active {
  background: var(--ink);
  color: var(--cream);
}

.location-panel {
  position: absolute;
  z-index: 650;
  bottom: 1.5rem;
  left: 1.5rem;
  width: min(29rem, calc(100% - 6.25rem));
  padding: clamp(1.1rem, 2vw, 1.55rem);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 1.35rem;
  background: rgba(255, 250, 241, 0.91);
  box-shadow: 0 1.6rem 3.5rem rgba(64, 42, 15, 0.2);
  backdrop-filter: blur(18px);
}

.location-panel.is-changing {
  animation: card-change 380ms var(--ease-out);
}

.location-panel.is-overview .location-panel__hours,
.location-panel.is-overview .location-panel__actions {
  display: none;
}

.location-panel.is-overview .location-panel__status {
  margin-bottom: 0;
}

.location-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  font-style: italic;
}

.location-panel__type {
  padding: 0.25rem 0.5rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-panel h3 {
  margin: 1rem 0 0.1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.location-panel__address {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.location-panel__hours {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.9rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.69rem;
  font-weight: 650;
}

.location-panel__status {
  min-height: 2.1em;
  margin: 0.8rem 0;
  color: #5f574c;
  font-size: 0.7rem;
}

.location-panel__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.location-panel__actions a {
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(28, 25, 21, 0.25);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 240ms var(--ease-out), background-color 200ms ease;
}

.location-panel__actions a:hover,
.location-panel__actions a:focus-visible {
  transform: translateY(-2px);
  background: var(--cream);
}

.location-panel__actions .location-panel__rescue {
  border-color: var(--orange);
  background: var(--orange);
  color: white;
}

.map-noscript {
  position: absolute;
  z-index: 700;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  background: var(--cream);
}

.ferment-marker-shell,
.user-marker-shell {
  background: none;
  border: 0;
}

.ferment-marker {
  display: grid;
  width: 2.7rem;
  aspect-ratio: 1;
  place-items: center;
  border: 0.28rem solid var(--cream);
  border-radius: 50% 50% 50% 0.3rem;
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 0.8rem 1.4rem rgba(45, 30, 13, 0.26);
  font-size: 0.63rem;
  font-weight: 800;
  transform: rotate(-45deg);
  transform-origin: 50% 50%;
  transition: background-color 230ms ease, box-shadow 300ms ease, transform 350ms var(--ease-out);
}

.ferment-marker span {
  transform: rotate(45deg);
}

.ferment-marker-shell:hover .ferment-marker,
.ferment-marker-shell.is-active .ferment-marker {
  background: var(--orange);
  box-shadow: 0 0 0 0.38rem rgba(217, 98, 45, 0.22), 0 0.9rem 1.6rem rgba(45, 30, 13, 0.28);
  transform: rotate(-45deg) scale(1.16);
}

.user-marker {
  display: grid;
  width: 1.45rem;
  aspect-ratio: 1;
  place-items: center;
  border: 0.28rem solid var(--cream);
  border-radius: 50%;
  background: #247bb8;
  box-shadow: 0 0 0 0 rgba(36, 123, 184, 0.4);
  animation: user-pulse 2s ease-out infinite;
}

.order-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.64fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(5rem, 9vw, 9rem) max(1.25rem, calc((100vw - var(--max)) / 2 + 1rem));
  overflow: hidden;
  background: var(--gold);
}

.order-strip::before {
  position: absolute;
  top: -10rem;
  right: 22%;
  width: 27rem;
  aspect-ratio: 1;
  border: 1px solid rgba(28, 25, 21, 0.13);
  border-radius: 50%;
  content: "";
}

.order-strip > * {
  position: relative;
  z-index: 1;
}

.order-strip h2,
.section-heading h2,
.story h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 6.7vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.067em;
  line-height: 0.88;
}

.order-strip h2 em {
  color: var(--ink);
}

.order-strip__action > p {
  max-width: 34rem;
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.order-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.order-links a {
  padding: 0.62rem 0.85rem;
  border: 1px solid rgba(28, 25, 21, 0.42);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: color 220ms ease, background-color 220ms ease, transform 280ms var(--ease-out);
}

.order-links a:hover,
.order-links a:focus-visible {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.chapter {
  position: relative;
  scroll-margin-top: 5rem;
  overflow: clip;
  border-radius: clamp(2.5rem, 6vw, 6rem) clamp(2.5rem, 6vw, 6rem) 0 0;
}

.section-shell {
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 10rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.46fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.section-intro {
  max-width: 31rem;
  margin: 0 0 0.35rem;
  color: #5d554b;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.products {
  z-index: 3;
  margin-top: -0.1rem;
  color: var(--cream);
  background: var(--ink);
}

.marquee {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 250, 241, 0.2);
  white-space: nowrap;
}

.marquee > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem 0;
  animation: marquee 30s linear infinite;
}

.marquee span {
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.marquee i {
  color: var(--gold);
  font-style: normal;
}

.section-heading--inverse .section-intro {
  color: rgba(255, 250, 241, 0.66);
}

.section-heading--inverse h2 em {
  color: var(--gold);
}

.product-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 250, 241, 0.22);
  list-style: none;
}

.product-list li {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.8rem) 0;
  border-bottom: 1px solid rgba(255, 250, 241, 0.22);
  transition: padding 450ms var(--ease-out), color 300ms ease;
}

.product-list li:hover {
  padding-left: 1rem;
  color: var(--gold);
}

.product-list__number {
  color: rgba(255, 250, 241, 0.48);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
  font-style: italic;
}

.product-list h3 {
  margin: 0 0 0.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.product-list p {
  margin: 0;
  color: rgba(255, 250, 241, 0.64);
}

.product-list__mark {
  font-size: 1.5rem;
}

.availability-note {
  display: grid;
  grid-template-columns: auto minmax(0, 43rem);
  justify-content: end;
  gap: 1rem;
  margin-top: 2.5rem;
  color: rgba(255, 250, 241, 0.62);
  font-size: 0.78rem;
}

.availability-note span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.story {
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.82fr);
  min-height: 42rem;
  margin-top: -0.1rem;
  background: var(--paper);
}

.story__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(5rem, 9vw, 9rem) clamp(2rem, 8vw, 9rem) clamp(5rem, 9vw, 9rem) max(1.25rem, calc((100vw - var(--max)) / 2 + 1rem));
}

.story__copy > p:not(.eyebrow) {
  max-width: 37rem;
  margin: 2rem 0;
  color: #5d554b;
  font-size: 1.05rem;
}

.paryska-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 42rem;
  padding: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  color: var(--cream);
  background: var(--orange);
}

.paryska-card::after {
  position: absolute;
  inset: 10% -20% auto auto;
  width: min(28rem, 72vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 250, 241, 0.3);
  border-radius: 50%;
  content: "";
}

.paryska-card > * {
  position: relative;
  z-index: 2;
}

.paryska-card__orbit {
  position: absolute;
  z-index: 1;
  top: 13%;
  right: 8%;
  display: grid;
  width: min(20rem, 70%);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 250, 241, 0.32);
  border-radius: 50%;
  animation: orbit 28s linear infinite;
}

.paryska-card__orbit span {
  position: absolute;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.paryska-card__orbit span:nth-child(1) { top: -0.55rem; }
.paryska-card__orbit span:nth-child(2) { right: -1.1rem; }
.paryska-card__orbit span:nth-child(3) { bottom: -0.55rem; }

.paryska-card h3 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.paryska-card p:not(.eyebrow) {
  margin-bottom: 1.5rem;
}

.site-footer {
  padding: clamp(4rem, 8vw, 8rem) max(1.25rem, calc((100vw - var(--max)) / 2 + 1rem)) 2rem;
  color: var(--cream);
  background: var(--ink);
}

.site-footer__top {
  padding-bottom: clamp(4rem, 9vw, 8rem);
}

.footer-mail {
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 7.2vw, 7.2rem);
  font-style: italic;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.footer-mail:hover,
.footer-mail:focus-visible {
  color: var(--gold);
}

.site-footer__links,
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 250, 241, 0.24);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--gold);
}

.site-footer__legal {
  color: rgba(255, 250, 241, 0.5);
  font-size: 0.62rem;
}

.site-footer__legal p {
  margin: 0;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@keyframes float-dot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1rem); }
}

@keyframes locate-pulse {
  to { box-shadow: 0 0 0 0.65rem rgba(255, 255, 255, 0); }
}

@keyframes user-pulse {
  70% { box-shadow: 0 0 0 0.8rem rgba(36, 123, 184, 0); }
  100% { box-shadow: 0 0 0 0 rgba(36, 123, 184, 0); }
}

@keyframes card-change {
  0% { opacity: 0.72; transform: translateY(0.55rem) scale(0.99); }
  100% { opacity: 1; transform: none; }
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity 700ms ease, transform 900ms var(--ease-out);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 72rem) {
  .hero {
    grid-template-columns: minmax(25rem, 0.76fr) minmax(31rem, 1.24fr);
  }

  .brand__descriptor {
    display: none;
  }

  .map-stage__bar h2 {
    font-size: clamp(1.35rem, 2vw, 2rem);
  }

  .location-panel {
    width: min(27rem, calc(100% - 5.7rem));
  }
}

@media (max-width: 58rem) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    display: block;
  }

  .hero__copy {
    min-height: 76svh;
    padding: 8.5rem 1.25rem 4.5rem;
  }

  h1 {
    font-size: clamp(3.75rem, 14.8vw, 6.8rem);
  }

  .map-stage {
    min-height: 49rem;
    border-radius: 2.75rem 2.75rem 0 0;
  }

  .map-stage__bar {
    top: 1.35rem;
  }

  .map-stage__bar h2 {
    max-width: 16ch;
    font-size: clamp(1.25rem, 4.5vw, 2rem);
  }

  .map-canvas .leaflet-control-zoom {
    display: none;
  }

  .location-tabs {
    top: 7rem;
    right: 1.25rem;
    left: 1.25rem;
    flex-direction: row;
    justify-content: flex-end;
    transform: none;
  }

  .location-tab:hover,
  .location-tab:focus-visible {
    transform: translateY(-0.18rem);
  }

  .location-panel {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
  }

  .map-canvas .leaflet-control-attribution {
    bottom: 20.5rem;
  }

  .order-strip,
  .section-heading,
  .story {
    grid-template-columns: 1fr;
  }

  .order-strip {
    gap: 2rem;
  }

  .story__copy,
  .paryska-card {
    min-height: auto;
    padding: 5rem 1.25rem;
  }

  .paryska-card {
    min-height: 35rem;
  }
}

@media (max-width: 34rem) {
  .site-header {
    width: calc(100% - 1rem);
    margin-top: 0.5rem;
  }

  .header-cta {
    padding-inline: 0.8rem;
    font-size: 0.58rem;
  }

  .hero__copy {
    min-height: 83svh;
  }

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

  .hero__note {
    line-height: 1.7;
  }

  .map-stage {
    min-height: 51.5rem;
  }

  .map-stage__bar {
    right: 1rem;
    left: 1rem;
  }

  .map-stage__bar h2 {
    font-size: 1.16rem;
  }

  .map-locate {
    min-height: 2.55rem;
    padding-inline: 0.72rem;
    font-size: 0.58rem;
  }

  .location-tabs {
    top: 7.2rem;
    right: 0.75rem;
    left: 0.75rem;
    gap: 0.35rem;
  }

  .location-tab {
    width: 2.35rem;
  }

  .location-panel {
    padding: 1.05rem;
  }

  .location-panel h3 {
    font-size: 2.45rem;
  }

  .location-panel__hours {
    display: grid;
    gap: 0.16rem;
  }

  .location-panel__actions a {
    flex: 1 1 auto;
    text-align: center;
  }

  .location-panel__actions .location-panel__rescue {
    flex-basis: 100%;
  }

  .map-canvas .leaflet-control-attribution {
    bottom: 23rem;
    max-width: 13.5rem;
    text-align: right;
  }

  .order-strip h2,
  .section-heading h2,
  .story h2 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .section-shell {
    width: calc(100% - 2rem);
  }

  .product-list li {
    grid-template-columns: 2.2rem minmax(0, 1fr) auto;
  }

  .product-list p {
    font-size: 0.82rem;
  }

  .availability-note {
    grid-template-columns: auto 1fr;
  }

  .footer-mail {
    word-break: break-word;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
