:root {
  --brand-green: #006400;
  --harvest-gold: #FFD700;
  --forest: #234932;
  --brand: var(--brand-green);
  --soil: #8c6b45;
  --gold: #c9a24d;
  --ivory: #f4f0e8;
  --ink: #1f2a24;
  --muted: #6f766d;
  --line: rgba(35, 73, 50, 0.16);
  --white: #fffefa;
  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", STSong, serif;
  --sans: Inter, "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  --shadow: 0 24px 70px rgba(35, 73, 50, 0.1);
  --radius: 28px;
  --radius-lg: 40px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 112px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.container { width: min(calc(100% - 64px), 1240px); margin-inline: auto; }
.section { padding: clamp(84px, 8vw, 116px) 0; }
.section--compact { padding: clamp(70px, 8vw, 108px) 0; }
.section--dark { color: var(--ivory); background: var(--forest); }
.section--white { background: var(--white); }
.chapter {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.chapter::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .55; }
.section--dark .chapter, .manifesto .chapter, .hero .chapter { color: rgba(244,240,232,.76); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 600; letter-spacing: -.04em; }
h1 { margin-bottom: 28px; font-size: clamp(58px, 8.5vw, 126px); line-height: .94; }
h2 { margin-bottom: 26px; font-size: clamp(42px, 5.2vw, 76px); line-height: 1.06; }
h3 { margin-bottom: 14px; font-size: clamp(22px, 2.2vw, 31px); line-height: 1.24; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(17px, 1.55vw, 21px); line-height: 1.9; }
.section--dark .lead { color: rgba(244,240,232,.72); }
.section-head { display: grid; grid-template-columns: 1.12fr .78fr; gap: 64px; align-items: end; margin-bottom: 58px; }
.section-head p { margin-bottom: 7px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.section--dark .section-head p { color: rgba(244,240,232,.68); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; padding: 16px 0; transition: .45s var(--ease); }
.site-header.scrolled { padding: 12px 0; }
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; padding: 0; transition: padding .45s var(--ease), background .45s var(--ease), border-radius .45s var(--ease), box-shadow .45s var(--ease); }
.site-header.scrolled .header-inner { padding: 8px 14px; border: 1px solid rgba(35,73,50,.1); border-radius: 999px; background: rgba(244,240,232,.93); box-shadow: 0 16px 40px rgba(20,39,28,.1); backdrop-filter: blur(16px); }
.reading-progress { position: absolute; left: 0; bottom: 0; width: var(--reading-progress, 0%); height: 2px; background: var(--gold); opacity: .9; transition: width .12s linear; }
.brand-lockup { display: inline-flex; flex: 0 0 auto; width: 190px; aspect-ratio: 760 / 310; background: transparent; filter: drop-shadow(0 5px 12px rgba(0,0,0,.16)); }
.brand-lockup img { width: 100%; height: 100%; object-fit: contain; flex: 0 0 auto; }
.site-header:not(.scrolled) .brand-lockup { filter: brightness(1.42) saturate(1.08) drop-shadow(0 0 13px rgba(244,240,232,.22)); }
.main-nav { display: flex; justify-content: center; gap: 28px; color: rgba(255,255,255,.84); font-size: 14px; font-weight: 600; }
.site-header.scrolled .main-nav { color: var(--ink); }
.main-nav a { position: relative; padding: 10px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 1px; background: var(--gold); transition: right .35s var(--ease); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav a.active { color: var(--gold); }
.header-action, .button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--harvest-gold);
  color: #18261f;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.header-action:hover, .button:hover { transform: translateY(-2px); background: #ffe34f; }
.button--ghost { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.06); color: #fff; }
.button--ghost:hover { background: rgba(255,255,255,.14); }
.button--outline { border-color: var(--line); background: transparent; color: var(--forest); }
.button--outline:hover { background: var(--forest); color: var(--ivory); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; background: rgba(35,73,50,.18); color: #fff; }
.site-header.scrolled .nav-toggle { border-color: var(--line); color: var(--forest); }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 18px; height: 1.5px; margin: 4px auto; background: currentColor; transition: .35s var(--ease); }

.hero { --nature-x: 74%; --nature-y: 24%; --sun-strength: .12; --water-strength: 0; position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.hero picture, .hero-media, .hero-overlay, .hero-wind-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero picture { z-index: 0; }
.hero-media { object-fit: cover; object-position: center; transform: scale(1.015); animation: heroBreath 14s ease-out forwards; transition: opacity .45s ease; }
.hero-wind-canvas { z-index: 0; display: block; opacity: 0; pointer-events: none; transition: opacity .45s ease; }
.hero.wind-ready .hero-wind-canvas { opacity: 1; }
.hero.wind-ready .hero-media { opacity: 0; }
.hero-nature-effects { position: absolute; z-index: 3; inset: 0; overflow: hidden; opacity: 0; pointer-events: none; transition: opacity .6s ease; }
.hero.wind-ready .hero-nature-effects { opacity: 1; }
.hero-sunlight, .hero-moisture { position: absolute; inset: 0; display: block; }
.hero-sunlight { opacity: var(--sun-strength); background: radial-gradient(circle at var(--nature-x) var(--nature-y), rgba(255,235,177,1) 0, rgba(246,193,91,.54) 14%, transparent 42%); mix-blend-mode: screen; filter: blur(6px); }
.hero-moisture { opacity: var(--water-strength); background: radial-gradient(ellipse 28% 21% at var(--nature-x) var(--nature-y), rgba(220,250,235,.94) 0, rgba(125,196,164,.48) 36%, transparent 74%); mix-blend-mode: screen; filter: blur(4px); }
@keyframes heroBreath { to { transform: scale(1.03); } }
.hero-overlay { z-index: 2; pointer-events: none; background: linear-gradient(90deg, rgba(16,32,23,.9) 0%, rgba(16,32,23,.66) 44%, rgba(16,32,23,.12) 76%), linear-gradient(0deg, rgba(14,27,20,.72), transparent 45%); }
.hero-content { position: relative; z-index: 4; width: min(860px, 76%); padding: 180px 0 78px; }
.hero-content.reveal { opacity: 1; transform: none; }
.hero-subtitle { max-width: 610px; margin-bottom: 34px; color: rgba(255,255,255,.82); font-family: var(--serif); font-size: clamp(22px, 2.5vw, 36px); line-height: 1.55; white-space: pre-line; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.scroll-cue { position: absolute; z-index: 4; right: 32px; bottom: 38px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.6); font-size: 11px; letter-spacing: .2em; writing-mode: vertical-rl; }
.scroll-cue::after { content: ""; width: 1px; height: 60px; background: currentColor; }

.marquee-band { padding: 19px 0 0; overflow: hidden; border-top: 1px solid rgba(244,240,232,.08); border-bottom: 1px solid rgba(244,240,232,.08); background: #102219; color: var(--ivory); }
.marquee-label { margin: 0; text-align: center; color: rgba(244,240,232,.52); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.marquee-window { margin-top: 13px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marqueeMove 36s linear infinite; }
.marquee-window:hover .marquee-track, .marquee-window:focus-within .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; flex-shrink: 0; gap: 14px; padding: 0 7px 20px; }
.marquee-group a { min-height: 50px; display: inline-flex; align-items: center; gap: 10px; padding: 0 18px; border: 1px solid rgba(244,240,232,.1); border-radius: 999px; background: rgba(244,240,232,.035); color: rgba(244,240,232,.82); font-size: 14px; font-weight: 650; transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease); }
.marquee-group a:hover, .marquee-group a:focus-visible { border-color: rgba(201,162,77,.5); background: rgba(201,162,77,.08); color: var(--gold); outline: none; }
.marquee-group i { width: 9px; height: 9px; border: 2px solid var(--gold); border-radius: 50% 0 50% 50%; transform: rotate(-45deg); }
@keyframes marqueeMove { to { transform: translateX(-50%); } }

.farmer-value { padding: clamp(58px, 7vw, 86px) 0; border-bottom: 1px solid var(--line); background: #182e21; color: var(--ivory); }
.farmer-value-inner { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(36px, 6vw, 84px); align-items: start; }
.farmer-value-heading > span { display: block; margin-bottom: 18px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.farmer-value-heading h2 { margin: 0; font-size: clamp(36px, 4.1vw, 58px); }
.farmer-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.farmer-value-card { min-height: 260px; padding: 26px; border: 1px solid rgba(244,240,232,.16); border-radius: 24px; background: rgba(244,240,232,.05); }
.farmer-value-card > span { display: block; margin-bottom: 56px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.farmer-value-card h3 { margin-bottom: 12px; color: var(--ivory); font-family: var(--serif); font-size: 23px; }
.farmer-value-card p { margin: 0; color: rgba(244,240,232,.68); font-size: 14px; line-height: 1.75; }
.farmer-value-note { grid-column: 2; margin: 4px 0 0; color: rgba(244,240,232,.62); font-size: 13px; line-height: 1.7; }

.monthly-guide { background: var(--ivory); }
.monthly-guide-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(38px, 7vw, 100px); align-items: center; }
.monthly-guide-copy h2 { font-size: clamp(42px, 5.4vw, 76px); }
.monthly-guide-copy > p { max-width: 560px; color: var(--muted); font-size: 18px; line-height: 1.85; }
.month-picker { width: min(100%, 320px); display: grid; gap: 9px; margin-top: 30px; color: var(--forest); font-size: 13px; font-weight: 800; }
.month-picker select { min-height: 50px; padding: 0 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); color: var(--ink); font: 15px var(--sans); }
.monthly-guide-card { padding: clamp(28px, 4.4vw, 54px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.monthly-guide-card > strong { display: block; margin-bottom: 26px; color: var(--gold); font-size: 13px; letter-spacing: .1em; }
.monthly-guide-card ol { display: grid; gap: 0; margin: 0; padding: 0; counter-reset: guide-item; list-style: none; }
.monthly-guide-card li { counter-increment: guide-item; display: grid; grid-template-columns: 40px 1fr; gap: 14px; padding: 20px 0; border-top: 1px solid var(--line); color: var(--ink); font-size: 16px; line-height: 1.75; }
.monthly-guide-card li::before { content: "0" counter(guide-item); color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .1em; padding-top: 5px; }
.monthly-guide-card > p { margin: 22px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.monthly-guide-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.finder-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(24px, 4vw, 56px); align-items: stretch; }
.finder-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding: clamp(24px, 4vw, 42px); border: 1px solid rgba(244,240,232,.14); border-radius: var(--radius-lg); background: rgba(244,240,232,.055); }
.finder-form label { display: grid; gap: 9px; color: rgba(244,240,232,.74); font-size: 13px; font-weight: 700; }
.finder-form input, .finder-form select { width: 100%; min-height: 54px; padding: 0 16px; border: 1px solid rgba(244,240,232,.18); border-radius: 14px; color: var(--ivory); background: rgba(8,22,14,.45); font: inherit; }
.finder-form select option { color: var(--ink); background: var(--white); }
.finder-form input::placeholder { color: rgba(244,240,232,.38); }
.finder-wide { grid-column: 1 / -1; }
.finder-form .button { width: fit-content; min-width: 210px; margin-top: 4px; }
.finder-privacy { margin: -4px 0 0; color: rgba(244,240,232,.5); font-size: 12px; line-height: 1.7; }
.finder-result { display: flex; flex-direction: column; min-height: 100%; padding: clamp(28px, 4vw, 46px); border-radius: var(--radius-lg); color: var(--ink); background: var(--ivory); }
.finder-result-label { margin-bottom: 34px; color: var(--brand); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.finder-result h3 { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); }
.finder-result p { color: var(--muted); line-height: 1.8; }
.finder-result ul { display: grid; gap: 12px; margin: 8px 0 32px; padding: 0; list-style: none; }
.finder-result li { position: relative; padding: 14px 16px 14px 44px; border: 1px solid var(--line); border-radius: 14px; line-height: 1.6; }
.finder-result li::before { content: "✓"; position: absolute; left: 17px; color: var(--brand); font-weight: 900; }
.finder-result-action { align-self: flex-start; margin-top: auto; }

.knowledge-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.knowledge-card { display: flex; min-height: 330px; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ivory); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.knowledge-card:hover { transform: translateY(-6px); border-color: rgba(201,162,77,.55); box-shadow: var(--shadow); }
.knowledge-card > span { margin-bottom: 42px; color: var(--brand); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.knowledge-card h3 { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 32px); }
.knowledge-card p { color: var(--muted); line-height: 1.75; }
.knowledge-card strong { margin-top: auto; color: var(--brand); font-size: 14px; }
.knowledge-preview-action { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 32px; }
.knowledge-preview-action span { max-width: 680px; color: var(--muted); font-size: 12px; line-height: 1.7; }

.knowledge-hero { position: relative; min-height: min(820px, 92vh); display: flex; align-items: flex-end; overflow: hidden; color: var(--ivory); background: var(--forest); }
.knowledge-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.knowledge-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,28,17,.92) 0%, rgba(10,28,17,.72) 45%, rgba(10,28,17,.2) 100%), linear-gradient(0deg, rgba(10,28,17,.68), transparent 55%); }
.knowledge-hero-content { position: relative; z-index: 1; padding-top: 180px; padding-bottom: clamp(70px, 9vw, 120px); }
.knowledge-hero h1 { max-width: 980px; font-size: clamp(54px, 7.8vw, 110px); }
.knowledge-hero p { max-width: 680px; margin-bottom: 32px; color: rgba(244,240,232,.78); font-size: clamp(17px, 1.6vw, 21px); line-height: 1.85; }
.knowledge-index { background: var(--ivory); }
.knowledge-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.knowledge-filter { min-height: 44px; padding: 0 20px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: transparent; cursor: pointer; }
.knowledge-filter.active { border-color: var(--brand); color: var(--white); background: var(--brand); }
.knowledge-entry-list { display: grid; gap: 24px; }
.knowledge-entry { padding: clamp(28px, 5vw, 62px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 12px 40px rgba(35,73,50,.05); }
.knowledge-entry[hidden] { display: none; }
.knowledge-entry-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin-bottom: 36px; color: var(--brand); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.knowledge-entry h2 { max-width: 960px; font-size: clamp(36px, 4.8vw, 66px); }
.knowledge-entry-lead { max-width: 900px; color: var(--muted); font-size: 18px; line-height: 1.85; }
.knowledge-entry ol { display: grid; gap: 12px; margin: 34px 0; padding: 0; list-style: none; counter-reset: knowledge-step; }
.knowledge-entry li { counter-increment: knowledge-step; position: relative; padding: 20px 22px 20px 66px; border: 1px solid var(--line); border-radius: 16px; line-height: 1.75; }
.knowledge-entry li::before { content: "0" counter(knowledge-step); position: absolute; left: 22px; top: 23px; color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.knowledge-entry li strong { color: var(--brand); }
.knowledge-boundary { margin: 0; padding: 18px 20px; border-left: 3px solid var(--gold); color: var(--muted); background: rgba(201,162,77,.08); line-height: 1.75; }
.knowledge-standard-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 96px); align-items: start; }
.knowledge-standard-list { display: grid; gap: 10px; }
.knowledge-standard-list p { display: grid; grid-template-columns: 110px 1fr; gap: 18px; margin: 0; padding: 20px 0; border-bottom: 1px solid rgba(244,240,232,.14); }
.knowledge-standard-list strong { color: var(--gold); }
.knowledge-standard-list span { color: rgba(244,240,232,.72); line-height: 1.7; }
.knowledge-cta { position: relative; }
.guide-copy-status { min-height: 20px; margin-top: 12px !important; color: var(--brand) !important; }

.mission-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(42px, 7vw, 100px); align-items: center; }
.mission-copy p { color: var(--muted); font-size: clamp(17px, 1.55vw, 20px); line-height: 2; }
.mission-image { position: relative; min-height: 590px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.mission-image img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: 55% center; }
.mission-image::after { content: "希望 Hope"; position: absolute; right: 24px; bottom: 24px; color: rgba(255,255,255,.86); font-family: var(--serif); letter-spacing: .12em; }

.seasons { overflow: hidden; }
.season-cycle { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.season-card { position: relative; min-height: 560px; display: flex; flex-direction: column; padding: 0 0 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; box-shadow: 0 18px 45px rgba(35,73,50,.06); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.season-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.season-card::after { content: ""; position: absolute; inset: auto -20% -50% 15%; height: 72%; border-radius: 50%; background: var(--season-glow); filter: blur(42px); opacity: .18; pointer-events: none; }
.season-card--spring { --season-glow: #7f9f6f; }
.season-card--summer { --season-glow: #c9a24d; }
.season-card--autumn { --season-glow: #8c6b45; }
.season-card--winter { --season-glow: #9aa79e; }
.season-media { position: relative; z-index: 1; height: 178px; flex: 0 0 auto; margin: 0; overflow: hidden; border-bottom: 1px solid var(--line); background: #ddd8cd; }
.season-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.season-card:hover .season-media img { transform: scale(1.035); }
.season-card--spring .season-media img { object-position: 42% center; }
.season-card--summer .season-media img { object-position: 54% center; }
.season-card--autumn .season-media img { object-position: 48% center; }
.season-card--winter .season-media img { object-position: 58% center; }
.season-name { position: relative; z-index: 1; display: flex; align-items: baseline; gap: 10px; margin: 25px 28px 0; color: var(--forest); font-family: var(--serif); font-size: 52px; line-height: 1; }
.season-name small { color: var(--muted); font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: .18em; }
.season-crop { position: relative; z-index: 1; display: block; margin: 20px 28px 0; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.season-card h3 { position: relative; z-index: 1; margin: auto 28px 14px; font-family: var(--serif); }
.season-card p { position: relative; z-index: 1; margin: 0 28px; color: var(--muted); line-height: 1.8; }
.season-note { margin: 20px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.trust-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.trust-visual { position: relative; min-height: 720px; overflow: hidden; border-radius: var(--radius-lg); }
.trust-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.trust-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,39,28,.42), transparent 48%); }
.trust-list { display: grid; gap: 14px; }
.trust-item { padding: 34px 36px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.55); transition: background .35s var(--ease), transform .35s var(--ease); }
.trust-item:hover { transform: translateY(-3px); }
.trust-item:hover { background: rgba(255,255,255,.82); }
.trust-index { display: block; margin-bottom: 30px; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .18em; }
.trust-item p { margin: 0; color: var(--muted); line-height: 1.8; }

.philosophy { position: relative; overflow: hidden; }
.philosophy::before { content: "秋"; position: absolute; right: 4vw; top: -9vw; color: rgba(244,240,232,.035); font-family: var(--serif); font-size: 42vw; line-height: 1; }
.philosophy-inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.philosophy-quote { max-width: 800px; }
.philosophy-quote p { max-width: 660px; color: rgba(244,240,232,.72); font-size: 18px; line-height: 2; }
.principles { border-top: 1px solid rgba(244,240,232,.18); }
.principle { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(244,240,232,.18); }
.principle span { color: var(--gold); font-size: 12px; letter-spacing: .12em; }
.principle strong { font-family: var(--serif); font-size: 20px; font-weight: 500; }

.advantage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.advantage { min-height: 330px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.34); }
.advantage-number { color: var(--gold); font-size: 13px; letter-spacing: .18em; }
.advantage h3 { margin-top: auto; font-family: var(--serif); }
.advantage p { margin-bottom: 0; color: var(--muted); line-height: 1.8; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.product-card { display: flex; flex-direction: column; min-height: 560px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-media { display: grid; place-items: center; height: 300px; padding: 22px; background: #eeeae2; }
.product-media img { width: 100%; height: 100%; object-fit: contain; }
.product-copy { display: flex; flex: 1; flex-direction: column; padding: 28px 26px; }
.product-type { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.product-copy h3 { margin: 14px 0 18px; font-family: var(--serif); font-size: 34px; }
.product-copy dl { display: grid; gap: 12px; margin: 0; }
.product-copy dl div { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.product-copy dt { margin-bottom: 7px; color: var(--muted); font-size: 12px; }
.product-copy dd { margin: 0; line-height: 1.6; }
.product-copy .button { align-self: flex-start; margin-top: auto; }
.product-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 22px; }
.product-copy .product-actions .button { margin-top: 0; }
.product-detail-link { background: var(--forest); color: var(--ivory); }
.product-detail-link:hover { background: #153923; }
.product-note { margin-top: 22px; color: var(--muted); font-size: 13px; }
.product-section-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.field-faq { background: #ece7dc; }
.field-faq-list { border-top: 1px solid var(--line); }
.field-faq-item { border-bottom: 1px solid var(--line); }
.field-faq-item summary { min-height: 94px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 18px 0; color: var(--forest); cursor: pointer; list-style: none; }
.field-faq-item summary::-webkit-details-marker { display: none; }
.field-faq-item summary span { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 32px); font-weight: 600; }
.field-faq-item summary i { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); font-size: 24px; font-style: normal; transition: transform .3s var(--ease), background .3s var(--ease); }
.field-faq-item[open] summary i { transform: rotate(45deg); background: var(--forest); color: var(--ivory); }
.field-faq-item > div { max-width: 820px; padding: 0 0 28px; }
.field-faq-item p { color: var(--muted); font-size: 16px; line-height: 1.85; }
.field-faq-item a { color: var(--brand); font-size: 14px; font-weight: 800; }
.field-faq-disclaimer { max-width: 900px; margin: 26px 0 0; color: var(--muted); font-size: 12px; line-height: 1.75; }

.service-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.service-image { height: 620px; overflow: hidden; border-radius: var(--radius-lg); }
.service-image img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.steps { counter-reset: step; border-top: 1px solid var(--line); }
.step { counter-increment: step; display: grid; grid-template-columns: 62px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.step::before { content: "0" counter(step); color: var(--gold); font-size: 12px; letter-spacing: .16em; padding-top: 6px; }
.step h3 { margin-bottom: 8px; font-family: var(--serif); }
.step p { margin: 0; color: var(--muted); line-height: 1.7; }
.section-subnav { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--line); }
.section-subnav span { margin-right: 8px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .15em; }
.section-subnav a { min-height: 44px; display: inline-flex; align-items: center; padding: 0 17px; border: 1px solid var(--line); border-radius: 999px; color: var(--forest); font-size: 14px; font-weight: 700; transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); }
.section-subnav a:hover { transform: translateY(-2px); background: var(--forest); color: var(--ivory); }

.cases { position: relative; min-height: 84vh; display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.cases > img, .cases::after { position: absolute; inset: 0; width: 100%; height: 100%; }
.cases > img { object-fit: cover; }
.cases::after { content: ""; background: linear-gradient(90deg, rgba(23,35,27,.92), rgba(23,35,27,.4) 58%, rgba(23,35,27,.12)), linear-gradient(0deg, rgba(23,35,27,.65), transparent); }
.cases-content { position: relative; z-index: 2; max-width: 760px; padding: 120px 0 84px; }
.cases-content p { color: rgba(255,255,255,.78); font-size: 19px; line-height: 1.9; }
.case-status { display: inline-flex; margin-top: 22px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.24); color: rgba(255,255,255,.72); font-size: 13px; }

.insight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.insight-card { min-height: 420px; display: flex; flex-direction: column; padding: 26px; overflow: hidden; position: relative; border-radius: var(--radius); color: #fff; }
.insight-card img, .insight-card::after { position: absolute; inset: 0; width: 100%; height: 100%; }
.insight-card img { object-fit: cover; transition: transform .7s var(--ease); }
.insight-card::after { content: ""; background: linear-gradient(0deg, rgba(19,35,26,.88), rgba(19,35,26,.08) 65%); }
.insight-card:hover img { transform: scale(1.025); }
.insight-card > *:not(img) { position: relative; z-index: 1; }
.insight-card small { margin-top: auto; color: var(--gold); letter-spacing: .14em; }
.insight-card h3 { margin: 12px 0 0; font-family: var(--serif); }

.manifesto { position: relative; min-height: 90vh; display: grid; align-items: center; overflow: hidden; color: #fff; }
.manifesto picture, .manifesto img, .manifesto::after { position: absolute; inset: 0; width: 100%; height: 100%; }
.manifesto img { object-fit: cover; object-position: center; }
.manifesto::after { content: ""; background: linear-gradient(90deg, rgba(24,35,26,.88), rgba(24,35,26,.2) 70%), linear-gradient(0deg, rgba(24,35,26,.42), transparent); }
.manifesto-content { position: relative; z-index: 2; max-width: 900px; padding: 110px 0; }
.manifesto h2 { font-size: clamp(48px, 6.4vw, 92px); line-height: 1.14; }
.manifesto p { color: rgba(255,255,255,.78); font-size: 20px; line-height: 1.9; }

.footer-cta { position: relative; isolation: isolate; overflow: hidden; background: #182e21; color: var(--ivory); text-align: center; }
.footer-cta::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(16,34,25,.78), rgba(16,34,25,.48)), linear-gradient(0deg, rgba(16,34,25,.42), rgba(16,34,25,.12)); }
.footer-cta-media { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.footer-cta .container { position: relative; z-index: 2; }
.footer-cta .chapter { color: var(--harvest-gold); }
.footer-cta h2 { max-width: 860px; margin-inline: auto; }
.footer-cta p { max-width: 680px; margin: 0 auto 30px; color: rgba(244,240,232,.68); line-height: 1.8; }
.consultation-prep { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 900px; margin: 0 auto 32px; text-align: left; }
.consultation-item { display: grid; grid-template-columns: auto 1fr; gap: 3px 12px; align-items: center; min-height: 100px; padding: 20px 22px; border: 1px solid rgba(244,240,232,.2); border-radius: 20px; background: rgba(16,34,25,.34); backdrop-filter: blur(8px); }
.consultation-item span { grid-row: 1 / 3; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.consultation-item strong { color: var(--ivory); font-family: var(--serif); font-size: 20px; }
.consultation-item small { color: rgba(244,240,232,.66); line-height: 1.5; }
.contact-details { display: grid; grid-template-columns: .7fr 1fr 1.5fr; gap: 1px; max-width: 900px; margin: 0 auto 30px; overflow: hidden; border: 1px solid rgba(244,240,232,.18); border-radius: 20px; background: rgba(244,240,232,.16); text-align: left; }
.contact-details > div { display: grid; gap: 5px; padding: 18px 22px; background: rgba(16,34,25,.58); }
.contact-details small { color: rgba(244,240,232,.58); }
.contact-details strong, .contact-details a { color: var(--ivory); font-size: 17px; line-height: 1.5; }
.contact-details a { font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; letter-spacing: .04em; }
.wechat-contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 12px; max-width: 900px; margin: 0 auto 24px; text-align: left; }
.wechat-official-card, .wechat-qr-card { min-height: 188px; border: 1px solid rgba(244,240,232,.2); border-radius: 20px; background: rgba(10,27,18,.72); backdrop-filter: blur(12px); }
.wechat-official-card { display: flex; flex-direction: column; justify-content: center; padding: 22px 24px; }
.wechat-label { width: fit-content; margin-bottom: 10px; padding: 5px 9px; border-radius: 999px; background: rgba(202,151,61,.18); color: var(--harvest-gold); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.wechat-official-card h3 { margin: 0 0 12px; color: var(--ivory); font-family: var(--serif); font-size: clamp(19px, 2vw, 25px); font-weight: 600; }
.wechat-official-card p { margin: 0 0 7px; color: rgba(244,240,232,.55); font-size: 12px; }
.wechat-id-row { display: flex; align-items: center; gap: 12px; }
.wechat-id-row strong { color: var(--ivory); font: 700 17px/1.4 ui-monospace, "SFMono-Regular", Consolas, monospace; letter-spacing: .03em; overflow-wrap: anywhere; }
.wechat-copy { flex: 0 0 auto; min-height: 38px; padding: 0 14px; border: 1px solid rgba(244,240,232,.24); border-radius: 999px; background: rgba(244,240,232,.08); color: var(--ivory); font-weight: 750; cursor: pointer; }
.wechat-copy:hover, .wechat-copy:focus-visible { border-color: var(--harvest-gold); color: var(--harvest-gold); }
.wechat-official-card small { margin-top: 10px; color: rgba(244,240,232,.58); font-size: 12px; line-height: 1.5; }
.wechat-qr-card { display: grid; grid-template-columns: 112px 1fr; gap: 18px; align-items: center; margin: 0; padding: 18px 20px; }
.wechat-qr-card img { width: 112px; height: auto; aspect-ratio: 888 / 1131; border-radius: 12px; background: #fff; object-fit: contain; }
.wechat-qr-card figcaption { display: grid; gap: 8px; }
.wechat-qr-card figcaption strong { color: var(--ivory); font-family: var(--serif); font-size: 21px; }
.wechat-qr-card figcaption span { color: rgba(244,240,232,.6); font-size: 13px; line-height: 1.7; }
.consultation-form { display: grid; gap: 18px; max-width: 900px; margin: 0 auto 28px; padding: 22px; border: 1px solid rgba(244,240,232,.2); border-radius: 24px; background: rgba(10,27,18,.72); text-align: left; backdrop-filter: blur(12px); }
.consultation-form-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; border-bottom: 1px solid rgba(244,240,232,.14); padding-bottom: 16px; }
.consultation-form-head strong { color: var(--ivory); font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; }
.consultation-form-head span { max-width: 420px; color: rgba(244,240,232,.62); font-size: 13px; line-height: 1.6; }
.consultation-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.consultation-fields label { display: grid; gap: 8px; color: rgba(244,240,232,.72); font-size: 13px; font-weight: 700; }
.consultation-fields input, .consultation-fields select, .consultation-fields textarea { width: 100%; border: 1px solid rgba(244,240,232,.22); border-radius: 16px; background: rgba(244,240,232,.92); color: var(--ink); font: 15px/1.4 var(--sans); }
.consultation-fields input, .consultation-fields select { min-height: 48px; padding: 0 14px; }
.consultation-fields textarea { min-height: 116px; padding: 14px; resize: vertical; }
.consultation-fields input::placeholder, .consultation-fields textarea::placeholder { color: rgba(31,42,36,.48); }
.consultation-field-wide { grid-column: 1 / -1; }
.consultation-fields label small { color: rgba(244,240,232,.52); font-size: 11px; font-weight: 500; }
.consultation-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.privacy-consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; color: rgba(244,240,232,.72); font-size: 12px; line-height: 1.65; }
.privacy-consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--harvest-gold); }
.privacy-consent a { color: var(--harvest-gold); text-decoration: underline; text-underline-offset: 3px; }
.consultation-form-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.consultation-form-actions .button { min-height: 48px; }
.consultation-form-note { margin: -4px 0 0; color: rgba(244,240,232,.56) !important; font-size: 12px; line-height: 1.65; }
.footer-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.consultation-template-field { width: min(100%, 680px); min-height: 190px; margin: 18px auto 0; padding: 18px; border: 1px solid rgba(244,240,232,.28); border-radius: 18px; background: rgba(10,27,18,.82); color: var(--ivory); font: 14px/1.8 var(--sans); resize: vertical; }
.consultation-template-field[hidden] { display: none; }
.footer-cta .copy-status { min-height: 24px; margin: 14px auto 0; color: rgba(244,240,232,.76); font-size: 13px; }
.mobile-action-bar { display: none; }
.site-footer { padding: 46px 0 28px; background: #102219; color: var(--ivory); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .6fr; gap: 58px; }
.footer-logo { display: inline-flex; flex: 0 0 auto; width: min(100%, 230px); aspect-ratio: 760 / 310; background: transparent; filter: brightness(1.45) saturate(1.08) drop-shadow(0 0 13px rgba(244,240,232,.18)); }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; flex: 0 0 auto; }
.footer-brand p { max-width: 460px; margin: 20px 0 0; color: rgba(244,240,232,.6); line-height: 1.8; }
.footer-col { display: grid; align-content: start; gap: 12px; }
.footer-col strong { margin-bottom: 8px; color: var(--gold); font-size: 12px; letter-spacing: .16em; }
.footer-col a { color: rgba(244,240,232,.68); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(244,240,232,.12); color: rgba(244,240,232,.46); font-size: 12px; }

.legal-page { min-height: 100vh; padding: 42px 0 80px; background: var(--ivory); }
.legal-nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 58px; }
.legal-nav img { width: 170px; height: auto; }
.legal-nav a:last-child { color: var(--brand); font-weight: 800; }
.legal-content { width: min(100%, 820px); }
.legal-content .chapter { margin-bottom: 18px; }
.legal-content h1 { margin-bottom: 24px; color: var(--forest); font-size: clamp(44px, 7vw, 76px); }
.legal-intro { padding: 24px 26px; border-left: 4px solid var(--gold); border-radius: 0 18px 18px 0; background: rgba(255,255,255,.66); color: var(--ink) !important; }
.legal-content h2 { margin: 44px 0 14px; color: var(--forest); font-family: var(--serif); font-size: 28px; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 16px; line-height: 1.9; }
.legal-content ul { padding-left: 1.25em; }
.legal-content a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }

/* Homepage editorial rhythm: fewer repeated cards, stronger scene changes. */
.home-editorial .marquee-band a[href="#harvest"],
.home-editorial .marquee-band a[href="#field-help"],
.home-editorial .section-subnav a[href="#harvest"] { display: none; }

.home-editorial .farmer-value { padding: clamp(44px, 5vw, 66px) 0; background: #f0ebdf; color: var(--ink); }
.home-editorial .farmer-value-inner { grid-template-columns: minmax(260px, .72fr) 1.28fr; gap: clamp(28px, 5vw, 72px); }
.home-editorial .farmer-value-heading > span { color: var(--brand); }
.home-editorial .farmer-value-heading h2 { color: var(--forest); font-size: clamp(34px, 3.6vw, 52px); }
.home-editorial .farmer-value-grid { gap: 0; border-top: 1px solid var(--line); }
.home-editorial .farmer-value-card { min-height: 210px; padding: 24px 22px 20px; border: 0; border-right: 1px solid var(--line); border-radius: 0; background: transparent; }
.home-editorial .farmer-value-card:last-child { border-right: 0; }
.home-editorial .farmer-value-card > span { margin-bottom: 34px; color: var(--brand); }
.home-editorial .farmer-value-card h3 { color: var(--forest); }
.home-editorial .farmer-value-card p { color: var(--muted); }
.home-editorial .farmer-value-note { color: var(--muted); }

.home-editorial .monthly-guide { position: relative; padding-top: clamp(110px, 12vw, 176px); padding-bottom: clamp(110px, 12vw, 176px); overflow: hidden; }
.home-editorial .monthly-guide::before { content: "当季"; position: absolute; right: -1vw; top: -3vw; color: rgba(35,73,50,.035); font-family: var(--serif); font-size: clamp(140px, 24vw, 360px); line-height: 1; pointer-events: none; }
.home-editorial .monthly-guide-layout { position: relative; grid-template-columns: .72fr 1.28fr; align-items: start; }
.home-editorial .monthly-guide-copy { position: sticky; top: 150px; }
.home-editorial .monthly-guide-card { padding: 0 0 0 clamp(28px, 5vw, 70px); border: 0; border-left: 1px solid var(--line); border-radius: 0; background: transparent; box-shadow: none; }
.home-editorial .monthly-guide-card li { padding: 26px 0; font-size: 17px; }

.home-editorial .seasons { background: #e9e3d6; }
.home-editorial .season-card { border-radius: 4px; box-shadow: none; }
.home-editorial .season-card:hover { box-shadow: 0 22px 55px rgba(35,73,50,.14); }

.home-editorial .philosophy { min-height: 78vh; display: flex; align-items: center; }
.home-editorial .philosophy-inner { grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); }
.home-editorial .philosophy-quote h2 { max-width: 900px; font-size: clamp(48px, 6.5vw, 92px); }
.home-editorial .principle { grid-template-columns: 58px 1fr; padding: 26px 0; }

.home-editorial #products { background: #f6f2e9; }
.home-editorial .product-card { border-radius: 6px; box-shadow: none; }
.home-editorial .product-media { background: #e8e2d7; }
.home-editorial .product-section-actions { margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--line); }

.home-editorial .service-layout { grid-template-columns: 1.14fr .86fr; gap: clamp(42px, 7vw, 100px); }
.home-editorial .service-image { height: min(760px, 78vh); border-radius: 4px; }
.home-editorial .step { padding: 30px 0; }

.home-editorial .knowledge-preview { background: #e9e3d6; }
.home-editorial .knowledge-card-grid { grid-template-columns: 1.35fr .65fr; grid-template-rows: auto auto; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.home-editorial .knowledge-card { min-height: 0; padding: clamp(26px, 4vw, 48px); border: 0; border-radius: 0; background: #f8f4eb; }
.home-editorial .knowledge-card:first-child { grid-row: 1 / 3; min-height: 510px; background: var(--forest); color: var(--ivory); }
.home-editorial .knowledge-card:first-child > span,
.home-editorial .knowledge-card:first-child strong { color: var(--gold); }
.home-editorial .knowledge-card:first-child h3 { color: var(--ivory); font-size: clamp(34px, 4vw, 56px); }
.home-editorial .knowledge-card:first-child p { color: rgba(244,240,232,.7); }
.home-editorial .knowledge-card:not(:first-child) > span { margin-bottom: 22px; }
.home-editorial .knowledge-card:not(:first-child) h3 { font-size: clamp(22px, 2vw, 28px); }

@media (min-width: 1081px) {
  .home-editorial .season-cycle { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 14px; }
  .home-editorial .season-card { min-height: 520px; }
  .home-editorial .season-card:nth-child(1) { grid-column: 1 / 8; }
  .home-editorial .season-card:nth-child(2) { grid-column: 8 / 13; }
  .home-editorial .season-card:nth-child(3) { grid-column: 1 / 6; }
  .home-editorial .season-card:nth-child(4) { grid-column: 6 / 13; }
  .home-editorial .season-card:nth-child(1) .season-media,
  .home-editorial .season-card:nth-child(4) .season-media { height: 270px; }

  .home-editorial .product-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
  .home-editorial .product-card { min-height: 430px; }
  .home-editorial .product-card:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 3; }
  .home-editorial .product-card:nth-child(2) { grid-column: 8 / 13; }
  .home-editorial .product-card:nth-child(3) { grid-column: 8 / 13; }
  .home-editorial .product-card:nth-child(4) { grid-column: 1 / 7; }
  .home-editorial .product-card:nth-child(5) { grid-column: 7 / 13; }
  .home-editorial .product-card:nth-child(1) .product-media { height: 560px; padding: 46px; }
  .home-editorial .product-card:nth-child(1) .product-copy { padding: 38px; }
  .home-editorial .product-card:nth-child(1) .product-copy h3 { font-size: 52px; }
  .home-editorial .product-card:nth-child(2),
  .home-editorial .product-card:nth-child(3),
  .home-editorial .product-card:nth-child(4),
  .home-editorial .product-card:nth-child(5) { display: grid; grid-template-columns: .78fr 1.22fr; }
  .home-editorial .product-card:nth-child(n+2) .product-media { height: auto; min-height: 230px; }
  .home-editorial .product-card:nth-child(n+2) .product-copy { padding: 24px; }
  .home-editorial .product-card:nth-child(n+2) .product-copy h3 { font-size: 29px; }
  .home-editorial .product-card:nth-child(n+2) .product-actions .button { min-height: 42px; padding: 0 16px; font-size: 12px; }
}

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .header-action { display: none; }
  .advantage-grid, .insight-grid, .season-cycle { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 40px), 1280px); }
  .site-header { padding: 12px 0; }
  .site-header.menu-open { z-index: 1000; isolation: isolate; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand-lockup { position: relative; z-index: 2; width: 158px; }
  .nav-toggle { position: relative; z-index: 2; display: block; }
  .main-nav { position: fixed; inset: 0; z-index: 1; width: 100vw; height: 100dvh; display: grid; place-content: center; justify-items: stretch; gap: 0; padding: 92px 24px 34px; overflow-y: auto; overscroll-behavior: contain; background: #102b1d; color: var(--ivory) !important; font-family: var(--sans); font-size: 14px; font-weight: 700; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .3s var(--ease); }
  .main-nav a { width: min(64vw, 230px); min-height: 42px; display: flex; align-items: center; justify-content: center; padding: 7px 14px; border-radius: 10px; text-align: center; }
  .main-nav a::after { display: none; }
  .main-nav a:hover, .main-nav a:focus-visible, .main-nav a.active { background: rgba(255,255,255,.08); }
  .site-header.menu-open .main-nav { opacity: 1; visibility: visible; transform: none; }
  .site-header.menu-open .header-inner { backdrop-filter: none; }
  .site-header.menu-open .nav-toggle { color: var(--ivory); border-color: rgba(255,255,255,.35); }
  .site-header.menu-open .nav-toggle span { opacity: 0; }
  .site-header.menu-open .nav-toggle::before { transform: translateY(5.5px) rotate(45deg); }
  .site-header.menu-open .nav-toggle::after { transform: translateY(-5.5px) rotate(-45deg); }
  body.menu-open .mobile-action-bar { display: none; }
  .hero-content { width: 100%; padding: 150px 0 64px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(16,32,23,.92), rgba(16,32,23,.18) 72%); }
  .scroll-cue { display: none; }
  .section-head, .mission-grid, .trust-layout, .philosophy-inner, .service-layout, .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .mission-image { min-height: 520px; order: -1; }
  .trust-visual, .service-image { min-height: 560px; height: 68vh; }
  .philosophy-inner { gap: 60px; }
  .product-grid { grid-template-columns: 1fr; }
  .consultation-prep { grid-template-columns: 1fr; max-width: 560px; }
  .contact-details { grid-template-columns: 1fr; max-width: 560px; }
  .wechat-contact { grid-template-columns: 1fr; max-width: 560px; }
  .consultation-form-head { display: grid; }
  .consultation-fields { grid-template-columns: 1fr; }
  .farmer-value-inner { grid-template-columns: 1fr; }
  .farmer-value-note { grid-column: 1; }
  .farmer-value-grid { grid-template-columns: 1fr; }
  .farmer-value-card { min-height: 0; }
  .farmer-value-card > span { margin-bottom: 28px; }
  .monthly-guide-layout { grid-template-columns: 1fr; }
  .finder-layout { grid-template-columns: 1fr; }
  .knowledge-card-grid { grid-template-columns: 1fr; }
  .knowledge-card { min-height: 0; }
  .knowledge-preview-action { align-items: flex-start; flex-direction: column; }
  .knowledge-standard-layout { grid-template-columns: 1fr; }
  .cases { min-height: 74vh; }
  .home-editorial .farmer-value-inner,
  .home-editorial .monthly-guide-layout,
  .home-editorial .philosophy-inner,
  .home-editorial .service-layout { grid-template-columns: 1fr; }
  .home-editorial .monthly-guide-copy { position: static; }
  .home-editorial .monthly-guide-card { padding: 34px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .home-editorial .knowledge-card-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .home-editorial .knowledge-card:first-child { grid-row: auto; min-height: 390px; }
}

@media (max-width: 560px) {
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .container { width: min(calc(100% - 32px), 1280px); }
  .section { padding: 82px 0; }
  h1 { max-width: 100%; font-size: clamp(44px, 12vw, 52px); line-height: 1.04; overflow-wrap: anywhere; }
  #hero-title span { display: block; }
  h2 { font-size: clamp(34px, 10.5vw, 44px); }
  .hero { min-height: 100svh; }
  .hero-media { object-position: 67% center; }
  .hero-content { padding-bottom: 140px; }
  .hero-subtitle { font-size: 21px; }
  .hero-actions { display: grid; }
  .button { width: 100%; min-height: 50px; }
  .consultation-form { padding: 18px; }
  .consultation-form-actions { display: grid; }
  .field-faq-item summary { min-height: 78px; gap: 16px; }
  .field-faq-item summary i { width: 34px; height: 34px; }
  .monthly-guide-card { padding: 24px 20px; border-radius: var(--radius); }
  .monthly-guide-card li { grid-template-columns: 32px 1fr; font-size: 15px; }
  .monthly-guide-actions { display: grid; }
  .finder-form { grid-template-columns: 1fr; padding: 22px 18px; }
  .finder-wide { grid-column: auto; }
  .finder-form .button { width: 100%; }
  .finder-result { padding: 26px 20px; }
  .knowledge-hero { min-height: 760px; }
  .knowledge-hero-overlay { background: linear-gradient(0deg, rgba(10,28,17,.94) 0%, rgba(10,28,17,.52) 68%, rgba(10,28,17,.2) 100%); }
  .knowledge-hero-content { padding-top: 150px; padding-bottom: 82px; }
  .knowledge-entry { padding: 28px 20px; border-radius: var(--radius); }
  .knowledge-entry-meta { align-items: flex-start; flex-direction: column; margin-bottom: 28px; }
  .knowledge-entry-lead { font-size: 16px; }
  .knowledge-entry li { padding: 18px 16px 18px 54px; }
  .knowledge-entry li::before { left: 16px; top: 21px; }
  .knowledge-standard-list p { grid-template-columns: 1fr; gap: 7px; }
  .mission-image { min-height: 430px; border-radius: var(--radius); }
  .trust-visual { min-height: 460px; }
  .trust-item { padding: 28px 20px; }
  .advantage-grid, .insight-grid, .season-cycle { grid-template-columns: 1fr; }
  .season-card { min-height: 520px; }
  .advantage { min-height: 250px; }
  .product-card { min-height: auto; }
  .product-media { height: 230px; padding: 18px; }
  .product-copy { min-height: 290px; padding: 24px 20px; }
  .service-image { height: 56vh; min-height: 430px; border-radius: var(--radius); }
  .insight-card { min-height: 360px; }
  .manifesto { min-height: 88vh; }
  .footer-grid { gap: 36px; }
  .footer-bottom { display: grid; }
  .legal-page { padding-top: 24px; }
  .legal-nav { margin-bottom: 40px; }
  .consultation-item { min-height: 88px; padding: 16px 18px; }
  .wechat-contact { gap: 10px; margin-bottom: 20px; }
  .wechat-official-card, .wechat-qr-card { min-height: 0; border-radius: 16px; }
  .wechat-official-card { padding: 16px; }
  .wechat-label { margin-bottom: 8px; }
  .wechat-official-card h3 { margin-bottom: 10px; font-size: 18px; }
  .wechat-id-row { align-items: center; justify-content: space-between; gap: 10px; }
  .wechat-id-row strong { font-size: 15px; }
  .wechat-official-card small { margin-top: 8px; font-size: 11px; }
  .wechat-qr-card { order: -1; grid-template-columns: 98px 1fr; justify-items: start; gap: 14px; padding: 14px 16px; text-align: left; }
  .wechat-qr-card img { width: 98px; border-radius: 10px; }
  .wechat-qr-card figcaption { gap: 4px; }
  .wechat-qr-card figcaption strong { font-size: 18px; }
  .wechat-qr-card figcaption span { max-width: 190px; font-size: 12px; line-height: 1.45; }
  .mobile-action-bar { position: fixed; z-index: 95; right: 12px; bottom: calc(10px + env(safe-area-inset-bottom)); left: 12px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 8px; padding: 8px; border: 1px solid rgba(244,240,232,.18); border-radius: 999px; background: rgba(16,34,25,.92); box-shadow: 0 14px 38px rgba(10,23,16,.28); backdrop-filter: blur(14px); }
  .mobile-action-bar a { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; color: var(--ivory); font-size: 14px; font-weight: 750; }
  .mobile-action-bar .mobile-action-primary { background: var(--harvest-gold); color: #18261f; }
  .home-editorial .farmer-value-grid { grid-template-columns: 1fr; border-top: 0; }
  .home-editorial .farmer-value-card { min-height: 0; border-top: 1px solid var(--line); border-right: 0; }
  .home-editorial .farmer-value-card > span { margin-bottom: 18px; }
  .home-editorial .monthly-guide { padding-top: 88px; padding-bottom: 88px; }
  .home-editorial .monthly-guide-card { padding-top: 26px; }
  .home-editorial .philosophy { min-height: auto; }
  .home-editorial .philosophy-quote h2 { font-size: clamp(40px, 12vw, 56px); }
  .home-editorial .knowledge-card:first-child { min-height: 340px; }
  .home-editorial .season-cycle,
  .home-editorial .product-grid,
  .home-editorial .knowledge-card-grid {
    width: calc(100vw - 16px);
    margin-right: calc(50% - 50vw);
    padding-right: 16px;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 330px);
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }
  .home-editorial .season-cycle::-webkit-scrollbar,
  .home-editorial .product-grid::-webkit-scrollbar,
  .home-editorial .knowledge-card-grid::-webkit-scrollbar { display: none; }
  .home-editorial .season-card,
  .home-editorial .product-card,
  .home-editorial .knowledge-card { scroll-snap-align: start; }
  .home-editorial .season-card { min-height: 500px; }
  .home-editorial .product-card { height: 590px; }
  .home-editorial .product-copy { min-height: 0; }
  .home-editorial .knowledge-card,
  .home-editorial .knowledge-card:first-child { min-height: 360px; }
}

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