/* ============================================================
   DECI PASTRY — reference-led storefront draft
   Palette: warm ivory, blush, soft copper and pastry brown.
   ============================================================ */

:root {
  --paper: #fbf7f3;
  --paper-2: #f7eee8;
  --paper-3: #f1e4dc;
  --white: #fffdfb;
  --blush: #f4d7ca;
  --blush-2: #eec8ba;
  --copper: #a76549;
  --copper-2: #bc7b61;
  --brown: #7b4b3c;
  --brown-dark: #3c2923;
  --muted: #a88a7b;
  --line: #e7d3c8;
  --shadow-soft: 0 22px 70px -35px rgba(105, 61, 43, 0.38);
  --serif: "Cormorant Garamond", "Noto Serif TC", Georgia, serif;
  --sans: "Jost", "Noto Sans TC", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--brown-dark);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(1354px, calc(100% - 96px));
  margin-inline: auto;
}

/* ========================= header ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 251, 0.96);
  border-bottom: 1px solid rgba(154, 100, 78, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1390px, calc(100% - 56px));
  min-height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}
.brand-mark { width: 47px; height: 47px; flex: none; border-radius: 50%; object-fit: cover; }
.brand-copy {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .105em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}
.brand-copy small {
  display: block;
  margin-top: 7px;
  font-family: var(--sans);
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-align: center;
  color: var(--copper);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 42px);
}
.nav-links a {
  position: relative;
  padding: 31px 0 27px;
  color: #8a563f;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links a span { margin-left: 4px; font-weight: 400; letter-spacing: .04em; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-actions { display: inline-flex; align-items: center; justify-content: flex-end; gap: 14px; }
.nav-icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: var(--copper);
  opacity: .96;
  transition: color .25s var(--ease), transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-icon:hover { color: var(--brown); opacity: 1; transform: translateY(-1px); }
.nav-icon-user::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1.65px solid currentColor;
  border-radius: 50%;
  transform: translateY(-5px);
}
.nav-icon-user::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 5px;
  height: 10px;
  border: 1.65px solid currentColor;
  border-bottom: 0;
  border-radius: 13px 13px 0 0;
}
.nav-icon-bag::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 5px;
  height: 15px;
  border: 1.65px solid currentColor;
  border-radius: 3px;
}
.nav-icon-bag::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 11px;
  width: 8px;
  height: 7px;
  border: 1.65px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}
.order-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 39px;
  padding: 10px 24px;
  border-radius: 999px;
  background: #f2cdbc;
  color: #955c44;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.order-pill:hover { transform: translateY(-1px); background: #ecc0ac; }
.nav-burger {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  place-items: center;
}
.nav-burger span { display: block; width: 22px; height: 1.5px; margin: 4px auto; background: var(--brown); transition: transform .25s var(--ease), opacity .25s; }

/* ========================= shared type/buttons ========================= */
.section { padding: 26px 0 44px; }
.section-title-block { text-align: center; color: var(--brown); }
.section-title-block h2 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.1;
}
.section-title-block p { color: var(--muted); letter-spacing: .16em; font-size: .86rem; margin-top: 4px; }
.section-title-block.compact { margin-bottom: 20px; }
.eyebrow, .product-kicker {
  display: block;
  color: var(--copper);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  min-height: 40px;
  padding: 11px 30px;
  border: 1px solid transparent;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), background .26s var(--ease), color .26s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: linear-gradient(180deg, #a76b4f, #905236); color: #fff; box-shadow: 0 15px 28px -18px rgba(104, 51, 30, .65); }
.btn-outline { background: rgba(255, 255, 255, .54); color: var(--brown); border-color: rgba(151, 85, 62, .55); }
.btn-outline:hover { background: var(--brown); color: #fff; }
.btn.wide { width: 100%; min-height: 46px; }
.text-link {
  justify-self: end;
  align-self: center;
  color: var(--brown);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.text-link:hover { color: var(--copper); }

/* ========================= home ========================= */
.home-hero {
  position: relative;
  min-height: 472px;
  overflow: hidden;
  background: #fff8f3;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 250, 246, .74) 0%, rgba(255, 250, 246, .58) 25%, rgba(255, 250, 246, .12) 47%, rgba(255, 250, 246, 0) 78%),
    linear-gradient(180deg, rgba(255, 253, 251, .08) 0%, rgba(255, 244, 237, .12) 100%);
  pointer-events: none;
}
.hero-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, .58), transparent 24%),
    linear-gradient(90deg, rgba(255, 251, 247, .55), rgba(255, 251, 247, 0) 44%);
  opacity: .62;
}
.hero-layout {
  position: static;
  min-height: 472px;
  display: grid;
  grid-template-columns: minmax(560px, 620px) 1fr;
  align-items: start;
}
.hero-copy { position: relative; z-index: 3; align-self: start; max-width: 620px; margin-top: 92px; padding: 0 0 0 38px; }
.hero-copy h1 {
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 3.35vw, 3.35rem);
  font-weight: 700;
  letter-spacing: .085em;
  line-height: 1.12;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.hero-chinese { max-width: 470px; color: #91614d; font-size: 1.02rem; font-weight: 600; letter-spacing: .14em; line-height: 1.65; margin-bottom: 18px; }
.hero-chinese .mobile-line { display: inline; }
.hero-chinese .mobile-dot { display: inline; }
.hero-buttons { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 37px; }
.hero-buttons .btn { min-width: 155px; }
.hero-promises { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; width: 370px; color: #8b6556; }
.hero-promises div { text-align: center; display: grid; justify-items: center; gap: 5px; }
.hero-promises b { font-size: .67rem; font-weight: 500; line-height: 1.25; letter-spacing: .08em; text-transform: uppercase; }
.hero-promises em { color: #9d7c6c; font-style: normal; font-size: .72rem; letter-spacing: .16em; }
.mini-icon { width: 32px; height: 32px; color: var(--copper); position: relative; display: block; }
.mini-icon::before, .mini-icon::after { content: ""; position: absolute; inset: 5px; border: 1.6px solid currentColor; border-radius: 50%; }
.mini-icon.leaf::before { border-radius: 70% 0 70% 0; transform: rotate(-20deg); }
.mini-icon.leaf::after { width: 1px; height: 22px; left: 18px; top: 8px; border: 0; background: currentColor; transform: rotate(45deg); }
.mini-icon.chef::before { border-radius: 8px 8px 4px 4px; top: 11px; }
.mini-icon.chef::after { inset: 3px 7px 17px; border-radius: 50%; }
.mini-icon.truck::before { inset: 10px 3px 8px; border-radius: 2px; }
.mini-icon.truck::after { inset: auto 3px 4px 9px; width: 18px; height: 5px; border: 0; border-bottom: 1.6px solid currentColor; box-shadow: -8px 0 0 -2px currentColor, 14px 0 0 -2px currentColor; }
.hero-photo-card {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 69%; filter: saturate(.99) contrast(.99); }

.collections-section { background: rgba(255,255,255,.7); padding-top: 22px; }
.collection-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.collection-card {
  min-height: 145px;
  position: relative;
  overflow: hidden;
  border-radius: 9px;
  background: linear-gradient(105deg, #fbf4ef 0%, #f3dfd6 100%);
  box-shadow: 0 1px 0 rgba(145, 92, 68, .04);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.collection-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.collection-card span { position: relative; z-index: 2; display: grid; gap: 7px; padding: 34px 18px; width: 55%; color: var(--brown); }
.collection-card b { font-size: .78rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.collection-card em { color: #9a7464; font-size: .74rem; font-style: normal; letter-spacing: .12em; }
.collection-card small { margin-top: 9px; color: var(--copper); font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; }
.collection-card img { position: absolute; right: -10px; bottom: 0; width: 58%; height: 100%; object-fit: cover; object-position: center; }
.signature-section { padding-top: 18px; }
.title-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: start; margin-bottom: 12px; }
.carousel-dots { display: flex; justify-content: center; gap: 14px; margin: 22px 0 6px; }
.carousel-dots span { width: 7px; height: 7px; border-radius: 50%; background: #d9c8c0; }
.carousel-dots .active { width: 8px; height: 8px; background: var(--copper); }
.about-band { padding: 46px 0 64px; }
.about-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.66);
  padding: 40px clamp(28px, 5vw, 70px);
}
.about-card h2 { font-family: var(--serif); color: var(--brown); font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.1; margin-top: 10px; }
.about-card p { color: #8f7164; font-size: .98rem; max-width: 680px; }

/* ========================= product cards ========================= */
.product-grid { display: grid; gap: 24px; }
.home-grid { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; padding: 4px 2px 10px; scrollbar-width: none; cursor: grab; }
.home-grid::-webkit-scrollbar { display: none; }
.home-grid.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.home-grid .product-card { flex: 0 0 auto; width: clamp(198px, 60vw, 236px); scroll-snap-align: start; }
.home-grid.dragging .product-card { pointer-events: none; }
.product-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 7px;
  background: #f7efeb;
  color: var(--brown-dark);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.product-image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 1.265 / 1;
  overflow: hidden;
  background: #f3e8e2;
}
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover img { transform: scale(1.035); }
.product-badge {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #d39775;
  color: #fff;
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-info { display: grid; justify-items: start; text-align: left; padding: 12px 6px 4px; }
.catalogue-grid .product-info { text-align: center; justify-items: center; min-height: 119px; padding: 13px 12px 15px; }
.product-info strong {
  font-family: var(--serif);
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.15;
  text-transform: uppercase;
  color: #7d4c3d;
}
.product-zh { color: #8f6454; font-size: .74rem; letter-spacing: .08em; margin-top: 3px; }
.product-tagline { color: #8d776e; font-size: .78rem; line-height: 1.28; margin-top: 8px; max-width: 180px; min-height: 2.45em; }
.product-price { margin-top: 6px; font-weight: 600; letter-spacing: .06em; color: #6b3f33; }
.home-grid .product-card { background: transparent; border-radius: 3px; }
.home-grid .product-image-wrap { border-radius: 3px; }
.home-grid .product-info { padding-left: 4px; }
.home-grid .product-tagline { display: none; }

/* ========================= collaboration highlight ========================= */
.collab-section {
  padding: 28px 0 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.42), rgba(250,242,237,.86));
}
.collab-band {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(226, 202, 191, .78);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(255,253,251,.94), rgba(248,235,227,.86)),
    #fffaf6;
  box-shadow: 0 22px 58px -42px rgba(105, 61, 43, .55);
}
.collab-media {
  min-width: 0;
  display: grid;
  justify-items: center;
}
.collab-embed-frame {
  width: min(100%, 360px);
  min-height: 480px;
  display: grid;
  align-items: start;
}
.collab-embed-frame .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  border-color: rgba(226, 202, 191, .88) !important;
  border-radius: 8px !important;
  box-shadow: 0 18px 44px -32px rgba(105,61,43,.6) !important;
}
.collab-embed-frame > blockquote {
  display: grid;
  min-height: 480px;
  place-items: center;
  padding: 22px;
  background: #fff;
  color: var(--copper);
  text-align: center;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.collab-copy {
  max-width: 650px;
}
.collab-copy h2 {
  margin-top: 10px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.04;
  text-transform: uppercase;
}
.collab-copy p {
  margin-top: 18px;
  max-width: 590px;
  color: #8f7164;
  font-size: .98rem;
  line-height: 1.76;
}
.collab-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 26px;
}
.collab-meta > span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 15px;
  border: 1px solid rgba(195, 154, 140, .55);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  color: #9a6753;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ========================= catalogue page ========================= */
.catalogue-hero { background: linear-gradient(90deg, #fffaf6 0%, #fff5ef 100%); overflow: hidden; border-bottom: 1px solid rgba(154,100,78,.1); }
.catalogue-hero-inner { min-height: 198px; position: relative; display: grid; align-items: center; }
.catalogue-hero-copy { position: relative; z-index: 2; padding-left: 2px; }
.catalogue-hero h1 {
  font-family: var(--serif);
  color: var(--brown);
  font-size: clamp(3.4rem, 5.2vw, 5.15rem);
  font-weight: 500;
  letter-spacing: .25em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.catalogue-hero p { color: #9a6a58; letter-spacing: .26em; font-size: .96rem; }
.catalogue-hero p .heart { color: #d3a18b; margin-left: 12px; }
.catalogue-hero img { position: absolute; right: -8px; top: 0; height: 200px; width: min(55%, 798px); object-fit: cover; object-position: right center; mask-image: linear-gradient(90deg, transparent 0%, #000 23%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 23%); }
.catalogue-section { padding: 27px 0 28px; }
.catalogue-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 25px; }
.filters { display: flex; align-items: center; gap: 17px; flex-wrap: wrap; }
.filter-chip {
  min-width: 130px;
  min-height: 35px;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid #d7a994;
  background: rgba(255,255,255,.64);
  color: #9a6450;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: background .24s var(--ease), color .24s var(--ease), transform .24s var(--ease);
}
.filter-chip span { margin-left: 4px; letter-spacing: .04em; }
.filter-chip:hover { transform: translateY(-1px); background: #fff; }
.filter-chip.active { color: #fff; background: linear-gradient(180deg, #ac6b50, #915238); border-color: transparent; }
.sort-wrap { display: flex; align-items: center; gap: 13px; color: #a47a69; font-size: .78rem; }
.sort-wrap select {
  min-width: 147px;
  height: 35px;
  padding: 0 36px 0 15px;
  border: 1px solid #d6aa97;
  border-radius: 4px;
  background: rgba(255,255,255,.7);
  color: #a0715f;
}
.catalogue-count-row { margin: -14px auto 14px; color: #b39689; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.catalogue-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 22px; }
.catalogue-grid .product-card { box-shadow: 0 1px 0 rgba(101,59,41,.03); background: #f7efeb; }
.service-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 3px;
  margin-bottom: 28px;
  min-height: 68px;
  border-radius: 10px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(226, 202, 191, .65);
  padding: 15px 28px;
}
.service-item { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--copper); }
.service-item svg { width: 34px; height: 34px; flex: none; }
.service-item b { display: block; color: #9a6753; font-size: .7rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.service-item span { display: block; color: #9d7f72; font-size: .72rem; letter-spacing: .08em; }

/* ========================= product detail page ========================= */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #af8f81;
  font-size: .72rem;
  padding: 20px 0 17px;
}
.breadcrumbs a:hover { color: var(--brown); }
.breadcrumbs b { color: var(--brown); font-weight: 500; }
.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.39fr) minmax(420px, .86fr);
  gap: 45px;
  align-items: start;
}
.main-product-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #f3e7df;
  box-shadow: 0 1px 0 rgba(101,59,41,.04);
}
.main-product-image img { width: 100%; aspect-ratio: 758 / 519; object-fit: cover; }
.zoom-button {
  position: absolute;
  right: 22px;
  bottom: 16px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(158,100,76,.28);
  background: rgba(255,255,255,.9);
  color: var(--copper);
  font-size: 1.45rem;
}
.gallery-row { display: grid; grid-template-columns: 46px 1fr 46px; align-items: center; gap: 12px; margin-top: 8px; }
.gallery-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(174, 116, 92, .35);
  color: var(--copper);
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
}
.thumbnail-track { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.thumb-button { overflow: hidden; border: 1px solid transparent; border-radius: 7px; background: #fff; padding: 0; opacity: .86; }
.thumb-button.active { border-color: #b77a61; opacity: 1; box-shadow: 0 0 0 2px rgba(183, 122, 97, .14); }
.thumb-button img { width: 100%; aspect-ratio: 126 / 79; object-fit: cover; }
.product-summary { padding-top: 8px; }
.product-summary h1 {
  margin-top: 11px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.2vw, 3.4rem);
  font-weight: 500;
  letter-spacing: .09em;
  line-height: 1.05;
  text-transform: uppercase;
}
.product-zh-large { color: var(--brown); font-family: "Noto Serif TC", serif; font-size: 1.28rem; letter-spacing: .18em; margin-top: 12px; }
.product-price-large { color: #5a4037; font-family: var(--serif); font-size: 1.72rem; letter-spacing: .09em; margin-top: 12px; }
.product-description { color: #94786d; font-size: .92rem; max-width: 512px; margin-top: 12px; }
.flavor-section, .option-block, .quantity-block { margin-top: 26px; }
.flavor-section h2, .option-block h2, .quantity-block h2 {
  color: var(--copper);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.flavor-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; max-width: 450px; }
.flavor-note { display: grid; justify-items: center; text-align: center; gap: 2px; color: var(--copper); }
.flavor-note svg { width: 38px; height: 38px; margin-bottom: 2px; }
.flavor-note b { color: #745044; font-size: .62rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.flavor-note span { color: #8f7368; font-size: .7rem; letter-spacing: .08em; }
.size-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; max-width: 455px; }
.size-options button {
  min-height: 36px;
  border: 1px solid #dfc8be;
  border-radius: 6px;
  background: rgba(255,255,255,.72);
  color: #a07869;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
}
.size-options button span { color: #b6998e; }
.size-options button.active { color: #fff; border-color: transparent; background: linear-gradient(180deg, #a96a4e, #8f5238); }
.size-options button.active span { color: #f4ddd3; }
.quantity-block { display: flex; align-items: center; gap: 23px; }
.quantity-block h2 { margin-bottom: 0; }
.quantity-control { display: inline-grid; grid-template-columns: 38px 42px 38px; height: 34px; border: 1px solid #dfc8be; }
.quantity-control button, .quantity-control span { display: grid; place-items: center; border: 0; background: rgba(255,255,255,.7); color: #9b6b58; }
.quantity-control button + span, .quantity-control span + button { border-left: 1px solid #dfc8be; }
.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 26px; }
.preorder-note { margin-top: 18px; padding: 10px 16px; border: 1px solid #ecd9d0; border-radius: 6px; color: #c39a8c; background: rgba(255,255,255,.5); font-size: .76rem; letter-spacing: .07em; }
.product-info-strip {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 1fr;
  margin-top: 26px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(249,238,232,.84));
  border: 1px solid rgba(226, 202, 191, .68);
  overflow: hidden;
}
.product-info-strip article { padding: 21px 36px 20px; min-height: 105px; }
.product-info-strip article + article { border-left: 1px solid #e3ccc2; }
.product-info-strip h3 { color: #9a6753; font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.product-info-strip p { color: #8f776e; font-size: .78rem; line-height: 1.45; }
.product-info-strip a { display: inline-block; color: #a86e57; border-bottom: 1px solid rgba(168,110,87,.42); margin-top: 8px; font-size: .76rem; }
.mini-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.recommendation-section { padding-top: 20px; }
.recommendation-wrap { display: block; }
.recommend-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px; }
.recommend-grid .product-card { background: transparent; }
.recommend-grid .product-image-wrap { border-radius: 5px; }
.recommend-grid .product-info { padding-left: 4px; }
.recommend-grid .product-tagline { display: none; }

/* ========================= footer/reveal ========================= */
.site-footer { border-top: 1px solid rgba(154,100,78,.12); background: rgba(255,255,255,.72); margin-top: 38px; }
.compact-footer { margin-top: 18px; }
.footer-inner { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #987466; font-size: .86rem; }
.footer-brand .brand-mark { width: 38px; height: 38px; }
.footer-brand .brand-copy { font-size: 1.15rem; }
.footer-inner a:not(.brand) { color: var(--copper); font-weight: 500; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease) var(--reveal-delay, 0ms), transform .7s var(--ease) var(--reveal-delay, 0ms); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ========================= responsive ========================= */
@media (max-width: 1320px) {
  .nav-shell { width: calc(100% - 36px); grid-template-columns: 218px minmax(0, 1fr) auto; gap: 14px; }
  .brand { gap: 10px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-copy { font-size: 1.22rem; letter-spacing: .085em; }
  .brand-copy small { font-size: .5rem; letter-spacing: .18em; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: .69rem; letter-spacing: .06em; }
  .nav-actions { gap: 12px; }
  .order-pill { min-width: 106px; padding-inline: 17px; }
  .catalogue-grid, .home-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .service-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-detail-shell { grid-template-columns: 1.08fr .92fr; }
}

@media (max-width: 980px) {
  .container { width: min(100% - 44px, 760px); }
  .nav-shell { width: calc(100% - 36px); grid-template-columns: 1fr auto; min-height: 72px; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 28px 20px;
    background: rgba(255,253,251,.98);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(154,100,78,.1); }
  .nav-links a::after { display: none; }
  .nav-burger { display: block; }
  body.nav-open .nav-burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
  .order-pill { min-width: auto; padding-inline: 18px; }

  .home-hero { min-height: 720px; }
  .home-hero::before { background: linear-gradient(180deg, rgba(255,250,246,.96), rgba(255,250,246,.86) 42%, rgba(255,250,246,.22) 76%, rgba(255,250,246,.04)); }
  .hero-layout { min-height: 720px; grid-template-columns: 1fr; align-items: start; padding-top: 64px; }
  .hero-copy { margin-top: 0; padding: 0; max-width: 560px; }
  .hero-photo-card { inset: 0; width: 100%; height: 100%; }
  .hero-photo-card img { object-position: 63% 58%; }
  .hero-promises { width: 100%; max-width: 430px; }
  .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .title-row { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .text-link { justify-self: center; }
  .collab-band { grid-template-columns: 1fr; gap: 30px; }
  .collab-copy { max-width: none; text-align: center; }
  .collab-copy p { margin-inline: auto; }
  .collab-meta { justify-content: center; }
  .about-card { grid-template-columns: 1fr; gap: 18px; }
  .catalogue-hero img { opacity: .45; width: 76%; }
  .catalogue-toolbar { align-items: flex-start; flex-direction: column; }
  .product-detail-shell { grid-template-columns: 1fr; }
  .product-summary { padding-top: 0; }
  .product-info-strip { grid-template-columns: 1fr; }
  .product-info-strip article + article { border-left: 0; border-top: 1px solid #e3ccc2; }
  .recommend-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { flex-direction: column; align-items: flex-start; padding: 24px 0; }
}

@media (max-width: 720px) {
  .brand-copy { font-size: 1.12rem; letter-spacing: .08em; }
  .brand-copy small { font-size: .48rem; }
  .brand-mark { width: 38px; height: 38px; }
  .nav-icon { display: none; }
  .order-pill { display: none; }
  .home-hero { min-height: 75vh; min-height: 75svh; background: #fff8f3; }
  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(255,250,246,.82) 0%, rgba(255,250,246,.48) 42%, rgba(255,250,246,.04) 100%),
      linear-gradient(90deg, rgba(255,250,246,.88) 0%, rgba(255,250,246,.58) 42%, rgba(255,250,246,.02) 100%);
  }
  .hero-layout { min-height: 75vh; min-height: 75svh; padding-top: 34px; }
  .hero-photo-card { inset: 0; width: 100%; height: 100%; }
  .hero-photo-card img { object-position: 70% 50%; opacity: .9; transform: scale(1.35); transform-origin: 68% 62%; }
  .hero-copy h1 { font-size: 2.65rem; letter-spacing: .055em; margin-bottom: 24px; }
  .hero-chinese { font-size: 1.08rem; font-weight: 600; letter-spacing: .075em; line-height: 1.42; }
  .hero-chinese .mobile-line { display: block; }
  .hero-chinese .mobile-dot { display: none; }
  .hero-buttons .btn { min-width: 135px; padding-inline: 22px; }
  .hero-buttons { margin-bottom: 28px; }
  .hero-promises { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .hero-promises b { font-size: .6rem; }
  .hero-promises em { font-size: .64rem; }
  .collection-grid { grid-template-columns: 1fr; }
  .collab-section { padding-top: 20px; }
  .collab-band { padding: 22px 16px 28px; }
  .collab-embed-frame { width: min(100%, 330px); min-height: 440px; }
  .collab-embed-frame > blockquote { min-height: 440px; }
  .collab-copy h2 { font-size: 2rem; letter-spacing: .07em; }
  .collab-copy .btn { width: 100%; max-width: 250px; }
  .catalogue-grid, .home-grid, .recommend-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .catalogue-hero h1 { font-size: 3.1rem; letter-spacing: .15em; }
  .filters { gap: 10px; }
  .filter-chip { min-width: auto; flex: 1 1 calc(50% - 10px); padding-inline: 12px; }
  .service-strip { grid-template-columns: 1fr; padding: 18px; }
  .service-item { justify-content: flex-start; }
  .thumbnail-track { gap: 8px; }
  .gallery-row { grid-template-columns: 30px 1fr 30px; }
  .gallery-arrow { width: 30px; height: 30px; }
  .product-summary h1 { font-size: 2.35rem; }
  .flavor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .size-options, .product-actions { grid-template-columns: 1fr; }
  .quantity-block { align-items: flex-start; flex-direction: column; gap: 10px; }
  .mini-columns { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .container { width: calc(100% - 30px); }
  .nav-shell { width: calc(100% - 24px); }
  .brand { gap: 8px; }
  .brand-copy { font-size: .96rem; }
  .brand-copy small { letter-spacing: .14em; }
  .home-hero { min-height: 75vh; min-height: 75svh; }
  .hero-layout { min-height: 75vh; min-height: 75svh; padding-top: 32px; }
  .hero-copy h1 { font-size: 2.35rem; letter-spacing: .035em; line-height: 1.08; }
  .hero-chinese { font-size: 1.04rem; letter-spacing: .055em; margin-bottom: 16px; }
  .hero-buttons { margin-bottom: 0; }
  .hero-promises { display: none; }
  .collab-band { padding-inline: 12px; }
  .collab-embed-frame { min-height: 410px; }
  .collab-embed-frame > blockquote { min-height: 410px; }
  .collab-meta > span { width: 100%; justify-content: center; }
  .catalogue-grid, .home-grid, .recommend-grid { grid-template-columns: 1fr; }
  .product-info strong { font-size: 1rem; }
  .product-tagline { max-width: none; }
  .catalogue-hero h1 { font-size: 2.6rem; }
  .catalogue-hero p { letter-spacing: .13em; }
}

/* ========================= cart & order flow ========================= */
.cart-button { position: relative; width: 32px; height: 32px; display: inline-grid; place-items: center; color: var(--copper); background: transparent; border: 0; cursor: pointer; padding: 0; transition: color .25s var(--ease), transform .25s var(--ease); }
.cart-button:hover { color: var(--brown); transform: translateY(-1px); }
.cart-button .bag { position: relative; width: 30px; height: 30px; }
.cart-button .bag::before { content: ""; position: absolute; left: 6px; right: 6px; top: 11px; bottom: 4px; border: 1.65px solid currentColor; border-radius: 2.5px; }
.cart-button .bag::after { content: ""; position: absolute; top: 5px; left: 10px; width: 10px; height: 7px; border: 1.65px solid currentColor; border-bottom: 0; border-radius: 9px 9px 0 0; }
.cart-count { position: absolute; top: -4px; right: -6px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 9px; background: var(--copper); color: #fff; font-size: .6rem; font-weight: 600; line-height: 16px; text-align: center; display: none; }
.cart-count.show { display: block; }

.cart-overlay { position: fixed; inset: 0; background: rgba(60,40,30,.42); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; z-index: 60; }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(430px, 93vw); background: var(--paper); box-shadow: -8px 0 44px rgba(90,55,35,.18); transform: translateX(100%); transition: transform .34s var(--ease); z-index: 61; display: flex; flex-direction: column; }
.cart-drawer.open { transform: none; }
.cart-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.cart-drawer-head h2 { font-family: var(--serif); color: var(--brown); font-size: 1.5rem; letter-spacing: .04em; }
.cart-close { background: transparent; border: 0; font-size: 1.6rem; line-height: 1; color: #9a7464; cursor: pointer; padding: 2px 4px; }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 22px 8px; }
.cart-empty { text-align: center; color: var(--muted); padding: 52px 12px; font-size: .9rem; }
.cart-empty a { color: var(--copper); }

.cart-line { display: grid; grid-template-columns: 1fr auto; gap: 2px 12px; padding: 14px 0; border-bottom: 1px solid rgba(154,100,78,.12); }
.cart-line b { color: var(--brown); font-weight: 500; font-size: .92rem; grid-column: 1; }
.cart-line .cl-price { color: #5a4037; font-weight: 500; white-space: nowrap; text-align: right; grid-column: 2; grid-row: 1; }
.cart-line .cl-meta { color: #a07f70; font-size: .72rem; grid-column: 1; }
.cl-qty { display: inline-flex; align-items: center; border: 1px solid #e0cfc6; border-radius: 8px; overflow: hidden; margin-top: 7px; }
.cl-qty button { width: 26px; height: 26px; border: 0; background: #f3e9e3; color: #7a5443; cursor: pointer; font-size: .95rem; line-height: 1; }
.cl-qty button:hover { background: #ecdcd3; }
.cl-qty span { min-width: 30px; text-align: center; font-size: .82rem; color: #5a4037; }
.cl-remove { background: transparent; border: 0; color: #b98e7c; font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; margin-top: 9px; justify-self: end; align-self: center; grid-column: 2; }
.cl-remove:hover { color: #8f5238; }

.cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0 6px; font-family: var(--serif); color: var(--brown); font-size: 1.2rem; }
.cart-subtotal .st-label { font-family: var(--sans); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.order-form { margin-top: 8px; display: grid; gap: 12px; }
.order-form h3 { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #9a7464; margin-top: 8px; }
.order-form label { display: grid; gap: 4px; font-size: .7rem; letter-spacing: .05em; color: #8a6b5d; text-transform: uppercase; }
.order-form input, .order-form textarea { font: inherit; font-size: .86rem; text-transform: none; letter-spacing: normal; color: #5a4037; padding: 9px 11px; border: 1px solid #e0cfc6; border-radius: 8px; background: #fff; }
.order-form input:focus, .order-form textarea:focus { outline: none; border-color: var(--copper); }
.order-form input.invalid, .order-form textarea.invalid { border-color: #d98b6f; background: #fdf3ef; }
.order-method { display: flex; gap: 10px; }
.order-method label { flex: 1; flex-direction: row; align-items: center; justify-content: center; gap: 6px; padding: 10px; border: 1px solid #e0cfc6; border-radius: 8px; cursor: pointer; font-size: .78rem; color: #7a5443; }
.order-method input { accent-color: var(--copper); }
.order-form label.address-field { display: none; }
.order-form label.address-field.show { display: grid; }

.cart-foot { padding: 14px 22px 20px; border-top: 1px solid var(--line); background: var(--paper); display: grid; gap: 10px; }
.btn-order { width: 100%; padding: 13px; border: 0; border-radius: 999px; background: linear-gradient(180deg, #a96a4e, #8f5238); color: #fff; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: transform .2s var(--ease), opacity .2s; }
.btn-order:hover:not(:disabled) { transform: translateY(-1px); }
.btn-order:disabled { opacity: .45; cursor: not-allowed; }
.cart-hint { font-size: .68rem; color: var(--muted); text-align: center; }
.cart-error { color: #c0674a; font-size: .72rem; text-align: center; min-height: 0; }

.order-result { display: grid; gap: 9px; }
.order-result textarea { width: 100%; min-height: 130px; font: inherit; font-size: .76rem; color: #5a4037; padding: 10px; border: 1px solid #e0cfc6; border-radius: 8px; background: #fff; resize: vertical; }
.order-result .result-note { font-size: .72rem; color: #7a5443; line-height: 1.5; }
.order-result-actions { display: flex; gap: 8px; }
.order-result-actions button { flex: 1; padding: 10px; border: 1px solid #cbae9f; border-radius: 999px; background: #fff; color: #8f5238; font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }
.order-result-actions button.primary { background: linear-gradient(180deg, #a96a4e, #8f5238); color: #fff; border-color: transparent; }

.cart-toast { position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 20px); background: #5a4037; color: #fdf6f1; padding: 11px 12px 11px 18px; border-radius: 999px; font-size: .8rem; box-shadow: 0 8px 24px rgba(70,42,28,.28); opacity: 0; visibility: hidden; transition: opacity .3s, transform .3s, visibility .3s; z-index: 70; display: flex; gap: 12px; align-items: center; }
.cart-toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.cart-toast button { background: transparent; border: 0; color: #f2cdbc; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; white-space: nowrap; }

/* ========================= language toggle (EN / 中文) ========================= */
html[lang="en"] [data-lang-zh] { display: none !important; }
html[lang="zh"] [data-lang-en] { display: none !important; }
[data-lang-zh] { text-transform: none; }

.lang-toggle { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: rgba(255,255,255,.5); }
.lang-toggle button { border: 0; background: transparent; color: var(--copper); font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .04em; padding: 5px 9px; min-height: 26px; line-height: 1; cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease); }
.lang-toggle button:hover { color: var(--brown); }
.lang-toggle button.active { background: var(--copper); color: #fff; }

/* ========================= customer reviews ========================= */
.reviews-section { padding-top: 6px; }
.reviews-strip { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 12px 2px 22px; scrollbar-width: none; cursor: grab; }
.reviews-strip::-webkit-scrollbar { display: none; }
.reviews-strip.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.review-card { flex: 0 0 auto; width: clamp(226px, 74vw, 262px); aspect-ratio: 5 / 8; margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: 0 18px 44px -30px rgba(105,61,43,.55); scroll-snap-align: center; }
.review-card img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; background: #fff; -webkit-user-drag: none; user-select: none; }
.reviews-strip.dragging .review-card { pointer-events: none; }
.reviews-note { text-align: center; color: var(--muted); font-size: .74rem; letter-spacing: .04em; margin-top: 2px; }

/* ========================= about page ========================= */
.about-hero { padding: 40px 0 6px; }
.about-lead { text-align: center; max-width: 620px; margin: 8px auto 0; color: #8a6b5d; font-size: 1.02rem; line-height: 1.72; }
.about-page .about-card { margin-top: 20px; }
.about-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
@media (max-width: 640px) {
  .about-cta .btn { flex: 1 1 100%; }
}

/* ========================= floating Instagram button ========================= */
.ig-fab {
  position: fixed;
  right: clamp(16px, 4vw, 26px);
  bottom: clamp(16px, 4vw, 26px);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(45deg, #feda75 0%, #fa7e1e 25%, #d62976 55%, #962fbf 80%, #4f5bd5 100%);
  box-shadow: 0 12px 28px -10px rgba(150, 47, 191, .55), 0 3px 8px rgba(80, 40, 30, .18);
  z-index: 55;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ig-fab:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 16px 32px -10px rgba(150, 47, 191, .6), 0 4px 10px rgba(80, 40, 30, .2); }
.ig-fab svg { width: 28px; height: 28px; }
@media (max-width: 720px) { .ig-fab { width: 52px; height: 52px; } .ig-fab svg { width: 26px; height: 26px; } }

/* ========================= how it works ========================= */
.how-section { padding: 30px 0 46px; background: rgba(255,255,255,.55); }
.how-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; margin-top: 10px; }
.how-step { text-align: center; display: grid; justify-items: center; gap: 9px; }
.how-num {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #a96a4e, #8f5238);
  color: #fff; font-family: var(--serif); font-size: 1.34rem; font-weight: 600;
  box-shadow: 0 10px 22px -12px rgba(143, 82, 56, .7);
}
.how-step b { color: var(--brown); font-size: .96rem; font-weight: 600; letter-spacing: .02em; }
.how-step p { color: #8a6b5d; font-size: .82rem; line-height: 1.62; max-width: 235px; }
.how-note { text-align: center; color: var(--muted); font-size: .75rem; letter-spacing: .04em; margin-top: 26px; }
@media (max-width: 860px) { .how-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 20px; } }
@media (max-width: 460px) { .how-grid { grid-template-columns: 1fr; gap: 26px; } }
