:root {
  --bg: #f6f1eb;
  --paper: #fffdfa;
  --paper-2: #f3ece5;
  --ink: #211917;
  --muted: #6c625d;
  --line: #e7ddd2;
  --line-strong: #d8cbbe;
  --brand: #6f1d25;
  --brand-dark: #4e1820;
  --brand-soft: #efe0df;
  --gold: #9b6a43;
  --gold-soft: #e8d7c7;
  --deep: #16110f;
  --deep-2: #231816;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(31, 20, 18, .08);
  --shadow-lg: 0 30px 80px rgba(28, 19, 17, .16);
  --radius: 22px;
  --radius-lg: 34px;
  --max: 1200px;
}
@font-face {
  /* 定义你在 font-family 中要使用的名字 */
  font-family: 'Outfit'; 
  
  /* 引入字体文件的路径，并指定格式为 woff2 以帮助浏览器正确解析 */
  src: url('/assets/font/QGYvz_MVcBeNP4NJtEtqUYLknw.woff2') format('woff2'); 
 
}
@font-face {
  /* 定义你在 font-family 中要使用的名字 */
  font-family: 'Inter'; 
  
  /* 引入字体文件的路径，并指定格式为 woff2 以帮助浏览器正确解析 */
  src: url('/assets/font/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7W0Q5nw.woff2') format('woff2'); 
 
}
* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: linear-gradient(180deg, #f6f1eb 0%, #fcfaf8 100%);
  color: var(--ink);
  line-height: 1.7
}

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

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

main {
  min-height: 60vh
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px
}

.narrow {
  max-width: 860px
}

.topbar {
  background: #1a1311;
  color: #f3ece7;
  font-size: 13px
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 10px 24px
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(252, 249, 246, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(111, 29, 37, .08)
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 18px
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-family: Outfit, Inter, sans-serif;
  line-height: 1.02;
  color: #fff
}

.brand .brand-cn {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--brand)
}

.brand .brand-en {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  color: var(--ink);
  margin-top: 4px
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px
}

.nav a,
.nav summary {
  font-size: 15px;
  font-weight: 700;
  color: #4d413b;
  cursor: pointer;
  list-style: none
}

.nav a.active,
.nav a:hover,
.nav summary.active,
.nav summary:hover {
  color: var(--brand)
}

.nav-group {
  position: relative
}

.nav-group summary {
  display: flex;
  align-items: center;
  gap: 6px
}

.nav-group summary::-webkit-details-marker {
  display: none
}

.dropdown {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
  margin-top: 12px
}

.nav-group:hover .dropdown,
.nav-group[open] .dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: 8px
}

.dropdown a {
  padding: 12px 14px;
  border-radius: 14px
}

.dropdown a:hover {
  background: #faf5ef
}

.dropdown strong {
  display: block;
  font-size: 14px
}

.dropdown small {
 
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  margin-top: 2px
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 18px
}

.nav-cta {
  white-space: nowrap
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-radius: 999px;
  font-weight: 800;
  transition: .2s ease;
  border: 1px solid transparent;
  cursor: pointer
}

.button:hover {
  transform: translateY(-2px)
}

.button-primary {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand), #946643);
  color: #fff;
  box-shadow: 0 14px 32px rgba(111, 29, 37, .22)
}

.button-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line)
}

.button-secondary.light {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .18);
  color: #fff
}

.hero-stage {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #130f0e
}

.hero-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02)
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%
}

.hero-copy {
  max-width: 760px;
  padding: 96px 0
}

.hero-copy h1 {
  font-family: Outfit, Inter, sans-serif;
  font-size: clamp(46px, 6vw, 74px);
  line-height: .98;
  letter-spacing: -.05em;
  margin: 0 0 18px
}

.hero-copy p {
  max-width: 690px;
  font-size: 19px;
  color: rgba(255, 255, 255, .82);
  margin: 0 0 30px
}

.hero-actions,
.button-row,
.center-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px
}

.hero-meta div {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
  padding: 18px;
  border-radius: 18px
}

.hero-meta strong {
  display: block;
  font-size: 28px
}

.hero-meta span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
  margin-top: 4px
}

.strip-bar {
  background: #fff;
  border-bottom: 1px solid var(--line)
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px 24px
}

.strip-pill {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fdf9f5;
  font-weight: 700;
  color: #4b413c;
  text-align: center
}

.section {
  padding: 88px 0
}

.section-cream {
  background: linear-gradient(180deg, #fffdfb 0%, #f5eee7 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.section-dark {
  background: linear-gradient(135deg, #181210 0%, #241816 50%, #2e1f1d 100%);
  color: #fff
}

.section-head {
  max-width: 820px;
  margin-bottom: 30px
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f1e2df;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.eyebrow.light {
  background: rgba(255, 255, 255, .12);
  color: #fff
}

.section-head h2,
.page-hero h1 {
  font-family: Outfit, Inter, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin: 0 0 14px
}

.section-head p,
.page-hero p {
  font-size: 17px;
  color: var(--muted);
  margin: 0
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, .72)
}

.page-hero {
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--line)
}

.neutral-hero {
  background: radial-gradient(circle at top right, rgba(155, 106, 67, .12), transparent 28%), linear-gradient(180deg, #faf6f1, #f7f0e8)
}

.dark-hero {
  background: linear-gradient(135deg, #17110f 0%, #231715 54%, #32211f 100%);
  color: #fff
}

.dark-hero p,
.dark-hero .breadcrumbs a,
.dark-hero .breadcrumbs {
  color: rgba(255, 255, 255, .74)
}

.breadcrumbs {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px
}

.pill {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  color: #4f433d
}

.card-grid {
  display: grid;
  gap: 22px
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr)
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr)
}

.feature-card,
.sku-card,
.metric-box,
.mini-card,
.list-card>div,
.form-card,
.spec-card,
.article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}

.feature-card {
  padding: 26px
}

.feature-card h3,
.sku-card strong,
.cta-banner h3,
.spec-card h3 {
  font-family: Outfit, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 10px
}

.feature-card p,
.sku-card p,
.metric-box span,
.mini-card,
.list-card span,
.quote-block,
.form-note,
.article-card p {
  color: var(--muted)
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #f2e7de;
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 14px
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.category-card {
  display: block;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fff9f4);
  box-shadow: var(--shadow);
  transition: .25s ease;
  position: relative;
  overflow: hidden
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.category-card h3 {
  font-family: Outfit, Inter, sans-serif;
  font-size: 28px;
  line-height: 1.08;
  margin: 0 0 10px
}

.category-card p {
  color: #5f5550;
  margin: 0 0 14px
}

.category-card span {
  font-weight: 800;
  color: var(--brand)
}

.category-mark {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.accent-spicy {
  background: radial-gradient(circle at top right, rgba(158, 46, 39, .22), transparent 28%), linear-gradient(180deg, #fff6f3, #fff)
}

.accent-butter {
  background: radial-gradient(circle at top right, rgba(160, 111, 49, .22), transparent 28%), linear-gradient(180deg, #fff7ee, #fff)
}

.accent-tomato {
  background: radial-gradient(circle at top right, rgba(187, 89, 68, .18), transparent 28%), linear-gradient(180deg, #fff5f2, #fff)
}

.accent-mushroom {
  background: radial-gradient(circle at top right, rgba(91, 121, 99, .22), transparent 28%), linear-gradient(180deg, #f7fbf7, #fff)
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center
}

.two-col.reverse> :first-child {
  order: 2
}

.gap-large {
  gap: 44px
}

.align-start {
  align-items: start
}

.showcase-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fff, #f5efe8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  min-height: 360px
}

.showcase-panel.dark {
  background: linear-gradient(135deg, #16110f, #241815 58%, #2f211f);
  color: #fff;
  border-color: rgba(255, 255, 255, .08)
}

.showcase-panel.tall {
  min-height: 480px
}

.panel-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--brand)
}

.showcase-panel.dark .panel-badge {
  background: rgba(255, 255, 255, .12);
  color: #fff
}

.visual-stack {
  display: grid;
  gap: 16px
}

.visual-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.visual-tile {
  min-height: 130px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: end;
  padding: 20px;
  font-family: Outfit, Inter, sans-serif;
  font-size: 24px
}

.visual-tile.large {
  min-height: 200px
}

.check-stack {
  display: grid;
  gap: 14px;
  margin: 24px 0
}

.check-stack>div,
.bullet-panel>div,
.timeline-list>div {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow)
}

.check-stack strong,
.list-card strong,
.metric-box strong,
.timeline-list strong {
  font-size: 16px;
  margin-right: 4px;
}

.check-stack span,
.bullet-panel span,
.timeline-list span {
  color: var(--muted)
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.step-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1)
}

.step-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .12);
  font-weight: 800;
  margin-bottom: 16px
}

.step-card h3 {
  font-family: Outfit, Inter, sans-serif;
  margin: 0 0 10px;
  font-size: 22px
}

.step-card p {
  margin: 0;
  color: rgba(255, 255, 255, .72)
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow)
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow)
}

table {
  width: 100%;
  border-collapse: collapse
}

th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 15px
}

th {
  font-size: 14px;
  color: #5c4d46;
  background: #fcf8f4
}

td a {
  font-weight: 800;
  color: var(--brand)
}

.sku-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.sku-card {
  padding: 24px
}

.sku-top {
  display: grid;
  gap: 6px;
  margin-bottom: 12px
}

.sku-top span {
  font-size: 12px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: .08em;
  text-transform: uppercase
}

.text-link {
  font-weight: 800;
  color: var(--brand)
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 10px
}

.mini-card {
  padding: 18px;
  font-weight: 700
}

.list-check {
  padding-left: 18px;
  color: var(--muted)
}

.list-check li {
  margin-bottom: 10px
}

.flavor-visual,
.pack-visual,
.service-visual,
.factory-map {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.flavor-visual {
  min-height: 300px
}

.flavor-core {
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Outfit, Inter, sans-serif;
  font-size: 36px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12)
}

.flavor-surface {
  position: absolute;
  width: 78%;
  height: 68%;
  border-radius: 50%;
  filter: blur(18px);
  background: linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04))
}

.pack-visual {
  min-height: 320px;
  flex-direction: column;
  gap: 16px
}

.pack-face {
  width: 210px;
  height: 280px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .72));
  box-shadow: 0 24px 48px rgba(0, 0, 0, .15)
}

.pack-shadow {
  position: absolute;
  width: 240px;
  height: 40px;
  background: rgba(0, 0, 0, .08);
  filter: blur(16px);
  border-radius: 50%;
  bottom: 34px
}

.pack-visual strong {
  position: relative;
  z-index: 1;
  font-family: Outfit, Inter, sans-serif;
  font-size: 24px
}

.spec-card {
  padding: 26px
}

.spec-card.dark {
  background: linear-gradient(135deg, #171210, #241917);
  color: #fff;
  border-color: rgba(255, 255, 255, .08)
}

.spec-list {
  display: grid;
  gap: 14px;
  margin-top: 18px
}

.spec-list div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line)
}

.spec-card.dark .spec-list div {
  border-color: rgba(255, 255, 255, .08)
}

.spec-list span {
  font-size: 13px;
  color: var(--muted)
}

.spec-card.dark .spec-list span {
  color: rgba(255, 255, 255, .6)
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.metric-box {
  padding: 24px
}

.factory-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-content: center
}

.zone {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
  font-weight: 700;
  text-align: center
}

.zone:last-child {
  grid-column: 1/-1
}

.video-shell {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow)
}

.yt-embed {
  border-radius: 24px;
  min-height: 420px;
  background: linear-gradient(135deg, #1a1312, #291d1b);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  color: #fff;
  text-align: center
}

.yt-placeholder h3 {
  font-family: Outfit, Inter, sans-serif;
  font-size: 36px;
  margin: 0 0 10px
}

.yt-placeholder p {
  color: rgba(255, 255, 255, .72);
  max-width: 560px;
  margin: 0 auto
}

.list-card {
  display: grid;
  gap: 14px;
  margin-top: 24px
}

.list-card>div {
  padding: 18px 20px
}

.form-card {
  padding: 26px
}

.contact-form {
  display: grid;
  gap: 16px
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: #473d38
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit
}

.footer-links.vertical {
  display: grid;
  gap: 10px
}

.quote-block {
  font-family: Outfit, Inter, sans-serif;
  font-size: 30px;
  line-height: 1.15;
  max-width: 380px
}

.service-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: center;
  justify-content: center;
  min-height: 280px
}

.service-chip {
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  font-weight: 800
}

.timeline-list {
  display: grid;
  gap: 14px;
  margin: 24px 0
}

.article-shell {
  max-width: 860px
}

.article-card {
  padding: 34px
}

.article-card p {
  margin: 0 0 18px
}

.site-footer {
  background: linear-gradient(135deg, #181210, #241816 55%, #2f211f);
  color: #fff;
  padding: 72px 0 30px;
  margin-top: 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 26px
}

.footer-grid h4 {
  font-family: Outfit, Inter, sans-serif;
  margin: 0 0 12px;
  font-size: 20px
}

.footer-grid p,
.footer-grid a,
.footer-contact {
  color: rgba(255, 255, 255, .72)
}

.footer-grid a {
  display: block;
  margin: 8px 0
}

.footer-grid a:hover {
  color: #fff
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 22px;
  margin-top: 30px;
  color: rgba(255, 255, 255, .54);
  font-size: 14px
}

.theme-spicy .pill,
.theme-spicy .eyebrow:not(.light),
.theme-spicy .category-card span,
.theme-spicy .text-link {
  color: #8f2a24
}

.theme-butter .pill,
.theme-butter .eyebrow:not(.light),
.theme-butter .category-card span,
.theme-butter .text-link {
  color: #8f5f2d
}

.theme-tomato .pill,
.theme-tomato .eyebrow:not(.light),
.theme-tomato .category-card span,
.theme-tomato .text-link {
  color: #a2483d
}

.theme-mushroom .pill,
.theme-mushroom .eyebrow:not(.light),
.theme-mushroom .category-card span,
.theme-mushroom .text-link {
  color: #4f6e56
}

@media (max-width: 1080px) {

  .category-grid,
  .card-grid.four,
  .metric-grid,
  .step-grid,
  .hero-meta,
  .strip-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .two-col,
  .sku-grid,
  .card-grid.three,
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex
  }

  .nav {
    display: none;
    position: absolute;
    left: 24px;
    right: 24px;
    top: 82px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: flex-start
  }

  .nav.is-open {
    display: flex
  }

  .nav-group {
    width: 100%
  }

  .nav-group .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 8px 0 0;
    margin: 0;
    min-width: 0
  }

  .nav-cta {
    display: none
  }

  .hero-stage {
    min-height: 640px
  }

  .hero-copy {
    padding: 72px 0
  }

  .hero-meta,
  .strip-grid,
  .category-grid,
  .card-grid.four,
  .card-grid.three,
  .sku-grid,
  .metric-grid,
  .step-grid,
  .two-col,
  .footer-grid,
  .field-grid {
    grid-template-columns: 1fr
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 18px
  }

  .topbar-inner {
    padding: 10px 18px
  }

  .nav-shell {
    height: 76px
  }

  .hero-copy h1 {
    font-size: 42px
  }

  .page-hero {
    padding: 76px 0 54px
  }

  .section {
    padding: 72px 0
  }
}

/* --- v10 SEO catalog extensions --- */
.lead-grid,
.catalog-grid,
.product-grid,
.gallery-grid,
.faq-grid,
.stats-row,
.logo-strip,
.application-grid {
  display: grid;
  gap: 22px
}

.catalog-grid.three,
.product-grid.three,
.application-grid {
  grid-template-columns: repeat(3, 1fr)
}

.catalog-grid.four {
  grid-template-columns: repeat(4, 1fr)
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: start
}

.media-card,
.info-box,
.faq-item,
.product-card,
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden
}

.media-card img,
.product-card img,
.blog-card img {
  width: 100%;
  height: auto;
  display: block
}

.media-card .media-body,
.product-card .media-body,
.blog-card .media-body {
  padding: 22px
}

.media-caption {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px
}

.info-box {
  padding: 24px
}

.info-box h3 {
  font-family: Outfit, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.12;
  margin: 0 0 10px
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 6px
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: #f7f1eb;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #5a4c45
}

.kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
  display: block
}

.rich-copy {
  display: grid;
  gap: 18px
}

.rich-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none
}

.feature-list li {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  font-weight: 600;
  color: #4e433c
}

.compare-table {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow)
}

.compare-table table {
  width: 100%;
  border-collapse: collapse
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left
}

.compare-table th {
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #6e6159;
  background: #fcf7f2
}

.product-card h3,
.blog-card h3 {
  font-family: Outfit, Inter, sans-serif;
  font-size: 28px;
  line-height: 1.08;
  margin: 0 0 10px
}

.product-card p,
.blog-card p {
  margin: 0 0 14px;
  color: var(--muted)
}

.product-card .actions,
.blog-card .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px
}

.gallery-grid {
  grid-template-columns: repeat(2, 1fr)
}

.gallery-grid .media-card {
  overflow: hidden
}

.gallery-grid img {
  aspect-ratio: 4/3;
  object-fit: cover
}

.stats-row {
  grid-template-columns: repeat(4, 1fr)
}

.stat-card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow)
}

.stat-card strong {
  display: block;
  font-family: Outfit, Inter, sans-serif;
  font-size: 34px;
  line-height: 1
}

.stat-card span {
  display: block;
  color: var(--muted);
  margin-top: 8px
}

.logo-strip {
  grid-template-columns: repeat(4, 1fr)
}

.logo-pill {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  text-align: center;
  font-weight: 800;
  color: #5b4e47
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr)
}

.faq-item {
  padding: 22px
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 19px
}

.faq-item p {
  margin: 0;
  color: var(--muted)
}

.application-card {
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #fbf7f3);
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.application-card h3 {
  font-family: Outfit, Inter, sans-serif;
  font-size: 28px;
  margin: 0 0 10px
}

.application-card p {
  margin: 0;
  color: var(--muted)
}

.inline-image {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.inline-image img {
  width: 100%;
  height: auto;
  display: block
}

.hero-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center
}

.hero-panel {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .12)
}

.hero-panel ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, .78)
}

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

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px
}

.hero-copy .eyebrow {
  margin-bottom: 18px
}

.brand-note {
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  margin-top: 18px
}

.footer-brand strong {
  display: block
}

@media (max-width:1080px) {

  .catalog-grid.three,
  .catalog-grid.four,
  .product-grid.three,
  .application-grid,
  .stats-row,
  .logo-strip,
  .product-hero-grid,
  .hero-split,
  .faq-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:820px) {

  .catalog-grid.three,
  .catalog-grid.four,
  .product-grid.three,
  .application-grid,
  .gallery-grid,
  .stats-row,
  .logo-strip,
  .product-hero-grid,
  .hero-split,
  .faq-grid {
    grid-template-columns: 1fr
  }
}


/* refined v11 */
.video-section {
  padding: 72px 0
}

.video-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #0f0b09;
  box-shadow: 0 24px 80px rgba(16, 13, 12, .18)
}

.video-frame iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0
}

.video-note {
  background: #fff;
  border: 1px solid rgba(124, 88, 61, .14);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(16, 13, 12, .06)
}

.video-note p strong {
  color: #8d3a22
}

.module-list {
  display: grid;
  gap: 14px;
  margin-top: 18px
}

.module-list div {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff7f1;
  border: 1px solid rgba(178, 89, 49, .12)
}

.media-caption {
  font-size: 14px;
  color: #6f6259;
  margin-top: 10px
}

.gallery-grid.three figure {
  margin: 0
}

.gallery-grid.three img {
  width: 100%;
  display: block;
  border-radius: 22px
}

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

.section-note {
  margin-top: 14px;
  color: #6f6259
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(16, 13, 12, .05)
}

.spec-table td,
.spec-table th {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(124, 88, 61, .12);
  text-align: left
}

.spec-table th {
  background: #fff7f1
}

@media (max-width: 900px) {

  .video-grid,
  .gallery-grid.three {
    grid-template-columns: 1fr
  }

  .video-frame iframe {
    min-height: 260px
  }
}


.video-placeholder-note {
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #5b4b45;
  background: #fff7ef;
  border-top: 1px solid rgba(143, 29, 33, .12)
}

/* v12 interaction and conversion upgrades */
.topbar a {
  color: #f3ece7
}

.topbar a:hover {
  color: #fff
}

.footer-contact a {
  color: rgba(255, 255, 255, .82)
}

.filter-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px
}

.filter-toolbar button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  color: #4f433d;
  cursor: pointer;
  transition: .2s ease;
  box-shadow: var(--shadow)
}

.filter-toolbar button:hover,
.filter-toolbar button.is-active {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand), #946643);
  color: #fff;
  border-color: transparent
}

.product-card.is-hidden {
  display: none
}

.faq-item {
  padding: 0;
  overflow: hidden
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 800;
  color: var(--ink);
  text-align: left;
  cursor: pointer
}

.faq-question:hover {
  background: #faf5ef
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: var(--muted);
  transition: max-height .25s ease, padding .25s ease
}

.faq-item.is-open .faq-answer {
  max-height: 220px;
  padding: 0 22px 22px
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #f3ece5;
  color: var(--brand);
  font-size: 18px;
  line-height: 1;
  flex: none
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg)
}

.pack-switch-wrap {
  padding: 20px 0 20px;
  background: linear-gradient(180deg, #faf6f1, #fff)
}

.pack-switch {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.pack-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
  color: #4e433c;
  box-shadow: var(--shadow)
}

.pack-chip.is-current,
.pack-chip:hover {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand), #946643);
  color: #fff;
  border-color: transparent
}

.floating-inquiry {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 10px;
  justify-items: end
}

.floating-main,
.floating-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-weight: 800
}

.floating-main {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand), #946643);
  color: #fff
}

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

.success-banner {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #edf7ee;
  border: 1px solid #cfe4d2;
  color: #295739;
  font-weight: 700
}

@media (max-width: 820px) {
  .floating-inquiry {
    right: 12px;
    left: 12px;
    bottom: 12px;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: stretch
  }

  .floating-main,
  .floating-mini {
    width: 100%
  }

  .faq-item.is-open .faq-answer {
    max-height: 320px
  }
}


/* v3 refinement pack */
.proof-grid,
.response-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px
}

.proof-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #fbf7f3);
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.proof-card strong {
  display: block;
  font-family: Outfit, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.05;
  margin-bottom: 10px;
  color: var(--ink)
}

.proof-card p {
  margin: 0;
  color: var(--muted)
}

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

.timeline-step {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand), #946643);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px
}

.timeline-step h3 {
  font-family: Outfit, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.08;
  margin: 0 0 10px
}

.timeline-step p {
  margin: 0;
  color: var(--muted)
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -2px 0 14px
}

.mini-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: #faf5ef;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #6a5750
}

.product-card {
  transition: transform .25s ease, box-shadow .25s ease
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(28, 19, 17, .12)
}

.mini-contact-grid .feature-card,
.pack-strategy .feature-card {
  background: #fff
}

@media (max-width:1080px) {

  .proof-grid,
  .response-grid,
  .timeline-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:820px) {

  .proof-grid,
  .response-grid,
  .timeline-grid {
    grid-template-columns: 1fr
  }
}