:root {
  --forest: #1f5d3a;
  --forest-dark: #0f2d22;
  --forest-mid: #2f7447;
  --earth: #7b5a35;
  --earth-dark: #4b3321;
  --sky: #72b8df;
  --amber: #d8a437;
  --orange: #f06b2f;
  --blue: #24c7ff;
  --ivory: #fff8e7;
  --moss: #17241d;
  --muted: #5d6a60;
  --paper: #fffaf0;
  --line: rgba(31, 93, 58, .18);
  --shadow: 0 20px 60px rgba(15, 45, 34, .18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--moss);
  background:
    radial-gradient(circle at top left, rgba(114, 184, 223, .18), transparent 34rem),
    linear-gradient(180deg, #f6f1df 0%, #eef6e7 42%, #fff8e7 100%);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.75;
}

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

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

p {
  margin: 0 0 1rem;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  left: 1rem;
  top: 1rem;
  padding: .7rem 1rem;
  clip: auto;
  color: var(--ivory);
  background: var(--forest-dark);
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 45, 34, .84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 248, 231, .12);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--ivory);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 248, 231, .45);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .2);
  overflow: hidden;
  background: var(--amber);
  flex: 0 0 42px;
}

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

.brand-text {
  font-size: 1.08rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  color: rgba(255, 248, 231, .9);
  padding: .65rem .8rem;
  border-radius: 999px;
  font-size: .95rem;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 248, 231, .14);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 231, .14);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  margin-left: .4rem;
  color: var(--forest-dark);
  background: radial-gradient(circle at 30% 28%, #fff0aa 0 12%, var(--amber) 42%, #f06b2f 100%);
  font-weight: 800;
  border-radius: 999px;
  padding-inline: 1rem;
  box-shadow: 0 12px 28px rgba(240, 107, 47, .22);
}

.link-icon,
.btn-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.45em;
  height: 1.45em;
  border-radius: 50%;
  line-height: 1;
  font-size: .82em;
  font-weight: 900;
}

.link-icon {
  color: rgba(255, 248, 231, .78);
  background: transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.link-icon svg,
.btn-icon svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.link-icon svg path[d*="M5 5h6v6"] {
  fill: none;
}

.site-nav .nav-cta .link-icon,
.btn-primary .btn-icon {
  color: #21170f;
  background: rgba(255, 248, 231, .4);
}

.btn-ghost .btn-icon {
  color: var(--amber);
  background: rgba(255, 248, 231, .1);
}

.site-nav .nav-cta:hover {
  color: var(--forest-dark);
  background: radial-gradient(circle at 30% 28%, #fff3b8 0 12%, #ffc44d 42%, var(--orange) 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(240, 107, 47, .28);
}

.site-nav a:hover .link-icon,
.site-nav a:focus-visible .link-icon,
.quick-links a:hover .link-icon,
.quick-links a:focus-visible .link-icon,
.site-footer a:hover .link-icon,
.site-footer a:focus-visible .link-icon {
  transform: scale(1.12);
  color: var(--forest-dark);
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(255, 248, 231, .18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 248, 231, .24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ivory);
  border-radius: 999px;
  transition: transform .22s ease, opacity .18s ease, margin .22s ease;
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(1) {
  margin-top: 0;
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
  margin-bottom: 0;
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 740px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
  background: var(--forest-dark);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 45, 34, .94) 0%, rgba(15, 45, 34, .74) 44%, rgba(15, 45, 34, .38) 100%),
    linear-gradient(180deg, rgba(15, 45, 34, .18), rgba(15, 45, 34, .92));
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 10rem 0 5.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
  gap: 3rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 .8rem;
  color: var(--amber);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 0 0 1.2rem;
  color: #fffaf0;
  font-size: clamp(1.9rem, 4vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 4px 22px rgba(15, 45, 34, .42);
}

.hero-lead {
  max-width: 740px;
  color: rgba(255, 248, 231, .88);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .82rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  color: #21170f;
  background: radial-gradient(circle at 30% 28%, #fff0aa 0 12%, #ffb347 42%, var(--orange) 100%);
  box-shadow: 0 16px 34px rgba(240, 107, 47, .28);
}

.btn-ghost {
  color: var(--ivory);
  border-color: rgba(255, 248, 231, .42);
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
}

.btn:hover .btn-icon,
.btn:focus-visible .btn-icon {
  transform: scale(1.12);
  box-shadow: 0 0 0 4px rgba(255, 248, 231, .18);
}

.hero-panel {
  display: grid;
  gap: .8rem;
  padding: 1rem;
  border: 1px solid rgba(255, 248, 231, .2);
  border-radius: var(--radius);
  background: rgba(15, 45, 34, .68);
  box-shadow: var(--shadow);
}

.stat {
  padding: .95rem;
  border-radius: var(--radius);
  background: rgba(255, 248, 231, .08);
}

.stat span {
  display: block;
  color: rgba(255, 248, 231, .68);
  font-size: .82rem;
}

.stat strong {
  display: block;
  margin-top: .25rem;
  color: #fff;
  line-height: 1.35;
}

.quick-links {
  width: min(var(--max), calc(100% - 32px));
  margin: -1.8rem auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1rem;
  text-align: center;
  color: var(--forest-dark);
  background: rgba(255, 250, 240, .95);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(15, 45, 34, .12);
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.quick-links .link-icon,
.site-footer .link-icon {
  color: var(--forest);
  background: rgba(31, 93, 58, .08);
}

.quick-links a:hover,
.quick-links a:focus-visible {
  background: #fffdf6;
  box-shadow: 0 18px 40px rgba(15, 45, 34, .16);
  transform: translateY(-2px);
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 5.5rem 0;
}

.section.band {
  width: 100%;
  padding: 5.5rem max(16px, calc((100% - var(--max)) / 2));
  background: linear-gradient(135deg, rgba(31, 93, 58, .08), rgba(216, 164, 55, .16));
}

.split,
.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 3rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 430px minmax(0, 1fr);
}

.section h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 1rem;
  color: var(--forest);
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.22;
  letter-spacing: 0;
}

.section h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: .55rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), var(--orange), var(--sky));
}

.section h3 {
  margin: 0 0 .45rem;
  color: var(--forest-dark);
  line-height: 1.28;
  letter-spacing: 0;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-copy > .section-kicker,
.section-copy > h2 {
  display: block;
  text-align: center;
}

.section-copy > h2 {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.section-head p:not(.section-kicker),
.section-copy p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: .8rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--forest-dark);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6rem;
  width: .7rem;
  height: .7rem;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(216, 164, 55, .2);
}

.media-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 93, 58, .14);
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.media-card.tall img {
  aspect-ratio: 4 / 5;
}

.media-card figcaption {
  padding: .85rem 1rem;
  color: var(--muted);
  font-size: .92rem;
  background: #fffdf6;
}

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

.feature-card,
.guide-list article,
.icon-grid article,
.timeline article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .86);
  box-shadow: 0 12px 34px rgba(15, 45, 34, .08);
}

.feature-card {
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-card div {
  padding: 1.15rem;
}

.feature-card p,
.guide-list p,
.icon-grid p,
.timeline p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: .75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .72);
}

.steps span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--forest-dark);
  background: var(--amber);
  border-radius: 50%;
  font-weight: 900;
}

.steps p {
  grid-column: 2;
  margin-bottom: 0;
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.guide-list article,
.icon-grid article {
  padding: 1.2rem;
}

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

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: .8rem;
  color: var(--forest-dark);
  background: linear-gradient(135deg, var(--sky), var(--amber));
  border-radius: 50%;
  font-weight: 900;
}

.gallery-section {
  padding-bottom: 4rem;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1.1rem;
  align-items: stretch;
}

.gallery-main {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery-main figcaption {
  padding: .85rem 1rem;
  color: var(--forest-dark);
  font-weight: 800;
  background: #fffdf6;
}

.gallery-thumbs {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  gap: .75rem;
}

.gallery-thumb {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: .75rem;
  width: 100%;
  min-height: 78px;
  padding: .55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--forest-dark);
  background: rgba(255, 250, 240, .86);
  box-shadow: 0 10px 24px rgba(15, 45, 34, .08);
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-weight: 800;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
  overflow: hidden;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible,
.gallery-thumb.is-active {
  border-color: rgba(240, 107, 47, .7);
  background: radial-gradient(circle at 14% 50%, rgba(216, 164, 55, .2), #fffaf0 45%);
  box-shadow: 0 14px 30px rgba(15, 45, 34, .14);
  transform: translateY(-1px);
}

.gallery-thumb.is-active {
  outline: 3px solid rgba(240, 107, 47, .16);
}

.gallery-thumb img {
  width: 112px;
  height: 64px;
  border-radius: 4px;
  object-fit: cover;
  overflow: hidden;
}

.gallery-thumb span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-width: 0;
  line-height: 1.35;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
}

.timeline article {
  width: 100%;
  padding: 1.25rem 1.35rem;
}

.timeline time {
  display: inline-block;
  margin-bottom: .75rem;
  padding: .25rem .6rem;
  color: var(--forest-dark);
  background: rgba(216, 164, 55, .35);
  border-radius: 999px;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: .8rem;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  color: var(--forest-dark);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--earth);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  padding: 0 1.2rem 1.1rem;
}

.cta-section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(31, 93, 58, .96), rgba(75, 51, 33, .92)),
    url("img/tu3.webp") center / cover;
  background-blend-mode: multiply;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-section h2 {
  margin: 0 0 .75rem;
  color: var(--ivory);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: 0;
}

.cta-section > div {
  text-align: center;
}

.cta-section p:not(.section-kicker) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 248, 231, .82);
}

.partner-links {
  position: relative;
  overflow: hidden;
  padding: 3.4rem max(16px, calc((100% - var(--max)) / 2));
  text-align: center;
  color: var(--ivory);
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 164, 55, .24), transparent 34rem),
    radial-gradient(circle at 18% 50%, rgba(114, 184, 223, .18), transparent 26rem),
    linear-gradient(135deg, #0f2d22 0%, #1f5d3a 54%, #2b3f2c 100%);
}

.partner-links::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 248, 231, .08), transparent);
  opacity: .55;
}

.partner-kicker {
  position: relative;
  margin: 0 0 .8rem;
  color: var(--sky);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-links h2 {
  position: relative;
  margin: 0 0 1.8rem;
  color: var(--amber);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.partner-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
}

.partner-list a {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-height: 52px;
  padding: .78rem 1.45rem;
  color: var(--ivory);
  background: rgba(255, 248, 231, .12);
  border: 1px solid rgba(255, 248, 231, .2);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 14px 34px rgba(0, 0, 0, .18);
  font-weight: 900;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.partner-list a span {
  width: .72rem;
  height: .72rem;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 5px rgba(114, 184, 223, .14), 0 0 22px rgba(114, 184, 223, .7);
  flex: 0 0 auto;
}

.partner-list a:hover,
.partner-list a:focus-visible {
  transform: translateY(-3px);
  color: #fff;
  background: rgba(255, 248, 231, .18);
  border-color: rgba(216, 164, 55, .55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 20px 44px rgba(0, 0, 0, .22);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem max(16px, calc((100% - var(--max)) / 2));
  color: rgba(255, 248, 231, .78);
  background: var(--forest-dark);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--amber);
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .8rem;
    background: rgba(15, 45, 34, .98);
    border: 1px solid rgba(255, 248, 231, .16);
    border-radius: var(--radius);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: 690px;
  }

  .hero-inner,
  .split,
  .split.reverse,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

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

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

@media (max-width: 680px) {
  .nav-wrap {
    width: min(100% - 24px, var(--max));
  }

  .brand-text {
    font-size: 1rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    width: min(100% - 24px, var(--max));
    padding: 7.5rem 0 3.5rem;
  }

  .hero-actions,
  .cta-section {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .quick-links {
    width: min(100% - 24px, var(--max));
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    width: min(100% - 24px, var(--max));
    padding: 4rem 0;
  }

  .section.band {
    width: 100%;
    padding: 4rem 12px;
  }

  .content-grid,
  .guide-list,
  .icon-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-main img {
    min-height: 0;
    height: auto;
  }

  .gallery-thumbs {
    grid-template-rows: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-thumb {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .gallery-thumb img {
    width: 84px;
    height: 52px;
  }

  .steps article {
    grid-template-columns: 46px 1fr;
  }

  .steps span {
    width: 42px;
    height: 42px;
  }

  .cta-section {
    width: min(100% - 24px, var(--max));
    margin-bottom: 4rem;
    padding: 1.4rem;
  }

  .partner-links {
    padding: 3rem 12px;
  }

  .partner-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
  }

  .partner-list a {
    justify-content: center;
    width: min(100%, 340px);
    margin-inline: auto;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.site-nav a,
.quick-links a,
.btn,
.feature-card,
.guide-list article,
.icon-grid article,
.timeline article,
.faq-list details,
.media-card,
.gallery-main,
.gallery-thumb {
  will-change: transform;
}

.site-nav a,
.quick-links a,
.btn {
  position: relative;
  overflow: hidden;
}

.site-nav a::after,
.quick-links a::after,
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .42) 42%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s ease, opacity .25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.quick-links a:hover::after,
.quick-links a:focus-visible::after,
.btn:hover::after,
.btn:focus-visible::after {
  opacity: 1;
  transform: translateX(120%);
}

.feature-card,
.guide-list article,
.icon-grid article,
.timeline article,
.faq-list details,
.media-card {
  position: relative;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.feature-card::before,
.guide-list article::before,
.icon-grid article::before,
.timeline article::before,
.faq-list details::before,
.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(216, 164, 55, .16), rgba(114, 184, 223, .13));
  transition: opacity .24s ease;
}

.feature-card:hover,
.feature-card:focus-within,
.guide-list article:hover,
.guide-list article:focus-within,
.icon-grid article:hover,
.icon-grid article:focus-within,
.timeline article:hover,
.timeline article:focus-within,
.faq-list details:hover,
.faq-list details:focus-within,
.media-card:hover,
.media-card:focus-within {
  border-color: rgba(31, 93, 58, .34);
  box-shadow: 0 22px 52px rgba(15, 45, 34, .16);
  transform: translateY(-4px);
}

.feature-card:hover::before,
.feature-card:focus-within::before,
.guide-list article:hover::before,
.guide-list article:focus-within::before,
.icon-grid article:hover::before,
.icon-grid article:focus-within::before,
.timeline article:hover::before,
.timeline article:focus-within::before,
.faq-list details:hover::before,
.faq-list details:focus-within::before,
.media-card:hover::before,
.media-card:focus-within::before {
  opacity: 1;
}

.feature-card > *,
.guide-list article > *,
.icon-grid article > *,
.timeline article > *,
.faq-list details > *,
.media-card > * {
  position: relative;
  z-index: 1;
}

.feature-card img,
.media-card img,
.gallery-main img,
.gallery-thumb img {
  transition: transform .45s ease, filter .45s ease;
}

.feature-card:hover img,
.media-card:hover img,
.gallery-main:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img,
.gallery-thumb.is-active img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.06);
}

.icon-grid article:hover .icon,
.icon-grid article:focus-within .icon,
.timeline article:hover time,
.timeline article:focus-within time {
  box-shadow: 0 0 0 6px rgba(216, 164, 55, .2);
  transform: translateY(-1px) scale(1.03);
}

.icon,
.timeline time {
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.faq-list summary {
  transition: color .2s ease, background .2s ease;
}

.faq-list details:hover summary,
.faq-list details:focus-within summary {
  color: var(--forest);
  background: rgba(216, 164, 55, .08);
}

.section h2::after {
  transition: width .28s ease, box-shadow .28s ease;
}

.section:hover h2::after,
.section:focus-within h2::after {
  width: 96px;
  box-shadow: 0 0 18px rgba(240, 107, 47, .28);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
