.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 430px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(6, 45, 38, .9), rgba(6, 45, 38, .34));
}

.page-hero .section {
  position: relative;
  z-index: 1;
  padding-bottom: 66px;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.12;
}

.page-hero p { max-width: 720px; color: rgba(255, 255, 255, .78); font-size: 19px; }

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

.content-card,
.timeline-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(7, 40, 33, .05);
}

.content-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-700);
  font-size: 18px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

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

.process-list {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.process-list article {
  position: relative;
  padding: 24px 24px 24px 76px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-list article::before {
  position: absolute;
  left: 24px;
  top: 24px;
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  color: var(--green-700);
  font-weight: 900;
}

.case-detail {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: start;
}

.case-detail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.metric-row article {
  padding: 22px;
  background: var(--green-100);
  border-radius: 8px;
}

.metric-row strong {
  display: block;
  color: var(--green-700);
  font-size: 28px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 24px;
  align-items: stretch;
}
.contact-main-card,
.contact-side-card,
.contact-process article,
.audience-card,
.qr-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(7, 40, 33, .05);
}
.contact-main-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: clamp(26px, 4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 45, 38, .96), rgba(12, 42, 35, .82)),
    var(--green-950);
}
.contact-main-card .eyebrow { color: var(--gold-500); }
.contact-main-card h2 { color: var(--white); }
.contact-main-card p { color: rgba(255, 255, 255, .76); }
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.contact-actions .btn.outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .32);
}
.contact-side-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}
.contact-method {
  display: block;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.contact-method span {
  display: block;
  margin-bottom: 6px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
}
.contact-method strong {
  display: block;
  color: var(--green-950);
  font-size: 18px;
  line-height: 1.5;
}
.contact-method address {
  margin: 0;
  color: var(--green-950);
  font-style: normal;
  font-weight: 800;
}
.audience-grid,
.contact-process,
.qr-grid {
  display: grid;
  gap: 18px;
}
.audience-grid { grid-template-columns: repeat(4, 1fr); }
.audience-card { padding: 24px; }
.audience-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-700);
  font-size: 18px;
}
.contact-process { grid-template-columns: repeat(4, 1fr); counter-reset: contact-step; }
.contact-process article {
  position: relative;
  min-height: 210px;
  padding: 26px;
}
.contact-process article::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--green-700);
  border-radius: 8px;
  counter-increment: contact-step;
  content: counter(contact-step, decimal-leading-zero);
  font-weight: 900;
}
.qr-section {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 32px;
  align-items: center;
}
.qr-section-copy p { max-width: 420px; }
.qr-grid { grid-template-columns: repeat(2, minmax(160px, 1fr)); }
.qr-card {
  padding: 18px;
}
.qr-card img {
  width: 100%;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.qr-card strong {
  display: block;
  margin-top: 14px;
  color: var(--green-900);
}
.qr-card p {
  margin-bottom: 0;
  font-size: 14px;
}

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

.article-list article {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-list time {
  color: var(--green-700);
  font-weight: 900;
}

.news-hero,
.article-hero { position: relative; display: grid; align-items: end; overflow: hidden; color: var(--white); background: var(--green-950); isolation: isolate; }
.news-hero { min-height: 560px; }
.article-hero { min-height: 600px; }
.news-hero img,
.article-hero img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.news-hero::after,
.article-hero::after { position: absolute; inset: 0; z-index: -1; content: ""; background: linear-gradient(90deg, rgba(4, 28, 25, .92), rgba(4, 28, 25, .55) 48%, rgba(4, 28, 25, .16)); }
.news-hero-inner,
.article-hero .section { padding-bottom: 72px; }
.news-hero h1,
.article-hero h1 { max-width: 920px; margin-bottom: 18px; font-size: clamp(40px, 6vw, 76px); line-height: 1.12; }
.news-hero p,
.article-hero p { max-width: 760px; color: rgba(255, 255, 255, .8); font-size: 19px; }
.news-hero-tags,
.article-meta,
.news-filter,
.related-news { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.news-hero-tags span,
.article-meta span,
.article-meta time { min-height: 34px; padding: 6px 12px; border: 1px solid rgba(255, 255, 255, .28); border-radius: 999px; background: rgba(255, 255, 255, .1); }
.news-filter { margin-bottom: 30px; padding: 10px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; }
.news-filter a { display: inline-flex; align-items: center; min-height: 44px; padding: 10px 18px; border-radius: 999px; color: var(--green-900); font-weight: 800; }
.news-filter a.active,
.news-filter a:hover { color: var(--white); background: var(--green-700); }
.featured-news { display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: stretch; padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
.featured-news img,
.news-card img { width: 100%; height: 100%; min-height: 270px; object-fit: cover; border-radius: 8px; }
.featured-news div { padding: clamp(20px, 4vw, 48px) clamp(12px, 2vw, 20px); }
.news-label,
.news-card span { color: var(--green-700); font-size: 13px; font-weight: 900; }
.featured-news time,
.news-card time { display: block; margin: 12px 0; color: var(--muted); font-weight: 800; }
.featured-news h2 { font-size: clamp(30px, 4vw, 48px); }
.featured-news strong { color: var(--green-700); }
.news-section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin: 70px 0 24px; }
.news-section-head p { max-width: 440px; }
.news-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { display: grid; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 12px 28px rgba(7, 40, 33, .06); }
.news-card div { padding: 22px; }
.news-card h3 { font-size: 22px; }
.back-link { display: inline-flex; min-height: 44px; margin-bottom: 18px; align-items: center; color: rgba(255, 255, 255, .86); font-weight: 800; }
.back-link::before { content: "←"; margin-right: 8px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 320px; gap: 60px; align-items: start; }
.article-body { font-size: 18px; }
.article-body .lead { color: var(--green-900); font-size: 22px; font-weight: 700; }
.article-body h2 { margin-top: 42px; font-size: 30px; }
.article-body blockquote { margin: 34px 0; padding: 24px; color: var(--green-900); background: var(--gold-100); border-left: 4px solid var(--gold-500); }
.article-aside { position: sticky; top: 92px; display: grid; gap: 18px; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 12px 28px rgba(7, 40, 33, .06); }
.article-aside strong { display: block; margin-bottom: 8px; color: var(--green-700); }
.article-aside .btn { width: 100%; }
.related-news { padding-top: 0; justify-content: space-between; }
.related-news a { flex: 1 1 280px; min-height: 112px; padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; }
.related-news span { color: var(--muted); font-size: 13px; font-weight: 800; }
.related-news strong { display: block; margin-top: 6px; color: var(--green-900); font-size: 18px; }

@media (max-width: 880px) {
  .content-grid,
  .split-layout,
  .case-detail,
  .contact-panel,
  .audience-grid,
  .contact-process,
  .qr-section,
  .metric-row,
  .featured-news,
  .news-card-grid,
  .article-layout { grid-template-columns: 1fr; }
  .article-list article { grid-template-columns: 1fr; }
  .news-hero,
  .article-hero { min-height: 520px; }
  .news-section-head { display: block; }
  .article-aside { position: static; }
}

@media (max-width: 640px) {
  .news-hero,
  .article-hero { min-height: 500px; }
  .news-hero-inner,
  .article-hero .section { padding-bottom: 46px; }
  .news-filter { flex-wrap: wrap; }
  .news-filter a { flex: 1 1 calc(50% - 8px); justify-content: center; }
  .contact-actions .btn,
  .contact-main-card .btn { width: 100%; }
  .qr-grid { grid-template-columns: 1fr; }
  .featured-news { padding: 10px; gap: 16px; }
  .featured-news img,
  .news-card img { min-height: 230px; }
  .article-body { font-size: 17px; }
  .article-body .lead { font-size: 20px; }
  .article-body h2 { font-size: 25px; }
}
