:root {
  --ink: #17201a;
  --muted: #5c665f;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #d9ded6;
  --jade: #0f6f63;
  --leaf: #2f8a4e;
  --chilli: #c83f2d;
  --gold: #d7a23a;
  --shadow: 0 18px 50px rgba(23, 32, 26, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  line-height: 1.5;
}

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

/* 站顶横幅：直接回答"我不是餐馆，能进吗" */
.open-banner {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px 12px;
  flex-wrap: wrap;
  padding: 9px clamp(16px, 4vw, 40px);
  background: var(--jade);
  color: #fff;
  text-align: center;
}

.open-banner strong {
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.open-banner span {
  font-size: 0.82rem;
  opacity: 0.92;
}

/* 门店页的"对公众开放"提示 */
.open-to-public {
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 14px;
  border-radius: 30px;
  background: #e6f2f0;
  color: var(--jade);
  font-size: 0.84rem;
}

.open-to-public strong {
  font-weight: 800;
}

@media (max-width: 620px) {
  .open-banner {
    flex-direction: column;
    gap: 2px;
    padding: 8px 16px;
  }

  .open-banner span {
    font-size: 0.76rem;
    line-height: 1.45;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(217, 222, 214, 0.9);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.hero-actions,
.contact-details div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.nav {
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  color: var(--muted);
  font-size: 15px;
}

.nav a:hover,
.header-action:hover {
  color: var(--jade);
}

.header-action,
.primary-button,
.secondary-button,
.enquiry-form button {
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: white;
  background: var(--chilli);
}

.header-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fb-menu {
  position: relative;
}

.fb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  color: #1877f2;
  border: 1px solid rgba(24, 119, 242, 0.35);
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
}

.fb-link:hover {
  color: white;
  background: #1877f2;
}

.fb-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 20;
  display: none;
  min-width: 190px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fb-menu:hover .fb-dropdown,
.fb-menu:focus-within .fb-dropdown {
  display: grid;
  gap: 2px;
}

.fb-dropdown a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.fb-dropdown a:hover {
  color: #1877f2;
  background: rgba(24, 119, 242, 0.08);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: clamp(44px, 9vw, 98px) clamp(18px, 5vw, 72px);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0e1914;
}

/* 双背景自动轮播：wholesale 仓储风 + 中超 retail 风，16 秒一轮交叉淡入淡出 */
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.slide-wholesale {
  background-image: url("https://images.unsplash.com/photo-1672552226380-486fe900b322?auto=format&fit=crop&w=1800&q=82");
  animation: heroFadeA 16s ease-in-out infinite;
}

.slide-retail {
  background-image: url("https://images.unsplash.com/photo-1771441943879-620a33d4d453?auto=format&fit=crop&w=1800&q=82");
  opacity: 0;
  animation: heroFadeB 16s ease-in-out infinite;
}

@keyframes heroFadeA {
  0% { opacity: 1; visibility: visible; }
  42% { opacity: 1; visibility: visible; }
  50% { opacity: 0; visibility: hidden; }
  92% { opacity: 0; visibility: hidden; }
  100% { opacity: 1; visibility: visible; }
}

@keyframes heroFadeB {
  0% { opacity: 0; visibility: hidden; }
  42% { opacity: 0; visibility: hidden; }
  50% { opacity: 1; visibility: visible; }
  92% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}

/* 文案与背景同步交叉切换：两层叠在同一格，共用背景的动画时间轴 */
.hero-copy-stack {
  display: grid;
}

.hero-copy {
  grid-area: 1 / 1;
  animation: heroFadeA 16s ease-in-out infinite;
}

.copy-retail {
  opacity: 0;
  visibility: hidden;
  animation-name: heroFadeB;
}

/* Parallax：大屏下背景相对视口固定，滚动时产生视差 */
@media (min-width: 901px) {
  .hero-slide {
    background-attachment: fixed;
  }
}

/* 暗色渐变遮罩压在轮播图上，保证左侧文字可读 */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 25, 20, 0.76), rgba(14, 25, 20, 0.38) 48%, rgba(14, 25, 20, 0.08));
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-copy {
    animation: none;
  }

  .slide-wholesale,
  .copy-wholesale {
    opacity: 1;
    visibility: visible;
  }

  .copy-retail {
    opacity: 0;
    visibility: hidden;
  }
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(0deg, var(--paper), rgba(251, 250, 246, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 640px;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
}

.primary-button {
  color: white;
  background: var(--chilli);
}

.secondary-button {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 36px));
  margin: -42px auto 76px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-band div {
  padding: 22px;
  background: var(--surface);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 6px;
  color: var(--jade);
}

.trust-band span,
.split-section p,
.section-heading p,
.roadmap p,
.contact-copy p,
.footer {
  color: var(--muted);
}

.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 96px;
}

.split-section.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.split-section.reverse > div:first-child {
  order: 2;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--leaf);
}

.feature-image {
  min-height: 430px;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.wholesale-image {
  background-image: url("https://images.unsplash.com/photo-1586201375761-83865001e31c?auto=format&fit=crop&w=1400&q=80");
}

.retail-image {
  background-image: url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1400&q=80");
}

.slogan-banner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 34px;
  padding: clamp(24px, 3vw, 36px);
  color: white;
  background: linear-gradient(100deg, var(--jade), #0b5a50);
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
}

.slogan-banner strong {
  color: var(--gold);
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.slogan-banner span {
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 700;
}

.store-callout {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 22px 26px;
  color: white;
  background: var(--chilli);
  border-radius: 8px;
}

.store-callout strong {
  display: block;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.15;
}

.store-callout span {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  opacity: 0.92;
}

.store-callout .primary-button {
  background: white;
  color: var(--chilli);
}

.brands-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 96px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.brand-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(23, 32, 26, 0.07);
}

.brand-card h3 {
  margin: 0 0 6px;
  color: var(--jade);
  font-size: 26px;
}

.brand-focus {
  margin: 0 0 12px;
  color: var(--chilli);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.brand-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.featured-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 96px;
  padding: clamp(28px, 4vw, 52px);
  background: #eef5ee;
  border: 1px solid rgba(15, 111, 99, 0.16);
  border-radius: 8px;
}

.featured-section .section-heading h2 {
  color: var(--jade);
}

/* Retail best sellers：暖色调与 wholesale 板块区分 */
.retail-featured {
  background: #fdf5e8;
  border-color: rgba(215, 162, 58, 0.35);
}

.retail-featured .section-heading h2 {
  color: var(--chilli);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(23, 32, 26, 0.07);
}

.product-image {
  position: relative;
}

.product-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  color: white;
  background: var(--chilli);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

a.product-tag:hover {
  background: var(--jade);
}

.product-tag.soon {
  position: static;
  display: inline-block;
  margin-bottom: 12px;
  background: var(--gold);
}

/* 已到货的新品：绿色角标（expected 写 "Arrived" 时自动应用） */
.product-tag.soon.arrived {
  background: var(--leaf);
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
}

.product-body h3 {
  margin: 0;
  font-size: 19px;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-spec {
  color: var(--jade) !important;
  font-weight: 800;
}

.product-body .inline-link {
  margin-top: auto;
  padding-top: 6px;
  font-size: 14px;
}

.coming-soon {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px dashed rgba(15, 111, 99, 0.35);
}

/* Shop by Country 入口条 */
.region-strip-block {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px dashed rgba(15, 111, 99, 0.35);
}

.region-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
}

.region-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

a.region-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.region-card .region-flag {
  font-size: 30px;
  line-height: 1.2;
}

.region-card strong {
  font-size: 18px;
}

.region-card .region-tagline {
  color: var(--muted);
  font-size: 13px;
}

.region-card .region-cta {
  margin-top: 8px;
  color: var(--jade);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.region-card.soon {
  background: transparent;
  border-style: dashed;
}

.region-card.soon .region-cta {
  color: var(--gold);
}

/* 地区子页 /world/<slug> */
.region-page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 52px;
}

.region-hero {
  margin-bottom: 40px;
}

.region-flag-big {
  margin: 0 0 8px;
  font-size: 60px;
  line-height: 1.1;
}

.region-page h1 {
  margin: 0 0 10px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.region-page .lead {
  color: var(--muted);
}

.region-products {
  margin-bottom: 96px;
}

.region-products .store-callout {
  margin-top: 36px;
}

/* 地区页备用卡位：加满 6 个真商品后自动消失 */
.slot-card {
  border-style: dashed;
  border-color: rgba(215, 162, 58, 0.6);
  box-shadow: none;
}

.slot-card .product-tag {
  background: var(--gold);
}

.slot-card h3,
.slot-card .product-spec {
  color: var(--muted) !important;
}

/* 商品暂无图片时的占位底色 */
.product-image.no-image {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(15, 111, 99, 0.12), rgba(215, 162, 58, 0.12)),
    #eef2ec;
}

.coming-soon-heading h3 {
  margin-bottom: 20px;
  font-size: clamp(24px, 3vw, 32px);
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.coming-soon-card {
  padding: 24px;
  background: var(--surface);
  border: 2px dashed rgba(215, 162, 58, 0.6);
  border-radius: 8px;
}

.coming-soon-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 14px;
  border-radius: 6px;
}

.coming-soon-card h4 {
  margin: 0 0 8px;
  font-size: 19px;
}

.coming-soon-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.coming-soon-card.placeholder {
  max-width: 620px;
}

.roadmap-section,
.locations-section,
.depot-hero,
.depot-detail-section,
.depot-contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 96px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.roadmap,
.depot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.depot-card,
.roadmap article,
.enquiry-form,
.manager-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.depot-card {
  overflow: hidden;
}

.roadmap article,
.depot-card-body {
  padding: 20px;
}

.depot-grid {
  grid-template-columns: repeat(3, 1fr);
}

.depot-card-image {
  min-height: 190px;
  background-position: center;
  background-size: cover;
}

.depot-card h3 {
  font-size: 24px;
}

.depot-card p {
  color: var(--muted);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--jade);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-link::after {
  content: ">";
  text-decoration: none;
}

.roadmap {
  grid-template-columns: repeat(3, 1fr);
}

.roadmap span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--chilli);
  font-weight: 900;
}

.contact-section {
  align-items: start;
  padding: 56px;
  background: #eef5ee;
  border-radius: 8px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-details div {
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 111, 99, 0.18);
}

.contact-details dt {
  color: var(--muted);
  font-weight: 700;
}

.contact-details dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.enquiry-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: white;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form button {
  border: 0;
  color: white;
  background: var(--jade);
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--jade);
  font-weight: 800;
}

/* 法务页（隐私政策）：正文窄栏，长文本可读性优先 */
.legal-page {
  padding-top: 52px;
  background: #fff;
}

.legal-hero,
.legal-body {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
}

.legal-hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.legal-updated {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.legal-body {
  padding-bottom: 80px;
  line-height: 1.75;
}

.legal-body h2 {
  margin: 40px 0 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 1.12rem;
}

.legal-body h3 {
  margin: 24px 0 6px;
  font-size: 0.98rem;
  color: var(--jade);
}

.legal-body p {
  margin: 0 0 14px;
  font-size: 0.94rem;
}

.legal-body a {
  color: var(--jade);
  text-decoration: underline;
}

.legal-list {
  margin: 0 0 16px;
  padding-left: 22px;
  font-size: 0.94rem;
}

.legal-list li {
  margin-bottom: 8px;
}

.legal-facts {
  margin: 0 0 20px;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.legal-facts div {
  display: grid;
  grid-template-columns: minmax(180px, 34%) 1fr;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.9rem;
}

.legal-facts div + div {
  border-top: 1px solid var(--line);
}

.legal-facts dt {
  color: var(--muted);
}

.legal-facts dd {
  margin: 0;
  font-weight: 700;
}

/* 召回页顶部的状态提示条 */
.notice-box {
  display: grid;
  gap: 6px;
  margin-bottom: 8px;
  padding: 18px 20px;
  background: #f2f8f7;
  border: 1px solid var(--jade);
  border-radius: 12px;
}

.notice-box strong { font-size: 0.95rem; }
.notice-box span { font-size: 0.86rem; color: var(--muted); }

.notice-box.alert {
  background: #fdecea;
  border-color: var(--chilli);
}

.notice-box.alert strong { color: var(--chilli); }

/* 询盘表单下方的隐私告知 */
.form-privacy {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.form-privacy a {
  color: var(--jade);
  text-decoration: underline;
}

@media (max-width: 620px) {
  .legal-facts div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px clamp(18px, 4vw, 56px) 0;
  background: var(--surface);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px 40px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-bottom: 26px;
}

.footer-brand {
  display: grid;
  gap: 6px;
  max-width: 380px;
}

.footer-brand strong {
  font-size: 1rem;
}

.footer-brand span,
.footer-cities span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.footer-nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-heading {
  margin: 0 0 2px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.footer-cities-line {
  margin-top: 6px;
  display: block;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-nav a:hover {
  color: var(--jade);
}

.footer-cities {
  display: grid;
  gap: 6px;
  text-align: right;
}

/* 底部法定披露：三家公司的注册名/编号/注册地址（《公司名称与交易披露条例 2015》要求可见） */
.footer-bottom {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-legal-intro,
.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.footer-legal {
  display: grid;
  gap: 2px;
  margin: 6px 0 10px;
}

.footer-legal-row {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

.footer-legal-row strong {
  color: var(--ink);
  font-weight: 700;
}

.footer-copy {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

/* 隐私政策 / Terms 里每家公司一张信息卡 */
.legal-facts.entity {
  margin-bottom: 12px;
}

.legal-facts.entity dd {
  font-weight: 400;
}

.legal-facts.entity div:first-child dd {
  font-weight: 700;
}

/* 门店页底部的经营主体说明 */
.depot-entity {
  width: min(1180px, calc(100% - 36px));
  margin: 18px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
}

.depot-page {
  padding-top: 52px;
  background: #fff;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 15px;
}

.breadcrumbs a {
  color: var(--jade);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.depot-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.depot-hero-copy h1 {
  margin: 0 0 8px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.depot-hero-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(26px, 3vw, 38px);
}

.open-status {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
}

.open-status span {
  color: var(--ink);
}

.status-open {
  color: var(--leaf);
}

.status-closed {
  color: var(--chilli);
}

.hours-list div.today dt,
.hours-list div.today dd {
  color: var(--jade);
}

/* depot 页中英关键词副文案 */
.depot-seo {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.depot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
}

.depot-hero-image {
  min-height: 330px;
  background-position: center;
  background-size: cover;
  border-radius: 2px;
}

.depot-detail-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr) minmax(240px, 0.8fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.depot-detail-section h2,
.depot-contact-section h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.depot-info-block address {
  display: grid;
  gap: 2px;
  margin-bottom: 26px;
  color: var(--ink);
  font-style: normal;
  font-size: 18px;
}

.depot-info-block address span {
  display: block;
}

.map-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #edf5ed;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

.hours-list {
  display: grid;
  gap: 8px;
  margin: 28px 0 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
}

.hours-list dt {
  font-weight: 900;
}

.hours-list dd {
  margin: 0;
  font-weight: 700;
}

.depot-services-block ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding-left: 22px;
  font-size: 18px;
}

.depot-contact-section {
  width: 100%;
  margin-bottom: 0;
  padding: 62px max(18px, calc((100% - 1180px) / 2)) 86px;
  background: #f5f6f4;
}

.depot-contact-section .centered {
  max-width: none;
  text-align: center;
}

.manager-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  width: min(620px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px;
}

.manager-avatar {
  display: block;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
}

.manager-card h3 {
  margin-top: 10px;
  font-size: 30px;
}

.manager-contact {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.manager-contact a {
  color: var(--jade);
  font-size: 18px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

  .nav {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .trust-band,
  .split-section,
  .split-section.reverse,
  .contact-section,
  .roadmap,
  .depot-grid,
  .brand-grid,
  .depot-hero-layout,
  .depot-detail-section {
    grid-template-columns: 1fr;
  }

  .store-callout {
    justify-content: center;
    text-align: center;
  }

  .split-section.reverse > div:first-child {
    order: 0;
  }

  .feature-image {
    min-height: 320px;
  }

  .contact-section {
    padding: 28px;
  }

  .depot-page {
    padding-top: 32px;
  }

  .depot-hero-image {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand span:last-child {
    max-width: 118px;
  }

  .header-action {
    padding: 0 14px;
  }

  .fb-link {
    padding: 0 11px;
  }

  .fb-link span {
    display: none;
  }

  .hero {
    padding-inline: 18px;
  }

  .trust-band {
    margin-top: -24px;
  }

  .footer-main {
    flex-direction: column;
    gap: 20px;
  }

  .footer-cities {
    text-align: left;
  }

  .depot-actions {
    gap: 16px;
  }

  .hours-list div,
  .manager-card {
    grid-template-columns: 1fr;
  }

  .manager-avatar {
    width: 74px;
    height: 74px;
  }
}
