:root {
  --bg: #fffaf5;
  --bg-soft: #fff3ea;
  --paper: rgba(255, 255, 255, 0.86);
  --line: rgba(229, 199, 183, 0.9);
  --text: #764735;
  --muted: #936f60;
  --accent: #e08d82;
  --accent-deep: #c96f62;
  --shadow: 0 24px 60px rgba(214, 175, 154, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 235, 224, 0.9), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 243, 236, 0.95), transparent 22%),
    linear-gradient(180deg, #fffdf9 0%, #fff7ef 48%, #fffdf9 100%);
  color: var(--text);
  font-family: "Manrope", "PingFang SC", "Microsoft YaHei", sans-serif;
}

img,
video {
  display: block;
  width: 100%;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 251, 247, 0.88);
  border-bottom: 1px solid rgba(239, 218, 207, 0.7);
}

.topbar__inner,
.section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand__title,
h1,
h2,
h3 {
  font-family: "Noto Serif SC", serif;
}

.brand__title {
  font-size: 26px;
  font-weight: 700;
}

.brand__sub {
  color: var(--muted);
  font-size: 14px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.section {
  padding: 42px 0;
}

.card,
.gallery-card,
.product-card,
.review-card,
.process-card {
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.card {
  padding: 22px;
}

.hero {
  display: grid;
  gap: 24px;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  padding-top: 30px;
}

.hero__media {
  min-height: 620px;
  overflow: hidden;
  padding: 18px;
}

.hero__media img {
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
}

.kicker {
  margin: 0 0 14px;
  color: #c3927d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.02;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.12;
}

h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
}

.hero__text,
.section-copy,
.story__copy p,
.process-feature__copy p,
.contact__list p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.hero__actions,
.hero__meta,
.meta-pills,
.section-more {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__actions {
  margin-top: 18px;
}

.hero__meta,
.meta-pills {
  margin-top: 22px;
}

.hero__meta span,
.meta-pills span {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 248, 243, 0.92);
  color: var(--muted);
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(214, 175, 154, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 180ms ease;
}

.btn--filled {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.btn--filled:hover {
  background: var(--accent-deep);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
}

.btn--outline:hover {
  border-color: #d69a89;
  color: var(--accent-deep);
}

.story {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.story__image {
  padding: 18px;
  overflow: hidden;
}

.story__image img {
  min-height: 440px;
  border-radius: 28px;
  object-fit: cover;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.section-head--center {
  justify-content: center;
  text-align: center;
}

.product-grid,
.share-grid,
.review-grid,
.process-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-card,
.gallery-card,
.review-card,
.process-card {
  padding: 18px;
}

.product-card img,
.gallery-card img,
.process-card video,
.process-card img {
  height: 230px;
  object-fit: cover;
  border-radius: 24px;
}

.product-card__badge {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 247, 242, 0.94);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.product-card {
  position: relative;
}

.product-card h3,
.gallery-card h3,
.review-card__headline {
  margin-top: 18px;
  font-size: 24px;
}

.product-card p,
.gallery-card p,
.review-card p,
.process-card p {
  color: var(--muted);
  line-height: 1.8;
}

.product-card__foot,
.gallery-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.section--soft .gallery-card {
  background: rgba(255, 255, 255, 0.9);
}

.product-showcase,
.materials-wall {
  margin-top: 28px;
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-shot {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.product-shot img {
  height: 100%;
  object-fit: cover;
}

.product-shot__caption {
  position: absolute;
  inset: auto 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.08), rgba(86, 48, 36, 0.72));
  color: #fff8f3;
}

.product-shot__tag {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 248, 243, 0.92);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 700;
}

.share-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card__pin {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffe7df, #de8b80 65%, #c96f62 100%);
}

.review-shell,
.gallery-wall {
  padding: 28px;
}

.review-shell {
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 246, 240, 0.95), rgba(255, 252, 247, 0.98)),
    radial-gradient(circle at top left, rgba(255, 224, 211, 0.45), transparent 30%);
  box-shadow: var(--shadow);
}

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

.review-card {
  position: relative;
  padding-top: 38px;
}

.review-card__quote {
  position: absolute;
  top: 12px;
  left: 18px;
  color: #efc0b2;
  font-family: "Noto Serif SC", serif;
  font-size: 54px;
  line-height: 1;
}

.review-card__author {
  font-weight: 800;
}

.gallery-wall {
  background:
    linear-gradient(180deg, rgba(255, 249, 243, 0.96), rgba(255, 253, 249, 0.99)),
    radial-gradient(circle at top right, rgba(255, 228, 219, 0.42), transparent 30%);
}

.materials-wall {
  column-count: 4;
  column-gap: 16px;
}

.materials-item {
  break-inside: avoid;
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 28px rgba(214, 175, 154, 0.1);
}

.materials-item img {
  border-radius: 20px;
}

.materials-item figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 4px 2px;
  color: var(--muted);
  font-size: 14px;
}

.process-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 28px;
}

.process-feature__media {
  overflow: hidden;
  padding: 18px;
}

.process-feature__media video {
  min-height: 380px;
  border-radius: 28px;
  object-fit: cover;
}

.process-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-sketch {
  position: relative;
  display: flex;
  min-height: 230px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  border: 1px dashed rgba(214, 166, 145, 0.9);
  background:
    radial-gradient(circle at top right, rgba(255, 226, 214, 0.92), transparent 36%),
    linear-gradient(180deg, #fffdf9 0%, #fff4eb 100%);
}

.process-sketch::before,
.process-sketch::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.45;
}

.process-sketch::before {
  inset: 22px auto auto 20px;
  width: 78px;
  height: 78px;
  background: rgba(255, 237, 228, 0.95);
}

.process-sketch::after {
  right: 18px;
  bottom: 20px;
  width: 110px;
  height: 110px;
  border: 2px solid rgba(225, 185, 166, 0.65);
}

.process-sketch__icon,
.process-sketch__title,
.process-sketch__badge {
  position: relative;
  z-index: 1;
}

.process-sketch__icon {
  font-size: 62px;
  filter: drop-shadow(0 10px 18px rgba(209, 163, 142, 0.28));
}

.process-sketch__title {
  position: absolute;
  left: 22px;
  bottom: 22px;
  color: var(--accent-deep);
  font-family: "Noto Serif SC", serif;
  font-size: 18px;
  font-weight: 600;
}

.process-sketch__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 249, 245, 0.94);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-sketch--prep {
  background:
    radial-gradient(circle at top right, rgba(255, 224, 213, 0.92), transparent 36%),
    linear-gradient(180deg, #fffdf9 0%, #fff5ef 100%);
}

.process-sketch--bake {
  background:
    radial-gradient(circle at top right, rgba(255, 218, 195, 0.94), transparent 36%),
    linear-gradient(180deg, #fffaf4 0%, #fff0e5 100%);
}

.process-sketch--watch {
  background:
    radial-gradient(circle at top right, rgba(250, 227, 207, 0.94), transparent 36%),
    linear-gradient(180deg, #fffdf8 0%, #fff6ed 100%);
}

.process-sketch--fresh {
  background:
    radial-gradient(circle at top right, rgba(255, 230, 196, 0.92), transparent 36%),
    linear-gradient(180deg, #fffdf6 0%, #fff4e7 100%);
}

.process-sketch--shelf {
  background:
    radial-gradient(circle at top right, rgba(255, 221, 201, 0.92), transparent 36%),
    linear-gradient(180deg, #fffdf8 0%, #fff3ea 100%);
}

.process-card__hint {
  margin-top: 10px;
  color: #b17a69;
  font-size: 13px;
  font-weight: 700;
}

.contact {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(360px, 1fr) 320px;
  padding-bottom: 68px;
}

.contact__qr img {
  border-radius: 22px;
}

.contact__qr p {
  margin: 14px 4px 0;
  color: var(--muted);
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 1100px) {
  .hero,
  .story,
  .process-feature,
  .contact {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .share-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-showcase,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .materials-wall {
    column-count: 3;
  }
}

@media (max-width: 720px) {
  .topbar__inner,
  .section {
    width: min(100% - 24px, 1240px);
  }

  .nav {
    display: none;
  }

  .hero__content,
  .card,
  .review-shell,
  .gallery-wall {
    padding: 18px;
  }

  .product-grid,
  .product-showcase,
  .share-grid,
  .review-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .materials-wall {
    column-count: 2;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }
}
