:root {
  color-scheme: light;
  --ink: #211b17;
  --muted: #71645b;
  --soft: #f7f3ec;
  --paper: #ffffff;
  --line: #e6dacc;
  --taro: #6f4b82;
  --taro-dark: #4a2f58;
  --leaf: #47724c;
  --earth: #8d6041;
  --gold: #c98c35;
  --shadow: 0 16px 36px rgba(58, 39, 28, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
}

body,
button,
input,
textarea {
  font: inherit;
}

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

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

.topbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230, 218, 204, 0.88);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  min-height: 64px;
  padding: 10px clamp(18px, 5vw, 54px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  align-items: center;
  background: var(--taro);
  border-radius: 8px;
  color: #fff;
  display: grid;
  font-weight: 840;
  height: 38px;
  place-items: center;
  width: 38px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 2px;
}

.nav {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: center;
}

.nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 680;
}

.nav a:hover {
  color: var(--taro-dark);
}

.nav-cta,
.button {
  align-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 780;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.nav-cta,
.button.primary,
.button.submit {
  background: var(--taro);
  color: #fff;
}

.button.quiet {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.button:hover,
.nav-cta:hover {
  box-shadow: 0 10px 22px rgba(111, 75, 130, 0.18);
  transform: translateY(-1px);
}

.compact-hero {
  display: grid;
  gap: clamp(18px, 4vw, 42px);
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.78fr);
  padding: clamp(34px, 6vw, 72px) clamp(18px, 6vw, 72px) clamp(24px, 4vw, 44px);
}

.hero-copy-block {
  align-self: center;
  max-width: 710px;
}

.eyebrow {
  color: var(--taro-dark);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0;
  margin: 0 0 10px;
}

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

h1 {
  font-size: 4rem;
  line-height: 1.02;
  margin-bottom: 18px;
  max-width: 820px;
}

h2 {
  font-size: 2.35rem;
  line-height: 1.08;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.hero-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-product {
  align-self: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-product img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.hero-product-body {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.hero-product h2 {
  font-size: 2rem;
  margin: 12px 0 10px;
}

.hero-product p {
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 0;
}

.badge {
  background: #f0e8f3;
  border-radius: 999px;
  color: var(--taro-dark);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 840;
  padding: 5px 9px;
}

.quick-facts {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.quick-facts div {
  background: #fbf8f3;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 10px;
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 760;
  margin-bottom: 3px;
}

.quick-facts dd {
  font-size: 0.92rem;
  font-weight: 840;
  margin: 0;
}

.notice {
  align-items: center;
  background: #33231b;
  color: #fff;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 14px clamp(18px, 6vw, 72px);
}

.notice div {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.notice span,
.notice a {
  color: #f1dfc8;
}

.section {
  padding: clamp(42px, 7vw, 78px) clamp(18px, 6vw, 72px);
}

.section-heading {
  max-width: 760px;
}

.section-heading.row {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
  max-width: none;
}

.products {
  background: #fff;
}

.filter-tabs {
  background: #fbf8f3;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 4px;
  padding: 4px;
}

.tab {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 780;
  min-height: 36px;
  padding: 0 12px;
}

.tab.active {
  background: var(--taro);
  color: #fff;
}

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

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(58, 39, 28, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card figure {
  aspect-ratio: 5 / 3;
  background: #efe6da;
  margin: 0;
  overflow: hidden;
}

.product-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
  width: 100%;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.product-meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.stock {
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 840;
}

.product-card p,
.service-grid p,
.order-copy p {
  color: var(--muted);
  line-height: 1.68;
}

.product-card p {
  flex: 1;
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.price-row {
  align-items: end;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-top: 13px;
}

.price {
  color: var(--earth);
  font-size: 1.3rem;
  font-weight: 880;
}

.unit,
.minimum {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
}

.minimum {
  text-align: right;
}

.intro {
  background: #f8f1e8;
}

.service-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.service-grid article {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.icon {
  align-items: center;
  background: #f0e8f3;
  border-radius: 8px;
  color: var(--taro-dark);
  display: grid;
  font-weight: 850;
  height: 38px;
  margin-bottom: 15px;
  place-items: center;
  width: 38px;
}

.order-band {
  background: #2b211b;
  color: #fff;
  display: grid;
  gap: clamp(22px, 5vw, 48px);
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.08fr);
}

.order-band .eyebrow {
  color: #dfc7e8;
}

.order-copy {
  align-self: center;
}

.order-copy p {
  color: #eadccb;
}

.contact-panel {
  align-items: center;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  max-width: 410px;
  padding: 14px;
}

.contact-panel strong,
.contact-panel span {
  display: block;
}

.contact-panel span {
  color: #eadccb;
  margin-top: 4px;
}

.qr {
  align-items: center;
  background:
    linear-gradient(90deg, #fff 10px, transparent 10px) 0 0 / 22px 22px,
    linear-gradient(#fff 10px, transparent 10px) 0 0 / 22px 22px,
    #e7d6ea;
  border: 5px solid #fff;
  border-radius: 8px;
  color: #2b211b;
  display: grid;
  font-weight: 900;
  height: 78px;
  place-items: center;
  width: 78px;
}

.order-form {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(18px, 4vw, 28px);
}

label {
  color: var(--muted);
  display: grid;
  font-size: 0.86rem;
  font-weight: 780;
  gap: 7px;
}

label.full {
  grid-column: 1 / -1;
}

input,
textarea {
  background: #fbf8f3;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  outline: none;
  padding: 11px 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--taro);
  box-shadow: 0 0 0 4px rgba(111, 75, 130, 0.13);
}

.submit {
  grid-column: 1 / -1;
  min-height: 46px;
}

.summary-section {
  background: #fff;
  padding-top: 38px;
}

.order-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 880px;
  padding: clamp(20px, 4vw, 32px);
}

.order-summary.hidden {
  display: none;
}

pre {
  background: #fbf8f3;
  border: 1px solid var(--line);
  border-radius: 8px;
  line-height: 1.7;
  margin: 0;
  overflow: auto;
  padding: 15px;
  white-space: pre-wrap;
}

.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer {
  align-items: center;
  background: #201812;
  color: #eadccb;
  display: flex;
  justify-content: space-between;
  padding: 24px clamp(18px, 6vw, 72px);
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: #fff;
  margin-bottom: 4px;
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .compact-hero,
  .order-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .topbar {
    gap: 12px;
    min-height: 60px;
  }

  .brand small,
  .nav {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 13px;
  }

  .compact-hero {
    gap: 16px;
    padding-bottom: 20px;
    padding-top: 24px;
  }

  h1 {
    font-size: 2.15rem;
    margin-bottom: 12px;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.64;
    margin-bottom: 16px;
  }

  .hero-product img {
    aspect-ratio: 2 / 1;
  }

  .hero-product-body {
    gap: 12px;
    padding: 15px;
  }

  .hero-product h2 {
    font-size: 1.45rem;
    margin: 8px 0 6px;
  }

  .hero-product p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

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

  .quick-facts div {
    padding: 8px 7px;
  }

  .quick-facts dt {
    font-size: 0.68rem;
  }

  .quick-facts dd {
    font-size: 0.78rem;
  }

  .service-grid,
  .product-grid,
  .order-form {
    grid-template-columns: 1fr;
  }

  .notice,
  .section-heading.row,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-tabs {
    max-width: 100%;
    overflow-x: auto;
  }

  label.full,
  .submit {
    grid-column: auto;
  }
}
