:root {
  --ink: #111111;
  --paper: #fbfaf3;
  --paper-deep: #f2ecd7;
  --blue: #003f9e;
  --sea: #00a7c8;
  --yellow: #f2cd24;
  --red: #df1f18;
  --line: rgba(17, 17, 17, 0.22);
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button {
  color: inherit;
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 64px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
  background: rgba(251, 250, 243, 0.88);
  backdrop-filter: blur(14px);
}

.brand-mark {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-mark__cn {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark__en {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-toggle {
  display: flex;
  align-items: center;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.language-toggle button {
  min-width: 38px;
  height: 32px;
  padding: 0 10px;
  border: 0;
  border-left: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.language-toggle button:first-child {
  border-left: 0;
}

.language-toggle button.is-active {
  color: var(--paper);
  background: var(--ink);
}

.menu-button {
  display: none;
  width: 54px;
  height: 50px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 32px;
  height: 1px;
  margin: 7px auto;
  background: var(--ink);
}

.menu-button em {
  display: block;
  font-style: normal;
  font-size: 11px;
  line-height: 1;
}

.mobile-menu {
  position: fixed;
  inset: 64px 0 auto;
  z-index: 45;
  display: none;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--ink);
  background: var(--yellow);
}

.mobile-menu a {
  padding: 20px 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.24);
  font-size: 22px;
  font-weight: 800;
}

.mobile-menu__lang {
  margin: 18px 24px 24px;
  width: max-content;
}

.mobile-menu.is-open {
  display: grid;
}

.hero {
  min-height: 100svh;
  padding: 126px clamp(22px, 5vw, 72px) 34px;
  display: grid;
  grid-template-columns: 1.1fr minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  position: relative;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__ocean {
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.hero__red {
  position: absolute;
  right: clamp(20px, 6vw, 92px);
  bottom: 96px;
  width: min(36vw, 520px);
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--ink);
  mix-blend-mode: multiply;
  filter: contrast(1.08);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(251, 250, 243, 0.86), rgba(251, 250, 243, 0));
}

.hero__content {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(82px, 16vw, 210px);
  line-height: 0.88;
  font-weight: 950;
  letter-spacing: 0;
}

.hero__line {
  max-width: 850px;
  margin: 30px 0 0;
  font-size: clamp(24px, 4.2vw, 58px);
  line-height: 1.06;
  font-weight: 900;
}

.hero__text {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: 17px;
  color: rgba(17, 17, 17, 0.86);
}

.hero__stats {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.hero__stats div {
  min-height: 132px;
  padding: 20px;
  display: grid;
  align-content: space-between;
  background: rgba(251, 250, 243, 0.88);
}

.hero__stats dt {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 950;
  line-height: 0.9;
}

.hero__stats dd {
  margin: 16px 0 0;
  font-size: 14px;
}

.ticker {
  border-block: 1px solid var(--ink);
  overflow: hidden;
  background: var(--red);
  color: var(--paper);
}

.ticker div {
  width: max-content;
  display: flex;
  align-items: center;
  animation: marquee 24s linear infinite;
}

.ticker span {
  padding: 18px 34px;
  white-space: nowrap;
  font-size: clamp(19px, 2.4vw, 34px);
  font-weight: 900;
}

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

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(88px, 12vw, 150px) clamp(22px, 4vw, 48px);
}

.section__head {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: start;
  margin-bottom: clamp(40px, 7vw, 82px);
}

.section__head h2 {
  margin: 0;
  font-size: clamp(46px, 9vw, 112px);
  line-height: 0.92;
  font-weight: 950;
}

.section__head p:not(.section__index) {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 18px;
}

.section__index {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.brand-core__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--ink);
  background: var(--ink);
  gap: 1px;
}

.quote-block {
  min-height: 310px;
  padding: clamp(24px, 3vw, 38px);
  display: grid;
  align-content: space-between;
  background: var(--paper);
}

.quote-block--yellow {
  background: var(--yellow);
}

.quote-block--blue {
  color: var(--paper);
  background: var(--blue);
}

.quote-block p {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.16;
  font-weight: 900;
}

.quote-block span {
  margin-top: 30px;
  font-size: 14px;
  font-weight: 800;
}

.vision {
  margin-top: 1px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  border: 1px solid var(--ink);
  background: var(--paper-deep);
}

.vision img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.vision div {
  padding: clamp(30px, 5vw, 72px);
  align-self: center;
}

.vision h3 {
  margin: 0;
  font-size: clamp(34px, 5.3vw, 74px);
  line-height: 0.96;
  font-weight: 950;
}

.vision p:last-child {
  max-width: 560px;
  margin: 30px 0 0;
  font-size: 18px;
}

.feature-stream {
  display: grid;
  grid-template-columns: minmax(230px, 0.32fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
}

.section__head--sticky {
  position: sticky;
  top: 92px;
  display: block;
  margin: 0;
}

.section__head--sticky .section__index {
  writing-mode: horizontal-tb;
  margin-bottom: 24px;
}

.section__head--sticky h2 {
  font-size: clamp(42px, 7vw, 84px);
}

.section__head--sticky p:not(.section__index) {
  font-size: 16px;
}

.feature-list {
  display: grid;
  gap: clamp(58px, 8vw, 110px);
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
}

.feature:nth-child(even) .feature__media {
  order: 2;
}

.feature__media {
  display: grid;
  gap: 12px;
}

.feature__media img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--ink);
}

.feature__media--split {
  grid-template-columns: 1fr 0.78fr;
  align-items: end;
}

.feature__media--split img:first-child {
  aspect-ratio: 3 / 4;
}

.feature__media--split img:nth-child(2) {
  aspect-ratio: 1 / 1;
}

.feature__body {
  padding-top: 10px;
  border-top: 1px solid var(--ink);
}

.feature__num {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--red);
  font-size: clamp(54px, 8vw, 98px);
  font-weight: 950;
  line-height: 0.78;
}

.feature h3 {
  margin: 0;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 0.94;
  font-weight: 950;
}

.feature p:not(.eyebrow) {
  margin: 24px 0 0;
  font-size: 17px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 7px 10px 8px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-size: 13px;
  font-weight: 800;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 0;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.mini-stats div {
  padding: 16px;
  background: var(--yellow);
}

.mini-stats dt {
  font-size: 27px;
  font-weight: 950;
}

.mini-stats dd {
  margin: 8px 0 0;
  font-size: 12px;
}

.collab {
  padding-top: 80px;
}

.collab__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--ink);
  background: var(--ink);
  gap: 1px;
}

.collab__grid article {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  background: var(--paper);
}

.collab__grid img {
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}

.collab__grid span,
.collab__grid h3,
.collab__grid p {
  margin-inline: 20px;
}

.collab__grid span {
  margin-top: 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.collab__grid h3 {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.08;
}

.collab__grid p {
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 14px;
}

.cooperation {
  margin-top: 1px;
  padding: clamp(24px, 4vw, 46px);
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 28px;
  color: var(--paper);
  background: var(--ink);
}

.cooperation h3 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.cooperation ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cooperation li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(251, 250, 243, 0.3);
  font-weight: 800;
}

.closing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.closing img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--ink);
}

.closing h2 {
  margin: 0;
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.94;
  font-weight: 950;
}

.closing p:last-child {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: 18px;
}

.site-footer {
  min-height: 360px;
  padding: clamp(34px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr) auto;
  gap: 40px;
  align-items: end;
  color: var(--paper);
  background: var(--red);
}

.site-footer .brand-mark__cn {
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.86;
}

.site-footer p {
  margin: 16px 0 0;
  font-size: 20px;
  font-weight: 900;
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
}

address a {
  width: max-content;
  margin-top: 14px;
  border-bottom: 1px solid currentColor;
  font-size: 20px;
  font-weight: 900;
}

.back-top {
  justify-self: end;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

@media (max-width: 1020px) {
  .site-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 900px;
  }

  .hero__red {
    width: min(68vw, 520px);
    right: 24px;
    bottom: 290px;
  }

  .hero__stats {
    width: min(100%, 620px);
  }

  .feature-stream {
    grid-template-columns: 1fr;
  }

  .section__head--sticky {
    position: static;
  }

  .feature,
  .feature:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .feature:nth-child(even) .feature__media {
    order: 0;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .back-top {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 58px;
    padding: 0 16px;
  }

  .brand-mark__cn {
    font-size: 22px;
  }

  .brand-mark__en {
    font-size: 9px;
  }

  .mobile-menu {
    top: 58px;
  }

  .hero {
    min-height: 820px;
    padding: 104px 18px 24px;
    align-items: start;
  }

  .hero__red {
    left: 30%;
    right: auto;
    top: 405px;
    bottom: auto;
    width: 64vw;
    opacity: 0.82;
  }

  .hero__line {
    margin-top: 20px;
  }

  .hero__text {
    font-size: 15px;
  }

  .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: end;
  }

  .hero__stats div {
    min-height: 104px;
    padding: 16px;
  }

  .section {
    padding-inline: 18px;
  }

  .section__head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section__index {
    writing-mode: horizontal-tb;
  }

  .brand-core__grid,
  .vision,
  .closing,
  .cooperation {
    grid-template-columns: 1fr;
  }

  .quote-block {
    min-height: 240px;
  }

  .vision img {
    min-height: 300px;
  }

  .feature__media--split {
    grid-template-columns: 1fr;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

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

  .cooperation ul {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 36px 18px;
  }
}

/* Craft x Tech style photo rhythm */
.feature-stream {
  display: block;
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 2.6vw, 36px);
}

.feature-stream .section__head--sticky {
  position: static;
  display: grid;
  grid-template-columns: minmax(120px, 0.22fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 64px);
  width: min(100%, var(--max));
  margin: 0 auto clamp(40px, 7vw, 82px);
}

.feature-stream .section__head--sticky .section__index {
  writing-mode: vertical-rl;
  margin: 0;
}

.feature-stream .section__head--sticky h2 {
  font-size: clamp(46px, 9vw, 112px);
}

.feature-list {
  gap: 30px;
}

.feature {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.feature__media {
  display: contents;
}

.feature__media img,
.feature__media--split img,
.feature__media--split img:first-child,
.feature__media--split img:nth-child(2) {
  width: 100%;
  height: 100%;
  aspect-ratio: 8 / 4.9;
  object-fit: cover;
  border: 0;
}

.feature:nth-child(odd) .feature__media img:nth-child(1) {
  grid-area: 1 / 1 / 2 / 2;
  aspect-ratio: 4 / 3;
}

.feature:nth-child(odd) .feature__media img:nth-child(2) {
  grid-area: 1 / 2 / 2 / 4;
  aspect-ratio: 2.7 / 1;
}

.feature:nth-child(odd) .feature__media img:nth-child(3) {
  grid-area: 2 / 1 / 4 / 2;
  aspect-ratio: 1 / 1.25;
}

.feature:nth-child(odd) .feature__media img:nth-child(4) {
  grid-area: 2 / 2 / 3 / 3;
}

.feature:nth-child(odd) .feature__media img:nth-child(5) {
  grid-area: 3 / 2 / 4 / 3;
}

.feature:nth-child(odd) .feature__media img:nth-child(6) {
  grid-area: 2 / 3 / 3 / 4;
}

.feature:nth-child(odd) .feature__body {
  grid-area: 3 / 3 / 4 / 4;
}

.feature:nth-child(even) .feature__media img:nth-child(1) {
  grid-area: 1 / 3 / 2 / 4;
  aspect-ratio: 4 / 3;
}

.feature:nth-child(even) .feature__media img:nth-child(2) {
  grid-area: 1 / 1 / 2 / 3;
  aspect-ratio: 2.7 / 1;
}

.feature:nth-child(even) .feature__media img:nth-child(3) {
  grid-area: 2 / 2 / 4 / 3;
  aspect-ratio: 1 / 1.25;
}

.feature:nth-child(even) .feature__media img:nth-child(4) {
  grid-area: 2 / 3 / 3 / 4;
}

.feature:nth-child(even) .feature__media img:nth-child(5) {
  grid-area: 3 / 3 / 4 / 4;
}

.feature:nth-child(even) .feature__media img:nth-child(6) {
  grid-area: 2 / 1 / 3 / 2;
}

.feature:nth-child(even) .feature__body {
  grid-area: 3 / 1 / 4 / 2;
}

.feature__body {
  min-height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--blue);
  background: var(--paper);
}

.feature__body .eyebrow {
  margin-bottom: 10px;
}

.feature__num {
  margin: 0 0 24px;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--blue);
}

.feature h3 {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.12;
}

.feature p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.55;
}

.tag-list {
  margin-top: 18px;
}

.tag-list li {
  padding: 5px 8px 6px;
  font-size: 12px;
}

.mini-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.mini-stats div {
  padding: 12px;
}

.mini-stats dt {
  font-size: 20px;
}

@media (max-width: 1020px) {
  .feature-stream .section__head--sticky {
    grid-template-columns: 1fr;
  }

  .feature-stream .section__head--sticky .section__index {
    writing-mode: horizontal-tb;
  }

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

  .feature:nth-child(odd) .feature__media img:nth-child(1),
  .feature:nth-child(even) .feature__media img:nth-child(1) {
    grid-area: 1 / 1 / 2 / 3;
  }

  .feature:nth-child(odd) .feature__media img:nth-child(2),
  .feature:nth-child(even) .feature__media img:nth-child(2) {
    grid-area: 2 / 1 / 3 / 3;
  }

  .feature:nth-child(odd) .feature__media img:nth-child(3),
  .feature:nth-child(even) .feature__media img:nth-child(3) {
    grid-area: 3 / 1 / 5 / 2;
  }

  .feature:nth-child(odd) .feature__media img:nth-child(4),
  .feature:nth-child(even) .feature__media img:nth-child(4) {
    grid-area: 3 / 2 / 4 / 3;
  }

  .feature:nth-child(odd) .feature__media img:nth-child(5),
  .feature:nth-child(even) .feature__media img:nth-child(5) {
    grid-area: 4 / 2 / 5 / 3;
  }

  .feature:nth-child(odd) .feature__media img:nth-child(6),
  .feature:nth-child(even) .feature__media img:nth-child(6) {
    display: none;
  }

  .feature:nth-child(odd) .feature__body,
  .feature:nth-child(even) .feature__body {
    grid-area: 5 / 1 / 6 / 3;
  }
}

@media (max-width: 680px) {
  .feature-stream {
    padding-inline: 18px;
  }

  .feature-list {
    gap: 22px;
  }

  .feature {
    gap: 7px;
  }

  .feature__body {
    padding: 18px;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }
}

.store-finder {
  width: min(100%, 1440px);
  padding-top: clamp(70px, 9vw, 120px);
}

.store-shell {
  display: grid;
  grid-template-columns: minmax(330px, 0.38fr) minmax(0, 1fr);
  min-height: 680px;
  border: 1px solid var(--ink);
  background: var(--ink);
  gap: 1px;
}

.store-panel,
.store-map-wrap {
  background: var(--paper);
}

.store-panel {
  min-height: 100%;
  padding: clamp(20px, 3vw, 34px);
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  gap: 22px;
}

.store-panel__top h3 {
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.96;
  font-weight: 950;
}

.store-controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.store-locate,
.store-select {
  min-height: 48px;
  border: 1px solid var(--ink);
  background: var(--yellow);
  font-weight: 900;
}

.store-locate {
  cursor: pointer;
}

.store-locate:hover {
  color: var(--paper);
  background: var(--blue);
}

.store-select {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 12px;
  background: var(--paper);
}

.store-select span {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-select select {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  outline: 0;
}

.store-status {
  margin: 0;
  padding: 12px 0;
  border-block: 1px solid var(--line);
  color: rgba(17, 17, 17, 0.72);
  font-size: 13px;
}

.store-list {
  min-height: 0;
  max-height: 452px;
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 10px;
  padding-right: 4px;
}

.store-card {
  width: 100%;
  padding: 14px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-align: left;
  cursor: pointer;
}

.store-card:hover,
.store-card.is-active {
  border-color: var(--blue);
  background: rgba(0, 63, 158, 0.08);
}

.store-card__rank {
  grid-row: 1 / 5;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.store-card strong {
  min-width: 0;
  font-size: 16px;
  line-height: 1.18;
}

.store-card small {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.store-card p,
.store-card span:not(.store-card__rank) {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 12px;
  line-height: 1.35;
}

.store-map-wrap {
  position: relative;
  min-height: 680px;
}

.store-map {
  width: 100%;
  min-height: 680px;
  height: 100%;
  filter: saturate(0.82) contrast(1.02);
}

.store-map-fallback {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: grid;
  place-items: center;
  background: var(--paper-deep);
}

.store-map-fallback[hidden] {
  display: none;
}

.store-popup strong,
.store-popup span,
.store-popup p,
.store-popup a {
  display: block;
  margin: 0;
  color: var(--ink);
}

.store-popup strong {
  margin-bottom: 4px;
  font-size: 16px;
}

.store-popup span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.store-popup p {
  margin-top: 6px;
  font-size: 12px;
}

.store-popup a {
  width: max-content;
  margin-top: 8px;
  border-bottom: 1px solid currentColor;
  font-weight: 900;
}

.leaflet-container {
  font: inherit;
  background: var(--paper-deep);
}

.leaflet-control-attribution {
  font-size: 10px;
}

@media (max-width: 1020px) {
  .store-shell {
    grid-template-columns: 1fr;
  }

  .store-list {
    max-height: 360px;
  }

  .store-map-wrap,
  .store-map {
    min-height: 520px;
  }
}

@media (max-width: 680px) {
  .language-toggle {
    margin-left: auto;
  }

  .site-header > .language-toggle {
    transform: scale(0.92);
    transform-origin: right center;
  }

  .store-finder {
    padding-inline: 18px;
  }

  .store-shell {
    min-height: 0;
  }

  .store-panel {
    padding: 18px;
  }

  .store-card {
    padding: 12px;
  }

  .store-map-wrap,
  .store-map {
    min-height: 420px;
  }
}

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

  .ticker div {
    animation: none;
  }
}
