:root {
  --ink: #16231c;
  --muted: #607068;
  --green-950: #0b291c;
  --green-900: #103625;
  --green-800: #174a33;
  --green-700: #236344;
  --green-600: #3d7b52;
  --leaf: #7da64d;
  --lime: #b8cf73;
  --gold: #d8b968;
  --cream: #f3efe4;
  --paper: #fbfaf5;
  --white: #ffffff;
  --line: rgba(16, 54, 37, 0.14);
  --shadow-sm: 0 12px 36px rgba(18, 45, 30, 0.08);
  --shadow-lg: 0 30px 80px rgba(5, 31, 20, 0.18);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1240px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(216, 185, 104, 0.75);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-950);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: var(--lime);
}

.section {
  padding: 108px 0;
}

.section--compact {
  padding: 76px 0;
}

.section--cream {
  background: var(--cream);
}

.section--deep {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 0%, rgba(125, 166, 77, 0.24), transparent 35%),
    linear-gradient(145deg, var(--green-950), var(--green-800));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading h2,
.page-lead h1,
.hero h1 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.section-heading h2 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 56px);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.section--deep .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.kicker {
  color: var(--green-700);
  font-weight: 700;
}

.note {
  padding: 18px 20px;
  color: #4f5e56;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
}

.note strong {
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  color: var(--white);
  background: rgba(11, 41, 28, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--gold), #ead99e);
  border-radius: 50% 50% 46% 54%;
  transform: rotate(-7deg);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.brand-mark::before {
  right: -7px;
  bottom: -11px;
  width: 34px;
  height: 34px;
  border: 2px solid var(--green-900);
}

.brand-mark::after {
  right: -2px;
  bottom: -5px;
  width: 23px;
  height: 23px;
  border: 2px solid var(--green-900);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.brand-text small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.main-nav {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--white);
}

.nav-link[aria-current="page"]::after {
  position: absolute;
  right: 16px;
  bottom: 0;
  left: 16px;
  height: 3px;
  content: "";
  background: var(--gold);
  border-radius: 3px 3px 0 0;
}

.has-dropdown > .nav-link::before {
  order: 2;
  width: 6px;
  height: 6px;
  margin: -4px 0 0 8px;
  content: "";
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.submenu-toggle {
  display: none;
}

.dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  min-width: 250px;
  padding: 12px;
  visibility: hidden;
  opacity: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(16, 54, 37, 0.1);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transform: translate(-50%, 14px);
  transition: 0.2s ease;
}

.dropdown--wide {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 4px;
  min-width: 500px;
}

.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.dropdown a {
  display: grid;
  padding: 11px 13px;
  color: var(--ink);
  line-height: 1.35;
  border-radius: 10px;
  transition: 0.2s ease;
}

.dropdown a:hover {
  color: var(--green-800);
  background: var(--cream);
}

.dropdown strong {
  font-size: 14px;
}

.dropdown small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--green-950);
  background: var(--gold);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  content: "";
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 20%, rgba(184, 207, 115, 0.18), transparent 28%),
    radial-gradient(circle at 10% 88%, rgba(216, 185, 104, 0.14), transparent 26%),
    linear-gradient(132deg, #082519 0%, #123d29 56%, #1e5a3b 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  right: -8vw;
  bottom: -38vw;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 6vw rgba(255, 255, 255, 0.025),
    0 0 0 12vw rgba(255, 255, 255, 0.02),
    0 0 0 18vw rgba(255, 255, 255, 0.018);
}

.hero::after {
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black 75%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.7fr);
  gap: 68px;
  align-items: center;
  min-height: 680px;
  padding: 80px 0 110px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(56px, 7.2vw, 98px);
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero-copy > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

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

.button--gold {
  color: var(--green-950);
  background: var(--gold);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.button--green {
  color: var(--white);
  background: var(--green-800);
}

.button--outline {
  color: var(--green-800);
  border-color: rgba(16, 54, 37, 0.22);
  background: transparent;
}

.field-console {
  position: relative;
  min-height: 460px;
}

.field-orbit {
  position: absolute;
  inset: 30px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.field-orbit::before,
.field-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.field-orbit::before {
  inset: 38px;
}

.field-orbit::after {
  inset: 78px;
}

.field-card {
  position: absolute;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.field-card--main {
  top: 72px;
  right: 0;
  width: min(100%, 390px);
  padding: 28px;
  color: var(--ink);
}

.field-card--tag {
  top: 22px;
  left: 0;
  padding: 14px 17px;
  color: var(--green-950);
  background: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.field-card--status {
  right: 22px;
  bottom: 22px;
  width: 230px;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(9, 41, 27, 0.92);
}

.field-card--status small {
  color: rgba(255, 255, 255, 0.58);
}

.field-map {
  position: relative;
  height: 195px;
  margin-bottom: 22px;
  overflow: hidden;
  background:
    linear-gradient(128deg, transparent 48%, rgba(255, 255, 255, 0.5) 49%, rgba(255, 255, 255, 0.5) 51%, transparent 52%),
    repeating-linear-gradient(18deg, #d4dfb7 0 13px, #b8cf84 13px 28px);
  border-radius: 15px;
}

.field-map::before {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--green-900);
  border: 5px solid var(--white);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 8px 20px rgba(5, 31, 20, 0.25);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.field-card h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 20px;
}

.field-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-stats {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: rgba(3, 27, 18, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 25px 7vw;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 27px;
  line-height: 1;
}

.stat span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.cards-4,
.cards-3,
.cards-2 {
  display: grid;
  gap: 22px;
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.service-card,
.product-card,
.case-card,
.team-card,
.article-card,
.contact-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-card {
  min-height: 350px;
  padding: 28px;
  transition: 0.25s ease;
}

.service-card:hover {
  border-color: rgba(16, 54, 37, 0.26);
  transform: translateY(-6px);
}

.service-card__number {
  display: block;
  margin-bottom: 80px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 16px;
}

.service-card h3,
.product-card h3,
.case-card h3,
.article-card h3 {
  margin: 0 0 12px;
  color: var(--green-900);
  font-size: 21px;
  line-height: 1.35;
}

.service-card p,
.product-card p,
.case-card p,
.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-card__line {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90px;
  height: 90px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 100% 0 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 260px;
}

.product-card__visual {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: linear-gradient(155deg, var(--green-700), var(--green-950));
}

.product-card__visual::before {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.04), 0 0 0 56px rgba(255, 255, 255, 0.035);
}

.product-card__visual::after {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 74px;
  height: 130px;
  content: "资料\A待补";
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 11px 11px 18px 18px;
  font-size: 12px;
  text-align: center;
  white-space: pre;
  transform: translateX(-50%) rotate(4deg);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.product-card__body ul,
.clean-list,
.check-list {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.product-card__body li,
.check-list li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 13px;
}

.product-card__body li::before,
.check-list li::before {
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.process-step {
  min-height: 280px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.035);
}

.process-step strong {
  display: block;
  margin-bottom: 74px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 15px;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.case-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
}

.case-card__visual {
  position: relative;
  height: 210px;
  overflow: hidden;
  background:
    linear-gradient(165deg, transparent 0 54%, rgba(255, 255, 255, 0.22) 54.5% 56%, transparent 56.5%),
    repeating-linear-gradient(11deg, #5c873b 0 12px, #86a954 12px 26px);
}

.case-card__visual::after {
  position: absolute;
  right: -35px;
  bottom: -100px;
  left: -35px;
  height: 150px;
  content: "";
  background: rgba(230, 211, 146, 0.35);
  border-radius: 50%;
}

.case-card__tag,
.status-tag {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  color: var(--green-900);
  background: #edf2df;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.case-card__visual .case-card__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
}

.case-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.case-card__meta,
.article-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  color: #7c8a82;
  font-size: 11px;
}

.case-card .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.ecosystem {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
}

.ecosystem-intro,
.ecosystem-grid {
  min-height: 410px;
  border-radius: var(--radius-lg);
}

.ecosystem-intro {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-950), var(--green-700));
}

.ecosystem-intro::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.025), 0 0 0 80px rgba(255, 255, 255, 0.02);
}

.ecosystem-intro h3 {
  margin: 0 0 14px;
  font-family: "Songti SC", serif;
  font-size: 34px;
  line-height: 1.2;
}

.ecosystem-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
}

.ecosystem-item {
  display: flex;
  min-height: 204px;
  padding: 30px;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--white);
}

.ecosystem-item span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 14px;
}

.ecosystem-item h4 {
  margin: 18px 0 5px;
  color: var(--green-900);
  font-size: 18px;
}

.ecosystem-item small {
  color: var(--muted);
}

.social-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 42px 46px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.social-band h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 27px;
}

.social-band p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 58px 62px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(130deg, var(--green-950), var(--green-700));
  border-radius: var(--radius-lg);
}

.cta-band::after {
  position: absolute;
  right: -100px;
  bottom: -190px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.035), 0 0 0 110px rgba(255, 255, 255, 0.025);
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  max-width: 720px;
  margin: 0 0 12px;
  font-family: "Songti SC", serif;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.2;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.page-hero {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(216, 185, 104, 0.16), transparent 30%),
    linear-gradient(140deg, var(--green-950), var(--green-700));
}

.page-hero::after {
  position: absolute;
  right: -15vw;
  bottom: -35vw;
  width: 65vw;
  height: 65vw;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(255, 255, 255, 0.024), 0 0 0 14vw rgba(255, 255, 255, 0.02);
}

.page-lead {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 392px;
  max-width: 900px;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0;
}

.page-lead h1 {
  font-size: clamp(48px, 6vw, 78px);
}

.page-lead > p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.breadcrumbs span {
  color: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.split--reverse {
  grid-template-columns: 1.15fr 0.85fr;
}

.prose h2,
.prose h3 {
  color: var(--green-900);
  font-family: "Songti SC", serif;
  line-height: 1.2;
}

.prose h2 {
  margin: 0 0 24px;
  font-size: clamp(34px, 4vw, 52px);
}

.prose h3 {
  margin: 34px 0 12px;
  font-size: 25px;
}

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

.prose p:first-of-type {
  font-size: 18px;
}

.visual-placeholder {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(160deg, transparent 48%, rgba(255, 255, 255, 0.14) 49% 51%, transparent 52%),
    repeating-linear-gradient(15deg, #366947 0 18px, #588157 18px 38px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.visual-placeholder::before {
  position: absolute;
  right: -20%;
  bottom: -45%;
  width: 95%;
  height: 95%;
  content: "";
  background: rgba(216, 185, 104, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.visual-placeholder__label {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 19px 22px;
  background: rgba(4, 35, 22, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.visual-placeholder__label strong {
  display: block;
  font-size: 16px;
}

.visual-placeholder__label small {
  color: rgba(255, 255, 255, 0.56);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline-item {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.timeline-item span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 14px;
}

.timeline-item h3 {
  margin: 64px 0 10px;
  color: var(--green-900);
  font-size: 20px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.team-card {
  min-height: 390px;
  padding: 24px;
}

.team-card__photo {
  display: grid;
  height: 245px;
  place-items: center;
  color: rgba(255, 255, 255, 0.66);
  background:
    radial-gradient(circle at 50% 37%, rgba(255, 255, 255, 0.13) 0 38px, transparent 39px),
    radial-gradient(ellipse at 50% 110%, rgba(255, 255, 255, 0.12) 0 100px, transparent 101px),
    linear-gradient(145deg, var(--green-700), var(--green-950));
  border-radius: 16px;
  font-size: 12px;
}

.team-card h3 {
  margin: 20px 0 3px;
  color: var(--green-900);
  font-size: 18px;
}

.team-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-detail {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:first-child {
  padding-top: 0;
}

.service-detail__icon {
  display: grid;
  width: 72px;
  height: 72px;
  color: var(--green-900);
  background: #edf2df;
  border-radius: 50%;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 18px;
}

.service-detail h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 21px;
}

.service-detail p {
  margin: 0;
  color: var(--muted);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.product-item__mock {
  position: relative;
  display: grid;
  height: 260px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(216, 185, 104, 0.26), transparent 35%),
    linear-gradient(145deg, #184a33, #0b291c);
}

.product-item__mock::before {
  width: 98px;
  height: 158px;
  content: "产品图\A待提供";
  padding-top: 48px;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 13px 13px 24px 24px;
  text-align: center;
  white-space: pre;
}

.product-item__body {
  padding: 24px;
}

.product-item h3 {
  margin: 13px 0 7px;
  color: var(--green-900);
  font-size: 21px;
}

.product-item p {
  min-height: 48px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.product-item dl {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 7px 12px;
  margin: 20px 0 0;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.product-item dt {
  color: #8b968f;
}

.product-item dd {
  margin: 0;
  color: var(--ink);
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}

.category-nav a {
  padding: 10px 16px;
  color: var(--green-800);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.category-nav a.active,
.category-nav a:hover {
  color: var(--white);
  background: var(--green-800);
}

.case-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.case-detail-card__visual {
  min-height: 400px;
  background:
    linear-gradient(165deg, transparent 0 54%, rgba(255, 255, 255, 0.2) 54.5% 56%, transparent 56.5%),
    repeating-linear-gradient(12deg, #4d7a39 0 14px, #8ba65a 14px 30px);
}

.case-detail-card__body {
  padding: 44px;
}

.case-detail-card h2 {
  margin: 16px 0 14px;
  color: var(--green-900);
  font-size: 31px;
  line-height: 1.25;
}

.case-detail-card p {
  color: var(--muted);
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin-top: 28px;
}

.case-fact {
  padding: 15px;
  background: var(--cream);
  border-radius: 12px;
}

.case-fact small {
  display: block;
  color: #839087;
}

.case-fact strong {
  color: var(--green-900);
  font-size: 13px;
}

.article-card {
  min-height: 330px;
  padding: 30px;
}

.article-card__type {
  display: inline-block;
  margin-bottom: 72px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
}

.article-card .text-link {
  position: absolute;
  bottom: 28px;
  left: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--green-900);
  font-size: 13px;
  font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(16, 54, 37, 0.2);
  border-radius: 11px;
}

.form-field textarea {
  min-height: 128px;
  resize: vertical;
}

.form-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-panel__info {
  padding: 44px;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-950), var(--green-700));
}

.contact-panel__form {
  padding: 44px;
}

.contact-panel h2 {
  margin: 0 0 14px;
  font-family: "Songti SC", serif;
  font-size: 36px;
  line-height: 1.2;
}

.contact-panel__info > p {
  color: rgba(255, 255, 255, 0.65);
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.contact-list div {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-list small {
  display: block;
  color: rgba(255, 255, 255, 0.5);
}

.contact-list strong {
  display: block;
  margin-top: 4px;
}

.map-placeholder {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 30px;
  color: var(--green-900);
  background:
    linear-gradient(90deg, rgba(16, 54, 37, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(16, 54, 37, 0.05) 1px, transparent 1px),
    var(--cream);
  background-size: 42px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: center;
}

.map-placeholder__pin {
  width: 46px;
  height: 46px;
  margin: 0 auto 15px;
  background: var(--green-800);
  border: 8px solid var(--white);
  border-radius: 50% 50% 50% 0;
  box-shadow: var(--shadow-sm);
  transform: rotate(-45deg);
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2000;
  max-width: 360px;
  padding: 15px 18px;
  color: var(--white);
  visibility: hidden;
  opacity: 0;
  background: var(--green-950);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  box-shadow: var(--shadow-lg);
  transform: translateY(12px);
  transition: 0.22s ease;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  padding: 72px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  background: #071f15;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.7fr);
  gap: 52px;
}

.footer-brand .brand {
  margin-bottom: 22px;
}

.footer-brand > p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
}

.footer-col h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 14px;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

.business-line-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--green-950);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
}

.business-line-card {
  display: flex;
  min-height: 280px;
  padding: 30px 26px;
  flex-direction: column;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  scroll-margin-top: 30px;
  transition: background 0.22s ease, transform 0.22s ease;
}

.business-line-card:last-child {
  border-right: 0;
}

.business-line-card > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
}

.business-line-card h3 {
  margin: auto 0 11px;
  font-family: "Songti SC", "STSong", serif;
  font-size: 28px;
}

.business-line-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.business-line-card .text-link {
  margin-top: 23px;
  color: var(--gold);
}

a.business-line-card:hover {
  background: var(--green-800);
  transform: translateY(-5px);
}

.crop-entry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 3px solid var(--green-800);
  box-shadow: var(--shadow-sm);
}

.crop-entry-grid > a {
  display: flex;
  min-height: 220px;
  padding: 28px;
  flex-direction: column;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, background 0.2s ease;
}

.crop-entry-grid > a:nth-child(4n) {
  border-right: 0;
}

.crop-entry-grid > a span {
  color: var(--green-700);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.crop-entry-grid > a h3 {
  margin: auto 0 4px;
  color: var(--green-950);
  font-family: "Songti SC", "STSong", serif;
  font-size: 28px;
}

.crop-entry-grid > a p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.crop-entry-grid > a b {
  margin-top: 17px;
  color: var(--gold);
  font-size: 11px;
}

.crop-entry-grid > a:hover {
  color: var(--white);
  background: var(--green-800);
}

.crop-entry-grid > a:hover span,
.crop-entry-grid > a:hover h3,
.crop-entry-grid > a:hover p {
  color: inherit;
}

.category-nav--crops {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.empty-product-panel {
  display: grid;
  min-height: 360px;
  margin-top: 38px;
  padding: 54px;
  align-content: center;
  justify-items: start;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 30%, rgba(216, 185, 104, 0.22), transparent 28%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
  box-shadow: var(--shadow-lg);
}

.empty-product-panel > span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.2em;
}

.empty-product-panel h2 {
  margin: 14px 0 12px;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(34px, 4vw, 54px);
}

.empty-product-panel p {
  max-width: 690px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1120px) {
  .business-line-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .business-line-card:nth-child(3) {
    border-right: 0;
  }

  .business-line-card:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .category-nav--crops {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .business-line-grid,
  .crop-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-line-card {
    min-height: 220px;
  }

  .business-line-card:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
  }

  .business-line-card:nth-child(2n) {
    border-right: 0;
  }

  .business-line-card:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .crop-entry-grid > a:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .crop-entry-grid > a:nth-child(even) {
    border-right: 0;
  }

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

@media (max-width: 520px) {
  .business-line-grid,
  .crop-entry-grid {
    grid-template-columns: 1fr;
  }

  .business-line-card,
  .crop-entry-grid > a {
    min-height: 180px;
    border-right: 0 !important;
  }

  .empty-product-panel {
    padding: 38px 24px;
  }
}

@media (max-width: 1120px) {
  .nav-link {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 13px;
  }

  .header-cta {
    display: none;
  }

  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.65fr);
    gap: 35px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    backdrop-filter: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: auto;
    padding: 12px 20px 40px;
    visibility: hidden;
    overflow-y: auto;
    opacity: 0;
    background: rgba(7, 31, 21, 0.99);
    transform: translateY(-10px);
    transition: 0.2s ease;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link {
    min-height: 58px;
    padding: 0;
    font-size: 16px;
  }

  .nav-link[aria-current="page"]::after,
  .has-dropdown > .nav-link::before {
    display: none;
  }

  .submenu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    border: 0;
    border-radius: 50%;
    place-items: center;
  }

  .dropdown,
  .dropdown--wide {
    position: static;
    display: none;
    grid-column: 1 / -1;
    min-width: 0;
    padding: 0 0 12px;
    visibility: visible;
    opacity: 1;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .dropdown--wide {
    grid-template-columns: 1fr;
  }

  .main-nav .nav-item:hover > .dropdown,
  .main-nav .nav-item:focus-within > .dropdown {
    transform: none;
  }

  .has-dropdown.open > .dropdown {
    display: grid;
  }

  .dropdown a {
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.04);
  }

  .dropdown a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
  }

  .dropdown small {
    color: rgba(255, 255, 255, 0.42);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 960px;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .field-console {
    max-width: 520px;
    min-height: 420px;
    margin: -30px 0 80px auto;
  }

  .section-heading,
  .split,
  .split--reverse,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .cards-3,
  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ecosystem {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text small {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .section--compact {
    padding: 58px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .hero {
    min-height: 960px;
  }

  .hero-inner {
    min-height: 860px;
    padding: 58px 0 210px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 68px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .field-console {
    min-height: 360px;
    margin: -30px 0 0;
  }

  .field-card--main {
    top: 72px;
    width: calc(100% - 22px);
  }

  .field-card--status {
    right: 0;
    bottom: 0;
  }

  .field-map {
    height: 130px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat {
    padding: 13px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat strong {
    font-size: 21px;
  }

  .cards-4,
  .cards-3,
  .cards-2,
  .product-grid,
  .product-list,
  .timeline,
  .ecosystem-grid,
  .form-grid,
  .case-facts {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 280px;
  }

  .service-card__number {
    margin-bottom: 50px;
  }

  .product-card {
    grid-template-columns: 110px 1fr;
  }

  .product-card__body {
    padding: 23px;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 210px;
  }

  .process-step strong {
    margin-bottom: 35px;
  }

  .social-band,
  .cta-band {
    grid-template-columns: 1fr;
    padding: 34px 28px;
  }

  .page-lead {
    min-height: 340px;
  }

  .page-lead > p {
    font-size: 16px;
  }

  .service-detail {
    grid-template-columns: 60px 1fr;
  }

  .service-detail__icon {
    width: 56px;
    height: 56px;
  }

  .case-detail-card {
    grid-template-columns: 1fr;
  }

  .case-detail-card__visual {
    min-height: 250px;
  }

  .case-detail-card__body,
  .contact-panel__info,
  .contact-panel__form {
    padding: 30px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media print {
  @page {
    size: A4;
    margin: 0;
  }

  html,
  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .site-header {
    position: static;
  }

  .hero {
    min-height: 700px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 620px;
    padding: 76px 0 155px;
  }

  .field-console {
    display: none;
  }

  .section {
    padding: 62px 0;
  }

  .section--compact {
    padding: 48px 0;
  }

  .section-heading,
  .product-card,
  .case-card,
  .social-band,
  .cta-band,
  .ecosystem-item,
  .ecosystem-intro,
  .site-footer {
    break-inside: avoid;
  }

  .section-heading {
    break-after: avoid;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Portal-style desktop redesign */
.site-header {
  position: relative;
  height: auto;
  color: var(--ink);
  background: var(--white);
  border-bottom: 0;
  backdrop-filter: none;
}

.utility-strip {
  height: 34px;
  color: rgba(255, 255, 255, 0.68);
  background: #08281b;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.utility-inner,
.masthead-inner,
.nav-shell-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.utility-inner div {
  display: flex;
  align-items: center;
  height: 100%;
}

.utility-inner a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.utility-inner a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.utility-inner a:hover {
  color: var(--gold);
}

.masthead {
  height: 84px;
  background: rgba(255, 255, 255, 0.98);
}

.brand--portal {
  color: var(--green-950);
}

.brand--portal .brand-mark {
  width: 48px;
  height: 48px;
}

.brand--portal .brand-text strong {
  font-family: "Songti SC", "STSong", serif;
  font-size: 28px;
  letter-spacing: 0.12em;
}

.brand--portal .brand-text small {
  margin-top: 6px;
  color: #728078;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.masthead-statement {
  display: flex;
  color: #6a786f;
  font-family: "Songti SC", "STSong", serif;
  font-size: 14px;
  letter-spacing: 0.2em;
}

.masthead-statement span {
  padding: 0 20px;
  border-right: 1px solid var(--line);
}

.masthead-statement span:last-child {
  padding-right: 0;
  border-right: 0;
}

.nav-shell {
  height: 56px;
  color: var(--white);
  background: #0d3a28;
}

.nav-shell-inner {
  position: relative;
}

.main-nav {
  height: 56px;
}

.nav-item {
  min-width: 112px;
  justify-content: center;
}

.nav-link {
  justify-content: center;
  width: 100%;
  padding: 0 21px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.nav-item:hover > .nav-link,
.nav-link[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-link[aria-current="page"]::after {
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 3px;
  background: var(--gold);
}

.header-cta {
  min-height: 36px;
  padding: 0 17px;
  color: #0d3a28;
  background: var(--gold);
  border-radius: 2px;
  letter-spacing: 0.08em;
}

.header-cta span {
  margin-left: 12px;
}

.dropdown {
  top: calc(100% - 2px);
  border-radius: 2px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 20px 55px rgba(5, 31, 20, 0.2);
}

.portal-hero {
  position: relative;
  min-height: clamp(650px, calc(100vh - 174px), 820px);
  overflow: hidden;
  color: var(--white);
  background-image: url("hero-majestic-v2.png");
  background-position: center center;
  background-size: cover;
}

.portal-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 25, 17, 0.9) 0%, rgba(4, 32, 21, 0.72) 34%, rgba(4, 32, 21, 0.12) 70%, rgba(4, 32, 21, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 24, 16, 0.62) 0%, transparent 38%);
}

.portal-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: clamp(650px, calc(100vh - 174px), 820px);
  align-items: center;
}

.portal-hero__copy {
  max-width: 1000px;
  padding: 10px 0 100px 250px;
}

.portal-kicker {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 24px;
  color: #e2d396;
  font-size: 12px;
  letter-spacing: 0.26em;
}

.portal-kicker::before {
  width: 42px;
  height: 1px;
  content: "";
  background: currentColor;
}

.portal-hero h1 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(58px, 6vw, 92px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.24);
}

.portal-hero h1 em {
  color: #ead385;
  font-style: normal;
}

.portal-hero__copy > p:last-of-type {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.9;
}

.portal-hero__actions {
  display: flex;
  gap: 1px;
  margin-top: 38px;
}

.portal-hero__actions a {
  display: grid;
  min-width: 178px;
  min-height: 51px;
  color: var(--green-950);
  background: var(--gold);
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.portal-hero__actions a:last-child {
  color: var(--white);
  background: rgba(7, 38, 25, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.portal-rail {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  transform: translateY(-58%);
}

.portal-rail--left {
  left: 0;
  width: 238px;
  background: rgba(5, 34, 22, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 0;
  backdrop-filter: blur(12px);
}

.portal-rail--left a {
  display: grid;
  grid-template-columns: 34px 1fr;
  padding: 17px 21px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.portal-rail--left a:last-child {
  border-bottom: 0;
}

.portal-rail--left span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 12px;
}

.portal-rail--left strong {
  font-size: 13px;
  letter-spacing: 0.08em;
}

.portal-rail--left small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.portal-rail--left a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.portal-rail--right {
  right: 0;
  width: 158px;
  background: rgba(255, 255, 255, 0.93);
  border-top: 3px solid var(--gold);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.portal-rail--right a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 19px;
  color: var(--green-950);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.portal-rail--right b {
  color: var(--gold);
  font-weight: 400;
}

.portal-rail--right a:hover {
  color: var(--white);
  background: var(--green-800);
}

.portal-hero__foot {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 74px;
  background: rgba(4, 30, 20, 0.86);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
}

.portal-hero__foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-left: 250px;
}

.hero-bulletin {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(780px, 75%);
}

.hero-bulletin > span {
  padding: 6px 10px;
  color: var(--green-950);
  background: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-bulletin a {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-bulletin time {
  color: rgba(255, 255, 255, 0.46);
  font-family: Georgia, serif;
  font-size: 12px;
}

.hero-scroll {
  display: flex;
  gap: 11px;
  align-items: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.hero-scroll i {
  position: relative;
  width: 1px;
  height: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.hero-scroll i::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 12px;
  content: "";
  background: var(--gold);
}

.portal-overview {
  padding: 78px 0 62px;
  background: #f6f4ed;
}

.portal-title-row {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 34px;
}

.portal-title-row span {
  color: var(--green-700);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.portal-title-row h2 {
  margin: 7px 0 0;
  color: var(--green-950);
  font-family: "Songti SC", "STSong", serif;
  font-size: 40px;
  line-height: 1.15;
}

.portal-title-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.portal-dashboard {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  min-height: 430px;
  background: var(--white);
  border-top: 3px solid var(--green-800);
  box-shadow: 0 14px 40px rgba(19, 48, 33, 0.08);
}

.portal-feature {
  position: relative;
  display: grid;
  grid-template-rows: 52% 48%;
  min-width: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.portal-feature__image {
  background:
    linear-gradient(0deg, rgba(6, 35, 23, 0.25), transparent),
    url("hero-majestic-v2.png") center 62% / cover;
}

.portal-feature__body {
  padding: 25px 30px;
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
}

.portal-feature__body > span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.portal-feature__body h3 {
  margin: 10px 0 7px;
  font-family: "Songti SC", "STSong", serif;
  font-size: 24px;
  line-height: 1.28;
}

.portal-feature__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.portal-feature__body b {
  display: block;
  margin-top: 15px;
  color: var(--gold);
  font-size: 11px;
}

.portal-news,
.portal-services {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.portal-services {
  border-right: 0;
}

.portal-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--green-900);
}

.portal-panel-head h3 {
  margin: 0;
  color: var(--green-950);
  font-family: "Songti SC", "STSong", serif;
  font-size: 22px;
}

.portal-panel-head > a {
  color: var(--muted);
  font-size: 10px;
}

.portal-news > a {
  display: grid;
  grid-template-columns: 47px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.portal-news time {
  display: grid;
  align-content: start;
  color: var(--gold);
}

.portal-news time b {
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1;
}

.portal-news time small {
  margin-top: 5px;
  color: #8e9891;
  font-size: 9px;
}

.portal-news > a > span {
  display: grid;
}

.portal-news strong {
  color: var(--green-950);
  font-size: 13px;
  line-height: 1.5;
}

.portal-news > a > span small {
  margin-top: 5px;
  color: #8a958e;
  font-size: 10px;
}

.portal-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.portal-service-grid a {
  display: flex;
  min-height: 141px;
  padding: 19px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: 0.2s ease;
}

.portal-service-grid span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 11px;
}

.portal-service-grid strong {
  margin-top: auto;
  color: var(--green-950);
  font-size: 13px;
}

.portal-service-grid small {
  margin-top: 3px;
  color: #89948d;
  font-size: 9px;
}

.portal-service-grid a:hover {
  color: var(--white);
  background: var(--green-800);
}

.portal-service-grid a:hover strong,
.portal-service-grid a:hover small {
  color: inherit;
}

.portal-crop-nav {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  min-height: 92px;
  margin-top: 20px;
  color: var(--white);
  background: var(--green-900);
}

.portal-crop-nav > div,
.portal-crop-nav > a {
  display: flex;
  justify-content: center;
  padding: 0 24px;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.portal-crop-nav > div {
  background: var(--green-950);
}

.portal-crop-nav span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.portal-crop-nav strong {
  margin-top: 3px;
  font-family: "Songti SC", "STSong", serif;
  font-size: 17px;
}

.portal-crop-nav > a {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.portal-crop-nav > a:hover {
  color: var(--green-950);
  background: var(--gold);
}

body:not(.portal-home) .page-hero {
  min-height: 340px;
}

body:not(.portal-home) .page-lead {
  min-height: 340px;
  padding: 55px 0;
}

body:not(.portal-home) .page-lead h1 {
  font-size: clamp(44px, 5vw, 66px);
}

body:not(.portal-home) .service-card,
body:not(.portal-home) .product-card,
body:not(.portal-home) .case-card,
body:not(.portal-home) .team-card,
body:not(.portal-home) .article-card,
body:not(.portal-home) .contact-card,
body:not(.portal-home) .product-item {
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(18, 45, 30, 0.06);
}

@media (max-width: 1260px) {
  .portal-rail--left {
    display: none;
  }

  .portal-hero__copy,
  .portal-hero__foot-inner {
    padding-left: 0;
  }

  .portal-dashboard {
    grid-template-columns: 1fr 1fr;
  }

  .portal-feature {
    grid-row: span 2;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .utility-strip,
  .masthead-statement {
    display: none;
  }

  .masthead {
    height: 68px;
    color: var(--white);
    background: var(--green-950);
  }

  .brand--portal {
    color: var(--white);
  }

  .brand--portal .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand--portal .brand-text strong {
    font-size: 18px;
  }

  .brand--portal .brand-text small {
    display: none;
  }

  .nav-shell {
    height: 0;
  }

  .nav-shell-inner {
    display: block;
  }

  .main-nav {
    top: 68px;
    height: auto;
  }

  .nav-item {
    min-width: 0;
    justify-content: stretch;
  }

  .nav-link {
    justify-content: flex-start;
  }

  .portal-rail,
  .hero-scroll {
    display: none;
  }

  .portal-hero,
  .portal-hero__content {
    min-height: 720px;
  }

  .portal-hero__content {
    align-items: flex-end;
  }

  .portal-hero__copy {
    max-width: 680px;
    padding: 70px 0 150px;
  }

  .portal-hero h1 {
    font-size: clamp(52px, 10vw, 76px);
  }

  .portal-hero__foot-inner {
    padding-left: 0;
  }

  .hero-bulletin {
    width: 100%;
  }

  .portal-title-row,
  .portal-dashboard {
    grid-template-columns: 1fr;
  }

  .portal-title-row {
    gap: 15px;
  }

  .portal-feature {
    grid-row: auto;
    min-height: 440px;
  }

  .portal-news,
  .portal-services {
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .portal-crop-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .portal-crop-nav > div {
    grid-column: 1 / -1;
    min-height: 78px;
  }

  .portal-crop-nav > a {
    min-height: 62px;
  }
}

@media (max-width: 680px) {
  .portal-hero,
  .portal-hero__content {
    min-height: 690px;
  }

  .portal-hero__copy {
    padding-bottom: 140px;
  }

  .portal-kicker {
    font-size: 9px;
  }

  .portal-hero h1 {
    font-size: clamp(44px, 12vw, 52px);
  }

  .portal-hero__copy > p:last-of-type {
    font-size: 14px;
  }

  .portal-hero__actions a {
    min-width: 0;
    padding: 0 18px;
  }

  .hero-bulletin {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .hero-bulletin time {
    display: none;
  }

  .portal-overview {
    padding: 58px 0 44px;
  }

  .portal-title-row h2 {
    font-size: 34px;
  }

  .portal-feature__body,
  .portal-news,
  .portal-services {
    padding: 24px 20px;
  }

  .portal-service-grid {
    grid-template-columns: 1fr;
  }

  .portal-service-grid a {
    min-height: 110px;
  }

  .portal-crop-nav {
    grid-template-columns: 1fr;
  }

  .portal-crop-nav > div {
    grid-column: auto;
  }
}

@media print {
  @page {
    size: A4 landscape;
    margin: 0;
  }

  html,
  body.portal-home {
    background: #f6f4ed !important;
  }

  .portal-home .site-header {
    position: static;
  }

  .portal-home .portal-hero,
  .portal-home .portal-hero__content {
    min-height: 619px;
  }

  .portal-home .portal-hero__copy,
  .portal-home .portal-hero__foot-inner {
    padding-left: 0;
  }

  .portal-home .portal-hero__copy {
    max-width: 790px;
    padding-bottom: 105px;
  }

  .portal-home .portal-hero h1 {
    font-size: 66px;
  }

  .portal-home .portal-hero h1 span,
  .portal-home .portal-hero h1 em {
    display: block;
  }

  .portal-home .portal-hero h1 em {
    margin-top: 10px;
    padding-left: 45px;
  }

  .portal-home .portal-rail {
    display: none;
  }

  .portal-home .portal-overview {
    padding: 42px 0 34px;
  }

  .portal-home .portal-title-row {
    margin-bottom: 22px;
  }

  .portal-home .portal-dashboard {
    grid-template-columns: 1.08fr 0.92fr 0.92fr;
    min-height: 380px;
  }

  .portal-home .portal-feature {
    grid-row: auto;
  }

  .portal-home .portal-news,
  .portal-home .portal-services {
    padding: 24px;
  }

  .portal-home .portal-service-grid a {
    min-height: 120px;
  }

  .portal-home .portal-crop-nav {
    grid-template-columns: 1.35fr repeat(4, 1fr);
    min-height: 74px;
    margin-top: 14px;
  }

  .portal-home .portal-crop-nav > div {
    grid-column: auto;
  }

  .portal-home .portal-crop-nav > a {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-content: center;
    min-height: 74px;
  }

  .portal-home .portal-crop-nav > a span,
  .portal-home .portal-crop-nav > a strong {
    grid-column: 1;
  }

  .portal-home .portal-crop-nav > a b {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

  .portal-home .skip-link,
  .portal-home .site-footer {
    display: none !important;
  }
}

/* Majestic home presentation: full-bleed desktop hero and stronger product gateway */
@media screen {
  .portal-home .portal-hero h1 span,
  .portal-home .portal-hero h1 em {
    display: block;
  }

  .portal-home .portal-crop-nav > a {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-content: center;
    column-gap: 18px;
  }

  .portal-home .portal-crop-nav > a span {
    grid-column: 1;
    color: rgba(255, 255, 255, 0.48);
    font-size: 8px;
    letter-spacing: 0.11em;
  }

  .portal-home .portal-crop-nav > a strong {
    grid-column: 1;
    margin-top: 4px;
    font-family: "Songti SC", "STSong", serif;
    font-size: 15px;
  }

  .portal-home .portal-crop-nav > a b {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    color: var(--gold);
  }

  .portal-home .portal-crop-nav > a:hover span,
  .portal-home .portal-crop-nav > a:hover b {
    color: var(--green-950);
  }
}

@media screen and (min-width: 981px) {
  body:not(.portal-home) .page-hero,
  body:not(.portal-home) .page-lead {
    min-height: 420px;
  }

  body:not(.portal-home) .page-lead h1 {
    max-width: 980px;
    font-size: clamp(58px, 5.4vw, 78px);
  }

  .portal-home .site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    color: var(--white);
    background: transparent;
  }

  .portal-home .utility-strip {
    height: 32px;
    background: rgba(2, 22, 14, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .portal-home .masthead {
    height: 88px;
    background: linear-gradient(180deg, rgba(3, 28, 18, 0.82), rgba(3, 28, 18, 0.52));
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(8px);
  }

  .portal-home .brand--portal {
    color: var(--white);
  }

  .portal-home .brand--portal .brand-mark {
    width: 54px;
    height: 54px;
  }

  .portal-home .brand--portal .brand-text strong {
    font-size: 31px;
  }

  .portal-home .brand--portal .brand-text small,
  .portal-home .masthead-statement {
    color: rgba(255, 255, 255, 0.62);
  }

  .portal-home .masthead-statement span {
    border-color: rgba(255, 255, 255, 0.18);
  }

  .portal-home .nav-shell {
    height: 62px;
    background: rgba(3, 30, 20, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(10px);
  }

  .portal-home .main-nav {
    height: 62px;
  }

  .portal-home .nav-link {
    min-height: 62px;
    color: rgba(255, 255, 255, 0.86);
  }

  .portal-home .nav-item:hover > .nav-link,
  .portal-home .nav-link[aria-current="page"] {
    background: rgba(255, 255, 255, 0.1);
  }

  .portal-home .portal-hero,
  .portal-home .portal-hero__content {
    min-height: clamp(790px, 100svh, 1080px);
  }

  .portal-home .portal-hero {
    background-position: center center;
  }

  .portal-home .portal-hero__shade {
    background:
      linear-gradient(90deg, rgba(2, 20, 14, 0.9) 0%, rgba(3, 27, 18, 0.65) 38%, rgba(3, 27, 18, 0.16) 67%, rgba(3, 27, 18, 0.08) 100%),
      linear-gradient(180deg, rgba(2, 18, 12, 0.35) 0%, transparent 48%, rgba(2, 20, 13, 0.72) 100%);
  }

  .portal-home .portal-hero__content {
    align-items: center;
  }

  .portal-home .portal-hero__copy {
    max-width: 1120px;
    padding-top: 205px;
    padding-bottom: 148px;
  }

  .portal-home .portal-kicker {
    margin-bottom: 30px;
    color: #e6d184;
    font-size: 13px;
    letter-spacing: 0.28em;
  }

  .portal-home .portal-kicker::before {
    width: 64px;
  }

  .portal-home .portal-hero h1 {
    font-size: clamp(84px, 7.4vw, 126px);
    font-weight: 700;
    letter-spacing: -0.065em;
    line-height: 0.92;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.34);
  }

  .portal-home .portal-hero h1 em {
    margin-top: 18px;
    padding-left: 72px;
    color: #efd477;
  }

  .portal-home .portal-hero__copy > p:last-of-type {
    max-width: 650px;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    letter-spacing: 0.055em;
  }

  .portal-home .portal-hero__actions {
    margin-top: 44px;
  }

  .portal-home .portal-hero__actions a {
    min-width: 194px;
    min-height: 58px;
  }

  .portal-home .portal-rail--left {
    width: 262px;
    background: rgba(2, 23, 15, 0.42);
    border-color: rgba(255, 255, 255, 0.17);
    backdrop-filter: blur(6px);
  }

  .portal-home .portal-rail--left a {
    padding: 22px 27px;
  }

  .portal-home .portal-rail--right {
    width: 184px;
    color: var(--white);
    background: rgba(3, 29, 19, 0.52);
    border-top: 0;
    border-left: 2px solid var(--gold);
    box-shadow: none;
    backdrop-filter: blur(8px);
  }

  .portal-home .portal-rail--right a {
    min-height: 68px;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.15);
  }

  .portal-home .portal-hero__foot {
    height: 86px;
    background: rgba(2, 24, 16, 0.76);
  }

  .portal-home .portal-title-row h2 {
    font-size: 48px;
  }
}

@media screen and (min-width: 1261px) {
  .portal-home .portal-hero__copy,
  .portal-home .portal-hero__foot-inner {
    padding-left: 290px;
  }
}

@media screen and (min-width: 981px) and (max-width: 1260px) {
  .portal-home .portal-hero__copy,
  .portal-home .portal-hero__foot-inner {
    padding-left: 0;
  }
}

@media screen and (max-width: 980px) {
  .portal-home .portal-hero {
    background-position: 58% center;
  }

  .portal-home .portal-hero__shade {
    background:
      linear-gradient(90deg, rgba(2, 22, 15, 0.83), rgba(3, 27, 18, 0.25)),
      linear-gradient(0deg, rgba(2, 22, 15, 0.72), transparent 58%);
  }

  .portal-home .portal-hero h1 em {
    margin-top: 9px;
    padding-left: 0;
  }

  .portal-home .portal-crop-nav > a {
    min-height: 76px;
  }
}

/* v4: dynamic company window, five product lines and seven crop gateways */
.hero-bulletin,
.portal-news__items,
.showcase-carousel__viewport {
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.hero-bulletin.is-switching,
.portal-news__items.is-switching,
.showcase-carousel__viewport.is-switching {
  opacity: 0;
  transform: translateY(7px);
}

.company-showcase {
  position: relative;
  overflow: hidden;
  padding: 76px 0 82px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(216, 185, 104, 0.13), transparent 28%),
    radial-gradient(circle at 82% 60%, rgba(68, 155, 119, 0.2), transparent 32%),
    linear-gradient(125deg, #061f16 0%, #0b3323 58%, #08291d 100%);
}

.company-showcase::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 54%);
}

.company-showcase__heading,
.showcase-carousel {
  position: relative;
  z-index: 1;
}

.company-showcase__heading {
  display: grid;
  grid-template-columns: 1.05fr 0.65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 34px;
}

.company-showcase__heading span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.company-showcase__heading h2 {
  margin: 8px 0 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(38px, 4.1vw, 58px);
  line-height: 1.12;
}

.company-showcase__heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.showcase-carousel {
  min-height: 440px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.showcase-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
  min-height: 440px;
}

.showcase-slide__media {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.showcase-slide__media--image {
  display: grid;
  background:
    radial-gradient(circle at 50% 50%, rgba(114, 229, 223, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(8, 49, 37, 0.95), rgba(4, 27, 20, 0.98));
  place-items: center;
}

.showcase-slide__media--image::before,
.mascot-panel__art::before {
  position: absolute;
  width: 320px;
  height: 320px;
  content: "";
  border: 1px solid rgba(126, 232, 227, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(79, 220, 211, 0.12);
}

.showcase-slide__media--image img {
  position: relative;
  z-index: 1;
  width: min(48%, 330px);
  max-height: 410px;
  object-fit: contain;
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, 0.28));
}

.showcase-slide__media--cover {
  display: block;
  background: #071d16;
}

.showcase-slide__media--cover::before {
  display: none;
}

.showcase-slide__media--cover::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent 58%, rgba(4, 25, 18, 0.28));
}

.showcase-slide__media--cover img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  filter: none;
}

.showcase-slide__media--placeholder {
  background:
    linear-gradient(135deg, rgba(216, 185, 104, 0.08), rgba(68, 155, 119, 0.16)),
    url("hero-majestic-v2.png") center 58% / cover;
}

.showcase-slide__media--placeholder::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 31, 22, 0.2), rgba(4, 31, 22, 0.72));
}

.showcase-slide__media--placeholder span {
  position: absolute;
  z-index: 1;
  right: 42px;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.25);
  font-family: Georgia, serif;
  font-size: 104px;
  line-height: 1;
}

.showcase-slide__copy {
  display: flex;
  padding: 54px 54px 70px;
  flex-direction: column;
  justify-content: center;
}

.showcase-slide__copy > p {
  margin: 0 0 17px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.showcase-slide__copy h3 {
  max-width: 460px;
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(32px, 3.1vw, 48px);
  line-height: 1.16;
}

.showcase-slide__status {
  width: fit-content;
  margin: 22px 0 17px;
  padding: 5px 9px;
  color: #dce9e2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.showcase-slide__copy > span:not(.showcase-slide__provided) {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.showcase-slide__copy > a,
.showcase-slide__provided {
  margin-top: 26px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.showcase-slide__copy > a b {
  margin-left: 12px;
}

.showcase-carousel__controls {
  position: absolute;
  z-index: 3;
  right: 36px;
  bottom: 26px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.showcase-carousel__controls > button {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
}

.showcase-carousel__dots {
  display: flex;
  gap: 8px;
}

.showcase-carousel__dots button {
  width: 18px;
  height: 3px;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  border: 0;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.showcase-carousel__dots button.active {
  width: 34px;
  background: var(--gold);
}

.portal-news__items > a {
  display: grid;
  grid-template-columns: 47px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.portal-news__items time {
  display: grid;
  align-content: start;
  color: var(--gold);
}

.portal-news__items time b {
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1;
}

.portal-news__items time small {
  margin-top: 5px;
  color: #8e9891;
  font-size: 9px;
}

.portal-news__items > a > span {
  display: grid;
}

.portal-news__items strong {
  color: var(--green-950);
  font-size: 13px;
  line-height: 1.5;
}

.portal-news__items > a > span small {
  margin-top: 5px;
  color: #8a958e;
  font-size: 10px;
}

.portal-service-grid a:last-child {
  grid-column: 1 / -1;
  min-height: 92px;
}

.portal-crop-nav {
  grid-template-columns: repeat(4, 1fr);
  min-height: 184px;
}

.portal-crop-nav > div,
.portal-crop-nav > a {
  min-height: 92px;
}

/* v4.2: verified workplace imagery and headquarters presentation */
.environment-section {
  overflow: hidden;
}

.environment-heading {
  align-items: end;
}

.office-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.68fr);
  grid-template-rows: repeat(3, 228px);
  gap: 12px;
  padding: 12px;
  background: #0b2119;
  box-shadow: 0 34px 90px rgba(10, 34, 25, 0.18);
}

.office-gallery figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #10271f;
}

.office-gallery__hero {
  grid-row: 1 / 4;
}

.office-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.office-gallery__hero img {
  object-position: 50% 48%;
}

.office-gallery figure:hover img {
  transform: scale(1.018);
}

.office-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 40px 22px 18px;
  color: #fff;
  background: linear-gradient(transparent, rgba(3, 20, 13, 0.8));
}

.office-gallery figcaption > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 24px;
}

.office-gallery figcaption div {
  display: grid;
  gap: 2px;
}

.office-gallery figcaption strong {
  font-size: 13px;
  letter-spacing: 0.06em;
}

.office-gallery figcaption small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.environment-facts {
  display: grid;
  grid-template-columns: 0.9fr 0.78fr 1.12fr;
  margin-top: 12px;
  background: #fff;
  border: 1px solid var(--line);
}

.environment-facts > article {
  min-height: 245px;
  padding: 40px;
  border-right: 1px solid var(--line);
}

.environment-facts > article > span,
.environment-facts__image div span {
  color: var(--green-700);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.environment-facts h3 {
  margin: 22px 0 14px;
  color: var(--green-950);
  font-family: "Songti SC", "STSong", serif;
  font-size: 25px;
}

.environment-facts p {
  margin: 0;
  color: #44554c;
  font-size: 13px;
  line-height: 1.9;
}

.environment-facts article > small {
  display: block;
  margin-top: 24px;
  color: #8b968f;
  font-size: 10px;
}

.environment-facts__image {
  position: relative;
  padding: 0 !important;
  overflow: hidden;
  border-right: 0 !important;
}

.environment-facts__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(4, 26, 18, 0.04), rgba(4, 26, 18, 0.78));
}

.environment-facts__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.environment-facts__image div {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: grid;
  gap: 8px;
}

.environment-facts__image div span {
  color: var(--gold);
}

.environment-facts__image div strong {
  color: #fff;
  font-family: "Songti SC", "STSong", serif;
  font-size: 24px;
}

.location-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
}

.location-feature__visual {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: #0b2119;
  box-shadow: 0 32px 82px rgba(5, 28, 19, 0.22);
}

.location-feature__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, rgba(3, 24, 17, 0.03), rgba(3, 24, 17, 0.32));
}

.location-feature__visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.location-feature__visual figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(3, 23, 16, 0.74);
  font-size: 10px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.location-feature__copy h2 {
  font-size: clamp(42px, 4.6vw, 66px);
}

.location-address {
  display: grid;
  gap: 12px;
  margin: 34px 0 20px;
  padding: 28px 0 28px 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 3px solid var(--gold);
}

.location-address span {
  color: var(--green-700);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.location-address strong {
  color: var(--green-950);
  font-size: 15px;
  line-height: 1.85;
}

@media (max-width: 980px) {
  .office-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 410px 235px;
  }

  .office-gallery__hero {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .office-gallery figure:last-child {
    display: none;
  }

  .environment-facts {
    grid-template-columns: 1fr 1fr;
  }

  .environment-facts__image {
    grid-column: 1 / -1;
    min-height: 330px !important;
  }

  .location-feature {
    grid-template-columns: 1fr;
  }

  .location-feature__visual,
  .location-feature__visual img {
    min-height: 0;
    height: 470px;
  }
}

@media (max-width: 680px) {
  .office-gallery {
    display: block;
    padding: 7px;
  }

  .office-gallery figure {
    height: 260px;
    margin-bottom: 7px;
  }

  .office-gallery figure:last-child {
    display: block;
    margin-bottom: 0;
  }

  .office-gallery__hero {
    height: 330px !important;
  }

  .environment-facts {
    grid-template-columns: 1fr;
  }

  .environment-facts > article {
    min-height: 0;
    padding: 32px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .environment-facts__image {
    grid-column: auto;
    height: 280px;
  }

  .location-feature__visual,
  .location-feature__visual img {
    height: 330px;
  }
}

.portal-crop-nav > div {
  grid-column: auto;
}

.footer-col--crops {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
}

.footer-col--crops h3 {
  grid-column: 1 / -1;
}

.mascot-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  min-height: 480px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(130deg, #06291d, #10503a);
  box-shadow: var(--shadow-lg);
}

.mascot-panel__art {
  position: relative;
  display: grid;
  min-height: 480px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 48%, rgba(115, 231, 224, 0.22), transparent 42%);
  place-items: center;
}

.mascot-panel__art img {
  position: relative;
  z-index: 1;
  width: min(56%, 310px);
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.28));
}

.mascot-panel__copy {
  display: flex;
  padding: 64px;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.mascot-panel__copy h2 {
  margin: 0 0 20px;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.12;
}

.mascot-panel__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.mascot-panel__copy small {
  margin-top: 24px;
  color: var(--gold);
  letter-spacing: 0.1em;
}

@media (max-width: 980px) {
  .company-showcase__heading,
  .showcase-slide,
  .mascot-panel {
    grid-template-columns: 1fr;
  }

  .company-showcase__heading {
    gap: 18px;
  }

  .showcase-slide__media,
  .mascot-panel__art {
    min-height: 390px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .showcase-slide__copy {
    min-height: 330px;
  }

  .portal-crop-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .portal-crop-nav > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .company-showcase {
    padding: 54px 0 60px;
  }

  .showcase-slide__media,
  .mascot-panel__art {
    min-height: 330px;
  }

  .showcase-slide__media--image img,
  .mascot-panel__art img {
    width: min(58%, 245px);
    max-height: 310px;
  }

  .showcase-slide__copy,
  .mascot-panel__copy {
    min-height: 345px;
    padding: 38px 24px 72px;
  }

  .showcase-carousel__controls {
    right: 22px;
    bottom: 23px;
  }

  .portal-service-grid a:last-child {
    grid-column: auto;
  }

  .portal-crop-nav {
    grid-template-columns: 1fr;
  }

  .portal-crop-nav > div {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bulletin,
  .portal-news__items,
  .showcase-carousel__viewport {
    transition: none;
  }
}

/* 2026 official brochure and brand assets */
.brand--official {
  gap: 14px;
}

.brand--official > img {
  width: 220px;
  height: auto;
  padding: 7px 10px;
  background: #fff;
  border: 1px solid rgba(11, 41, 28, 0.08);
}

.brand-tagline {
  color: #78847d;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.15em;
}

.portal-home .brand--official > img {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.brand--official-footer > img {
  width: 190px;
  border: 0;
}

.brochure-profile {
  margin: 0;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.brochure-profile img {
  width: 100%;
  max-height: 750px;
  object-fit: contain;
  background: #fff;
}

.brochure-profile figcaption {
  padding-top: 12px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.profile-values__logo {
  width: min(100%, 420px);
  margin-bottom: 52px;
  padding: 16px 20px;
  background: #fff;
}

.profile-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.profile-values__grid article {
  min-height: 230px;
  padding: 34px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.profile-values__grid span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.profile-values__grid h3 {
  margin: 52px 0 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: 24px;
  line-height: 1.55;
}

.catalog-hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 30, 20, 0.96), rgba(8, 59, 39, 0.84)),
    url("hero-majestic-v2.png") center 42% / cover;
}

.catalog-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.65fr);
  gap: 80px;
  align-items: center;
  padding: 88px 0;
}

.catalog-hero .breadcrumbs {
  margin-bottom: 64px;
  color: rgba(255, 255, 255, 0.55);
}

.catalog-hero .breadcrumbs a:hover {
  color: var(--gold);
}

.catalog-hero h1 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(58px, 7vw, 94px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.catalog-hero__copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.catalog-hero__facts {
  display: flex;
  gap: 28px;
  margin-top: 46px;
}

.catalog-hero__facts span {
  display: grid;
  color: rgba(255, 255, 255, 0.57);
  font-size: 11px;
}

.catalog-hero__facts b {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1.2;
}

.catalog-hero__mark {
  padding: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.catalog-hero__mark small {
  display: block;
  margin-top: 22px;
  color: #718078;
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.08em;
}

.catalog-notice {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  background: #fff;
}

.catalog-notice strong {
  color: var(--green-800);
  font-size: 18px;
}

.catalog-notice p {
  margin: 0;
  color: var(--muted);
}

.catalog-chip-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.catalog-chip-nav a {
  min-height: 106px;
  display: grid;
  align-content: center;
  padding: 18px 20px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, background 0.2s ease;
}

.catalog-chip-nav a:hover {
  color: #fff;
  background: var(--green-800);
}

.catalog-chip-nav span {
  color: var(--green-600);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.catalog-chip-nav a:hover span {
  color: var(--gold);
}

.catalog-chip-nav strong {
  margin-top: 6px;
  font-size: 14px;
}

.catalog-library {
  padding: 8px 0 110px;
  background: #e9e4d8;
}

.catalog-section {
  padding: 82px 0 18px;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.catalog-section__head {
  display: flex;
  gap: 30px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 3px solid var(--green-700);
}

.catalog-section--orange .catalog-section__head,
.catalog-section--gold .catalog-section__head {
  border-color: #ee8a00;
}

.catalog-section--red .catalog-section__head {
  border-color: #c8332d;
}

.catalog-section--magenta .catalog-section__head {
  border-color: #cb2781;
}

.catalog-section--blue .catalog-section__head {
  border-color: #2f7897;
}

.catalog-section__head span {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.catalog-section__head h2 {
  margin: 8px 0 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.18;
}

.catalog-section__head p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.catalog-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.catalog-page {
  padding: 0;
  overflow: hidden;
  text-align: left;
  background: #fff;
  border: 0;
  box-shadow: 0 10px 28px rgba(33, 42, 35, 0.08);
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalog-page:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px rgba(27, 45, 34, 0.16);
}

.catalog-page img {
  width: 100%;
  aspect-ratio: 0.735 / 1;
  object-fit: cover;
  background: #fff;
}

.catalog-page > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  color: #78847d;
  font-size: 10px;
}

.catalog-page > span b {
  color: var(--green-800);
  font-family: Georgia, serif;
  font-size: 15px;
}

.catalog-dialog {
  width: min(92vw, 1080px);
  max-width: none;
  max-height: 94vh;
  padding: 18px;
  overflow: auto;
  background: #111a15;
  border: 0;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.5);
}

.catalog-dialog::backdrop {
  background: rgba(3, 18, 11, 0.86);
  backdrop-filter: blur(8px);
}

.catalog-dialog > button {
  position: sticky;
  top: 0;
  z-index: 2;
  float: right;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--green-700);
  border: 0;
  cursor: pointer;
}

.catalog-dialog figure {
  margin: 0;
}

.catalog-dialog img {
  width: min(100%, 880px);
  max-height: 86vh;
  margin: 0 auto;
  object-fit: contain;
  background: #fff;
}

.catalog-dialog figcaption {
  padding: 12px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  text-align: center;
}

.catalog-promo__grid,
.crop-catalog-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 68px;
  align-items: center;
}

.catalog-promo h2,
.crop-catalog-lead h2,
.catalog-availability h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.12;
}

.catalog-promo p {
  color: rgba(255, 255, 255, 0.7);
}

.catalog-promo .button,
.crop-catalog-lead .button,
.catalog-availability .button {
  margin-top: 24px;
}

.catalog-promo__covers,
.crop-catalog-covers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: end;
}

.catalog-promo__covers img,
.crop-catalog-covers img {
  width: 100%;
  background: #fff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.catalog-promo__covers img:nth-child(2) {
  transform: translateY(-34px);
}

.crop-catalog-lead > div:first-child > span,
.catalog-availability > span {
  display: block;
  margin-bottom: 18px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.crop-catalog-lead p,
.catalog-availability p {
  color: var(--muted);
}

.crop-catalog-covers {
  grid-template-columns: repeat(2, 1fr);
}

.crop-catalog-covers img:first-child {
  transform: translateY(30px);
}

.catalog-availability {
  max-width: 900px;
  padding: 58px;
  background: #fff;
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 1080px) {
  .profile-values__grid,
  .catalog-page-grid,
  .catalog-chip-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-hero__inner,
  .catalog-promo__grid,
  .crop-catalog-lead {
    grid-template-columns: 1fr;
  }

  .catalog-hero__mark {
    max-width: 500px;
  }
}

@media (max-width: 680px) {
  .brand--official > img {
    width: 174px;
    padding: 5px 7px;
  }

  .brand-tagline {
    display: none;
  }

  .profile-values__grid,
  .catalog-page-grid,
  .catalog-chip-nav,
  .catalog-notice {
    grid-template-columns: 1fr;
  }

  .catalog-hero {
    min-height: 0;
  }

  .catalog-hero__inner {
    gap: 44px;
    padding: 64px 0;
  }

  .catalog-hero .breadcrumbs {
    margin-bottom: 38px;
  }

  .catalog-hero h1 {
    font-size: 50px;
  }

  .catalog-hero__facts {
    gap: 16px;
    flex-wrap: wrap;
  }

  .catalog-section__head {
    display: block;
  }

  .catalog-section__head p {
    margin-top: 12px;
  }

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

  .crop-catalog-covers {
    gap: 8px;
  }

  .catalog-availability {
    padding: 34px 24px;
  }
}
