/* Slogan display face — heavy SC black, matched to 微信图片_2026-08-05_161011_402 */
@font-face {
  font-family: "Noto Sans SC Black";
  src: url("../assets/fonts/NotoSansSC-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* DBe's site — tokens from brand-spec.md */
:root {
  --bg: oklch(12% 0.004 60);
  --surface: oklch(18% 0.005 55);
  --fg: oklch(96% 0.002 90);
  --muted: oklch(62% 0.012 70);
  --border: oklch(28% 0.008 55);
  --accent: oklch(38% 0.15 28);
  --ember: oklch(68% 0.18 52);
  --bronze: oklch(62% 0.06 75);
  --cream: oklch(96% 0.01 90);
  --ink: oklch(16% 0.01 55);
  --danger: oklch(62% 0.19 25);
  --slogan: #ce231e; /* sampled from slogan reference PNG */
  --font-display: "Archivo Black", "Noto Sans SC", system-ui, sans-serif;
  --font-body: "Noto Sans SC", "Segoe UI", system-ui, sans-serif;
  --font-slogan: "Noto Sans SC Black", "Noto Sans SC", system-ui, sans-serif;
  --font-mono: ui-monospace, "JetBrains Mono", Menlo, monospace;
  --container: 1120px;
  --header-h: 72px;
  --radius: 2px;
  --focus-ring: 0 0 0 2px var(--bg), 0 0 0 4px color-mix(in oklab, var(--accent) 75%, white);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

body.nav-open { overflow: hidden; }

img {
  max-width: 100%;
  display: block;
  height: auto;
}

img.is-loading {
  background: linear-gradient(
    110deg,
    var(--surface) 20%,
    color-mix(in oklab, var(--border) 55%, var(--surface)) 40%,
    var(--surface) 60%
  );
  background-size: 200% 100%;
  min-height: 8rem;
  color: transparent;
}

img.is-broken {
  object-fit: cover;
  background:
    repeating-linear-gradient(
      -45deg,
      var(--surface),
      var(--surface) 8px,
      color-mix(in oklab, var(--border) 55%, var(--surface)) 8px,
      color-mix(in oklab, var(--border) 55%, var(--surface)) 16px
    );
  border: 1px dashed var(--border);
  min-height: 8rem;
}

main:focus { outline: none; }
main:focus-visible { outline: none; }

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }

:focus { outline: none; }
:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--accent) 80%, white);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: 0.65rem 1rem;
  background: var(--fg);
  color: var(--bg);
  border-radius: var(--radius);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.skip-link:focus {
  top: 1rem;
  outline: none;
  box-shadow: var(--focus-ring);
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

@media (max-width: 480px) {
  .container { width: min(100% - 1.5rem, var(--container)); }
}

/* —— Header —— */
.site-header {
  --header-progress: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: color-mix(
    in oklab,
    var(--bg) calc(var(--header-progress) * 100%),
    transparent
  );
  backdrop-filter: blur(calc(var(--header-progress) * 14px));
  -webkit-backdrop-filter: blur(calc(var(--header-progress) * 14px));
  border-bottom: 0;
  border-radius: 0;
  box-shadow: 0 1px 0 color-mix(
    in oklab,
    var(--border) calc(var(--header-progress) * 100%),
    transparent
  );
  transition: none;
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* 非首页：主内容为固定顶栏让位；首页 Hero 上探与透明顶栏融合 */
main {
  padding-top: var(--header-h);
}
body.has-hero-banner main {
  padding-top: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo:focus-visible { outline-offset: 4px; }
.logo__img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(148px, 42vw);
  object-fit: contain;
  object-position: left center;
}
.site-footer__brand .logo__img {
  height: 72px;
  max-width: 180px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav a {
  position: relative;
  padding: 0.45rem 0.7rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: color-mix(in oklab, var(--fg) 72%, var(--muted));
  transition: color 0.2s ease;
  border-radius: 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.18rem;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 1;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease;
  pointer-events: none;
}
.nav a:hover {
  color: var(--fg);
}
.nav a:hover:not([aria-current="page"])::after {
  transform: scaleX(1);
  opacity: 0.45;
}
.nav a[aria-current="page"] {
  color: var(--fg);
}
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
  opacity: 1;
}
.nav a:focus-visible {
  outline-offset: 2px;
}

.nav__cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1rem !important;
  background: var(--accent);
  color: var(--fg) !important;
  letter-spacing: 0.04em;
  border-radius: 0;
  box-shadow: none !important;
  font-weight: 700;
}
.nav__cta::after {
  display: none !important;
}
.nav__cta:hover { filter: brightness(1.12); }
.nav__cta[aria-current="page"] {
  filter: brightness(1.05);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  place-items: center;
  border-radius: 0;
  transition: border-color 0.15s, background 0.15s;
}
.nav-toggle:hover { border-color: color-mix(in oklab, var(--fg) 35%, var(--border)); }
.nav-toggle[aria-expanded="true"] {
  border-color: var(--fg);
  background: var(--surface);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--fg);
  position: relative;
  transition: background 0.15s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--fg);
  transition: transform 0.2s ease, top 0.2s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* —— Typography helpers —— */
.kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.kicker--accent { color: var(--accent); }
.kicker--bronze { color: var(--bronze); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); letter-spacing: -0.01em; }

.lead {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.65;
}

.lead--on-hero {
  color: color-mix(in oklab, var(--fg) 86%, transparent);
  max-width: 32rem;
}

.muted { color: var(--muted); }

.list-plain {
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.page-hero--center { text-align: center; }
.page-hero--center .container {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
}
.page-hero--center .lead { margin-inline: auto; }

.stack-center {
  display: grid;
  justify-items: center;
  gap: 1.25rem;
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}
.stack-center .lead { margin: 0 auto; }

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.7rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s, filter 0.15s, opacity 0.15s;
}
.btn:active:not(:disabled) { transform: translateY(1px); }
.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
.btn:disabled,
.btn[aria-disabled="true"],
.btn.is-loading {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  filter: none;
}
.btn.is-loading {
  pointer-events: none;
  position: relative;
}
.btn--primary {
  background: var(--accent);
  color: var(--fg);
}
.btn--primary:hover:not(:disabled) { filter: brightness(1.1); }
.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--fg);
}
.btn--ghost:hover:not(:disabled) { border-color: var(--fg); }
.btn--ember {
  background: var(--ember);
  color: #140a04;
}
.btn--ember:hover:not(:disabled) { filter: brightness(1.05); }
.btn--block { width: 100%; }

/* —— Hero carousel —— */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
body.has-hero-banner .hero {
  /* 顶栏透明叠在 Banner 上，视觉融为一体 */
  margin-top: 0;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transition: opacity 1.05s cubic-bezier(0.33, 0.05, 0.2, 1), visibility 1.05s;
}
.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero__slide.is-leaving {
  opacity: 0;
  visibility: visible;
  z-index: 2;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) contrast(1.05);
  transform: scale(1.06);
  will-change: transform;
}
.hero__slide.is-active img {
  animation: hero-kenburns 14s ease-out forwards;
}
@keyframes hero-kenburns {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}

/* 居中主图 + 左侧文案可读：均匀压暗 + 左侧略深 */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      oklch(10% 0.004 60 / 0.88) 0%,
      oklch(10% 0.004 60 / 0.7) 18%,
      oklch(12% 0.004 60 / 0.42) 42%,
      oklch(12% 0.004 60 / 0.32) 100%
    ),
    linear-gradient(
      to top,
      oklch(12% 0.004 60) 0%,
      oklch(12% 0.004 60 / 0.58) 18%,
      transparent 46%,
      color-mix(in oklab, var(--bg) 32%, transparent) 100%
    );
}

/* 背景全宽；主题文案/控件与全站 .container 同宽对齐 */
.hero__rail {
  position: relative;
  z-index: 4;
  width: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 2.5rem) 0 2.5rem;
  box-sizing: border-box;
}
.hero__theme {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 1.75rem;
}
.hero__copy-stack {
  position: relative;
  display: grid;
  width: 100%;
  max-width: min(30rem, 100%);
  margin-inline: 0;
}
.hero__copy {
  grid-area: 1 / 1;
  display: grid;
  gap: 1.15rem;
  align-content: end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-10px, 14px, 0);
  transition:
    opacity 0.55s cubic-bezier(0.33, 0.05, 0.2, 1),
    transform 0.55s cubic-bezier(0.33, 0.05, 0.2, 1),
    visibility 0.55s;
  z-index: 0;
}
.hero__copy.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  z-index: 1;
}
.hero__copy.is-active > * {
  animation: hero-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero__copy.is-active > *:nth-child(1) { animation-delay: 0.04s; }
.hero__copy.is-active > *:nth-child(2) { animation-delay: 0.1s; }
.hero__copy.is-active > *:nth-child(3) { animation-delay: 0.16s; }
.hero__copy.is-active > *:nth-child(4) { animation-delay: 0.22s; }
@keyframes hero-rise {
  from { opacity: 0; transform: translate3d(-12px, 16px, 0); }
  to { opacity: 1; transform: none; }
}
.hero__copy h1 {
  color: var(--fg);
  text-shadow: 0 1px 24px oklch(8% 0.01 60 / 0.45);
}
.hero__meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--fg) 82%, transparent);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.hero__controls {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.25rem;
}
.hero__nav,
.hero__pause {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in oklab, var(--fg) 22%, transparent);
  background: color-mix(in oklab, var(--bg) 55%, transparent);
  color: var(--fg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.hero__nav:hover,
.hero__pause:hover {
  border-color: color-mix(in oklab, var(--fg) 45%, transparent);
  background: color-mix(in oklab, var(--bg) 72%, transparent);
}
.hero__nav:focus-visible,
.hero__pause:focus-visible,
.hero__dot:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
.hero__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.35rem;
}
.hero__dot {
  width: 28px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: color-mix(in oklab, var(--fg) 28%, transparent);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.hero__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--fg);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}
.hero__dot.is-active {
  background: color-mix(in oklab, var(--fg) 28%, transparent);
}
.hero__dot.is-active::after {
  transform: scaleX(1);
  transition: transform var(--hero-interval, 6s) linear;
}
.hero__dot.is-active.is-paused::after {
  transition: none;
}
.hero__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: opacity 0.2s ease; }
  .hero__slide.is-active img { animation: none; transform: none; }
  .hero__copy {
    transition: opacity 0.2s ease, visibility 0.2s;
    transform: none;
  }
  .hero__copy.is-active > * { animation: none; }
  .hero__dot.is-active::after { transition: none; transform: scaleX(1); }
}

@media (max-width: 900px) {
  .hero__veil {
    background:
      linear-gradient(
        90deg,
        oklch(10% 0.004 60 / 0.9) 0%,
        oklch(10% 0.004 60 / 0.78) 35%,
        oklch(12% 0.004 60 / 0.5) 100%
      ),
      linear-gradient(
        to top,
        oklch(12% 0.004 60) 0%,
        oklch(12% 0.004 60 / 0.65) 24%,
        transparent 52%
      );
  }
}

@media (max-width: 640px) {
  .hero { min-height: min(88vh, 720px); }
  .hero__rail { padding: 3.25rem 0 2rem; }
  .hero__theme { gap: 1.35rem; }
  .hero__copy-stack { max-width: 100%; }
  .hero__copy { gap: 1rem; }
  .hero__actions .btn { flex: 1 1 auto; min-width: 9.5rem; }
  .hero__nav,
  .hero__pause { width: 36px; height: 36px; }
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  border-bottom: 1px solid var(--border);
}
.section--cream {
  background: var(--cream);
  color: var(--ink);
}
.section--cream .lead,
.section--cream .kicker,
.section--cream .muted { color: color-mix(in oklab, var(--ink) 62%, transparent); }
.section--cream .kicker--accent { color: var(--accent); }
.section--cream .card {
  background: #fff;
  border-color: color-mix(in oklab, var(--ink) 12%, transparent);
}
.section--cream .btn--primary:focus-visible {
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px color-mix(in oklab, var(--accent) 70%, black);
}
.section--cream .btn--ghost {
  border-color: color-mix(in oklab, var(--ink) 22%, transparent);
  color: var(--ink);
}
.section--cream .btn--ghost:hover:not(:disabled) {
  border-color: var(--ink);
}
.section--surface { background: var(--surface); }

.section__head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 40rem;
}
.section__head--row {
  max-width: none;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1.5rem;
}
@media (max-width: 720px) {
  .section__head--row { grid-template-columns: 1fr; }
}

/* —— Grids —— */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* —— Cards / dishes —— */
.card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: border-color 0.2s ease;
}
a.card:hover { border-color: color-mix(in oklab, var(--fg) 28%, var(--border)); }
a.card:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a0a0a;
  position: relative;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.card:hover .card__media img { transform: scale(1.04); }
.card__body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: grid;
  gap: 0.45rem;
  flex: 1;
}
.card__body p { color: var(--muted); font-size: 0.9rem; }

.pillar__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.pillar {
  border: 1px solid var(--border);
  padding: 1.5rem 1.35rem;
  display: grid;
  gap: 0.65rem;
  background: transparent;
  transition: border-color 0.2s ease;
}
.pillar:hover {
  border-color: color-mix(in oklab, var(--fg) 28%, var(--border));
}

/* —— Split —— */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.split--rev { direction: rtl; }
.split--rev > * { direction: ltr; }
@media (max-width: 860px) {
  .split, .split--rev { grid-template-columns: 1fr; direction: ltr; }
}
.split__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.split__media--wide { aspect-ratio: 16 / 10; }
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split__copy { display: grid; gap: 1rem; justify-items: start; }
.contact-facts {
  display: grid;
  gap: 1.1rem;
  margin-top: 0.5rem;
}
.contact-facts__label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.contact-facts a:hover { color: var(--accent); }

/* —— Store location —— */
.store-loc {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.85rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 36rem;
}
.store-loc__label {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.store-loc__addr {
  flex: 1 1 12rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--fg);
}
.store-loc__map {
  flex: 0 0 auto;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.store-loc__map:hover { color: var(--accent); }
.store-loc__map:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* —— Store list —— */
.store-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}
.store-row:last-child { border-bottom: 1px solid var(--border); }
.store-row__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.store-row__title { margin-bottom: 0.35rem; }
.store-row__addr {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}
.section-head--flush {
  margin-bottom: 0.5rem;
}
.section-head--flush h2 {
  margin-bottom: 0.75rem;
}
@media (max-width: 720px) {
  .store-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}

/* —— Stats —— */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.stat {
  background: var(--bg);
  padding: 1.5rem 1.25rem;
  display: grid;
  gap: 0.35rem;
}
.stat__val {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: 0.82rem;
  color: var(--muted);
}
@media (max-width: 800px) {
  .stats { grid-template-columns: 1fr 1fr; }
}

/* —— Forms —— */
.form {
  display: grid;
  gap: 1rem;
  max-width: 32rem;
}
.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  min-height: 44px;
  padding: 0.7rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: color-mix(in oklab, var(--fg) 22%, var(--border));
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px color-mix(in oklab, var(--accent) 35%, transparent);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 2px color-mix(in oklab, var(--danger) 28%, transparent);
}
.field__error {
  display: none;
  font-size: 0.8rem;
  color: color-mix(in oklab, var(--danger) 85%, white);
  letter-spacing: 0.01em;
}
.field__error.is-visible { display: block; }
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}
.form-success {
  display: none;
  padding: 1rem 1.1rem;
  border: 1px solid color-mix(in oklab, var(--accent) 50%, var(--border));
  background: color-mix(in oklab, var(--accent) 12%, var(--surface));
  border-radius: var(--radius);
}
.form-success.is-visible { display: block; }
.form-success.is-error {
  border-color: color-mix(in oklab, var(--danger) 45%, var(--border));
  background: color-mix(in oklab, var(--danger) 12%, var(--surface));
}

/* —— Toast —— */
.site-toast-host {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding: 1rem;
}
.site-toast {
  width: min(92vw, 420px);
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--fg);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: center;
  box-shadow: 0 12px 40px oklch(0% 0 0 / 0.45);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.site-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.site-toast--success {
  border-color: color-mix(in oklab, var(--accent) 55%, var(--border));
  background: color-mix(in oklab, var(--accent) 14%, var(--surface));
}
.site-toast--error {
  border-color: color-mix(in oklab, var(--danger) 50%, var(--border));
  background: color-mix(in oklab, var(--danger) 14%, var(--surface));
}
@media (prefers-reduced-motion: reduce) {
  .site-toast { transition: none; transform: none; }
}

/* Franchise apply — intro + form left, image right; mobile stacks title → image → form */
[data-od-id="franchise-form"] .franchise-apply {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
[data-od-id="franchise-form"] .franchise-apply__intro {
  grid-column: 1;
  display: grid;
  gap: 1rem;
  justify-items: start;
}
[data-od-id="franchise-form"] .franchise-apply__form {
  grid-column: 1;
  max-width: none;
  width: 100%;
}
[data-od-id="franchise-form"] .franchise-apply__media {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}
@media (max-width: 860px) {
  [data-od-id="franchise-form"] .franchise-apply {
    grid-template-columns: 1fr;
  }
  [data-od-id="franchise-form"] .franchise-apply__intro {
    order: 1;
    grid-column: 1;
  }
  [data-od-id="franchise-form"] .franchise-apply__media {
    order: 2;
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }
  [data-od-id="franchise-form"] .franchise-apply__form {
    order: 3;
    grid-column: 1;
  }
}

/* —— Page hero (inner) —— */
.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 2.5rem;
  border-bottom: 1px solid var(--border);
}
.page-hero .lead { margin-top: 0.85rem; }

/* —— Quote cards —— */
.quote-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 48rem;
  margin-inline: auto;
  text-align: left;
}
.quote-card {
  border: 1px solid var(--border);
  padding: 1.5rem 1.35rem;
  display: grid;
  gap: 1rem;
}
.quote-card p { font-size: 1.05rem; line-height: 1.55; }
.quote-card cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
@media (max-width: 700px) {
  .quote-cards { grid-template-columns: 1fr; }
}

/* —— Awards (about) —— */
.award-spreads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2.5rem 0 2.75rem;
}
.award-spread {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}
.award-spread img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #0a0a0a;
}
.award-spread figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.award-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
}
.award-list li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1rem 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.award-list li:nth-child(odd) { padding-right: 1.5rem; border-right: 1px solid var(--border); }
.award-list li:nth-child(even) { padding-left: 1.5rem; }
.award-list__year {
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze);
  padding-top: 0.2rem;
}
.award-list strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.25rem;
}
.award-list .muted {
  font-size: 0.85rem;
  margin: 0;
}
@media (max-width: 820px) {
  .award-spreads { grid-template-columns: 1fr; }
  .award-list { grid-template-columns: 1fr; }
  .award-list li:nth-child(odd),
  .award-list li:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }
}

/* —— Timeline (about / history) —— */
.timeline {
  list-style: none;
  margin: 2.5rem auto 0;
  padding: 0;
  max-width: 42rem;
  display: grid;
  gap: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 5.25rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: var(--border);
}
.timeline__item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.35rem 0;
  position: relative;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: 5.25rem;
  top: 1.75rem;
  width: 9px;
  height: 9px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--bronze);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--bronze) 18%, transparent);
}
.timeline__year {
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze);
  padding-top: 0.35rem;
  text-align: right;
  padding-right: 1.5rem;
}
.timeline__body {
  padding-left: 1.5rem;
}
.timeline__title {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 0.35rem;
}
.timeline__desc {
  font-size: 0.92rem;
  line-height: 1.55;
}
@media (max-width: 640px) {
  .timeline::before { left: 0.35rem; }
  .timeline__item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding-left: 1.35rem;
  }
  .timeline__item::before {
    left: 0.35rem;
    top: 1.45rem;
  }
  .timeline__year {
    text-align: left;
    padding-right: 0;
    padding-left: 0.15rem;
  }
  .timeline__body { padding-left: 0.15rem; }
}

/* —— Home news (handbook p.23) —— */
.news-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: stretch;
}
.news-feature__media {
  margin: 0;
  border: 1px solid var(--border);
  background: #0a0a0a;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.news-feature__media > a {
  display: block;
  flex: 1;
  min-height: 0;
}
.news-feature__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  flex: 1;
}
.news-feature__cap {
  padding: 0.55rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.news-feature__body {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding-block: 0.25rem;
}
.news-feature__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.news-feature__body .lead {
  max-width: none;
  font-size: 0.95rem;
  line-height: 1.7;
}
.news-feature__stat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0.25rem 0 0.5rem;
}
.news-feature__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  flex-shrink: 0;
}
.news-feature__title-link {
  color: inherit;
  text-decoration: none;
}
.news-feature__title-link:hover { color: var(--fg); }
.news-feature__title-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.news-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.news-feature__stat .muted {
  font-size: 0.92rem;
  max-width: 16rem;
  line-height: 1.45;
  margin: 0;
}
@media (max-width: 900px) {
  .news-feature { grid-template-columns: 1fr; }
  .news-feature__body { order: -1; }
}

/* —— Footer —— */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}
.site-footer__brand { margin-bottom: 0.55rem; }
.site-footer__slogan {
  margin: 0 0 0.9rem;
  max-width: 26rem;
}
.site-footer__slogan-img {
  display: block;
  width: min(100%, 12rem);
  height: auto;
}
.site-footer__blurb {
  max-width: 22rem;
  font-size: 0.9rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 1fr auto;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: start;
}
.site-footer h3 {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.site-footer a {
  display: block;
  color: var(--muted);
  padding: 0.25rem 0;
  font-size: 0.9rem;
  border-radius: var(--radius);
  width: fit-content;
}
.site-footer a:hover { color: var(--fg); }
.site-footer a:focus-visible { outline-offset: 3px; }
.site-footer__phone {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.site-footer__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.site-footer__social h3 {
  width: 100%;
  text-align: center;
}
.site-footer__qr {
  margin: 0;
  max-width: 8.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.site-footer__qr img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #0a0a0a;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--border) 80%, transparent);
}
.site-footer__qr figcaption {
  margin-top: 0.55rem;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.3;
  white-space: nowrap;
  text-align: center;
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.site-footer__copy {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
}
.site-footer__icp {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.site-footer__icp:hover,
.site-footer__icp:focus-visible {
  color: var(--fg);
  border-bottom-color: color-mix(in srgb, var(--fg) 35%, transparent);
  outline: none;
}
@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.5rem;
  }
  .site-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }
  .site-footer__social {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }
  .site-footer__social h3 {
    text-align: left;
    margin-bottom: 0;
  }
  .site-footer__qr { max-width: 7.5rem; }
}

/* —— Tabs (menu) —— */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}
.tab {
  min-height: 44px;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius);
  letter-spacing: 0.03em;
  color: var(--muted);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.tab:hover { border-color: color-mix(in oklab, var(--fg) 30%, var(--border)); color: var(--fg); }
.tab:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
.tab[aria-selected="true"] {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.tab-panel[hidden] { display: none; }
.tab-panel:focus { outline: none; }
.tab-panel:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--accent) 70%, white);
  outline-offset: 4px;
}

/* —— Mobile nav —— */
@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: color-mix(in oklab, var(--bg) 98%, black);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.25rem 1.25rem;
    display: none;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.9rem 0.5rem; font-size: 1rem; }
  .nav a::after {
    left: 0;
    right: auto;
    top: 0.85rem;
    bottom: 0.85rem;
    width: 2px;
    height: auto;
    transform: scaleY(0);
    transform-origin: center top;
  }
  .nav a:hover::after,
  .nav a[aria-current="page"]::after {
    transform: scaleY(1);
  }
  .nav__cta {
    margin: 0.5rem 0 0;
    text-align: center;
    justify-content: center;
  }
  /* 展开菜单时顶栏立即实底，避免透出 Banner 干扰阅读 */
  body.nav-open .site-header {
    --header-progress: 1 !important;
  }
}

/* City chips */
.city-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.city-chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: var(--radius);
}

.mt-3 { margin-top: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-block { margin-top: 2.5rem; }
.text-sm { font-size: 0.9rem; }
.h3-sm {
  margin: 0.75rem 0 1rem;
  font-size: 1.15rem;
}
.h2-sm { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }

/* Empty panel state */
.empty-state {
  border: 1px dashed var(--border);
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

/* —— Floating actions (right dock) —— */
.fab-dock {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}
.fab {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 48px;
  min-height: 48px;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 0;
  background: color-mix(in oklab, var(--surface) 92%, black);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: background 0.15s, border-color 0.15s, color 0.15s, opacity 0.2s, transform 0.2s;
}
.fab svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fab:hover {
  border-color: color-mix(in oklab, var(--fg) 35%, var(--border));
  background: var(--surface);
}
.fab:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring), 0 8px 24px rgba(0, 0, 0, 0.35);
}
.fab--message {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--fg);
}
.fab--message:hover {
  filter: brightness(1.1);
  border-color: var(--accent);
  background: var(--accent);
}
.fab--top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
}
.fab--top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
@media (max-width: 480px) {
  .fab-dock { right: 0.75rem; bottom: 0.85rem; }
  .fab { min-width: 44px; padding: 0.5rem 0.45rem; font-size: 0.62rem; }
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .hero__copy-stack,
  .page-hero .container {
    animation: rise 0.7s ease both;
  }
  img.is-loading {
    animation: shimmer 1.2s linear infinite;
  }
  @keyframes rise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
  }
  @keyframes shimmer {
    to { background-position: -200% 0; }
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__copy-stack,
  .page-hero .container,
  img.is-loading {
    animation: none !important;
  }
  .card__media img,
  .btn,
  .nav a,
  .nav a::after,
  .tab,
  .fab {
    transition: none !important;
  }
  .fab--top {
    transform: none;
  }
}

/* —— News list & detail —— */
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}
.news-list__tag { margin: 0; }
.news-list__item {
  display: grid;
  grid-template-columns: minmax(0, 12rem) minmax(0, 1fr);
  gap: 1.5rem 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  align-items: center;
  transition: background 0.2s ease;
}
.news-list__item:hover { background: color-mix(in oklch, var(--surface) 70%, transparent); }
.news-list__item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.news-list__thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}
.news-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-list__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: baseline;
  margin-bottom: 0.45rem;
}
.news-list__date {
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.news-list__item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 0.5rem;
}
.news-list__item .muted { margin: 0; max-width: 42rem; }
.news-list__arrow {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.news-list__item:hover .news-list__arrow { color: var(--accent); }

.news-article {
  max-width: 42rem;
  margin-inline: auto;
}
.news-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1.25rem;
  align-items: baseline;
}
.news-article__date {
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.news-article__cover {
  margin: 0 0 2rem;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}
.news-article__cover img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 28rem;
  object-fit: contain;
  background: #0a0a0a;
}
.news-article__cover figcaption {
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.news-article__body p {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg);
}
.news-article__body .lead {
  font-size: 1.15rem;
  color: var(--muted);
}
.news-article__stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.75rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.news-article__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.news-article__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.news-article__nav a {
  color: var(--fg);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.news-article__nav a:hover { color: var(--accent); }
.news-article__nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .news-list__item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .news-list__thumb { max-width: 100%; }
}
