:root {
  --ink: #202722;
  --muted: #69736c;
  --paper: #f8f7f2;
  --white: #fffefd;
  --mist: #edf2ee;
  --line: rgba(32, 39, 34, 0.14);
  --green: #1f4a38;
  --green-soft: #dce9df;
  --gold: #a78243;
  --red: #7d2e2e;
  --shadow: 0 18px 55px rgba(30, 40, 34, 0.12);
  --max: 1180px;
  font-family:
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    "Noto Sans CJK SC",
    Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

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

figure {
  margin: 0;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(16, 21, 17, 0.78), rgba(16, 21, 17, 0));
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  padding: 5px;
  background: rgba(255, 255, 255, 0.96);
  font-weight: 700;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup strong {
  font-size: 17px;
  line-height: 1.1;
}

.brand-lockup small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.site-nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a[aria-current="page"] {
  color: var(--white);
  font-weight: 700;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex: 0 0 auto;
  min-height: 32px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.language-switcher button {
  min-width: 42px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button:hover,
.language-switcher button.is-active {
  color: var(--green);
  background: rgba(255, 255, 255, 0.92);
}

.subpage .site-header {
  color: var(--ink);
  background: rgba(248, 247, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.subpage .brand-mark {
  border-color: rgba(32, 39, 34, 0.22);
}

.subpage .brand-lockup small,
.subpage .site-nav a {
  color: var(--muted);
}

.subpage .language-switcher,
.article-header .language-switcher {
  border-color: rgba(31, 74, 56, 0.18);
  background: rgba(31, 74, 56, 0.05);
}

.subpage .language-switcher button,
.article-header .language-switcher button {
  color: var(--muted);
}

.subpage .language-switcher button:hover,
.subpage .language-switcher button.is-active,
.article-header .language-switcher button:hover,
.article-header .language-switcher button.is-active {
  color: var(--white);
  background: var(--green);
}

.subpage .site-nav a:hover,
.subpage .site-nav a[aria-current="page"] {
  color: var(--green);
}

.hero {
  position: relative;
  min-height: min(780px, 84svh);
  padding: 128px clamp(22px, 6vw, 78px) 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(14, 19, 15, 0.82) 0%, rgba(20, 28, 22, 0.66) 42%, rgba(20, 28, 22, 0.18) 82%),
    url("./assets/brand/hero-origin.jpg") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 13, 10, 0.12), rgba(9, 13, 10, 0.42)),
    radial-gradient(circle at 20% 68%, rgba(167, 130, 67, 0.2), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 800px);
  max-width: 800px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #e9c985;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: 0;
}

#hero-title {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.98);
  font-weight: 700;
  text-shadow:
    0 18px 44px rgba(0, 0, 0, 0.34),
    0 2px 0 rgba(255, 255, 255, 0.08);
}

#hero-title::after {
  position: absolute;
  left: 0.04em;
  bottom: -0.12em;
  width: 58%;
  height: clamp(4px, 0.55vw, 7px);
  border-radius: 999px;
  background: linear-gradient(90deg, #e9c985, rgba(233, 201, 133, 0.14));
  box-shadow: 0 8px 22px rgba(167, 130, 67, 0.26);
  content: "";
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.hero-copy {
  display: grid;
  width: 100%;
  max-width: 760px;
  min-width: 0;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.78;
  overflow-wrap: break-word;
}

.hero-copy p {
  min-width: 0;
  max-width: 100%;
  margin: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

.hero-copy-short {
  gap: 8px;
  max-width: 680px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.52;
}

.hero-copy-short strong {
  display: block;
  color: var(--white);
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.16;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  padding: 11px 20px;
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

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

.button-primary {
  border: 1px solid rgba(255, 255, 255, 0.92);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button.dark.button-primary {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
}

.button.dark.button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-muted {
  opacity: 0.72;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(640px, 100%);
  margin: 42px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.trust-strip div {
  padding: 18px 20px 18px 0;
}

.trust-strip div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-strip dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.trust-strip dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.image-note {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 3vw, 46px);
  bottom: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.section-band {
  padding: clamp(66px, 9vw, 118px) clamp(20px, 5vw, 64px);
  background: var(--white);
}

.section-band.alt {
  background: linear-gradient(180deg, var(--paper), var(--mist));
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 820px;
  display: block;
}

.section-heading p,
.lead,
.proof-copy p,
.care-copy p,
.contact-inner p {
  color: var(--muted);
  font-size: 17px;
}

.page-hero {
  padding: 146px clamp(20px, 5vw, 64px) clamp(58px, 8vw, 96px);
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(248, 247, 242, 0.98), rgba(237, 242, 238, 0.86)),
    url("./assets/brand/hero-origin.jpg") center / cover no-repeat;
}

.page-hero-inner {
  max-width: 860px;
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.entry-grid,
.trust-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.entry-card,
.trust-summary div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(31, 74, 56, 0.05), rgba(167, 130, 67, 0.07)),
    var(--white);
  box-shadow: var(--shadow);
}

.entry-card.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #26342c);
}

.entry-card span,
.trust-summary span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.entry-card.primary span {
  color: #e9c985;
}

.entry-card strong,
.trust-summary strong {
  display: block;
  font-size: 21px;
  line-height: 1.28;
}

.entry-card p,
.trust-summary p {
  margin: 12px 0 0;
  color: var(--muted);
}

.entry-card.primary p {
  color: rgba(255, 255, 255, 0.76);
}

.home-trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.92fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.batch-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 0.92fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.batch-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.batch-checklist div,
.channel-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(31, 74, 56, 0.06), rgba(167, 130, 67, 0.08)),
    var(--white);
}

.batch-checklist span,
.channel-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.batch-checklist strong,
.channel-grid strong {
  display: block;
  font-size: 19px;
  line-height: 1.32;
}

.channel-card a,
.channel-card small {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.channel-card a {
  color: var(--green);
  font-weight: 700;
  border-bottom: 1px solid rgba(31, 74, 56, 0.24);
}

.channel-card small {
  color: var(--muted);
}

.channel-note {
  max-width: 620px;
  margin-top: 18px;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  color: var(--muted);
}

.channel-card small a {
  display: inline;
  margin-top: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 600;
  border-bottom: 1px solid rgba(91, 99, 87, 0.28);
}

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

.audience-grid article,
.guide-grid li,
.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.audience-grid article {
  padding: 24px;
  min-height: 236px;
}

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

.image-ledger figure,
.origin-photo,
.spec-visuals figure,
.proof-docs figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-ledger figure {
  min-height: 430px;
}

.image-ledger img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.image-ledger figcaption,
.origin-photo figcaption,
.spec-visuals figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 54px 18px 18px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(16, 21, 17, 0), rgba(16, 21, 17, 0.84));
}

.image-ledger figcaption strong,
.image-ledger figcaption span {
  display: block;
}

.image-ledger figcaption span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.audience-grid p,
.guide-grid p,
.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.mini-label {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.origin-layout,
.proof-layout,
.care-layout,
.welfare-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: start;
}

.origin-list {
  display: grid;
  gap: 14px;
}

.origin-list div {
  border-left: 3px solid var(--gold);
  padding: 18px 0 18px 22px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

.origin-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.origin-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.origin-story {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.76);
}

.origin-story h3 {
  margin-bottom: 14px;
}

.origin-story p {
  color: var(--muted);
}

.origin-story p:last-child {
  margin-bottom: 0;
}

.origin-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.origin-photo img {
  width: 100%;
  object-fit: cover;
}

.origin-photo.primary img {
  aspect-ratio: 16 / 9;
  height: clamp(260px, 24vw, 380px);
  object-position: center 28%;
}

.origin-photo.secondary {
  margin-top: 0;
}

.origin-photo.secondary img {
  aspect-ratio: 16 / 9;
  height: clamp(220px, 21vw, 340px);
  object-position: center 42%;
}

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

.advisor-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.advisor-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: clamp(320px, 32vw, 460px);
  object-fit: cover;
}

.advisor-grid article > div {
  padding: 24px;
}

.advisor-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.spec-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.spec-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  font-size: 15px;
}

.spec-table th,
.spec-table td {
  padding: 20px 22px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.spec-table th {
  color: var(--green);
  background: var(--green-soft);
  font-size: 13px;
}

.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 14px;
  margin-top: 18px;
}

.spec-visuals img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: clamp(240px, 28vw, 420px);
  object-fit: cover;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.guide-grid li {
  min-height: 238px;
  padding: 18px;
}

.guide-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-weight: 700;
}

.guide-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
}

.content-hub-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: start;
}

.featured-article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 38px);
  background:
    linear-gradient(145deg, rgba(31, 74, 56, 0.08), rgba(167, 130, 67, 0.08)),
    var(--white);
  box-shadow: var(--shadow);
}

.featured-article h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.featured-article p {
  color: var(--muted);
}

.article-hub-content {
  display: grid;
  gap: 52px;
}

.article-index-grid,
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.article-topic-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -6px;
}

.article-topic-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(31, 74, 56, 0.16);
  border-radius: 999px;
  background: rgba(31, 74, 56, 0.04);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.article-topic-strip a:hover {
  border-color: rgba(31, 74, 56, 0.32);
  color: var(--green);
  background: rgba(31, 74, 56, 0.08);
}

.article-topic-strip a[aria-current="page"] {
  border-color: rgba(31, 74, 56, 0.34);
  color: var(--green);
  background: rgba(31, 74, 56, 0.1);
}

.article-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.article-topic-card {
  display: grid;
  gap: 10px;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(31, 74, 56, 0.05), rgba(167, 130, 67, 0.07)),
    var(--white);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.article-topic-card:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 74, 56, 0.32);
  box-shadow: 0 18px 38px rgba(31, 74, 56, 0.11);
}

.article-topic-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.article-topic-card strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.24;
}

.article-topic-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.article-content .article-topic-card p {
  font-size: 15px;
  line-height: 1.65;
}

.article-topic-card small {
  align-self: end;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.article-index-list {
  display: grid;
  gap: 10px;
}

.article-index-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background:
    linear-gradient(145deg, rgba(31, 74, 56, 0.04), rgba(167, 130, 67, 0.05)),
    var(--white);
  scroll-margin-top: 112px;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.article-index-row:hover,
.article-index-row:target {
  border-color: rgba(31, 74, 56, 0.34);
  background:
    linear-gradient(145deg, rgba(31, 74, 56, 0.08), rgba(167, 130, 67, 0.08)),
    var(--white);
  box-shadow: 0 16px 34px rgba(31, 74, 56, 0.1);
}

.article-index-row span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.article-index-row strong {
  display: block;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.3;
}

.article-index-row p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.article-index-card,
.topic-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(31, 74, 56, 0.05), rgba(167, 130, 67, 0.07)),
    var(--white);
}

.article-index-card.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #26342c);
}

.article-index-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.article-index-card.primary span,
.article-index-card.primary p {
  color: rgba(255, 255, 255, 0.76);
}

.article-index-card strong,
.topic-grid strong {
  display: block;
  color: inherit;
  font-size: 21px;
  line-height: 1.28;
}

.article-index-card p,
.topic-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.article-roadmap h2 {
  margin-top: 0;
}

.media-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  gap: 18px;
  justify-content: start;
}

.media-entry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #17281f;
  box-shadow: var(--shadow);
  color: var(--white);
}

.media-entry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #e7e4d9;
  transition: transform 0.22s ease;
}

.media-entry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 30, 23, 0.06) 30%, rgba(18, 30, 23, 0.48) 66%, rgba(18, 30, 23, 0.84) 100%);
}

.media-entry-card:hover img {
  transform: scale(1.035);
}

.media-entry-card span,
.media-entry-card strong,
.media-entry-card p {
  position: relative;
  z-index: 1;
  display: block;
  margin-left: 0;
  margin-right: 0;
}

.media-entry-card span {
  margin-top: 0;
  margin-bottom: 8px;
  color: #f0d99e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.media-entry-card strong {
  color: var(--white);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
  text-wrap: balance;
}

.media-entry-card p {
  margin-top: 7px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.55;
}

.article-content .media-entry-card p {
  font-size: 13px;
  line-height: 1.55;
}

.guide-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  border: 1px solid rgba(31, 74, 56, 0.16);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(145deg, rgba(31, 74, 56, 0.07), rgba(167, 130, 67, 0.09)),
    var(--white);
}

.guide-featured-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background: #e7e4d9;
}

.guide-featured-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-featured h2 {
  margin-top: 0;
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1.12;
}

.guide-section {
  display: grid;
  gap: 18px;
}

.guide-section-head {
  display: grid;
  gap: 8px;
}

.guide-section-head h2 {
  margin: 0;
}

.guide-section-head p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

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

.media-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: #26342c;
  box-shadow: var(--shadow);
}

.media-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96);
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 28, 24, 0.08), rgba(23, 28, 24, 0.76)),
    linear-gradient(90deg, rgba(23, 28, 24, 0.22), rgba(23, 28, 24, 0));
}

.media-card span,
.media-card strong {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
}

.media-card span {
  bottom: 72px;
  color: #e9c985;
  font-size: 13px;
  font-weight: 800;
}

.media-card strong {
  bottom: 22px;
  font-size: 20px;
  line-height: 1.25;
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card .play-badge {
  top: 18px;
  right: auto;
  bottom: auto;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--white);
  background: rgba(23, 28, 24, 0.42);
  backdrop-filter: blur(10px);
}

.proof-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.proof-panel div {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(31, 74, 56, 0.08), rgba(167, 130, 67, 0.08)),
    var(--white);
}

.proof-panel span,
.site-footer p + p {
  color: var(--muted);
  font-size: 13px;
}

.proof-panel strong {
  display: block;
  margin-top: 40px;
  font-size: 20px;
  line-height: 1.3;
}

.proof-docs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.proof-layout {
  grid-template-columns: 1fr;
  gap: 28px;
}

.proof-copy {
  max-width: 820px;
}

.proof-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}

.proof-checklist {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.proof-checklist p {
  margin-bottom: 16px;
  color: var(--muted);
}

.proof-checklist ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.proof-checklist li {
  position: relative;
  padding-left: 18px;
}

.proof-checklist li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.proof-docs figure {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(260px, 0.5fr);
  min-height: 340px;
}

.proof-docs img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  padding: 22px;
  background: #f4f1eb;
}

.proof-docs figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3vw, 34px);
  border-top: 0;
  border-left: 1px solid var(--line);
}

.proof-docs figcaption strong,
.proof-docs figcaption span {
  display: block;
}

.proof-docs figcaption span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.certificate-card {
  grid-column: auto;
}

.certificate-pair {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 340px;
  height: 100%;
  padding: 22px;
  background: #f4f1eb;
}

.certificate-pair img {
  width: 100%;
  height: auto;
  max-height: 440px;
  padding: 0;
  object-fit: contain;
  background: transparent;
}

.welfare-layout {
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
}

.welfare-copy {
  position: sticky;
  top: 96px;
}

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

.welfare-points li {
  border-left: 3px solid var(--gold);
  padding: 12px 0 12px 18px;
  color: var(--muted);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

.welfare-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.welfare-gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.welfare-gallery img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.welfare-gallery .wide img {
  aspect-ratio: 4 / 3;
}

.welfare-gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 64px 18px 18px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(16, 21, 17, 0), rgba(16, 21, 17, 0.84));
}

.welfare-gallery figcaption strong,
.welfare-gallery figcaption span {
  display: block;
}

.welfare-gallery figcaption span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.care-copy {
  padding-top: 8px;
}

.care-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.care-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
}

.care-list li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.compliance-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.compliance-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  padding: 22px 24px;
}

.faq-grid summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.faq-grid summary::marker {
  color: var(--gold);
}

.faq-grid details p {
  margin-top: 14px;
}

.channels-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.8fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact {
  padding: clamp(70px, 10vw, 130px) clamp(20px, 5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(31, 74, 56, 0.96), rgba(28, 35, 30, 0.9)),
    url("./assets/brand/highland-env.jpg") center / cover no-repeat;
}

.contact-inner {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact .eyebrow {
  color: #e9c985;
}

.contact-inner p {
  width: min(680px, 100%);
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.75);
}

.contact-actions {
  justify-content: center;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.44fr) minmax(0, 0.72fr);
  gap: 18px;
  align-items: stretch;
  width: min(860px, 100%);
  margin: 34px auto 0;
  text-align: left;
}

.wechat-card,
.contact-copy {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.wechat-card {
  display: grid;
  min-height: 280px;
  place-items: center;
  padding: 26px;
  text-align: center;
}

.wechat-card strong,
.wechat-card small {
  display: block;
}

.qr-frame {
  display: grid;
  width: min(286px, 100%);
  height: min(286px, 100vw - 104px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: var(--white);
}

.qr-frame img {
  width: 284px;
  max-width: calc(100% - 2px);
  height: auto;
}

.wechat-card strong {
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.25;
}

.wechat-card small {
  max-width: 210px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
}

.contact-copy {
  padding: clamp(24px, 4vw, 36px);
}

.contact-copy h3 {
  color: var(--white);
}

.contact-copy ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-hint {
  width: auto !important;
  margin-top: 16px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 15px !important;
}

.contact-copy .contact-actions {
  justify-content: flex-start;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 64px);
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.article-page {
  background: var(--paper);
}

.article-header {
  color: var(--ink);
  background: rgba(248, 247, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.article-header .brand-mark {
  border-color: rgba(32, 39, 34, 0.3);
}

.article-header .brand-lockup small,
.article-header .site-nav a {
  color: var(--muted);
}

.article-shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0 80px;
}

.article-hub-shell {
  width: min(1180px, calc(100% - 40px));
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 14px;
}

.article-breadcrumb a {
  color: var(--green);
  font-weight: 700;
}

.article-hero {
  padding: clamp(34px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(237, 242, 238, 0.78)),
    var(--white);
  box-shadow: var(--shadow);
}

.article-hero h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
}

.article-hero p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.guide-type-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.guide-type-nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.article-content {
  margin-top: 42px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.article-content p,
.article-content li {
  color: #3f4942;
  font-size: 17px;
}

.article-content h2 {
  margin-top: 44px;
  margin-bottom: 16px;
  font-size: clamp(25px, 3vw, 36px);
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  margin-top: 28px;
  color: var(--green);
  font-size: 20px;
}

.article-content ol,
.article-content ul {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}

.article-inline-cta {
  margin: 30px 0;
  border: 1px solid rgba(31, 74, 56, 0.18);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(31, 74, 56, 0.08), rgba(167, 130, 67, 0.08)),
    var(--white);
}

.article-inline-cta strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.article-inline-cta p {
  margin-bottom: 0;
}

.article-cta {
  margin-top: 28px;
  padding: clamp(28px, 5vw, 44px);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #222b25);
}

.article-cta h2 {
  font-size: clamp(27px, 4vw, 42px);
}

.article-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1060px) {
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advisor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 12px 18px;
    gap: 12px;
  }

  .site-nav {
    display: none;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero {
    min-height: 82svh;
    padding: 104px 20px 44px;
    background-position: 58% center;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.68;
  }

  .hero-copy-short {
    font-size: 18px;
    line-height: 1.5;
  }

  .hero-copy-short strong {
    font-size: clamp(25px, 8vw, 34px);
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .trust-strip div,
  .trust-strip div + div {
    padding: 14px 0;
    border-left: 0;
  }

  .trust-strip div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .image-note {
    left: 20px;
    right: 20px;
    bottom: 10px;
    text-align: right;
  }

  .section-heading,
  .batch-layout,
  .origin-layout,
  .proof-layout,
  .care-layout,
  .welfare-layout,
  .home-trust-layout,
  .content-hub-layout,
  .channels-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .audience-grid,
  .batch-checklist,
  .guide-grid,
  .faq-grid,
  .proof-panel,
  .proof-stack,
  .origin-media,
  .spec-visuals,
  .proof-docs,
  .proof-docs figure,
  .certificate-pair,
  .welfare-gallery,
  .proof-checklist ul,
  .channel-grid,
  .advisor-grid,
  .entry-grid,
  .trust-summary,
  .article-index-grid,
  .topic-grid,
  .article-topic-grid,
  .media-entry-grid,
  .guide-featured,
  .guide-media-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .proof-docs figcaption {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .page-hero {
    padding-top: 116px;
  }

  .welfare-copy {
    position: static;
  }

  .image-ledger {
    grid-template-columns: 1fr;
  }

  .image-ledger figure,
  .image-ledger img {
    min-height: 360px;
  }

  .origin-photo.secondary {
    margin-top: 0;
  }

  .guide-grid li {
    min-height: auto;
  }

  .guide-grid span {
    margin-bottom: 18px;
  }

  .contact-copy .contact-actions {
    justify-content: stretch;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 8px;
  }

  .article-shell {
    width: min(100% - 32px, 980px);
    padding-top: 98px;
  }

  .article-index-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .media-entry-grid {
    grid-template-columns: minmax(0, min(100%, 320px));
    justify-content: center;
  }
}

@media (min-width: 561px) and (max-width: 820px) {
  .audience-grid,
  .batch-checklist,
  .image-ledger,
  .guide-grid,
  .faq-grid,
  .channel-grid,
  .advisor-grid,
  .article-index-grid,
  .topic-grid,
  .article-topic-grid,
  .media-entry-grid,
  .guide-media-grid,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 300px));
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 31px;
  }

  .language-switcher button {
    min-width: 36px;
    padding: 0 8px;
  }
}
