:root {
  --forest: #173b2d;
  --forest-2: #22533e;
  --ink: #1c2922;
  --muted: #6d766e;
  --line: #dfe5dc;
  --paper: #f7f8f3;
  --white: #ffffff;
  --accent: #f4c542;
  --accent-soft: #fff3bf;
  --coral: #e87558;
  --sage: #dfead9;
  --shadow: 0 18px 50px rgba(20, 48, 35, .12);
  --container: min(1440px, calc(100% - 80px));
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif; font-size: 16px; line-height: 1.7; letter-spacing: 0; overflow-x: hidden; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; cursor: pointer; }
img { display: block; width: 100%; max-width: 100%; }
.container { width: var(--container); margin: 0 auto; }

.announcement { min-height: 36px; color: #eff7ec; background: var(--forest); font-size: 12px; letter-spacing: .08em; }
.announcement__inner { min-height: 36px; display: flex; align-items: center; gap: 10px; }
.announcement__mark { color: var(--accent); font-size: 14px; }
.announcement__divider { width: 1px; height: 12px; background: rgba(255,255,255,.28); }
.announcement a { margin-left: auto; color: var(--accent); }
.announcement a span { display: inline-block; margin-left: 5px; font-size: 14px; }

.site-header { position: absolute; z-index: 10; top: 36px; right: 0; left: 0; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.22); transition: background .25s ease, box-shadow .25s ease, color .25s ease; }
.site-header.is-scrolled { position: fixed; top: 0; color: var(--ink); background: rgba(247,248,243,.96); border-bottom-color: var(--line); box-shadow: 0 5px 20px rgba(20,48,35,.06); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: inherit; }
.brand__symbol { display: grid; place-items: center; width: 38px; height: 38px; color: transparent; background-color: var(--accent); background-image: url("/static/images/fjtmy/logo.webp"); background-position: center; background-repeat: no-repeat; background-size: 82%; font-family: Georgia, serif; font-size: 14px; font-weight: 700; letter-spacing: -.08em; border-radius: 50%; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-family: Georgia, "Songti SC", serif; font-size: 18px; font-weight: 700; letter-spacing: .08em; }
.brand__text small { margin-top: 4px; font-size: 8px; letter-spacing: .18em; opacity: .7; }
.main-nav { display: flex; align-items: center; gap: clamp(20px, 2.8vw, 40px); font-size: 13px; letter-spacing: .08em; }
.main-nav > a { position: relative; padding: 30px 0; white-space: nowrap; }
.main-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; content: ""; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px !important; color: var(--forest); background: var(--accent); border-radius: 3px; font-weight: 700; letter-spacing: .04em; }
.nav-cta span { font-size: 16px; }
.menu-toggle { display: none; border: 0; background: transparent; }

.hero { position: relative; min-height: 750px; color: var(--white); background: url("/static/images/fjtmy/hero.webp") center 45% / cover no-repeat; }
.hero__shade { position: absolute; inset: 0; background: rgba(12, 38, 27, .58); }
.hero__inner { position: relative; z-index: 1; min-height: 750px; display: flex; flex-direction: column; justify-content: center; padding-top: 70px; }
.hero__copy { max-width: 700px; }
.eyebrow { margin: 0 0 18px; color: var(--forest-2); font-size: 11px; font-weight: 800; letter-spacing: .2em; line-height: 1.2; }
.eyebrow--light { color: var(--accent); }
.eyebrow span { color: var(--coral); }
.eyebrow--light span { color: var(--accent); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Songti SC", serif; font-weight: 700; letter-spacing: -.02em; line-height: 1.12; }
h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(48px, 6vw, 86px); }
h1 em { color: var(--accent); font-style: normal; }
.hero__lead { max-width: 535px; margin-bottom: 34px; color: rgba(255,255,255,.83); font-size: 15px; line-height: 1.9; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 12px; padding: 12px 19px; border: 1px solid transparent; border-radius: 3px; font-size: 13px; font-weight: 700; letter-spacing: .08em; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 18px; line-height: 1; }
.button--accent { color: var(--forest); background: var(--accent); }
.button--accent:hover { background: #ffd85e; }
.button--ghost-light { color: var(--white); border-color: rgba(255,255,255,.55); background: transparent; }
.button--ghost-light:hover { background: rgba(255,255,255,.12); }
.button--dark { color: var(--white); background: var(--forest); }
.button--dark:hover { background: var(--forest-2); }
.hero__bottom { position: absolute; right: 0; bottom: 30px; left: 0; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.74); font-size: 11px; letter-spacing: .12em; }
.hero__location { display: flex; align-items: center; gap: 9px; }
.location-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; }
.hero__scroll { display: flex; align-items: center; gap: 8px; }
.hero__scroll span { color: var(--accent); font-size: 18px; }

.stats-band { color: var(--white); background: var(--coral); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { display: flex; min-height: 122px; align-items: center; gap: 17px; padding: 23px 28px; border-right: 1px solid rgba(255,255,255,.28); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }
.stat strong { font-family: Georgia, serif; font-size: 43px; line-height: 1; }
.stat strong span { color: var(--accent); font-size: 22px; }
.stat > span { max-width: 75px; color: rgba(255,255,255,.84); font-size: 12px; line-height: 1.45; }

.section { padding: 125px 0; }
.about-section { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(380px, .97fr); align-items: center; gap: clamp(50px, 8vw, 120px); }
.about-media { position: relative; padding-right: 30px; }
.about-media::after { position: absolute; z-index: 0; right: 0; bottom: 20px; width: 38%; height: 58%; content: ""; background: var(--accent); }
.about-media img { position: relative; z-index: 1; height: 565px; object-fit: cover; }
.media-caption { position: absolute; z-index: 2; right: 0; bottom: 0; left: 30px; display: flex; align-items: center; justify-content: space-between; padding: 14px 17px; color: var(--white); background: var(--forest); font-size: 11px; letter-spacing: .08em; }
.media-caption span:first-child { color: var(--accent); font-family: Georgia, serif; font-size: 20px; }
.about-copy h2, .section-heading h2, .advantage-heading h2, .contact-copy h2 { margin-bottom: 28px; font-size: clamp(38px, 4.3vw, 62px); }
h2 span { color: var(--coral); }
.about-copy .body-copy { max-width: 490px; margin-bottom: 17px; color: var(--muted); font-size: 14px; line-height: 2; }
.about-signature { display: flex; align-items: center; gap: 14px; margin-top: 33px; color: var(--forest-2); font-family: Georgia, serif; font-size: 14px; }
.signature-line { width: 46px; height: 1px; background: var(--coral); }

.origin-section { padding: 116px 0; color: var(--white); background: var(--forest); }
.origin-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 10vw, 145px); }
.origin-intro h2 { margin-bottom: 25px; color: var(--white); font-size: clamp(38px, 4.3vw, 61px); }
.origin-intro h2 span { color: var(--accent); }
.origin-intro > p:not(.eyebrow) { max-width: 370px; margin-bottom: 28px; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.9; }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 5px; border-bottom: 1px solid currentColor; color: var(--forest-2); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.text-link span { font-size: 17px; }
.text-link--light { color: var(--accent); }
.origin-facts { display: grid; gap: 0; }
.origin-fact { display: grid; grid-template-columns: 62px 1fr; gap: 23px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.origin-fact:first-child { padding-top: 10px; }
.origin-fact:last-child { border-bottom: 0; }
.fact-icon { color: var(--accent); font-size: 34px; line-height: 1; }
.origin-fact h3 { margin-bottom: 7px; color: var(--white); font-family: Georgia, "Songti SC", serif; font-size: 24px; }
.origin-fact p { max-width: 430px; margin-bottom: 0; color: rgba(255,255,255,.64); font-size: 13px; line-height: 1.8; }
.origin-fact--accent { margin-top: 8px; padding: 23px 22px; background: var(--forest-2); border: 0; border-left: 3px solid var(--accent); }

.quality-section { background: #eef2e9; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 54px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 300px; margin-bottom: 2px; color: var(--muted); font-size: 13px; line-height: 1.9; }
.quality-layout { display: grid; grid-template-columns: minmax(390px, .75fr) 1.25fr; min-height: 395px; background: var(--white); box-shadow: var(--shadow); }
.quality-nav { padding: 20px 0; border-right: 1px solid var(--line); }
.quality-tab { display: grid; grid-template-columns: 48px 1fr 30px; width: 100%; align-items: center; padding: 19px 29px; color: var(--muted); text-align: left; border: 0; border-left: 3px solid transparent; background: transparent; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.quality-tab span { font-family: Georgia, serif; font-size: 15px; }
.quality-tab strong { font-family: Georgia, "Songti SC", serif; font-size: 22px; font-weight: 700; }
.quality-tab i { color: var(--coral); font-size: 19px; font-style: normal; text-align: right; opacity: 0; transition: opacity .2s ease; }
.quality-tab:hover, .quality-tab.is-active { color: var(--forest); background: #f7f9f4; border-left-color: var(--accent); }
.quality-tab.is-active i { opacity: 1; }
.quality-detail { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 57px clamp(35px, 6vw, 85px); overflow: hidden; }
.quality-detail::after { position: absolute; right: -22px; bottom: -40px; width: 180px; height: 180px; content: ""; border: 1px solid rgba(232,117,88,.23); border-radius: 50%; }
.quality-detail__number { position: absolute; top: 23px; right: 35px; color: var(--forest); font-family: Georgia, serif; font-size: 62px; line-height: 1; opacity: .09; }
.quality-detail__number span { color: var(--coral); font-size: 17px; }
.quality-detail h3 { margin-bottom: 14px; font-family: Georgia, "Songti SC", serif; font-size: 37px; }
.quality-detail > p:not(.eyebrow) { max-width: 560px; margin-bottom: 23px; color: var(--muted); font-size: 14px; line-height: 1.95; }
.quality-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.quality-tags span { padding: 4px 10px; color: var(--forest-2); background: var(--sage); font-size: 11px; }
.quality-progress { width: 100%; max-width: 560px; height: 2px; margin-top: 36px; background: var(--line); }
.quality-progress span { display: block; width: 20%; height: 100%; background: var(--coral); transition: width .3s ease; }

.products-section { background: var(--paper); }
.section-heading--products { margin-bottom: 28px; }
.product-intro { display: flex; flex-direction: column; align-items: flex-start; gap: 17px; }
.product-intro p { max-width: 330px; margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.9; }
.product-filters { display: flex; gap: 8px; margin-bottom: 27px; }
.filter-button { padding: 9px 16px; color: var(--muted); border: 1px solid var(--line); border-radius: 2px; background: transparent; font-size: 12px; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.filter-button:hover, .filter-button.is-active { color: var(--forest); border-color: var(--forest); background: var(--accent-soft); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { display: flex; min-width: 0; flex-direction: column; background: var(--white); border: 1px solid #e6ebe3; transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card.is-hidden { display: none; }
.product-card__image { position: relative; height: 238px; overflow: hidden; background: var(--sage); }
.product-card__image img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card__image img { transform: scale(1.04); }
.product-card__image::after { position: absolute; inset: 0; content: ""; background: rgba(23,59,45,.05); pointer-events: none; }
.product-badge { position: absolute; z-index: 1; top: 13px; left: 13px; padding: 4px 8px; color: var(--forest); background: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.product-badge--dark { color: var(--white); background: var(--forest); }
.product-card__body { display: flex; flex: 1; flex-direction: column; padding: 24px 22px 18px; }
.product-card__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; color: var(--coral); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.product-card__meta span:last-child { color: #aeb8ae; font-family: Georgia, serif; font-size: 16px; letter-spacing: 0; }
.product-card h3 { min-height: 61px; margin-bottom: 12px; font-family: Georgia, "Songti SC", serif; font-size: 25px; line-height: 1.17; }
.product-card p { min-height: 57px; margin-bottom: 20px; color: var(--muted); font-size: 12px; line-height: 1.75; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 13px; color: var(--forest-2); border-top: 1px solid var(--line); font-size: 10px; }
.product-card__footer a { display: grid; width: 29px; height: 29px; place-items: center; color: var(--forest); border: 1px solid var(--forest); border-radius: 50%; transition: color .2s ease, background .2s ease; }
.product-card__footer a:hover { color: var(--white); background: var(--forest); }
.product-card__footer a span { font-size: 15px; }
.products-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 32px; color: var(--muted); font-size: 12px; }

.cooperation-section { background: #fffdf7; }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.audience-item { position: relative; min-height: 285px; padding: 27px 24px 25px; border-right: 1px solid var(--line); }
.audience-item:first-child { border-left: 1px solid var(--line); }
.audience-item:last-child { border-right: 1px solid var(--line); }
.audience-item--highlight { color: var(--white); background: var(--coral); }
.audience-index { color: var(--coral); font-family: Georgia, serif; font-size: 16px; }
.audience-item--highlight .audience-index { color: var(--accent); }
.audience-symbol { position: absolute; top: 20px; right: 22px; color: var(--accent); font-size: 33px; line-height: 1; }
.audience-item h3 { margin: 46px 0 10px; font-family: Georgia, "Songti SC", serif; font-size: 25px; }
.audience-item p { min-height: 70px; margin-bottom: 20px; color: var(--muted); font-size: 12px; line-height: 1.8; }
.audience-item--highlight p { color: rgba(255,255,255,.78); }
.audience-item a { display: inline-flex; align-items: center; gap: 8px; color: var(--forest-2); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.audience-item--highlight a { color: var(--accent); }
.audience-item a span { font-size: 16px; }

.advantage-band { padding: 117px 0; color: var(--white); background: var(--forest-2); }
.advantage-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 140px); }
.advantage-heading h2 { color: var(--white); }
.advantage-heading h2 span { color: var(--accent); }
.advantage-list { border-top: 1px solid rgba(255,255,255,.25); }
.advantage-row { display: grid; grid-template-columns: 42px 1fr 1.2fr 25px; align-items: center; gap: 16px; min-height: 76px; border-bottom: 1px solid rgba(255,255,255,.25); }
.advantage-row > span { color: var(--accent); font-family: Georgia, serif; font-size: 14px; }
.advantage-row strong { font-family: Georgia, "Songti SC", serif; font-size: 20px; }
.advantage-row p { margin: 0; color: rgba(255,255,255,.64); font-size: 12px; }
.advantage-row i { color: var(--accent); font-size: 19px; font-style: normal; text-align: right; }

.news-section { background: var(--paper); }
.section-heading--news { margin-bottom: 44px; }
.news-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 17px; }
.news-card { min-width: 0; background: var(--white); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-card__image { position: relative; height: 185px; overflow: hidden; background: var(--sage); }
.news-card--large .news-card__image { height: 245px; }
.news-card__image img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover img { transform: scale(1.04); }
.news-card__image span { position: absolute; top: 13px; right: 13px; color: var(--accent); font-family: Georgia, serif; font-size: 17px; }
.news-card__body { padding: 20px 22px 24px; }
.news-card__body > div { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; color: var(--coral); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.news-card time { color: #9ca79d; font-family: Georgia, serif; font-size: 11px; font-weight: 400; letter-spacing: 0; }
.news-card h3 { min-height: 52px; margin-bottom: 21px; font-family: Georgia, "Songti SC", serif; font-size: 20px; line-height: 1.4; }
.news-more { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; color: var(--forest-2); border-top: 1px solid var(--line); font-size: 11px; font-weight: 800; letter-spacing: .07em; }
.news-more b { color: var(--coral); font-size: 18px; font-weight: 400; }

.contact-section { padding: 105px 0; color: var(--white); background: var(--forest); }
.contact-grid { display: grid; grid-template-columns: 1.2fr .75fr .36fr; align-items: center; gap: 65px; }
.contact-copy h2 { color: var(--white); margin-bottom: 21px; }
.contact-copy h2 span { color: var(--accent); }
.contact-copy > p:not(.eyebrow) { max-width: 425px; margin-bottom: 28px; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.9; }
.contact-info { display: grid; gap: 25px; }
.contact-block { padding-bottom: 19px; border-bottom: 1px solid rgba(255,255,255,.2); }
.contact-label { display: block; margin-bottom: 8px; color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.contact-block strong, .contact-block > a { color: var(--white); font-family: Georgia, "Songti SC", serif; font-size: 20px; line-height: 1.5; }
.contact-block > a { display: inline-flex; align-items: center; gap: 8px; }
.contact-block > a span { color: var(--accent); font-family: sans-serif; font-size: 15px; }
.copy-button { display: flex; align-items: center; gap: 6px; margin-top: 9px; padding: 0; color: var(--accent); border: 0; background: transparent; font-size: 11px; }
.copy-button span { font-size: 14px; }
.copy-button:hover { color: var(--white); }
.copy-status { display: block; min-height: 19px; color: var(--accent); font-size: 11px; }
.contact-qr { justify-self: end; text-align: center; }
.contact-qr img { width: 132px; height: 132px; padding: 8px; object-fit: contain; background: var(--white); }
.contact-qr span { display: block; margin-top: 10px; color: rgba(255,255,255,.6); font-size: 10px; line-height: 1.6; }

.site-footer { color: rgba(255,255,255,.63); background: #102c22; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; min-height: 105px; gap: 20px; font-size: 11px; }
.brand--footer { color: var(--white); }
.brand--footer .brand__symbol { width: 32px; height: 32px; font-size: 12px; }
.brand--footer .brand__text strong { font-size: 15px; }
.footer-inner > p { margin: 0; text-align: center; }
.footer-meta { text-align: right; font-size: 10px; }
.footer-compliance { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 24px; padding-bottom: 24px; color: rgba(255,255,255,.63); font-size: 16px; }
.footer-compliance a { border-bottom: 1px solid rgba(255,255,255,.28); transition: color .2s ease, border-color .2s ease; }
.footer-compliance a:hover { color: var(--accent); border-color: var(--accent); }

.back-top { position: fixed; z-index: 8; right: 24px; bottom: 24px; display: grid; width: 43px; height: 43px; place-items: center; color: var(--forest); border: 0; border-radius: 50%; background: var(--accent); font-size: 21px; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .2s ease, transform .2s ease; }
.back-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top:hover { background: #ffd85e; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1199px) {
  :root { --container: min(100% - 40px, 760px); }
  .main-nav { gap: 17px; font-size: 12px; }
  .main-nav > a { padding: 30px 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card__image { height: 265px; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-item:nth-child(2) { border-right: 0; }
  .audience-item:nth-child(3), .audience-item:nth-child(4) { border-top: 1px solid var(--line); }
  .audience-item:nth-child(3) { border-left: 1px solid var(--line); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-card--large { grid-column: span 2; }
  .news-card--large .news-card__image { height: 260px; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .contact-qr { justify-self: start; }
}

@media (max-width: 820px) {
  :root { --container: calc(100% - 36px); }
  .announcement { font-size: 10px; letter-spacing: .04em; }
  .announcement__inner { gap: 7px; }
  .announcement__inner > span:nth-of-type(3), .announcement__divider { display: none; }
  .announcement a { font-size: 10px; }
  .site-header { top: 36px; }
  .site-header.is-scrolled { top: 0; }
  .nav-wrap { min-height: 70px; }
  .brand__text strong { font-size: 16px; }
  .brand__text small { font-size: 7px; }
  .menu-toggle { display: block; width: 39px; height: 39px; padding: 0; color: inherit; font-size: 22px; line-height: 1; }
  .main-nav { position: fixed; top: 106px; right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 16px 18px 30px; color: var(--ink); background: var(--paper); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease; }
  .site-header.is-scrolled .main-nav { top: 70px; }
  .site-header.nav-open .main-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav > a { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 18px; justify-content: center; }
  .hero { min-height: 680px; background-position: 61% center; }
  .hero__inner { min-height: 680px; padding-top: 55px; }
  h1 { font-size: clamp(43px, 12vw, 64px); }
  .hero__lead { max-width: 100%; font-size: 13px; }
  .hero__bottom { bottom: 24px; }
  .hero__scroll { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat, .stat:first-child { min-height: 104px; padding: 17px 14px; }
  .stat:nth-child(odd) { padding-left: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.28); }
  .stat:nth-child(2) { border-right: 0; }
  .stat strong { font-size: 34px; }
  .stat > span { font-size: 11px; }
  .section { padding: 80px 0; }
  .about-grid, .origin-grid, .advantage-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-media { padding-right: 14px; }
  .about-media img { height: 400px; }
  .media-caption { left: 18px; }
  .about-copy h2, .section-heading h2, .advantage-heading h2, .contact-copy h2 { font-size: 42px; }
  .origin-section, .advantage-band { padding: 80px 0; }
  .origin-fact:first-child { padding-top: 0; }
  .section-heading { display: block; margin-bottom: 34px; }
  .section-heading > p { max-width: 100%; margin-top: 23px; }
  .quality-layout { display: block; min-height: 0; }
  .quality-nav { padding: 7px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .quality-tab { grid-template-columns: 42px 1fr 25px; padding: 14px 18px; }
  .quality-tab strong { font-size: 19px; }
  .quality-detail { min-height: 350px; padding: 48px 26px 46px; }
  .quality-detail__number { top: 19px; right: 23px; font-size: 46px; }
  .quality-detail h3 { font-size: 31px; }
  .section-heading--products { margin-bottom: 24px; }
  .product-intro { gap: 14px; margin-top: 23px; }
  .product-grid { gap: 12px; }
  .product-card__image { height: 180px; }
  .product-card__body { padding: 18px 15px 14px; }
  .product-card__meta { margin-bottom: 13px; font-size: 8px; }
  .product-card h3 { min-height: 50px; font-size: 21px; }
  .product-card p { min-height: 65px; font-size: 11px; }
  .product-card__footer { align-items: flex-end; font-size: 9px; }
  .product-card__footer a { flex: 0 0 auto; width: 26px; height: 26px; }
  .products-bottom { display: block; }
  .products-bottom .button { margin-top: 16px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-item, .audience-item:first-child, .audience-item:nth-child(3) { min-height: 220px; border: 0; border-bottom: 1px solid var(--line); }
  .audience-item:last-child { border-bottom: 0; }
  .audience-item h3 { margin-top: 38px; }
  .audience-item p { min-height: auto; max-width: 340px; }
  .advantage-row { grid-template-columns: 31px 1fr 24px; gap: 11px; min-height: 86px; }
  .advantage-row p { grid-column: 2; grid-row: 2; margin-top: -18px; }
  .advantage-row i { grid-column: 3; grid-row: 1 / span 2; }
  .news-grid { grid-template-columns: 1fr; gap: 14px; }
  .news-card--large { grid-column: auto; }
  .news-card__image, .news-card--large .news-card__image { height: 210px; }
  .contact-section { padding: 78px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .contact-info { gap: 20px; }
  .contact-qr { justify-self: start; }
  .footer-inner { grid-template-columns: 1fr; justify-items: start; gap: 16px; padding: 28px 0; }
  .footer-inner > p, .footer-meta { text-align: left; }
  .back-top { right: 17px; bottom: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Keep every visible text label readable at the requested minimum size. */
.announcement,
.announcement__mark,
.announcement a,
.announcement a span,
.brand__symbol,
.brand__text small,
.main-nav,
.eyebrow,
.hero__lead,
.hero__bottom,
.stat > span,
.media-caption,
.about-copy .body-copy,
.about-signature,
.origin-intro > p:not(.eyebrow),
.text-link,
.origin-fact p,
.section-heading > p,
.quality-tab span,
.quality-detail > p:not(.eyebrow),
.quality-tags span,
.product-intro p,
.filter-button,
.product-badge,
.product-card__meta,
.product-card p,
.product-card__footer,
.product-card__footer a span,
.products-bottom,
.audience-item p,
.audience-item a,
.advantage-row > span,
.advantage-row p,
.news-card__body > div,
.news-card time,
.news-more,
.contact-copy > p:not(.eyebrow),
.contact-label,
.contact-block > a span,
.copy-button,
.copy-button span,
.copy-status,
.contact-qr span,
.footer-inner,
.footer-meta,
.brand--footer .brand__symbol,
.brand--footer .brand__text strong,
.button {
  font-size: 16px;
}

@media (max-width: 820px) {
  .announcement__inner > span:nth-of-type(4) { display: none; }
}

/* Scale the composition without stretching reading widths on large displays. */
@media (min-width: 1600px) {
  :root { --container: min(1440px, calc(100% - 112px)); }
  .hero, .hero__inner { min-height: 800px; }
  .section { padding: 150px 0; }
  .origin-section, .advantage-band { padding: 140px 0; }
  .about-media img { height: 640px; }
  .product-card__image { height: 300px; }
  .news-card__image { height: 225px; }
  .news-card--large .news-card__image { height: 290px; }
  .quality-layout { min-height: 455px; }
  .contact-grid { gap: 80px; }
}

@media (max-width: 1199px) {
  :root { --container: min(1180px, calc(100% - 48px)); }
  .main-nav { gap: clamp(12px, 1.5vw, 18px); }
  .about-grid { gap: 60px; }
  .origin-grid { gap: 70px; }
  .quality-layout { grid-template-columns: minmax(340px, .85fr) 1.15fr; }
  .product-card__image { height: clamp(238px, 26vw, 280px); }
}

/* Keep the full navigation usable on tablets before switching to the drawer. */
@media (max-width: 960px) {
  .nav-wrap { min-height: 80px; }
  .menu-toggle { display: block; width: 44px; height: 44px; padding: 0; color: inherit; border: 0; background: transparent; font-size: 24px; line-height: 1; }
  .main-nav { position: fixed; top: 116px; right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 20px max(24px, calc((100vw - 860px) / 2)) 36px; color: var(--ink); background: var(--paper); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease; }
  .site-header.is-scrolled .main-nav { top: 80px; }
  .site-header.nav-open .main-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav > a { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 18px; justify-content: center; }
}

@media (max-width: 820px) {
  .nav-wrap { min-height: 70px; }
  .main-nav { top: 106px; padding: 16px 18px 30px; }
  .site-header.is-scrolled .main-nav { top: 70px; }
  .product-card__image { height: 180px; }
  .footer-compliance { align-items: flex-start; flex-direction: column; gap: 8px; padding-bottom: 28px; }
}

/* Shared inner-page templates. */
[hidden] { display: none !important; }
.inner-page .site-header { color: var(--ink); border-bottom-color: var(--line); }
.inner-page .main-nav > a.is-current { color: var(--forest-2); }
.inner-page--dark .site-header { color: var(--white); border-bottom-color: rgba(255,255,255,.22); }
.inner-page--dark .main-nav > a.is-current { color: var(--accent); }
.inner-page--dark .site-header.is-scrolled { color: var(--ink); border-bottom-color: var(--line); }
.inner-page--dark .site-header.is-scrolled .main-nav > a.is-current { color: var(--forest-2); }
.template-hero { padding: 185px 0 100px; background: #eef2e9; }
.template-hero--dark { color: var(--white); background: var(--forest); }
.template-hero__grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr); align-items: end; gap: clamp(55px, 8vw, 120px); }
.template-hero__copy { max-width: 620px; }
.template-hero__copy h1 { margin: 17px 0 25px; color: var(--forest); font-size: clamp(52px, 5vw, 84px); }
.template-hero--dark .template-hero__copy h1 { color: var(--white); }
.template-hero__copy h1 span { color: var(--coral); }
.template-hero--dark .template-hero__copy h1 span { color: var(--accent); }
.template-hero__copy > p:not(.eyebrow) { max-width: 540px; margin-bottom: 0; color: var(--muted); font-size: 18px; line-height: 1.9; }
.template-hero--dark .template-hero__copy > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.page-breadcrumb { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 16px; }
.page-breadcrumb a { color: var(--forest-2); }
.template-hero--dark .page-breadcrumb, .template-hero--dark .page-breadcrumb a { color: rgba(255,255,255,.66); }
.page-breadcrumb span { color: var(--coral); }
.template-hero__media { position: relative; height: 420px; }
.template-hero__media::after { position: absolute; z-index: 0; right: -18px; bottom: -18px; width: 42%; height: 44%; content: ""; background: var(--accent); }
.template-hero__media img { position: relative; z-index: 1; height: 100%; object-fit: cover; }
.template-hero__note { position: absolute; z-index: 2; right: 0; bottom: 0; display: flex; align-items: center; gap: 12px; padding: 14px 18px; color: var(--white); background: var(--forest); font-size: 16px; }
.template-hero__note strong { color: var(--accent); font-family: Georgia, serif; font-size: 24px; }
.template-hero--dark .template-hero__media::after { background: var(--coral); }
.template-hero--dark .template-hero__note { color: var(--forest); background: var(--accent); }
.template-hero--dark .template-hero__note strong { color: var(--forest); }
.page-section { padding: 120px 0; }
.page-section--tint { background: #eef2e9; }
.page-section--cream { background: #fffdf7; }
.page-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 48px; }
.page-heading h2 { margin-bottom: 0; font-size: clamp(40px, 4.4vw, 62px); }
.page-heading > p { max-width: 365px; margin-bottom: 3px; color: var(--muted); font-size: 18px; line-height: 1.8; }
.page-heading--stack { display: block; }
.page-heading--stack > p { max-width: 680px; margin-top: 23px; }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 25px; padding-bottom: 18px; border-bottom: 1px solid var(--ink); }
.catalog-toolbar > span { color: var(--muted); font-size: 16px; }
.catalog-toolbar .text-link { font-size: 16px; }
.catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.catalog-card { display: flex; min-width: 0; flex-direction: column; background: var(--white); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.catalog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.catalog-card__image { position: relative; height: 280px; overflow: hidden; background: var(--sage); }
.catalog-card__image img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.catalog-card:hover .catalog-card__image img { transform: scale(1.04); }
.catalog-card__image span { position: absolute; top: 14px; left: 14px; padding: 5px 9px; color: var(--forest); background: var(--accent); font-size: 16px; font-weight: 800; }
.catalog-card__body { display: flex; flex: 1; flex-direction: column; padding: 24px 22px 20px; }
.catalog-card__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; color: var(--coral); font-size: 16px; font-weight: 800; letter-spacing: .1em; }
.catalog-card__meta span:last-child { color: #aeb8ae; font-family: Georgia, serif; letter-spacing: 0; }
.catalog-card h3 { min-height: 64px; margin-bottom: 10px; font-family: Georgia, "Songti SC", serif; font-size: 29px; line-height: 1.18; }
.catalog-card p { min-height: 86px; margin-bottom: 18px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.catalog-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 14px; color: var(--forest-2); border-top: 1px solid var(--line); font-size: 16px; }
.catalog-card__footer a { display: inline-flex; align-items: center; gap: 7px; color: var(--coral); font-weight: 800; }
.catalog-card__footer a span { font-size: 20px; }
.catalog-end { display: flex; align-items: center; justify-content: space-between; margin-top: 34px; color: var(--muted); font-size: 16px; }

.editorial-list { border-top: 1px solid var(--ink); }
.editorial-card { display: grid; grid-template-columns: 280px minmax(0, 1fr) 110px; align-items: center; gap: 34px; padding: 28px 0; border-bottom: 1px solid var(--line); transition: padding .25s ease, background .25s ease; }
.editorial-card:hover { padding-right: 17px; padding-left: 17px; background: var(--white); }
.editorial-card__image { width: 100%; height: 190px; overflow: hidden; background: var(--sage); }
.editorial-card__image img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.editorial-card:hover .editorial-card__image img { transform: scale(1.04); }
.editorial-card__copy { min-width: 0; }
.editorial-card__meta { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; color: var(--coral); font-size: 16px; font-weight: 800; }
.editorial-card__meta time { color: var(--muted); font-family: Georgia, serif; font-weight: 400; }
.editorial-card h3 { margin-bottom: 12px; font-family: Georgia, "Songti SC", serif; font-size: 29px; line-height: 1.32; }
.editorial-card p { max-width: 680px; margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.85; }
.editorial-card__index { align-self: start; color: var(--coral); font-family: Georgia, serif; font-size: 28px; text-align: right; }
.editorial-card__index span { display: block; margin-top: 10px; color: var(--forest-2); font-family: sans-serif; font-size: 16px; font-weight: 800; }

.story-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr); align-items: center; gap: clamp(55px, 8vw, 120px); }
.story-media { position: relative; padding: 0 28px 28px 0; }
.story-media::after { position: absolute; z-index: 0; right: 0; bottom: 0; width: 54%; height: 54%; content: ""; background: var(--coral); }
.story-media img { position: relative; z-index: 1; height: 570px; object-fit: cover; }
.story-copy h2 { margin-bottom: 25px; font-size: clamp(40px, 4.2vw, 61px); }
.story-copy h2 span { color: var(--coral); }
.story-copy p { max-width: 550px; margin-bottom: 17px; color: var(--muted); font-size: 18px; line-height: 1.95; }
.story-quote { display: flex; align-items: center; gap: 15px; margin-top: 35px; color: var(--forest-2); font-family: Georgia, "Songti SC", serif; font-size: 18px; }
.story-quote::before { width: 50px; height: 1px; content: ""; background: var(--accent); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.value-item { min-height: 250px; padding: 27px 25px; border-right: 1px solid var(--line); }
.value-item:first-child { border-left: 1px solid var(--line); }
.value-item:last-child { border-right: 1px solid var(--line); }
.value-item__index { color: var(--coral); font-family: Georgia, serif; font-size: 18px; }
.value-item h3 { margin: 50px 0 10px; font-family: Georgia, "Songti SC", serif; font-size: 28px; }
.value-item p { margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.about-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.about-metric { padding: 23px 0; border-top: 1px solid var(--line); }
.about-metric strong { display: block; color: var(--forest); font-family: Georgia, serif; font-size: 45px; line-height: 1; }
.about-metric strong span { color: var(--coral); font-size: 24px; }
.about-metric > span { display: block; margin-top: 10px; color: var(--muted); font-size: 16px; }

.contact-template { padding: 105px 0 125px; color: var(--white); background: var(--forest); }
.contact-page-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(460px, 1.15fr); align-items: start; gap: clamp(55px, 8vw, 120px); }
.contact-template h2 { margin-bottom: 24px; color: var(--white); font-size: clamp(42px, 4.5vw, 64px); }
.contact-template h2 span { color: var(--accent); }
.contact-template__lead { max-width: 500px; margin-bottom: 30px; color: rgba(255,255,255,.7); font-size: 18px; line-height: 1.9; }
.contact-template__details { display: grid; gap: 0; margin-top: 54px; }
.contact-template__detail { padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.contact-template__detail label { display: block; margin-bottom: 7px; color: var(--accent); font-size: 16px; font-weight: 800; letter-spacing: .12em; }
.contact-template__detail strong, .contact-template__detail a { color: var(--white); font-family: Georgia, "Songti SC", serif; font-size: 22px; line-height: 1.5; }
.contact-template__detail a { display: inline-flex; align-items: center; gap: 8px; }
.contact-template__detail a span { color: var(--accent); font-family: sans-serif; font-size: 19px; }
.contact-form { padding: 34px; color: var(--ink); background: var(--white); box-shadow: var(--shadow); }
.contact-form h3 { margin-bottom: 7px; font-family: Georgia, "Songti SC", serif; font-size: 30px; }
.contact-form > p { margin-bottom: 27px; color: var(--muted); font-size: 16px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--full { grid-column: span 2; }
.form-field label { color: var(--forest-2); font-size: 16px; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 52px; padding: 12px 14px; color: var(--ink); border: 1px solid var(--line); border-radius: 2px; outline: 0; background: #fbfcf8; font: inherit; font-size: 16px; transition: border-color .2s ease, box-shadow .2s ease; }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--forest-2); box-shadow: 0 0 0 3px rgba(34,83,62,.12); }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 23px; }
.form-actions .button { border: 0; }
.form-status { min-height: 26px; color: var(--forest-2); font-size: 16px; }
.contact-qr-panel { display: flex; align-items: center; gap: 20px; margin-top: 40px; padding-top: 27px; border-top: 1px solid rgba(255,255,255,.22); }
.contact-qr-panel img { width: 128px; height: 128px; padding: 8px; object-fit: contain; background: var(--white); }
.contact-qr-panel span { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.7; }

.detail-page { padding: 185px 0 120px; background: var(--paper); }
.detail-header { max-width: 920px; }
.detail-header .page-breadcrumb { margin-bottom: 31px; }
.detail-header h1 { margin: 0 0 22px; color: var(--forest); font-size: clamp(48px, 5.5vw, 82px); }
.detail-header > p:not(.eyebrow) { max-width: 780px; margin-bottom: 0; color: var(--muted); font-size: 20px; line-height: 1.85; }
.detail-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 13px 22px; margin-top: 24px; color: var(--coral); font-size: 16px; font-weight: 800; }
.detail-meta span:last-child { color: var(--muted); font-weight: 400; }
.detail-cover { position: relative; margin-top: 59px; }
.detail-cover img { width: 100%; height: min(620px, 42vw); min-height: 380px; object-fit: cover; }
.detail-cover__caption { position: absolute; right: 0; bottom: 0; display: flex; align-items: center; gap: 12px; padding: 14px 20px; color: var(--white); background: var(--forest); font-size: 16px; }
.detail-cover__caption span { color: var(--accent); font-family: Georgia, serif; font-size: 22px; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; align-items: start; gap: clamp(48px, 8vw, 115px); margin-top: 72px; }
.detail-main { min-width: 0; }
.detail-main h2 { margin: 0 0 19px; color: var(--forest); font-size: 36px; }
.detail-main h2:not(:first-child) { margin-top: 49px; }
.detail-main p { margin-bottom: 19px; color: var(--muted); font-size: 18px; line-height: 2; }
.detail-main ul { display: grid; gap: 12px; margin: 17px 0 0; padding: 0; list-style: none; }
.detail-main li { position: relative; padding-left: 28px; color: var(--muted); font-size: 18px; line-height: 1.8; }
.detail-main li::before { position: absolute; top: .72em; left: 0; width: 8px; height: 8px; content: ""; background: var(--accent); border-radius: 50%; }
.detail-side { position: sticky; top: 110px; padding: 27px 25px; background: #eef2e9; border-top: 3px solid var(--coral); }
.detail-side .eyebrow { margin-bottom: 15px; }
.detail-side h3 { margin-bottom: 12px; font-family: Georgia, "Songti SC", serif; font-size: 27px; }
.detail-side p { margin-bottom: 20px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.detail-side__list { display: grid; gap: 0; margin: 0 0 22px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.detail-side__list li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 16px; }
.detail-side__list strong { color: var(--forest); font-size: 16px; }
.detail-cta { display: flex; justify-content: center; width: 100%; }
.detail-footer-cta { display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-top: 80px; padding: 40px; color: var(--white); background: var(--forest); }
.detail-footer-cta h2 { margin: 0; color: var(--white); font-size: 36px; }
.detail-footer-cta h2 span { color: var(--accent); }

@media (min-width: 1600px) {
  .template-hero { padding-top: 220px; padding-bottom: 125px; }
  .template-hero__media { height: 500px; }
  .page-section { padding: 150px 0; }
  .catalog-card__image { height: 320px; }
  .editorial-card__image { height: 225px; }
  .story-media img { height: 650px; }
  .detail-page { padding-top: 220px; }
}

@media (max-width: 1199px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-card { grid-template-columns: 235px minmax(0, 1fr); }
  .editorial-card__index { grid-column: 2; grid-row: 1; justify-self: end; }
  .editorial-card__copy { grid-column: 2; grid-row: 1; padding-right: 80px; }
  .contact-page-grid { grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr); gap: 50px; }
  .detail-layout { grid-template-columns: minmax(0, 1fr) 275px; gap: 50px; }
}

@media (max-width: 820px) {
  .template-hero { padding: 150px 0 70px; }
  .template-hero__grid { grid-template-columns: 1fr; gap: 42px; }
  .template-hero__copy h1 { font-size: 50px; }
  .template-hero__copy > p:not(.eyebrow) { font-size: 18px; }
  .template-hero__media { height: 300px; }
  .page-section { padding: 80px 0; }
  .page-heading { display: block; margin-bottom: 35px; }
  .page-heading > p { max-width: 100%; margin-top: 22px; }
  .catalog-toolbar { display: block; }
  .catalog-toolbar .text-link { margin-top: 15px; }
  .catalog-grid { grid-template-columns: 1fr; gap: 14px; }
  .catalog-card__image { height: 260px; }
  .catalog-card h3 { min-height: auto; }
  .catalog-card p { min-height: auto; }
  .catalog-end { display: block; }
  .catalog-end .button { margin-top: 17px; }
  .editorial-card, .editorial-card__copy { display: block; }
  .editorial-card__copy { padding-right: 0; margin-top: 20px; }
  .editorial-card__image { height: 225px; }
  .editorial-card__index { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-media { padding-right: 15px; padding-bottom: 15px; }
  .story-media img { height: 410px; }
  .story-copy p, .contact-template__lead, .detail-header > p:not(.eyebrow), .detail-main p, .detail-main li { font-size: 18px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-item, .value-item:first-child, .value-item:last-child { min-height: 210px; border-right: 0; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .value-item:last-child { border-bottom: 0; }
  .about-metrics { grid-template-columns: 1fr; gap: 0; }
  .contact-template { padding: 80px 0; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 45px; }
  .contact-form { padding: 24px 19px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .form-actions { align-items: flex-start; flex-direction: column; }
  .contact-qr-panel { align-items: flex-start; }
  .detail-page { padding: 150px 0 80px; }
  .detail-cover { margin-top: 40px; }
  .detail-cover img { height: 300px; min-height: 0; }
  .detail-cover__caption { position: static; justify-content: center; }
  .detail-layout { grid-template-columns: 1fr; gap: 42px; margin-top: 48px; }
  .detail-side { position: static; }
  .detail-footer-cta { align-items: flex-start; flex-direction: column; padding: 27px 22px; }
  .detail-footer-cta h2 { font-size: 31px; }
}

/* Direct-answer blocks make important facts easier to scan and retrieve. */
.faq-section { background: #fffdf7; }
.faq-layout { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); align-items: start; gap: clamp(55px, 9vw, 140px); }
.faq-intro h2 { margin-bottom: 24px; font-size: clamp(40px, 4.3vw, 62px); }
.faq-intro h2 span { color: var(--coral); }
.faq-intro > p:not(.eyebrow) { max-width: 440px; margin-bottom: 28px; color: var(--muted); font-size: 18px; line-height: 1.9; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: grid; grid-template-columns: 48px minmax(0, 1fr) 28px; align-items: center; gap: 17px; padding: 22px 0; color: var(--forest); cursor: pointer; list-style: none; font-family: Georgia, "Songti SC", serif; font-size: 24px; line-height: 1.35; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { color: var(--coral); content: "+"; font-family: sans-serif; font-size: 28px; font-weight: 300; text-align: right; }
.faq-item[open] summary::after { content: "−"; }
.faq-item summary span:first-child { color: var(--coral); font-family: Georgia, serif; font-size: 18px; }
.faq-answer { padding: 0 45px 24px 65px; color: var(--muted); font-size: 18px; line-height: 1.9; }
.faq-answer p { margin-bottom: 0; }
.faq-answer a { color: var(--forest-2); text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 4px; }
.faq-page .template-hero__media img { object-position: center; }

@media (min-width: 1600px) {
  .faq-layout { gap: 170px; }
}

@media (max-width: 820px) {
  .faq-layout { grid-template-columns: 1fr; gap: 42px; }
  .faq-item summary { grid-template-columns: 36px minmax(0, 1fr) 25px; gap: 12px; padding: 19px 0; font-size: 21px; }
  .faq-item summary span:first-child { font-size: 16px; }
  .faq-answer { padding: 0 0 22px 48px; font-size: 18px; }
}

:root { scrollbar-gutter: stable; }
section[id] { scroll-margin-top: 105px; }
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.inner-page .main-nav > a.is-current::after { transform: scaleX(1); transform-origin: left; }
.brand__symbol { flex: 0 0 auto; }

@media (min-width: 1600px) {
  .hero__lead { font-size: 18px; }
  .stat { min-height: 138px; }
  .product-card__body { padding: 28px 26px 22px; }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .section-heading > p { max-width: 350px; }
}

@media (max-width: 820px) {
  .brand__text small { letter-spacing: 0; }
  h1 { font-size: clamp(38px, 12vw, 64px); }
  .template-hero__copy h1 { font-size: clamp(38px, 12vw, 50px); }
  .detail-header h1 { font-size: clamp(40px, 11vw, 58px); }
  .hero__lead { font-size: 16px; line-height: 1.85; }
}

.channel-bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 48px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.channel-bar__label { color: var(--muted); font-size: 16px; font-weight: 800; letter-spacing: .08em; }
.channel-bar__links { display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.channel-bar__links a { padding: 16px 18px 14px; color: var(--muted); border-bottom: 3px solid transparent; font-size: 16px; font-weight: 800; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.channel-bar__links a:hover, .channel-bar__links a.is-current { color: var(--forest); background: var(--accent-soft); border-bottom-color: var(--accent); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-card { min-width: 0; background: var(--white); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.gallery-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.gallery-card__image { position: relative; height: 285px; overflow: hidden; background: var(--sage); }
.gallery-card__image img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-card:hover .gallery-card__image img { transform: scale(1.04); }
.gallery-card__image span { position: absolute; top: 14px; right: 14px; color: var(--accent); font-family: Georgia, serif; font-size: 18px; }
.gallery-card__body { padding: 22px; }
.gallery-card__body h3 { margin-bottom: 9px; font-family: Georgia, "Songti SC", serif; font-size: 27px; }
.gallery-card__body p { margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.gallery-card__meta { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 15px; color: var(--coral); font-size: 16px; font-weight: 800; }
.gallery-card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 19px; color: var(--forest-2); font-size: 16px; font-weight: 800; }
.gallery-card__link span { color: var(--coral); font-size: 19px; }
.gallery-detail-hero { padding: 185px 0 100px; background: #eef2e9; }
.gallery-detail-hero__head { max-width: 980px; }
.gallery-detail-hero h1 { margin: 20px 0 22px; color: var(--forest); font-size: clamp(48px, 5.5vw, 82px); }
.gallery-detail-hero > .container > p { max-width: 760px; color: var(--muted); font-size: 20px; line-height: 1.85; }
.gallery-detail-image { margin-top: 54px; }
.gallery-detail-image img { height: min(680px, 48vw); min-height: 400px; object-fit: cover; }
.gallery-detail-caption { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.gallery-detail-caption strong { font-family: Georgia, "Songti SC", serif; font-size: 24px; }
.gallery-detail-caption span { color: var(--muted); font-size: 16px; }

.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case-card { min-width: 0; background: var(--white); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.case-card__image { position: relative; height: 260px; overflow: hidden; background: var(--sage); }
.case-card__image img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.case-card:hover .case-card__image img { transform: scale(1.04); }
.case-card__image span { position: absolute; top: 14px; left: 14px; padding: 5px 9px; color: var(--forest); background: var(--accent); font-size: 16px; font-weight: 800; }
.case-card__body { padding: 24px 22px 22px; }
.case-card__body > span { color: var(--coral); font-size: 16px; font-weight: 800; letter-spacing: .08em; }
.case-card h3 { min-height: 70px; margin: 15px 0 10px; font-family: Georgia, "Songti SC", serif; font-size: 28px; line-height: 1.25; }
.case-card p { min-height: 87px; margin-bottom: 18px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.case-card__link { display: inline-flex; align-items: center; gap: 8px; padding-top: 14px; color: var(--forest-2); border-top: 1px solid var(--line); font-size: 16px; font-weight: 800; }
.case-card__link span { color: var(--coral); font-size: 19px; }
.case-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 54px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.case-result { padding: 23px 24px; border-right: 1px solid var(--line); }
.case-result:first-child { border-left: 1px solid var(--line); }
.case-result:last-child { border-right: 1px solid var(--line); }
.case-result strong { display: block; color: var(--forest); font-family: Georgia, serif; font-size: 41px; line-height: 1; }
.case-result span { display: block; margin-top: 11px; color: var(--muted); font-size: 16px; }

.job-list { border-top: 1px solid var(--ink); }
.job-card { display: grid; grid-template-columns: minmax(0, 1fr) 180px 150px; align-items: center; gap: 30px; padding: 28px 0; border-bottom: 1px solid var(--line); transition: padding .25s ease, background .25s ease; }
.job-card:hover { padding-right: 18px; padding-left: 18px; background: var(--white); }
.job-card__copy { min-width: 0; }
.job-card__meta { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 13px; color: var(--coral); font-size: 16px; font-weight: 800; }
.job-card__meta span:last-child { color: var(--muted); font-weight: 400; }
.job-card h3 { margin-bottom: 10px; font-family: Georgia, "Songti SC", serif; font-size: 30px; }
.job-card p { margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.job-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.job-tags span { padding: 5px 9px; color: var(--forest-2); background: var(--sage); font-size: 16px; }
.job-card__action { display: inline-flex; align-items: center; justify-content: flex-end; gap: 8px; color: var(--forest-2); font-size: 16px; font-weight: 800; }
.job-card__action span { color: var(--coral); font-size: 20px; }
.job-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.job-benefit { min-height: 220px; padding: 26px 24px; border-right: 1px solid var(--line); }
.job-benefit:first-child { border-left: 1px solid var(--line); }
.job-benefit:last-child { border-right: 1px solid var(--line); }
.job-benefit__index { color: var(--coral); font-family: Georgia, serif; font-size: 18px; }
.job-benefit h3 { margin: 43px 0 10px; font-family: Georgia, "Songti SC", serif; font-size: 27px; }
.job-benefit p { margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }

.join-hero { padding: 185px 0 120px; color: var(--white); background: var(--forest); }
.join-hero__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr); align-items: center; gap: clamp(55px, 8vw, 120px); }
.join-hero h1 { margin: 18px 0 24px; color: var(--white); font-size: clamp(53px, 5.5vw, 86px); }
.join-hero h1 span { color: var(--accent); }
.join-hero__copy > p:not(.eyebrow) { max-width: 550px; margin-bottom: 29px; color: rgba(255,255,255,.72); font-size: 19px; line-height: 1.9; }
.join-hero__media { position: relative; height: 480px; }
.join-hero__media::after { position: absolute; right: -18px; bottom: -18px; width: 40%; height: 44%; content: ""; background: var(--coral); }
.join-hero__media img { position: relative; z-index: 1; height: 100%; object-fit: cover; }
.join-hero__note { position: absolute; z-index: 2; right: 0; bottom: 0; display: flex; align-items: center; gap: 12px; padding: 14px 18px; color: var(--forest); background: var(--accent); font-size: 16px; }
.join-hero__note strong { font-family: Georgia, serif; font-size: 25px; }
.join-section { padding: 120px 0; background: #fffdf7; }
.join-intro { max-width: 720px; margin-bottom: 48px; }
.join-intro h2 { margin-bottom: 21px; font-size: clamp(40px, 4.2vw, 62px); }
.join-intro h2 span { color: var(--coral); }
.join-intro p { margin-bottom: 0; color: var(--muted); font-size: 18px; line-height: 1.9; }
.join-benefits { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.join-benefit { min-height: 245px; padding: 26px 23px; border-right: 1px solid var(--line); }
.join-benefit:first-child { border-left: 1px solid var(--line); }
.join-benefit:last-child { border-right: 1px solid var(--line); }
.join-benefit__index { color: var(--coral); font-family: Georgia, serif; font-size: 18px; }
.join-benefit h3 { margin: 48px 0 10px; font-family: Georgia, "Songti SC", serif; font-size: 26px; }
.join-benefit p { margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.join-process { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 48px; border-top: 1px solid var(--line); }
.join-step { position: relative; min-height: 175px; padding: 23px 24px; border-right: 1px solid var(--line); }
.join-step:first-child { border-left: 1px solid var(--line); }
.join-step__number { color: var(--coral); font-family: Georgia, serif; font-size: 19px; }
.join-step h3 { margin: 31px 0 7px; font-family: Georgia, "Songti SC", serif; font-size: 24px; }
.join-step p { margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.join-cta { display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-top: 80px; padding: 42px; color: var(--white); background: var(--forest-2); }
.join-cta h2 { margin: 0; color: var(--white); font-size: 37px; }
.join-cta h2 span { color: var(--accent); }

@media (min-width: 1600px) {
  .gallery-card__image { height: 340px; }
  .case-card__image { height: 300px; }
  .job-card { grid-template-columns: minmax(0, 1fr) 220px 170px; }
  .join-hero__media { height: 540px; }
}

@media (max-width: 1199px) {
  .gallery-grid, .case-grid { grid-template-columns: repeat(2, 1fr); }
  .case-results { grid-template-columns: repeat(3, 1fr); }
  .job-card { grid-template-columns: minmax(0, 1fr) 160px 130px; gap: 20px; }
  .join-benefits, .join-process { grid-template-columns: repeat(2, 1fr); }
  .join-benefit:nth-child(3), .join-benefit:nth-child(4) { border-top: 1px solid var(--line); }
  .join-benefit:nth-child(3) { border-left: 1px solid var(--line); }
  .join-step:nth-child(3), .join-step:nth-child(4) { border-top: 1px solid var(--line); }
  .join-step:nth-child(3) { border-left: 1px solid var(--line); }
}

@media (max-width: 820px) {
  .channel-bar { display: block; margin-bottom: 35px; }
  .channel-bar__label { display: block; padding: 15px 0 8px; }
  .channel-bar__links a { padding: 12px 13px 10px; }
  .gallery-grid, .case-grid { grid-template-columns: 1fr; gap: 14px; }
  .gallery-card__image { height: 245px; }
  .gallery-detail-hero { padding: 150px 0 70px; }
  .gallery-detail-hero h1 { font-size: clamp(40px, 11vw, 60px); }
  .gallery-detail-image img { height: 300px; min-height: 0; }
  .gallery-detail-caption { display: block; }
  .gallery-detail-caption span { display: block; margin-top: 8px; }
  .case-card__image { height: 250px; }
  .case-card h3, .case-card p { min-height: auto; }
  .case-results, .job-benefit-grid { grid-template-columns: 1fr; }
  .case-result, .case-result:first-child, .case-result:last-child { border-right: 1px solid var(--line); border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .case-result:last-child { border-bottom: 0; }
  .job-card { display: block; }
  .job-card:hover { padding-right: 0; padding-left: 0; }
  .job-tags { margin-top: 17px; }
  .job-card__action { justify-content: flex-start; margin-top: 22px; }
  .job-benefit, .job-benefit:first-child, .job-benefit:last-child { min-height: 185px; border-right: 1px solid var(--line); border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .job-benefit:last-child { border-bottom: 0; }
  .join-hero { padding: 150px 0 80px; }
  .join-hero__grid { grid-template-columns: 1fr; gap: 42px; }
  .join-hero h1 { font-size: clamp(42px, 12vw, 64px); }
  .join-hero__copy > p:not(.eyebrow) { font-size: 18px; }
  .join-hero__media { height: 300px; }
  .join-section { padding: 80px 0; }
  .join-benefits, .join-process { grid-template-columns: 1fr; }
  .join-benefit, .join-benefit:first-child, .join-benefit:last-child, .join-step, .join-step:first-child { min-height: 205px; border-right: 1px solid var(--line); border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); border-top: 0; }
  .join-benefit:last-child, .join-step:last-child { border-bottom: 0; }
  .join-cta { align-items: flex-start; flex-direction: column; margin-top: 55px; padding: 27px 22px; }
  .join-cta h2 { font-size: 31px; }
}



/* ===== CMS 分页条（模板新增） ===== */
.pagination { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span { min-width: 38px; height: 38px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; letter-spacing: .04em; text-decoration: none; color: var(--ink); background: var(--white); }
.pagination a:hover { border-color: var(--forest); color: var(--forest); }
.pagination .current { background: var(--forest); border-color: var(--forest); color: #fff; }
.pagination .dots { border-color: transparent; background: transparent; }
/* ===== CMS 空状态（模板新增） ===== */
.empty-state { padding: 56px 24px; text-align: center; color: var(--muted); border: 1px dashed var(--line); border-radius: var(--radius); background: var(--paper); }
.empty-state h3 { margin: 0 0 8px; color: var(--ink); }
/* ===== CMS 搜索结果（模板新增） ===== */
.search-result-list { display: grid; gap: 16px; }
.search-result { padding: 20px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.search-result h3 { margin: 0 0 8px; font-size: 18px; }
.search-result .tag { margin-left: 10px; padding: 2px 8px; border-radius: 999px; background: var(--accent-soft); color: var(--forest); font-size: 11px; }
.search-result .snippet { color: var(--muted); font-size: 14px; line-height: 1.7; }
/* ===== CMS 扩展表格 / 搜索 / 上下篇（模板新增） ===== */
.ext-table { width: 100%; border-collapse: collapse; margin: 8px 0 24px; }
.ext-table th, .ext-table td { padding: 10px 12px; border: 1px solid var(--line); text-align: left; font-size: 14px; }
.ext-table th { width: 160px; background: var(--paper); color: var(--muted); font-weight: 500; }
.search-form { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.search-form input[type="text"] { flex: 1 1 260px; min-height: 46px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 15px; }
.detail-prev-next { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line); }
.detail-prev-next a { color: var(--forest); text-decoration: none; font-size: 14px; }
.detail-prev-next a:hover { text-decoration: underline; }
.form-note { margin-top: 12px; font-size: 13px; color: var(--muted); }
