:root {
  --ink: #17201e;
  --muted: #65706c;
  --paper: #ffffff;
  --mist: #f3f5f2;
  --green: #164b3d;
  --green-deep: #0f382f;
  --gold: #c79b42;
  --red: #ad2c2f;
  --line: #dfe5e1;
  --shadow: 0 16px 45px rgba(18, 38, 31, 0.12);
  --max: 1180px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(199, 155, 66, 0.75);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  left: 16px;
  top: -80px;
  padding: 10px 16px;
  background: #fff;
  color: var(--green-deep);
  border: 1px solid var(--gold);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(223, 229, 225, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(199, 155, 66, 0.32);
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: "Songti SC", "STSong", serif;
  font-size: 21px;
  font-weight: 700;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.site-nav {
  display: flex;
  align-items: stretch;
  gap: 30px;
  min-height: var(--header-h);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #46514d;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .menu-toggle span {
  opacity: 0;
}

.nav-open .menu-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .menu-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: min(780px, calc(100svh - var(--header-h)));
  align-items: flex-end;
  color: #fff;
  background: #14241f center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 24, 20, 0.92) 0%, rgba(7, 25, 21, 0.69) 46%, rgba(7, 25, 21, 0.14) 75%, rgba(7, 25, 21, 0.08) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(180deg, transparent, rgba(7, 25, 21, 0.42));
}

.hero-home {
  background-image: url("../images/sections/hero.jpg");
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 72%);
  padding: 92px 0 112px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.85;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--red);
}

.btn-primary:hover {
  background: #8f2225;
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--green-deep);
}

.btn-outline {
  color: var(--green-deep);
  border-color: var(--green-deep);
  background: transparent;
}

.btn-outline:hover {
  color: #fff;
  background: var(--green-deep);
}

.hero-facts {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 35, 29, 0.82);
  backdrop-filter: blur(12px);
}

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

.fact {
  min-height: 94px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.fact:first-child {
  padding-left: 0;
}

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

.fact strong {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.15;
}

.fact span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.section {
  padding: 108px 0;
}

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

.section-muted {
  background: var(--mist);
}

.section-green {
  color: #fff;
  background: var(--green-deep);
}

.section-red {
  color: #fff;
  background: #7f2023;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1.18fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 54px;
}

.section-head h2,
.split-copy h2,
.page-copy h2,
.article-body h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.28;
  letter-spacing: 0;
}

.section-head p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-green .section-head p,
.section-green .lead,
.section-red .lead {
  color: rgba(255, 255, 255, 0.7);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 72px;
  align-items: center;
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.split-media::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 40%;
  height: 45%;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.split-copy .eyebrow {
  margin-bottom: 14px;
}

.split-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
}

.section-green .split-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.clean-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 24px;
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--red);
}

.value-grid,
.program-grid,
.news-grid,
.collab-grid {
  display: grid;
  gap: 24px;
}

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

.value-item {
  padding: 12px 30px 8px 0;
  border-top: 2px solid var(--gold);
}

.value-number {
  display: block;
  margin: 22px 0 34px;
  color: rgba(22, 75, 61, 0.18);
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1;
}

.value-item h3,
.program-card h3,
.news-card h3,
.collab-item h3 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: 24px;
  line-height: 1.4;
}

.value-item p,
.program-card p,
.news-card p,
.collab-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.program-card {
  min-height: 300px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 75, 61, 0.32);
  box-shadow: var(--shadow);
}

.program-card .tag {
  display: inline-block;
  margin-bottom: 64px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.model-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.model-unit {
  padding: 27px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.model-unit:last-child {
  border-right: 0;
}

.model-unit strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 38px;
}

.model-unit span {
  font-size: 14px;
}

.quote-band {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  color: #fff;
  background: #16221f center / cover no-repeat;
}

.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 33, 28, 0.78);
}

.quote-band .container {
  position: relative;
}

.quote-band blockquote {
  max-width: 900px;
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(31px, 5vw, 56px);
  line-height: 1.4;
}

.quote-band p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

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

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.news-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-card:hover img {
  transform: scale(1.025);
}

.news-card-body {
  padding: 28px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

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

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

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

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 700;
}

.faq-question::after {
  content: "+";
  flex: 0 0 28px;
  color: var(--red);
  font-size: 26px;
  line-height: 1;
  text-align: center;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 64px 22px 0;
  color: var(--muted);
}

.faq-answer[hidden] {
  display: none;
}

.cta-band {
  padding: 70px 0;
  color: #fff;
  background: var(--green-deep);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.3;
}

.cta-inner p {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #101815;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.95fr;
  gap: 70px;
  padding: 66px 0 48px;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-family: "Songti SC", "STSong", serif;
  font-size: 22px;
}

.footer-brand span {
  font-size: 12px;
}

.footer-about {
  max-width: 470px;
  margin: 20px 0 0;
  font-size: 14px;
}

.footer-title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.page-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--green-deep) center / cover no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 24, 20, 0.92), rgba(6, 24, 20, 0.42));
}

.page-hero .container {
  position: relative;
  padding-top: 90px;
  padding-bottom: 76px;
}

.page-hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.18;
}

.page-hero p {
  max-width: 670px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.breadcrumb a:hover {
  color: #fff;
}

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

.page-copy > p {
  color: var(--muted);
  font-size: 17px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.timeline-item {
  position: relative;
  padding: 30px 28px 0 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
}

.timeline-item strong {
  display: block;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 28px;
}

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

.step-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
  border: 1px solid var(--line);
}

.step {
  min-height: 225px;
  padding: 28px;
  background: #fff;
}

.step strong {
  display: block;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 34px;
}

.step h3 {
  margin: 32px 0 8px;
  font-size: 19px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.collab-item {
  padding: 28px 28px 34px;
  border-left: 3px solid var(--gold);
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 80px;
  align-items: start;
}

.contact-note {
  padding: 28px;
  border-left: 3px solid var(--gold);
  background: var(--mist);
}

.contact-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-deep);
}

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

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

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

.field label {
  color: #3d4945;
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cfd7d2;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
}

.field input,
.field select {
  height: 50px;
  padding: 0 14px;
}

.field textarea {
  min-height: 142px;
  padding: 13px 14px;
  resize: vertical;
}

.form-status {
  min-height: 30px;
  margin: 14px 0 0;
  color: var(--green);
  font-size: 14px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.filter-button {
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  background: #fff;
}

.filter-button.is-active,
.filter-button:hover {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.article-header {
  padding: 64px 0 44px;
  background: var(--mist);
}

.article-header .meta {
  margin-bottom: 18px;
}

.article-header h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.28;
}

.article-summary {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.article-image {
  width: min(var(--max), calc(100% - 48px));
  margin: 44px auto 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 1fr);
  gap: 80px;
  align-items: start;
}

.article-body {
  color: #34403c;
}

.article-body p,
.article-body li {
  font-size: 17px;
  line-height: 1.95;
}

.article-body h2 {
  margin: 54px 0 18px;
  font-size: 31px;
}

.article-body h3 {
  margin: 32px 0 12px;
  font-size: 21px;
}

.article-aside {
  position: sticky;
  top: 104px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.article-aside strong {
  display: block;
  margin-bottom: 10px;
}

.article-aside a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  font-size: 14px;
}

.article-aside a:hover {
  color: var(--red);
}

.notice {
  margin: 30px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--red);
  background: #f7f3f1;
}

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

.js [data-reveal] {
  opacity: 1;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

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

  .container {
    width: min(var(--max), calc(100% - 36px));
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    min-height: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 18px 28px;
    background: #fff;
    box-shadow: -24px 0 60px rgba(17, 32, 27, 0.16);
    transform: translateX(105%);
    transition: transform 0.25s ease;
  }

  .nav-open .site-nav {
    transform: none;
  }

  .site-nav a {
    min-height: 58px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .hero-content {
    width: 84%;
    padding-bottom: 180px;
  }

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

  .fact {
    min-height: 74px;
    padding: 12px 16px;
  }

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .fact:first-child {
    padding-left: 16px;
  }

  .fact strong {
    font-size: 23px;
  }

  .section-head,
  .split,
  .contact-layout,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split.reverse .split-media {
    order: 0;
  }

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

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

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

  .model-unit:nth-child(3) {
    border-right: 0;
  }

  .model-unit:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .article-aside {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 50px;
  }

  .footer-main > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container,
  .article-image {
    width: calc(100% - 28px);
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

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

  .brand-copy span {
    display: none;
  }

  .hero {
    min-height: 720px;
    background-position: 58% center;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(6, 24, 20, 0.62), rgba(6, 24, 20, 0.94) 72%);
  }

  .hero-content {
    width: 100%;
    padding: 80px 0 188px;
  }

  .hero h1 {
    font-size: 45px;
  }

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

  .hero-actions .btn,
  .section-actions .btn {
    width: 100%;
  }

  .fact {
    padding: 10px 12px;
  }

  .fact:first-child {
    padding-left: 12px;
  }

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

  .fact span {
    font-size: 11px;
  }

  .section {
    padding: 76px 0;
  }

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

  .section-head {
    gap: 20px;
    margin-bottom: 36px;
  }

  .split {
    gap: 34px;
  }

  .split-media::after {
    right: -8px;
    bottom: -8px;
  }

  .value-grid,
  .program-grid,
  .news-grid,
  .collab-grid,
  .timeline,
  .step-list,
  .model-strip,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .value-item {
    padding-right: 0;
  }

  .value-number {
    margin: 18px 0 22px;
  }

  .program-card {
    min-height: 0;
  }

  .program-card .tag {
    margin-bottom: 30px;
  }

  .model-unit,
  .model-unit:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .model-unit:last-child {
    border-bottom: 0;
  }

  .quote-band {
    min-height: 430px;
  }

  .cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-inner .btn {
    width: 100%;
  }

  .footer-main {
    gap: 36px;
  }

  .footer-main > :last-child {
    grid-column: auto;
  }

  .page-hero {
    min-height: 460px;
  }

  .page-hero .container {
    padding-top: 76px;
    padding-bottom: 56px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .article-header {
    padding-top: 46px;
  }

  .article-body p,
  .article-body li {
    font-size: 16px;
  }
}
