:root {
  --bg: #f7f1e9;
  --ink: #2b1a12;
  --red: #c44b3a;
  --red-dark: #8b2c23;
  --gold: #d9b98a;
  --green: #2f6b4f;
  --white: #fffaf3;
  --shadow: 0 20px 50px rgba(37, 20, 12, 0.15);
  --paper: #fdf6ec;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", "STSong", serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff7eb 0%, var(--bg) 55%, #efe4d6 100%);
  line-height: 1.7;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

body::before {
  top: -120px;
  left: -80px;
  background: rgba(196, 75, 58, 0.6);
}

body::after {
  bottom: -160px;
  right: -100px;
  background: rgba(47, 107, 79, 0.5);
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 243, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(139, 44, 35, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: var(--white);
  padding: 6px;
}

.brand-cn {
  font-size: 1.3rem;
  letter-spacing: 4px;
}

.brand-en {
  font-family: "Noto Sans SC", "PingFang SC", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: rgba(43, 26, 18, 0.6);
}

.nav {
  display: flex;
  gap: 24px;
  font-family: "Noto Sans SC", "PingFang SC", sans-serif;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}

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

.hero {
  padding: 90px 0 110px;
  background: linear-gradient(120deg, rgba(196, 75, 58, 0.08), transparent 45%),
    linear-gradient(220deg, rgba(47, 107, 79, 0.08), transparent 45%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: 5vw;
  width: 260px;
  height: 260px;
  border-radius: 36% 64% 56% 44% / 38% 60% 40% 62%;
  background: rgba(217, 185, 138, 0.25);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.tagline {
  color: var(--red-dark);
  letter-spacing: 4px;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.hero-text h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 20px;
}

.lead {
  font-size: 1.05rem;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 26px;
  border-radius: 999px;
  font-family: "Noto Sans SC", "PingFang SC", sans-serif;
  font-size: 0.95rem;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  background: var(--red-dark);
}

.btn.ghost {
  border-color: var(--red);
  color: var(--red-dark);
  background: rgba(255, 250, 243, 0.7);
}

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

.hero-highlights div {
  padding: 16px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(139, 44, 35, 0.15);
}

.label {
  font-size: 0.8rem;
  color: var(--red);
  letter-spacing: 2px;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 20px;
}

.hero-visual img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: var(--white);
  padding: 12px;
}

.hero-card {
  position: absolute;
  right: 0;
  bottom: -20px;
  background: var(--white);
  padding: 22px 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(139, 44, 35, 0.15);
}

.hero-card h3 {
  margin-bottom: 10px;
  color: var(--red-dark);
}

.hero-card ul {
  list-style: none;
  font-family: "Noto Sans SC", "PingFang SC", sans-serif;
  font-size: 0.95rem;
  display: grid;
  gap: 6px;
}

.hero-quote {
  background: rgba(255, 250, 243, 0.9);
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(196, 75, 58, 0.18);
  font-family: "Noto Sans SC", "PingFang SC", sans-serif;
  box-shadow: var(--shadow);
}

.hero-quote span {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(43, 26, 18, 0.6);
}

.section {
  padding: 90px 0;
}

.section h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.3rem);
  margin-bottom: 16px;
}

.section-lead {
  max-width: 620px;
  color: rgba(43, 26, 18, 0.7);
  margin-bottom: 40px;
}

.section-title {
  margin-bottom: 36px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.signature {
  margin-top: 24px;
  padding: 16px 22px;
  border-left: 4px solid var(--red);
  background: rgba(196, 75, 58, 0.08);
}

.signature span {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--red);
}

.signature p {
  margin-top: 8px;
}

.panel {
  background: var(--white);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  border: 1px solid rgba(139, 44, 35, 0.1);
}

.panel-text h3 {
  color: var(--red-dark);
  margin-bottom: 6px;
}

.panel-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: "Noto Sans SC", "PingFang SC", sans-serif;
  font-size: 0.85rem;
}

.panel-footer span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(196, 75, 58, 0.12);
}

.products {
  background: linear-gradient(180deg, #fef9f2 0%, #f7f1e9 100%);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(139, 44, 35, 0.1);
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 120px;
  height: 120px;
  background: rgba(217, 185, 138, 0.25);
  border-radius: 50%;
}

.card-media {
  border-radius: 18px;
  overflow: hidden;
  background: #fef4e7;
}

.card-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  color: var(--red-dark);
}

.card-tag {
  font-family: "Noto Sans SC", "PingFang SC", sans-serif;
  font-size: 0.8rem;
  color: var(--green);
}

.craft {
  background: linear-gradient(120deg, rgba(47, 107, 79, 0.08), transparent 50%);
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.craft-text p {
  margin-bottom: 22px;
}

.craft-list {
  display: grid;
  gap: 14px;
}

.craft-list h4 {
  font-size: 1rem;
  color: var(--red-dark);
}

.craft-visual {
  display: grid;
  gap: 18px;
}

.craft-panel {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(139, 44, 35, 0.1);
}

.craft-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  font-family: "Noto Sans SC", "PingFang SC", sans-serif;
  font-size: 0.85rem;
}

.craft-badges span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(47, 107, 79, 0.12);
  color: var(--green);
}

.craft-pattern {
  background: var(--paper);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.stores {
  background: linear-gradient(180deg, #f9f2e8 0%, #efe3d5 100%);
}

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

.store-card {
  background: var(--white);
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(139, 44, 35, 0.1);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.store-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.store-head h3 {
  color: var(--red-dark);
}

.store-tag {
  font-family: "Noto Sans SC", "PingFang SC", sans-serif;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(196, 75, 58, 0.12);
  color: var(--red-dark);
}

.store-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: "Noto Sans SC", "PingFang SC", sans-serif;
  font-size: 0.82rem;
}

.store-meta span {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(47, 107, 79, 0.4);
  color: var(--green);
}

.site-footer {
  background: #2b1a12;
  color: #f7f1e9;
  padding: 50px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  align-items: start;
}

.footer-note {
  color: rgba(247, 241, 233, 0.7);
  margin-top: 8px;
}

.footer-meta,
.footer-legal {
  font-family: "Noto Sans SC", "PingFang SC", sans-serif;
  font-size: 0.9rem;
  display: grid;
  gap: 6px;
}

.footer-legal a {
  color: #f7f1e9;
  opacity: 0.9;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-card {
    position: static;
  }

  .hero {
    padding-top: 60px;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-quote {
    font-size: 0.95rem;
  }
}
