:root {
  --red: #b34716;
  --orange: #f47700;
  --ink: #20160f;
  --gold: #bd8840;
  --cream: #fff3df;
  --paper: #fffaf1;
  --white: #fff;
  --muted: #756553;
  --line: #eadfce;
  --shadow: 0 18px 50px rgba(65, 35, 16, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.topbar {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px max(16px, calc((100% - 1120px) / 2));
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 241, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  min-width: 0;
}
.brand span { line-height: 1.1; }
.brand small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}
.logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}
.topbar nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}
.topbar nav a { line-height: 1.1; text-align: center; }
.topbar nav small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

.hero {
  min-height: 540px;
  max-width: 1120px;
  margin: auto;
  padding: 44px 20px 34px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 34px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: .16em;
  font-weight: 900;
  color: var(--orange);
  text-transform: uppercase;
}
h1,
h2 {
  font-family: "Noto Serif SC", "Songti SC", serif;
  letter-spacing: 0;
}
h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  margin: 14px 0 18px;
}
h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.18;
  margin: 8px 0 12px;
}
h2 span {
  display: block;
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: .44em;
  font-weight: 700;
  color: var(--muted);
  margin-top: 7px;
}
.hero-copy > p:not(.eyebrow) {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.72;
  max-width: 560px;
}
.hero-copy > p span,
.section-heading > p span {
  display: block;
}
.hero-actions,
.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.button {
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  line-height: 1.15;
}
.button small {
  font-weight: 600;
  opacity: .78;
}
.primary { background: var(--orange); color: var(--white); }
.ghost { border: 1px solid var(--line); background: var(--white); }

.hero-art {
  aspect-ratio: 1.48;
  border-radius: 8px;
  background: #f8ead8;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.hero-carousel::-webkit-scrollbar { display: none; }
.hero-carousel img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  scroll-snap-align: start;
}

.promo-strip {
  background: #fbefe0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px max(16px, calc((100% - 1120px) / 2));
  gap: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.promo-strip div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid #d8c7ad;
}
.promo-strip div:last-child { border-right: 0; }
.promo-strip strong { color: #8d4f12; }
.promo-strip span {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
}

.section {
  max-width: 1120px;
  margin: auto;
  padding: 58px 20px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 22px;
  gap: 24px;
}
.section-heading.compact { margin-bottom: 18px; }
.section-heading > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
  max-width: 440px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.about-grid article {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
}
.about-grid strong {
  display: block;
  color: var(--orange);
  margin-bottom: 8px;
}
.about-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.poster-showcase {
  max-width: none;
  background: var(--cream);
}
.poster-showcase > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.poster-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr .8fr;
  gap: 14px;
}
.poster-card {
  min-height: 260px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  position: relative;
}
.feature-poster {
  background: var(--cream);
  box-shadow: var(--shadow);
}
.feature-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.poster-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  background: linear-gradient(135deg, #fff 0%, #fff3df 100%);
}
.poster-card span {
  font-size: 12px;
  font-weight: 900;
  color: var(--orange);
  text-transform: uppercase;
}
.poster-card h3 {
  font-size: 24px;
  line-height: 1.15;
  margin: 10px 0;
}
.poster-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.product {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(231, 222, 211, .72);
}
.product-image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #ddc9af, #f5e8d7);
  display: grid;
  place-items: center;
  color: #94765c;
  font-size: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-badge {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 2;
  max-width: calc(100% - 16px);
  border-radius: 999px;
  background: rgba(244, 119, 0, .94);
  color: var(--white);
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.15;
}
.product-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}
.product .en {
  font-size: 12px;
  color: var(--orange);
  font-weight: 800;
  margin: 6px 0 8px;
  line-height: 1.35;
}
.product p:last-child {
  color: var(--muted);
  line-height: 1.48;
  margin: 0;
  font-size: 13px;
}

.outlets {
  background: var(--white);
  max-width: none;
}
.outlets > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.outlet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.outlet {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.outlet h3 {
  margin: 0 0 12px;
  line-height: 1.2;
}
.outlet h3 span {
  color: var(--muted);
  font-size: 14px;
}
.outlet p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.outlet small {
  color: var(--orange);
  font-weight: 900;
}

.contact-section {
  padding-bottom: 76px;
}
.contact-panel {
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: clamp(24px, 5vw, 48px);
  overflow: hidden;
}
.contact-panel h2 span,
.contact-panel p {
  color: rgba(255, 255, 255, .72);
}
.contact-panel .ghost {
  color: var(--ink);
}
.button[aria-disabled="true"],
.social-links a[aria-disabled="true"] {
  opacity: .52;
  pointer-events: none;
}
.social-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.social-links a {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, .08);
}
.social-links strong,
.social-links span {
  display: block;
}
.social-links span {
  font-size: 12px;
  opacity: .7;
  margin-top: 4px;
}

footer {
  background: var(--ink);
  color: var(--white);
  padding: 34px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer span,
footer small { opacity: .64; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .poster-grid { grid-template-columns: 1fr 1fr; }
  .poster-copy { grid-column: 1 / -1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  body { background: var(--paper); }
  .topbar {
    align-items: center;
    flex-wrap: wrap;
    padding-top: 9px;
    padding-bottom: 9px;
    gap: 10px;
  }
  .brand { flex: 1 1 auto; }
  .brand small { font-size: 9px; }
  .topbar nav {
    flex: 1 0 100%;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--line);
    padding-top: 10px;
    font-size: 12px;
  }
  .topbar nav small { font-size: 9px; }
  .hero {
    display: flex;
    flex-direction: column;
    padding: 24px 18px 30px;
    min-height: auto;
    gap: 24px;
  }
  .hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.65;
  }
  .button { width: 100%; }
  .hero-art {
    width: 100%;
    aspect-ratio: 1.42;
  }
  .promo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 14px 10px;
    gap: 0;
  }
  .promo-strip strong { font-size: 13px; }
  .promo-strip span { font-size: 9px; }
  .section { padding: 42px 16px; }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }
  .about-grid,
  .outlet-grid,
  .social-links {
    grid-template-columns: 1fr;
  }
  .poster-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }
  .poster-card {
    min-width: 86%;
    min-height: 220px;
    scroll-snap-align: start;
  }
  .feature-poster { min-width: 92%; }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .product h3 { font-size: 14px; }
  .product-body { padding: 12px; }
}

@media (max-width: 380px) {
  .product-grid { grid-template-columns: 1fr; }
  .topbar nav { font-size: 11px; }
}
