/* ═══════════════════════════════════════════════════════════
   LUHE V2 · 方案 D — 品牌包装风 Brand Package
   深复古绿 × 焦橙 × 米白 · 超粗黑 grotesque · 斜切色块 · 贴纸卡
   ═══════════════════════════════════════════════════════════ */

:root {
  --green: #1E3A2E;
  --green-deep: #163026;
  --green-ink: #0F241C;
  --orange: #C8501E;
  --orange-hi: #D15B22;
  --cream: #F5F0E6;
  --cream-dim: #EDE6D6;
  --ink: #1A241E;
  --font-display: "Archivo Black", "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  --font-body: "Archivo", "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  --wrap: 1280px;
  --hard-shadow: 6px 6px 0 rgba(15, 36, 28, 0.9);
  --hard-shadow-o: 6px 6px 0 rgba(200, 80, 30, 0.9);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--green-deep);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
:focus-visible { outline: 3px solid var(--orange-hi); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 16px; top: -64px; z-index: 300;
  background: var(--orange); color: var(--cream);
  padding: 10px 18px; font-weight: 700; border-radius: 4px;
  transition: top 0.25s;
}
.skip-link:focus { top: 12px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ── 字体工具 ── */
.sec-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 16px; border: 2px solid currentColor;
  border-radius: 999px; margin-bottom: 20px;
}
.badge-green { color: var(--green); background: rgba(30, 58, 46, 0.06); }
.badge-orange { color: var(--orange-hi); background: rgba(200, 80, 30, 0.08); }

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  background: rgba(22, 48, 38, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(245, 240, 230, 0.12);
  transition: transform 0.35s ease;
}
.nav.is-hidden { transform: translateY(-100%); }
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
  height: 72px; display: flex; align-items: center; gap: 24px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 900;
  color: var(--cream); letter-spacing: 0.02em;
}
.nav-logo sup { font-size: 0.5em; color: var(--orange-hi); }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  color: rgba(245, 240, 230, 0.82); font-weight: 600; font-size: 0.92rem;
  padding: 8px 13px; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--cream); background: rgba(245, 240, 230, 0.1); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  display: flex; gap: 2px;
  border: 1.5px solid rgba(245, 240, 230, 0.28); border-radius: 999px;
  padding: 3px;
}
.lang-switch button {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.03em;
  color: rgba(245, 240, 230, 0.65);
  padding: 4px 8px; border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.lang-switch button:hover { color: var(--cream); }
.lang-switch button.is-active { background: var(--orange); color: var(--cream); }
.nav-cta {
  background: var(--orange); color: var(--cream);
  font-weight: 800; font-size: 0.88rem;
  padding: 10px 20px; border-radius: 999px;
  border: 2px solid var(--orange);
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--orange-hi); transform: translateY(-2px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 24px; height: 2.5px; background: var(--cream); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 190;
  background: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display); font-size: clamp(1.8rem, 8vw, 2.6rem);
  color: var(--cream); text-transform: uppercase; padding: 6px 16px;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--orange-hi); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  background: var(--green);
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 0 120px;
  overflow: clip;
}
.hero-bgword {
  position: absolute; right: -2%; bottom: -6%;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(9rem, 26vw, 24rem);
  line-height: 0.8; color: transparent;
  -webkit-text-stroke: 2px rgba(245, 240, 230, 0.14);
  letter-spacing: -0.02em;
  pointer-events: none; user-select: none;
  white-space: nowrap;
}
.hero-bgword sup { font-size: 0.18em; -webkit-text-stroke-width: 1px; }
.hero-slice { position: absolute; pointer-events: none; }
.hero-slice-a {
  left: -12%; top: -18%; width: 55vw; height: 34vw;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
  opacity: 0.92;
}
.hero-slice-b {
  right: -8%; bottom: 6%; width: 24vw; height: 16vw;
  background: var(--orange-hi);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.5;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 80px); align-items: center; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--cream); font-weight: 800; font-size: 0.8rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  border: 2px solid rgba(245, 240, 230, 0.4); border-radius: 999px;
  padding: 9px 18px; margin-bottom: 32px;
  background: rgba(22, 48, 38, 0.55);
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange-hi); flex: none; }
.hero-title {
  font-family: var(--font-display); font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.7rem, 6.4vw, 5.9rem);
  line-height: 0.96; letter-spacing: 0.005em;
  color: var(--cream); margin-bottom: 28px;
}
.hero-title:lang(zh) { line-height: 1.14; }
.hline { display: block; overflow: hidden; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.hline-inner { display: inline-block; will-change: transform; }
.hl-orange { color: var(--orange-hi); }
.hero-desc {
  color: rgba(245, 240, 230, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.13rem); line-height: 1.7;
  max-width: 54ch; margin-bottom: 36px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 0.95rem;
  padding: 15px 28px; border-radius: 999px;
  border: 2.5px solid transparent;
  transition: transform 0.22s, box-shadow 0.22s, background 0.22s, color 0.22s;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.22s; }
.btn:hover svg { transform: translateX(4px); }
.btn-orange { background: var(--orange); color: var(--cream); border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-hi); transform: translateY(-3px); box-shadow: 0 14px 28px -12px rgba(200, 80, 30, 0.55); }
.btn-ghost { color: var(--cream); border-color: rgba(245, 240, 230, 0.5); }
.btn-ghost:hover { border-color: var(--cream); background: rgba(245, 240, 230, 0.08); transform: translateY(-3px); }
.btn-green { background: var(--green); color: var(--cream); border-color: var(--green); }
.btn-green:hover { background: var(--green-deep); transform: translateY(-3px); box-shadow: 0 14px 28px -12px rgba(22, 48, 38, 0.5); }

.hero-stats { display: flex; gap: clamp(24px, 4vw, 64px); flex-wrap: wrap; }
.hstat { min-width: 110px; }
.hstat b {
  display: block; font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.4rem, 4.2vw, 3.9rem); line-height: 1;
  color: var(--orange-hi); font-variant-numeric: tabular-nums;
}
.hstat b::after { content: "+"; color: var(--cream); font-size: 0.55em; vertical-align: 0.35em; margin-left: 2px; }
.hstat span {
  display: block; margin-top: 8px;
  color: rgba(245, 240, 230, 0.66); font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}

.hero-visual { position: relative; }
.hero-frame {
  position: relative;
  background: var(--orange);
  clip-path: polygon(0 8%, 62% 0, 100% 6%, 100% 100%, 0 100%);
  padding: clamp(14px, 1.6vw, 22px);
  box-shadow: 14px 14px 0 rgba(15, 36, 28, 0.55);
  transform: rotate(1.5deg);
}
.hero-photo {
  clip-path: polygon(0 9%, 62% 0.5%, 100% 6.5%, 100% 100%, 0 100%);
  overflow: hidden;
}
.hero-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.hero-whisper {
  position: absolute; left: -14px; top: 9%;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.3rem, 2.1vw, 2rem); line-height: 1.05;
  color: var(--cream); text-transform: uppercase;
  transform: rotate(-8deg);
  background: var(--green-deep);
  border: 2.5px solid var(--cream);
  padding: 10px 16px; border-radius: 6px;
  box-shadow: var(--hard-shadow-o);
  z-index: 3;
}
.hero-stamp {
  position: absolute; right: -10px; bottom: 8%;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.05rem, 1.6vw, 1.5rem); line-height: 1;
  color: var(--orange); text-align: center;
  background: var(--cream);
  border: 3px dashed var(--orange);
  border-radius: 50%;
  width: clamp(88px, 8.5vw, 122px); height: clamp(88px, 8.5vw, 122px);
  display: flex; align-items: center; justify-content: center;
  transform: rotate(9deg);
  z-index: 3;
}
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(245, 240, 230, 0.6);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  z-index: 3;
}
.hero-scroll i { width: 2px; height: 40px; background: linear-gradient(var(--orange-hi), transparent); display: block; animation: drip 1.8s ease-in-out infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 56% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ═══════════ MARQUEE ═══════════ */
.marquee-band {
  position: relative; z-index: 4;
  background: var(--orange);
  border-top: 3px solid var(--green-deep);
  border-bottom: 3px solid var(--green-deep);
  transform: rotate(-1.6deg) scale(1.02);
  margin: -34px 0; overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.3rem, 2.4vw, 2.1rem);
  color: var(--cream); text-transform: uppercase; white-space: nowrap;
  display: flex; align-items: center; gap: 48px;
}
.marquee-track em { font-style: normal; color: var(--green-deep); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════ SECTIONS 通用 ═══════════ */
.sec { position: relative; padding: clamp(96px, 11vw, 160px) 0; overflow: clip; }
.sec-cream { background: var(--cream); color: var(--ink); }
.sec-green { background: var(--green); color: var(--cream); }
.sec-head { position: relative; max-width: 820px; margin-bottom: clamp(48px, 6vw, 80px); }
.sec-num {
  position: absolute; right: 0; top: -0.35em;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(4.6rem, 10vw, 9rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 2px rgba(30, 58, 46, 0.25);
  pointer-events: none; user-select: none;
}
.sec-num-cream { -webkit-text-stroke-color: rgba(245, 240, 230, 0.22); }
.sec-green .sec-sub { color: rgba(245, 240, 230, 0.75); }
.sec-sub { font-size: clamp(1rem, 1.25vw, 1.12rem); line-height: 1.7; max-width: 62ch; margin-top: 18px; color: rgba(26, 36, 30, 0.75); }
.sec-title { margin-top: 4px; }
.sec-cream .sec-title { color: var(--green-deep); }
.sec-green .sec-title { color: var(--cream); }

/* 斜切装饰块（滚动 scrub 错位） */
.slice { position: absolute; pointer-events: none; z-index: 1; }
.slice-orange { background: var(--orange); opacity: 0.9; }
.slice-green { background: var(--green); opacity: 0.14; }
.slice-cream { background: var(--cream); opacity: 0.08; }
.slice-l { left: -10%; top: 8%; width: 30vw; height: 18vw; clip-path: polygon(0 0, 100% 22%, 82% 100%, 0 78%); }
.slice-r { right: -12%; bottom: 6%; width: 34vw; height: 20vw; clip-path: polygon(18% 0, 100% 0, 100% 82%, 0 100%); }
.sec .wrap { position: relative; z-index: 2; }

/* ═══════════ ABOUT ═══════════ */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(32px, 4.5vw, 72px); align-items: start; }
.about-media { position: relative; }
.about-media picture, .about-media img { border-radius: 8px; }
.about-media { border: 3px solid var(--green-deep); border-radius: 10px; box-shadow: var(--hard-shadow); overflow: hidden; }
.about-media img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.about-year {
  position: absolute; left: 18px; bottom: 18px;
  background: var(--orange); color: var(--cream);
  border: 2.5px solid var(--cream); border-radius: 8px;
  padding: 12px 18px; transform: rotate(-3deg);
  box-shadow: 5px 5px 0 rgba(15, 36, 28, 0.8);
}
.about-year b { display: block; font-family: var(--font-display); font-size: 2rem; line-height: 1; font-variant-numeric: tabular-nums; }
.about-year span { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.about-points { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.about-points li {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--green); color: var(--cream);
  font-weight: 700; font-size: 0.9rem;
  padding: 11px 18px; border-radius: 999px;
  border: 2px solid var(--green-deep);
  box-shadow: 4px 4px 0 rgba(15, 36, 28, 0.85);
}
.about-points svg { width: 17px; height: 17px; flex: none; }
.about-cards { display: grid; gap: 22px; }

/* 贴纸卡（通用） */
.sticker {
  position: relative;
  background: #FFFCF4; color: var(--ink);
  border: 2.5px solid var(--green-deep); border-radius: 10px;
  padding: 26px 26px 24px;
  box-shadow: var(--hard-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sticker::before {
  content: ""; position: absolute; inset: 0 auto auto 0;
  width: 100%; height: 9px;
  background: repeating-linear-gradient(90deg, var(--orange) 0 26px, var(--green) 26px 52px);
  border-radius: 7px 7px 0 0;
}
.sticker h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.28rem; text-transform: uppercase; color: var(--green-deep);
  margin: 6px 0 10px;
}
.sticker p { color: rgba(26, 36, 30, 0.78); font-size: 0.97rem; }
.sticker:hover { transform: translateY(-6px) rotate(-0.6deg); box-shadow: 9px 11px 0 rgba(15, 36, 28, 0.9); }
.sticker:nth-child(even):hover { transform: translateY(-6px) rotate(0.6deg); }

/* ═══════════ ADVANTAGES ═══════════ */
.adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 28px); }
.adv-card {
  position: relative;
  background: var(--cream); color: var(--ink);
  border: 2.5px solid var(--green-deep); border-radius: 12px;
  padding: 0 22px 24px;
  box-shadow: var(--hard-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.adv-card:nth-child(odd) { transform: rotate(-1.1deg); }
.adv-card:nth-child(even) { transform: rotate(1.1deg); }
.adv-card:hover { transform: translateY(-8px) rotate(0deg); box-shadow: 8px 12px 0 rgba(15, 36, 28, 0.9); }
.adv-roof {
  height: 34px; margin: 0 -22px 18px;
  background: var(--orange);
  clip-path: polygon(0 100%, 0 42%, 50% 0, 100% 42%, 100% 100%);
  border-radius: 9px 9px 0 0;
}
.adv-card:nth-child(even) .adv-roof { background: var(--green-deep); }
.adv-num {
  position: absolute; top: 34px; right: 16px;
  font-family: var(--font-display); font-weight: 900;
  font-size: 2.6rem; line-height: 1; color: rgba(200, 80, 30, 0.28);
}
.adv-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--green); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; border: 2px solid var(--green-deep);
}
.adv-icon svg { width: 26px; height: 26px; }
.adv-card h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.14rem; text-transform: uppercase; color: var(--green-deep);
  margin-bottom: 9px; line-height: 1.15;
}
.adv-card p { font-size: 0.93rem; color: rgba(26, 36, 30, 0.74); }

/* ═══════════ PRODUCTS — 包装袋卡 ═══════════ */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 32px); }
.pkg-card {
  position: relative;
  background: #FFFCF4;
  border: 3px solid var(--green-deep); border-radius: 12px;
  box-shadow: var(--hard-shadow);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.pkg-card:hover { transform: translateY(-9px); box-shadow: 9px 14px 0 rgba(15, 36, 28, 0.9); }
.pkg-roof {
  height: 44px; flex: none;
  background: var(--green);
  clip-path: polygon(0 100%, 0 45%, 50% 0, 100% 45%, 100% 100%);
  position: relative;
}
.pkg-card:nth-child(3n+2) .pkg-roof { background: var(--orange); }
.pkg-num {
  position: absolute; top: 30px; left: 20px; z-index: 3;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.6rem, 3.4vw, 3.6rem); line-height: 1;
  color: var(--cream);
  text-shadow: 3px 3px 0 var(--green-deep);
  transform: rotate(-4deg);
  pointer-events: none;
}
.pkg-card:nth-child(3n+2) .pkg-num { color: var(--green-deep); text-shadow: 3px 3px 0 rgba(245, 240, 230, 0.65); }
.pkg-media { overflow: hidden; border-bottom: 3px solid var(--green-deep); }
.pkg-media img { width: 100%; aspect-ratio: 1 / 0.82; object-fit: cover; transition: transform 0.5s ease; }
.pkg-card:hover .pkg-media img { transform: scale(1.06); }
.pkg-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pkg-body h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.22rem; text-transform: uppercase; color: var(--green-deep); line-height: 1.15;
}
.pkg-body > p { font-size: 0.93rem; color: rgba(26, 36, 30, 0.74); flex: 1; }
.pkg-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pkg-tags li {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange); border: 2px solid var(--orange); border-radius: 999px;
  padding: 5px 12px; background: rgba(200, 80, 30, 0.07);
}
.products-cta { margin-top: clamp(36px, 4vw, 56px); text-align: center; }

.gallery-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem); text-transform: uppercase;
  color: var(--green-deep);
  margin: clamp(56px, 7vw, 88px) 0 28px;
  display: flex; align-items: center; gap: 18px;
}
.gallery-title::after { content: ""; flex: 1; height: 3px; background: repeating-linear-gradient(90deg, var(--orange) 0 22px, transparent 22px 34px); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.gallery-grid.gallery-3 { grid-template-columns: repeat(3, 1fr); }
.g-item {
  position: relative; border: 3px solid var(--green-deep); border-radius: 10px;
  overflow: hidden; box-shadow: 5px 5px 0 rgba(15, 36, 28, 0.85);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.g-item:nth-child(odd) { transform: rotate(-0.7deg); }
.g-item:nth-child(even) { transform: rotate(0.7deg); }
.g-item:hover { transform: translateY(-6px) rotate(0deg); box-shadow: 7px 10px 0 rgba(15, 36, 28, 0.9); }
.g-item img { width: 100%; aspect-ratio: 1 / 0.78; object-fit: cover; }
.g-item figcaption {
  position: absolute; left: 12px; bottom: 12px;
  background: var(--green-deep); color: var(--cream);
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 6px; border: 2px solid var(--cream);
}

/* ═══════════ HEALTHY ═══════════ */
.healthy-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.healthy-points { display: grid; gap: 14px; margin-top: 34px; }
.healthy-points li {
  display: flex; align-items: center; gap: 14px;
  background: var(--cream); color: var(--ink);
  border: 2.5px solid var(--green-deep); border-radius: 999px;
  padding: 13px 22px 13px 14px;
  font-weight: 700; font-size: 0.96rem;
  box-shadow: 5px 5px 0 rgba(15, 36, 28, 0.85);
  transition: transform 0.22s ease;
}
.healthy-points li:hover { transform: translateX(8px); }
.healthy-points .hp-check {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--orange); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--green-deep);
}
.healthy-points svg { width: 17px; height: 17px; }
.healthy-visual { position: relative; display: flex; justify-content: center; }
.healthy-disc {
  position: absolute; inset: 6% 8%;
  background: var(--orange);
  clip-path: polygon(50% 0, 100% 22%, 100% 100%, 0 100%, 0 22%);
  opacity: 0.95;
}
.healthy-visual img { position: relative; z-index: 2; width: min(88%, 460px); filter: drop-shadow(10px 14px 0 rgba(15, 36, 28, 0.4)); }

/* ═══════════ FACTORY ═══════════ */
.factory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4.5vw, 72px); align-items: start; margin-bottom: 8px; }
.factory-media { position: relative; border: 3px solid var(--green-deep); border-radius: 10px; overflow: hidden; box-shadow: var(--hard-shadow); }
.factory-media img { width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; }
.factory-tag {
  position: absolute; right: 16px; top: 16px;
  background: var(--cream); color: var(--green-deep);
  border: 2.5px solid var(--green-deep); border-radius: 8px;
  padding: 10px 16px; transform: rotate(2.5deg);
  box-shadow: 4px 4px 0 rgba(15, 36, 28, 0.8); text-align: center;
}
.factory-tag b { display: block; font-family: var(--font-display); font-size: 1.5rem; line-height: 1.05; font-variant-numeric: tabular-nums; }
.factory-tag span { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.factory-name {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.25rem, 1.9vw, 1.65rem); text-transform: uppercase;
  color: var(--green-deep); line-height: 1.2; margin-bottom: 16px;
}
.factory-desc { color: rgba(26, 36, 30, 0.78); font-size: 0.98rem; margin-bottom: 30px; }
.factory-features { display: grid; gap: 18px; }
.ff-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: #FFFCF4; border: 2.5px solid var(--green-deep); border-radius: 10px;
  padding: 18px 20px; box-shadow: 5px 5px 0 rgba(15, 36, 28, 0.85);
  transition: transform 0.22s ease;
}
.ff-item:hover { transform: translateX(8px); }
.ff-icon {
  flex: none; width: 48px; height: 48px; border-radius: 10px;
  background: var(--orange); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--green-deep);
}
.ff-icon svg { width: 24px; height: 24px; }
.ff-item h3 { font-family: var(--font-display); font-weight: 900; font-size: 1.05rem; text-transform: uppercase; color: var(--green-deep); margin-bottom: 4px; }
.ff-item p { font-size: 0.9rem; color: rgba(26, 36, 30, 0.72); }

/* ═══════════ PROCESS ═══════════ */
.process-track {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 1.8vw, 24px); counter-reset: step;
}
.step-card {
  position: relative;
  background: var(--cream); color: var(--ink);
  border: 2.5px solid var(--green-deep);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%);
  padding: 26px 34px 24px 20px;
  min-height: 210px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s ease;
}
.step-card:hover { transform: translateY(-8px); }
.step-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 2.9rem; line-height: 1; color: var(--orange);
  text-shadow: 2.5px 2.5px 0 var(--green-deep);
}
.step-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--green); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--green-deep);
}
.step-icon svg { width: 23px; height: 23px; }
.step-card h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.06rem; text-transform: uppercase; color: var(--green-deep);
  margin-top: auto;
}

/* ═══════════ CERTS + PARTNERS ═══════════ */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.4vw, 32px); margin-bottom: clamp(44px, 5vw, 64px); }
.cert-stamp {
  position: relative; text-align: center;
  background: #FFFCF4;
  border: 3px dashed var(--green-deep); border-radius: 14px;
  padding: 30px 18px 24px;
  box-shadow: var(--hard-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cert-stamp:nth-child(odd) { transform: rotate(-1.6deg); }
.cert-stamp:nth-child(even) { transform: rotate(1.6deg); }
.cert-stamp:hover { transform: rotate(0deg) translateY(-7px); box-shadow: 8px 12px 0 rgba(15, 36, 28, 0.9); }
.cert-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 96px; height: 96px; border-radius: 50%;
  background: var(--orange); color: var(--cream);
  border: 3px solid var(--green-deep);
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.25rem; letter-spacing: 0.02em;
  margin-bottom: 16px; padding: 0 12px;
  box-shadow: 4px 4px 0 rgba(15, 36, 28, 0.85);
}
.cert-stamp:nth-child(even) .cert-badge { background: var(--green); }
.cert-stamp h3 { font-family: var(--font-display); font-weight: 900; font-size: 1.12rem; text-transform: uppercase; color: var(--green-deep); margin-bottom: 6px; }
.cert-stamp p { font-size: 0.86rem; color: rgba(26, 36, 30, 0.7); font-weight: 600; }
.trust {
  background: var(--green); color: var(--cream);
  border: 3px solid var(--green-deep); border-radius: 14px;
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow: var(--hard-shadow-o);
  margin-bottom: clamp(56px, 7vw, 88px);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 3vw, 48px); align-items: center;
}
.trust h3 { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.4rem, 2.4vw, 2.1rem); text-transform: uppercase; line-height: 1.05; }
.trust p { color: rgba(245, 240, 230, 0.82); font-size: 0.99rem; max-width: 58ch; }
.partners-head { max-width: 720px; margin-bottom: 36px; }
.partners-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.5rem); text-transform: uppercase; color: var(--green-deep);
}
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.partner-chip {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: #FFFCF4; border: 2.5px solid var(--green-deep); border-radius: 999px;
  padding: 20px 24px; min-height: 84px;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem); text-transform: uppercase;
  color: var(--green-deep); text-align: center;
  box-shadow: 5px 5px 0 rgba(15, 36, 28, 0.85);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.partner-chip svg { width: 20px; height: 20px; color: var(--orange); flex: none; }
.partner-chip:hover { transform: translateY(-5px) rotate(-0.8deg); background: var(--green); color: var(--cream); }
.partner-chip:hover svg { color: var(--orange-hi); }

/* ═══════════ CONTACT ═══════════ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 4.5vw, 72px); align-items: start; }
.contact-form {
  background: var(--cream); color: var(--ink);
  border: 3px solid var(--green-deep); border-radius: 14px;
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--hard-shadow);
  display: grid; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 7px; font-weight: 800; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-deep); }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit; font-weight: 500; font-size: 0.97rem; color: var(--ink);
  background: #FFFCF4;
  border: 2.5px solid var(--green-deep); border-radius: 8px;
  padding: 13px 15px; width: 100%;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 4px 4px 0 rgba(200, 80, 30, 0.5);
}
.btn-submit { justify-content: center; border-radius: 10px; font-size: 1rem; }
.contact-info { display: grid; gap: 18px; }
.ci-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--cream); color: var(--ink);
  border: 2.5px solid var(--green-deep); border-radius: 12px;
  padding: 20px 22px; box-shadow: 5px 5px 0 rgba(15, 36, 28, 0.85);
  transition: transform 0.22s ease;
}
.ci-card:hover { transform: translateX(8px); }
.ci-icon {
  flex: none; width: 46px; height: 46px; border-radius: 10px;
  background: var(--orange); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--green-deep);
}
.ci-icon svg { width: 22px; height: 22px; }
.ci-card h3 { font-family: var(--font-display); font-weight: 900; font-size: 0.98rem; text-transform: uppercase; color: var(--green-deep); margin-bottom: 4px; }
.ci-card p, .ci-card a { font-size: 0.95rem; color: rgba(26, 36, 30, 0.8); font-weight: 600; overflow-wrap: anywhere; }
.ci-card a:hover { color: var(--orange); }
.ci-hours { display: grid; gap: 6px; width: 100%; }
.ci-hours div { display: flex; justify-content: space-between; gap: 16px; font-size: 0.92rem; font-weight: 600; color: rgba(26, 36, 30, 0.8); }
.ci-hours b { color: var(--green-deep); }

/* ═══════════ FOOTER ═══════════ */
.footer { background: var(--green-ink); color: rgba(245, 240, 230, 0.75); padding: clamp(56px, 7vw, 88px) 0 32px; border-top: 3px solid var(--orange); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); margin-bottom: 48px; }
.footer-logo { font-family: var(--font-display); font-weight: 900; font-size: 2.2rem; color: var(--cream); }
.footer-logo sup { font-size: 0.45em; color: var(--orange-hi); }
.footer-desc { margin-top: 14px; font-size: 0.93rem; max-width: 34ch; }
.footer-col h4 {
  font-family: var(--font-display); font-weight: 900; font-size: 0.92rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--cream); margin-bottom: 16px;
}
.footer-col a, .footer-col span a { display: block; padding: 5px 0; font-size: 0.92rem; transition: color 0.2s, transform 0.2s; }
.footer-col a:hover { color: var(--orange-hi); transform: translateX(4px); }
.footer-col p { font-size: 0.92rem; padding: 4px 0; overflow-wrap: anywhere; }
.footer-col p b { color: var(--cream); font-weight: 700; }
.footer-bottom {
  border-top: 1.5px solid rgba(245, 240, 230, 0.15);
  padding-top: 26px; display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center; font-size: 0.85rem;
}
.footer-legal { display: flex; gap: 22px; align-items: center; }
.footer-legal a { transition: color 0.2s; }
.footer-legal a:hover { color: var(--orange-hi); }
.footer-admin {
  border: 1.5px solid rgba(245, 240, 230, 0.35); border-radius: 999px;
  padding: 5px 14px; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-admin:hover { border-color: var(--orange-hi); }

/* ═══════════ 响应式 ═══════════ */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(3, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr 0.8fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 120px 0 110px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 440px; margin: 0 auto; width: 100%; }
  .hero-bgword { font-size: 30vw; bottom: auto; top: 2%; }
  .about-grid, .factory-grid, .healthy-grid, .contact-grid { grid-template-columns: 1fr; }
  .healthy-visual { order: -1; }
  .trust { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-grid.gallery-3 { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .hero-scroll { display: none; }
  .marquee-band { margin: -22px 0; }
}
@media (max-width: 560px) {
  .adv-grid, .pkg-grid, .cert-grid, .gallery-grid, .gallery-grid.gallery-3, .partner-grid, .process-track, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .lang-switch { overflow-x: auto; max-width: 44vw; scrollbar-width: none; }
  .lang-switch::-webkit-scrollbar { display: none; }
  .step-card { clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%); min-height: 0; }
  .hero-stats { gap: 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ═══════════ 动效兜底 ═══════════ */
/* 未启用 JS/GSAP 时一切默认可见；隐藏态只由 GSAP inline style 施加 */
.is-revealed { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .marquee-track { animation: none; flex-wrap: wrap; width: 100%; }
  .hero-scroll i { animation: none; }
}
