/* ============================================
   mht.251w.com - 眉县猕猴桃 产地直供（销售向重设计）
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink: #1a3326;
  --leaf: #2f6b4f;
  --leaf-deep: #1f4d38;
  --gold: #c9a227;
  --mist: #f3f7f2;
  --paper: #ffffff;
  --line: #d7e4da;
  --muted: #5f7266;
  --soft: #e8f2eb;
  --radius: 20px;
  --shadow: 0 18px 48px rgba(26, 51, 38, .12);
  --font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --display: "Noto Serif SC", "Songti SC", serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--muted);
  line-height: 1.7;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 48px; padding: 0 28px;
  border-radius: 999px; font-size: 15px; font-weight: 700;
  border: none; cursor: pointer; transition: transform .25s, box-shadow .25s, background .25s, color .25s;
}
.btn-sm { min-height: 40px; padding: 0 20px; font-size: 14px; }
.btn-buy {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 10px 28px rgba(201, 162, 39, .35);
}
.btn-buy:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(201, 162, 39, .45); }
.btn-ghost {
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: #fff; color: var(--leaf-deep); }
.btn-line {
  background: transparent;
  color: var(--leaf);
  border: 1.5px solid var(--leaf);
}
.btn-line:hover { background: var(--leaf); color: #fff; }
.btn-primary { background: var(--leaf); color: #fff; }
.btn-primary:hover { background: var(--leaf-deep); transform: translateY(-2px); }
.btn-plain { border: 1.5px solid var(--leaf); color: var(--leaf); background: transparent; }
.btn-plain:hover { background: var(--leaf); color: #fff; }
.btn-outline-green { border: 2px solid var(--leaf); color: var(--leaf); background: transparent; }
.btn-outline-green:hover { background: var(--leaf); color: #fff; }
.btn-lg { min-height: 52px; padding: 0 32px; font-size: 16px; }

/* ---------- 头部 ---------- */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(215,228,218,.7);
}
@supports (backdrop-filter: blur(12px)) {
  .header { background: rgba(255,255,255,.88); backdrop-filter: blur(12px); }
}
.header .container {
  display: flex; align-items: center; height: 72px; position: relative;
}
.logo { display: flex; align-items: center; gap: 12px; z-index: 2; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #f0e68c 0 18%, transparent 19%),
    radial-gradient(circle at 62% 42%, #dc2626 0 12%, transparent 13%),
    linear-gradient(145deg, #3d8b63, #1f4d38);
  box-shadow: 0 8px 18px rgba(47, 107, 79, .28);
}
.logo-text b {
  display: block; font-family: var(--display); font-size: 20px;
  color: var(--ink); line-height: 1.15; font-weight: 700;
}
.logo-text small { font-size: 11px; color: var(--muted); letter-spacing: .5px; }

.header nav { position: absolute; left: 50%; transform: translateX(-50%); }
.nav { display: flex; gap: 4px; }
.nav > li > a {
  display: block; padding: 26px 16px; font-size: 15px; font-weight: 500; color: var(--ink);
  position: relative;
}
.nav > li > a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 14px; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform .25s;
}
.nav > li.active > a,
.nav > li > a:hover { color: var(--leaf); }
.nav > li.active > a::after,
.nav > li > a:hover::after { transform: scaleX(1); }

.h-actions { margin-left: auto; display: flex; align-items: center; gap: 16px; z-index: 2; }
.h-phone { font-size: 14px; font-weight: 700; color: var(--leaf-deep); letter-spacing: .5px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.mobile-mask { display: none; }

.nav .has-sub { position: relative; }
.sub-nav {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 10px 0; min-width: 160px;
  opacity: 0; visibility: hidden; transition: all .25s; z-index: 500;
}
.nav .has-sub:hover .sub-nav { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.sub-nav a { display: block; padding: 10px 20px; font-size: 14px; color: var(--muted); }
.sub-nav a:hover { color: var(--leaf); background: var(--mist); }

/* ---------- Hero 全幅 ---------- */
.hero {
  position: relative; min-height: min(88vh, 760px);
  display: flex; align-items: flex-end; overflow: hidden; color: #fff;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04); animation: heroZoom 12s ease-out forwards;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 35, 24, .78) 0%, rgba(15, 35, 24, .35) 52%, rgba(15, 35, 24, .2) 100%),
    linear-gradient(180deg, transparent 40%, rgba(15, 35, 24, .55) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 0 0 72px;
  max-width: 640px;
  animation: rise .9s ease both;
}
.hero-brand {
  font-family: var(--display); font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; color: #fff; margin-bottom: 14px; letter-spacing: 1px;
}
.hero h1 {
  font-family: var(--display); font-size: clamp(34px, 5.2vw, 56px);
  line-height: 1.2; font-weight: 700; max-width: 12em;
}
.hero-lead {
  margin: 18px 0 30px; font-size: 16px; color: rgba(255,255,255,.88); max-width: 28em;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- 信任条 ---------- */
.trust {
  background: var(--ink); color: #fff; padding: 22px 0;
}
.trust-list {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.trust-list li {
  text-align: center; padding: 8px 10px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.trust-list li:last-child { border-right: none; }
.trust-list strong {
  display: block; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px;
}
.trust-list span { font-size: 12px; color: rgba(255,255,255,.62); }

/* ---------- 通用区块 ---------- */
.section { padding: 88px 0; }
.sec-soft { background: var(--mist); }
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head h2 {
  font-family: var(--display); font-size: clamp(28px, 3.5vw, 36px);
  color: var(--ink); font-weight: 700; margin-bottom: 12px;
}
.sec-head p { color: var(--muted); font-size: 15px; }
.sec-tag { display: inline-block; font-size: 12px; letter-spacing: 3px; color: var(--leaf); font-weight: 700; }
.eyebrow {
  font-size: 13px; letter-spacing: 3px; color: var(--gold); font-weight: 700;
  text-transform: uppercase; margin-bottom: 12px;
}

/* ---------- 产品大图网格 ---------- */
.prod-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.prod {
  background: #fff; border-radius: 28px; overflow: hidden;
  border: 1px solid var(--line); transition: transform .3s, box-shadow .3s;
}
.prod:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.prod-media {
  position: relative; display: block; aspect-ratio: 5 / 4; overflow: hidden; background: var(--soft);
}
.prod-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.prod:hover .prod-media img { transform: scale(1.06); }
.prod-flag {
  position: absolute; left: 16px; top: 16px;
  background: rgba(26, 51, 38, .82); color: #fff;
  font-size: 12px; padding: 6px 14px; border-radius: 999px; backdrop-filter: blur(4px);
}
.prod-body { padding: 28px 28px 32px; }
.prod-body h3 {
  font-family: var(--display); font-size: 26px; color: var(--ink); margin-bottom: 10px;
}
.prod-short { font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.prod-meta {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 22px; padding: 14px 16px; background: var(--mist); border-radius: 14px;
}
.prod-meta li { font-size: 13px; color: var(--leaf-deep); }
.prod-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- 优势 ---------- */
.reason-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.reason-item {
  padding: 8px 8px 8px 0;
  border-top: 2px solid var(--leaf);
  padding-top: 22px;
}
.r-num {
  display: block; font-family: var(--display); font-size: 28px;
  color: var(--gold); line-height: 1; margin-bottom: 14px;
}
.reason-item h3 {
  font-size: 17px; color: var(--ink); margin-bottom: 10px; font-weight: 700;
}
.reason-item p { font-size: 14px; line-height: 1.75; }

/* ---------- 品牌故事横幅 ---------- */
.story-band {
  display: grid; grid-template-columns: 1.05fr .95fr; min-height: 560px;
}
.story-visual { position: relative; overflow: hidden; }
.story-visual img {
  width: 100%; height: 100%; object-fit: cover; min-height: 560px;
  transition: transform .8s ease;
}
.story-band:hover .story-visual img { transform: scale(1.04); }
.story-copy {
  background: var(--ink); color: rgba(255,255,255,.82);
  padding: 72px 56px; display: flex; flex-direction: column; justify-content: center;
}
.story-copy h2 {
  font-family: var(--display); font-size: clamp(28px, 3vw, 36px);
  color: #fff; margin-bottom: 18px; line-height: 1.3;
}
.story-copy > p { font-size: 15px; line-height: 1.9; margin-bottom: 24px; }
.story-list { margin-bottom: 32px; }
.story-list li {
  position: relative; padding: 10px 0 10px 22px; font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.story-list li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}
.story-copy .btn-line { color: #fff; border-color: rgba(255,255,255,.45); align-self: flex-start; }
.story-copy .btn-line:hover { background: #fff; color: var(--ink); }

/* ---------- 页脚 ---------- */
.footer { background: #0d1f16; color: #8fad9a; }
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr .9fr .9fr auto;
  gap: 32px;
  align-items: start;
  padding: 52px 0 36px;
}
.f-info b { color: #fff; font-size: 17px; display: block; margin-bottom: 12px; font-family: var(--display); }
.f-info p { font-size: 13px; line-height: 1.9; padding: 2px 0; }
.f-info a { color: #b8e0c4; }
.f-links h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.f-links a { display: block; font-size: 13px; padding: 5px 0; transition: color .2s; }
.f-links a:hover { color: #fff; }
.f-qr {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-end;
}
.fqr-item {
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 8px;
  display: block;
  text-align: center;
  cursor: default;
  flex: 0 0 auto;
}
button.fqr-item {
  cursor: pointer;
  transition: transform .2s;
}
button.fqr-item:hover { transform: translateY(-2px); }
.fqr-item img { border-radius: 6px; display: block; width: 100px; height: 100px; object-fit: contain; }
.fqr-item p { margin-top: 8px; font-size: 12px; color: #5f7266; font-weight: 600; }
.footer-btm {
  border-top: 1px solid rgba(143,173,154,.15);
  padding: 18px 0 28px; text-align: center; font-size: 13px; color: #6b8a76;
}

/* ---------- 面包屑 / 内页 ---------- */
.breadcrumb {
  background: var(--mist); border-bottom: 1px solid var(--line);
  padding: 14px 0; font-size: 13px; color: var(--muted);
}
.breadcrumb .container { display: flex; gap: 10px; align-items: center; }
.breadcrumb a { color: var(--leaf); }

.prod-hero {
  background: linear-gradient(135deg, #163528, #1f4d38 55%, #2f6b4f);
  color: #fff; padding: 56px 0; position: relative; overflow: hidden;
}
.prod-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(201,162,39,.18), transparent 45%);
}
.prod-hero .container { position: relative; }
.prod-hero-tag {
  display: inline-block; padding: 7px 18px; border-radius: 30px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  font-size: 13px; color: #dcfce7; margin-bottom: 18px;
}
.prod-hero h1 { font-family: var(--display); font-size: 38px; font-weight: 700; }
.prod-hero p { color: #dcfce7; font-size: 16px; margin-top: 12px; }
.prod-hero.green-plain { text-align: center; padding: 52px 0; }
.prod-hero.green-plain p { margin: 12px auto 0; }

.pd-top { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.pd-thumb {
  background: var(--mist); border-radius: 24px; padding: 18px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 380px;
}
.pd-photo {
  width: 100%; max-width: 420px; aspect-ratio: 1; object-fit: cover;
  border-radius: 18px; box-shadow: 0 16px 40px rgba(22,101,52,.18);
}
.pd-thumb-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; justify-content: center; }
.pd-thumb-tags span {
  padding: 6px 16px; border-radius: 20px; background: var(--leaf); color: #fff;
  font-size: 12px; font-weight: 600;
}
.pd-info h2 { font-family: var(--display); font-size: 28px; color: var(--ink); }
.pd-desc { font-size: 15px; color: var(--muted); line-height: 2; margin: 16px 0 22px; }
.pd-spec { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.pd-spec div {
  display: flex; gap: 12px; align-items: baseline;
  background: var(--mist); border: 1px solid var(--line); border-radius: 10px; padding: 10px 16px;
}
.pd-spec span { font-size: 13px; color: var(--muted); min-width: 50px; }
.pd-spec b { font-size: 14px; color: var(--ink); }
.pd-info .btn-lg { margin-right: 10px; }

.pd-block { margin-top: 48px; }
.pd-block > h2 {
  font-family: var(--display); font-size: 24px; color: var(--ink);
  margin-bottom: 22px; padding-left: 16px; position: relative;
}
.pd-block > h2::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 4px;
  border-radius: 3px; background: var(--gold);
}
.pd-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.pd-meta div {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px;
}
.pd-meta span { display: block; font-size: 12px; color: var(--muted); }
.pd-meta b { font-size: 14px; color: var(--ink); font-weight: 600; }
.pd-story {
  background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 30px; margin-top: 18px;
}
.pd-story p { font-size: 15px; line-height: 2; color: var(--muted); margin-bottom: 10px; }
.pd-story p:last-child { margin-bottom: 0; }
.pd-nutrition { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.nut-item {
  display: flex; gap: 12px; align-items: center; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px;
  font-size: 14px; color: var(--ink);
}
.nut-item span:first-child {
  width: 24px; height: 24px; border-radius: 50%; background: var(--leaf); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0;
}
.pd-eat { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.eat-item {
  display: flex; gap: 12px; align-items: center; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px;
  font-size: 14px; color: var(--muted);
}
.e-n {
  width: 30px; height: 30px; border-radius: 50%; background: var(--mist);
  border: 1px solid var(--leaf); color: var(--leaf); font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px;
}
.pd-faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-item summary {
  padding: 18px 22px; font-size: 15px; font-weight: 600; color: var(--ink);
  cursor: pointer; list-style: none; position: relative; padding-right: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: var(--leaf);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item[open] summary { color: var(--leaf-deep); }
.faq-item p { padding: 0 22px 18px; font-size: 14px; color: var(--muted); line-height: 1.9; }
.pd-cta {
  margin-top: 48px;
  background: linear-gradient(135deg, #163528, #1f4d38 55%, #2f6b4f);
  border-radius: 20px; padding: 40px; text-align: center; color: #fff;
}
.pd-cta h3 { font-family: var(--display); font-size: 24px; }
.pd-cta p { color: #dcfce7; margin: 10px 0 22px; font-size: 14px; }

/* ---------- 关于页 ---------- */
.about-hero { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.about-img, .story-img {
  position: relative; border-radius: 24px; min-height: 380px; overflow: hidden; background: #14532d;
}
.about-img img, .story-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.si-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(180deg, rgba(20,83,45,.2) 0%, rgba(20,83,45,.72) 100%);
}
.si-big { font-family: var(--display); font-size: 30px; font-weight: 700; line-height: 1.5; text-align: center; }
.si-big b { font-size: 46px; display: block; color: #f5d76e; }
.si-tag {
  margin-top: 18px; font-size: 14px; background: rgba(255,255,255,.16);
  padding: 8px 22px; border-radius: 30px;
}
.about-text h2 { font-family: var(--display); font-size: 26px; color: var(--ink); margin-bottom: 18px; }
.about-text p { font-size: 15px; line-height: 2; margin-bottom: 12px; }
.mission-grid, .honor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mission-card, .honor-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .25s, box-shadow .25s;
}
.mission-card:hover, .honor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.m-n { font-size: 30px; font-weight: 800; color: var(--leaf); opacity: .25; }
.mission-card h3, .honor-card h3 { font-size: 17px; color: var(--ink); margin: 12px 0 8px; }
.mission-card p, .honor-card p { font-size: 13px; color: var(--muted); line-height: 1.75; }
.honor-card span {
  display: block; font-family: var(--display); font-size: 28px;
  color: var(--gold); font-weight: 700; margin-bottom: 4px;
}

/* ---------- 站点导航（保留） ---------- */
.links-group { margin-bottom: 40px; }
.links-group h2 {
  font-size: 20px; color: var(--ink); margin-bottom: 16px;
  padding-left: 14px; border-left: 4px solid var(--leaf);
}
.links-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 12px; }
.links-list a {
  display: flex; align-items: center; gap: 14px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; transition: all .2s;
}
.links-list a:hover { border-color: var(--leaf); box-shadow: var(--shadow); transform: translateY(-2px); }
.link-icon {
  width: 40px; height: 40px; border-radius: 10px; background: var(--leaf); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; flex-shrink: 0;
}
.link-name { font-size: 14px; color: var(--ink); font-weight: 600; }
.link-url { font-size: 12px; color: var(--muted); margin-left: auto; }
.links-tip { text-align: center; color: var(--muted); font-size: 13px; margin-top: 20px; }

/* ---------- 微信弹出层 ---------- */
.wx-modal {
  position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .3s;
}
.wx-modal.open { opacity: 1; visibility: visible; }
.wx-modal-mask { position: absolute; inset: 0; background: rgba(13, 31, 22, .7); backdrop-filter: blur(2px); }
.wx-modal-box {
  position: relative; background: #fff; border-radius: 22px; padding: 36px 40px 30px;
  text-align: center; max-width: 400px; width: 92%; box-shadow: 0 30px 80px rgba(0,0,0,.3);
  transform: translateY(20px) scale(.96); transition: all .3s;
}
.wx-modal.open .wx-modal-box { transform: translateY(0) scale(1); }
.wx-modal-close {
  position: absolute; top: 12px; right: 16px; font-size: 26px; color: var(--muted);
  background: none; border: none; cursor: pointer; line-height: 1;
}
.wx-modal-box h3 { font-family: var(--display); font-size: 22px; color: var(--ink); margin-bottom: 18px; }
.wx-qr-img {
  background: var(--mist); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px; display: inline-block;
}
.wx-qr-img img { border-radius: 8px; }
.wx-tip { font-size: 15px; color: var(--leaf-deep); font-weight: 700; margin-top: 16px; }
.wx-tip2 { font-size: 13px; color: var(--muted); margin-top: 6px; }
.wx-ship {
  font-size: 12px; color: var(--muted); margin-top: 8px; background: var(--mist);
  border-radius: 8px; padding: 6px 10px; display: inline-block;
}

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  .header { backdrop-filter: none; background: #fff; }
  .header .container { width: 100%; }
  .header nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, 82vw);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    background: #fff;
    box-shadow: -8px 0 32px rgba(0,0,0,.16);
    transform: translateX(105%);
    transition: transform .3s ease;
    z-index: 1200;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .header nav.open { transform: translateX(0); }
  .nav {
    position: static !important;
    display: flex;
    flex-direction: column;
    width: auto !important;
    height: auto !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    padding: 72px 20px 28px;
    box-shadow: none;
    background: transparent;
    transform: none !important;
  }
  .nav > li > a { padding: 14px 6px; }
  .nav > li > a::after { display: none; }
  .sub-nav {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: none; padding: 0 0 0 14px; min-width: 0;
  }
  .burger { display: flex; position: relative; z-index: 2; }
  .header .h-actions .btn { display: none; }
  .h-phone { display: none; }
  .mobile-mask {
    display: block; position: fixed; inset: 0; background: rgba(13,31,22,.5);
    z-index: 1100; opacity: 0; visibility: hidden; transition: all .3s;
    pointer-events: none;
  }
  .mobile-mask.show { opacity: 1; visibility: visible; pointer-events: auto; }
  .trust-list { grid-template-columns: repeat(2, 1fr); }
  .trust-list li { border-right: none; }
  .trust-list li:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .prod-grid, .reason-row { grid-template-columns: 1fr 1fr; }
  .story-band { grid-template-columns: 1fr; }
  .story-visual img { min-height: 360px; }
  .story-copy { padding: 48px 32px; }
  .pd-top, .about-hero { grid-template-columns: 1fr; }
  .mission-grid, .honor-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .f-qr { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 768px) {
  .hero { min-height: 72vh; }
  .hero-inner { padding-bottom: 48px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .trust-list, .prod-grid, .reason-row,
  .pd-meta, .pd-nutrition, .pd-eat, .mission-grid, .honor-grid { grid-template-columns: 1fr; }
  .trust-list li:nth-child(odd) { border-right: none; }
  .footer-top { grid-template-columns: 1fr; }
  .f-qr { justify-content: flex-start; }
  .prod-body { padding: 22px; }
  .prod-body h3 { font-size: 22px; }
  .container { padding: 0 16px; }
  .logo-text small { display: none; }
}
