:root {
  --red: #c71925;
  --red-dark: #8f1019;
  --gold: #f3c653;
  --cream: #fff8ed;
  --ink: #201713;
  --muted: #6e625a;
  --line: rgba(32, 23, 19, .12);
  --card: #ffffff;
  --shadow: 0 18px 60px rgba(40, 20, 10, .12);
  --radius: 22px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7e8 0%, #ffffff 52%, #fff7e8 100%);
}

body.menu-open { overflow: hidden; }

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

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.container.narrow {
  max-width: 820px;
}

.topbar {
  background: var(--red);
  color: white;
  font-size: 14px;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar span { opacity: .94; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 237, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: -.03em;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: white;
  background: radial-gradient(circle at 70% 20%, var(--gold), var(--red) 52%, var(--red-dark));
  box-shadow: 0 10px 25px rgba(199, 25, 37, .24);
  font-size: 24px;
  font-weight: 900;
}

.brand-text strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.brand-text small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #3d302a;
  font-weight: 650;
  font-size: 15px;
}

.nav-links a:hover { color: var(--red); }

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.75);
}

.language-switcher button {
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.language-switcher button.active {
  background: var(--red);
  color: white;
  box-shadow: 0 8px 18px rgba(199, 25, 37, .2);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: var(--red);
  color: white;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -160px;
  top: -180px;
  background: radial-gradient(circle, rgba(243,198,83,.52), rgba(199,25,37,.14) 45%, transparent 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--red-dark);
  background: rgba(199,25,37,.08);
  border: 1px solid rgba(199,25,37,.14);
  font-weight: 800;
  font-size: 14px;
}

h1 {
  margin: 18px 0 18px;
  max-width: 720px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: .95;
  letter-spacing: -.065em;
}

.hero p {
  max-width: 600px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 28px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 12px 30px rgba(199,25,37,.24);
}

.btn-secondary {
  background: white;
  color: var(--red-dark);
  border-color: rgba(199,25,37,.16);
}

.hero-card {
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,248,237,.92));
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow);
  border-radius: 34px;
  padding: 24px;
}

.market-visual {
  min-height: 420px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(32,23,19,.05), rgba(32,23,19,.02)),
    radial-gradient(circle at 22% 24%, #ffdf76 0 9%, transparent 10%),
    radial-gradient(circle at 72% 20%, #f04b54 0 12%, transparent 13%),
    radial-gradient(circle at 75% 70%, #6bbf59 0 11%, transparent 12%),
    radial-gradient(circle at 28% 72%, #ff9c4a 0 10%, transparent 11%),
    #fffaf2;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.market-visual::after {
  content: "天天";
  position: absolute;
  font-size: 180px;
  font-weight: 900;
  color: rgba(199,25,37,.07);
  transform: rotate(-10deg);
}

.market-visual-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.market-visual-content .big {
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--red-dark);
}

.market-visual-content .sub {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.visual-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.visual-tags span {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  font-weight: 800;
}

.section { padding: 64px 0; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 35px rgba(40,20,10,.06);
}

.category-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(199,25,37,.09);
  font-size: 26px;
  margin-bottom: 18px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.highlight {
  background: var(--red);
  color: white;
  border-radius: 34px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 30px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.highlight::after {
  content: "SALE";
  position: absolute;
  right: -30px;
  bottom: -30px;
  font-size: 124px;
  font-weight: 900;
  color: rgba(255,255,255,.08);
  letter-spacing: -.08em;
}

.highlight h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -.05em;
  line-height: 1;
}

.highlight p {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  font-size: 17px;
}

.offer-box {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 24px;
  padding: 24px;
}

.offer-box strong {
  display: block;
  font-size: 46px;
  line-height: 1;
  color: var(--gold);
}

.info-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
}

.hours-list, .contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-list li, .contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.hours-list strong, .contact-list strong { color: var(--ink); }

.contact-heading { margin-top: 28px; }

.map-placeholder {
  min-height: 320px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(199,25,37,.12), rgba(243,198,83,.22)),
    repeating-linear-gradient(45deg, rgba(32,23,19,.05) 0 1px, transparent 1px 18px);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  color: var(--muted);
  font-weight: 700;
}

.map-icon {
  font-size: 44px;
  margin-bottom: 10px;
}

.legal-page h1 {
  font-size: clamp(38px, 5vw, 62px);
  margin: 0 0 18px;
  letter-spacing: -.055em;
  line-height: .98;
}

.legal-page h2 {
  margin: 34px 0 10px;
  font-size: 24px;
}

.legal-page p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-note {
  border: 1px solid rgba(199, 25, 37, .18);
  background: rgba(199, 25, 37, .06);
  color: var(--red-dark) !important;
  border-radius: 18px;
  padding: 16px 18px;
}

footer {
  padding: 34px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.5);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner a {
  color: var(--red-dark);
  font-weight: 750;
}

@media (max-width: 880px) {
  .mobile-toggle { display: inline-flex; }

  .nav-links {
    position: fixed;
    inset: 117px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 10px;
  }

  body.menu-open .nav-links { display: flex; }

  .nav-links a {
    padding: 14px;
    border-radius: 14px;
  }

  .nav-actions {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .hero-grid, .highlight, .info-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .market-visual { min-height: 330px; }
}

@media (max-width: 560px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

  .brand-text small { display: none; }
  .language-switcher button { padding: 7px 8px; }
  .hero { padding-top: 48px; }
  .highlight { padding: 28px; }
  .visual-tags { grid-template-columns: 1fr; }
}
