:root {
  --ink: #171819;
  --muted: #60656c;
  --paper: #fffdf9;
  --soft: #f5f1ea;
  --line: #e7ddd0;
  --forest: #17392f;
  --berry: #6f2443;
  --teal: #226c73;
  --gold: #c98528;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(23, 24, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans SC", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid rgba(231, 221, 208, 0.75);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  max-width: min(460px, 100%);
}

.brand strong {
  color: var(--forest);
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
}

.brand span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 26px);
  flex-wrap: wrap;
  max-width: 100%;
}

.main-nav a {
  color: #303236;
  font-size: 14px;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--berry);
}

.hero {
  position: relative;
  min-height: clamp(520px, 74vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #1c1d1f;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(18, 19, 20, 0.76) 0%, rgba(18, 19, 20, 0.58) 38%, rgba(18, 19, 20, 0.16) 74%),
    url("https://jizekeji.oss-cn-beijing.aliyuncs.com/web/hero-desserts.jpg");
  background-size: cover;
  background-position: center right;
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  max-width: calc(100vw - 40px);
  margin-left: clamp(20px, 6vw, 88px);
  padding: 96px 0 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #f3d19b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 13ch;
  font-size: clamp(42px, 6.6vw, 78px);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-lede {
  width: min(660px, 100%);
  max-width: calc(100vw - 40px);
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.2vw, 23px);
  overflow-wrap: anywhere;
  word-break: normal;
}

.hero-cn {
  width: min(660px, 100%);
  max-width: calc(100vw - 40px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.button.primary {
  border-color: #f0c37a;
  background: #f0c37a;
  color: #1e1b17;
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 88px);
}

.section.alt {
  background: var(--soft);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 36px;
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--berry);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  color: var(--forest);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.wide-text {
  color: var(--muted);
  font-size: 17px;
}

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

.panel {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.panel h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 22px;
}

.panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.feature {
  min-height: 180px;
  padding: 28px;
  background: var(--paper);
}

.feature-number {
  display: block;
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.facts {
  display: grid;
  gap: 14px;
  margin: 0;
}

.fact-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.fact-row dt {
  color: var(--forest);
  font-weight: 800;
}

.fact-row dd {
  margin: 0;
  color: var(--muted);
}

.contact-band {
  background: var(--forest);
  color: var(--white);
}

.contact-band h2,
.contact-band .section-kicker {
  color: var(--white);
}

.contact-band .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-band .fact-row {
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-band .fact-row dt {
  color: #f0c37a;
}

.contact-band .fact-row dd {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px clamp(20px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.82);
  background: #111715;
  font-size: 14px;
}

.site-footer a {
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero {
  padding: 72px clamp(20px, 6vw, 88px) 54px;
  color: var(--white);
  background: var(--forest);
}

.page-hero .section-inner {
  width: min(980px, 100%);
}

.page-hero h1 {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(38px, 5vw, 64px);
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.legal-layout {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(46px, 7vw, 78px) clamp(20px, 6vw, 88px);
}

.legal-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

.legal-section h3 {
  margin: 22px 0 8px;
  color: var(--berry);
  font-size: 19px;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section ul {
  margin: 0;
  padding-left: 20px;
}

.lang-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .main-nav {
    justify-content: flex-start;
    width: 100%;
  }

  .hero {
    min-height: 680px;
  }

  .hero::before {
    background-image:
      linear-gradient(180deg, rgba(18, 19, 20, 0.78) 0%, rgba(18, 19, 20, 0.56) 54%, rgba(18, 19, 20, 0.28) 100%),
      url("https://jizekeji.oss-cn-beijing.aliyuncs.com/web/hero-desserts.jpg");
    background-position: center right;
  }

  .hero-content {
    width: calc(100% - 40px);
    max-width: calc(100vw - 40px);
    margin: 0 auto;
    padding-top: 82px;
  }

  .hero-lede,
  .hero-cn {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(38px, 10vw, 54px);
  }

  .section-heading,
  .split,
  .lang-block {
    grid-template-columns: 1fr;
  }

  .grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .fact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 520px) {
  .main-nav {
    gap: 10px 16px;
  }

  .hero-content {
    width: calc(100% - 40px);
    max-width: 350px;
    margin-left: 20px;
    margin-right: auto;
  }

  .hero-lede,
  .hero-cn {
    max-width: 350px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .hero {
    min-height: 640px;
  }

  .button {
    width: 100%;
  }

  .site-footer a {
    display: inline-block;
    margin: 8px 16px 0 0;
  }
}
