:root {
  color-scheme: light;
  --ink: #111820;
  --ink-soft: #33404d;
  --muted: #657180;
  --paper: #f4efe7;
  --paper-strong: #fffaf1;
  --line: rgba(17, 24, 32, 0.14);
  --night: #111720;
  --night-2: #1d2430;
  --teal: #46c6bd;
  --teal-deep: #177b78;
  --title: #0f7f7b;
  --title-warm: #d79637;
  --rose: #c95a5f;
  --amber: #f1bd6d;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(17, 24, 32, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 15px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

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

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

p {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--night);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(9, 13, 18, 0.78), rgba(9, 13, 18, 0.16));
  transition: min-height 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(14, 20, 27, 0.94);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.brand:hover,
.footer-brand:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.brand img,
.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 2px;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.22s ease, text-shadow 0.22s ease;
}

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

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
  text-shadow: 0 0 18px rgba(241, 189, 109, 0.38);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav .nav-download {
  padding: 9px 14px;
  color: var(--night);
  background: var(--amber);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(241, 189, 109, 0.2);
}

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

.site-nav .nav-download:hover,
.site-nav .nav-download:focus-visible {
  color: var(--night);
  background: #ffd07c;
  box-shadow: 0 14px 34px rgba(241, 189, 109, 0.34);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(241, 189, 109, 0.7);
  background: rgba(241, 189, 109, 0.14);
  box-shadow: 0 0 0 4px rgba(241, 189, 109, 0.12);
}

.nav-toggle span {
  position: absolute;
  left: 11px;
  width: 20px;
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease, top 0.22s ease;
}

.nav-toggle span:nth-child(1) {
  top: 14px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 28px;
}

.nav-toggle.is-open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 88vh;
  padding: 120px clamp(18px, 5vw, 64px) 46px;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

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

.hero-media {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 11, 16, 0.92) 0%, rgba(8, 11, 16, 0.63) 42%, rgba(8, 11, 16, 0.24) 100%),
    linear-gradient(180deg, rgba(8, 11, 16, 0.12) 0%, rgba(8, 11, 16, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.45fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  width: min(var(--max), 100%);
}

.hero-main {
  min-width: 0;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 0.92rem;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  color: var(--title-warm);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(2.45rem, 4.8vw, 4.65rem);
  line-height: 0.96;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.54);
}

.hero-subtitle {
  width: min(660px, 100%);
  margin-right: auto;
  margin-left: auto;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 1.6vw, 1.1rem);
}

.hero-panel {
  position: relative;
  align-self: center;
  margin-bottom: 42px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 19, 27, 0.74), rgba(13, 19, 27, 0.46));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  text-align: center;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(241, 189, 109, 0.18) 50%, transparent 82%);
  content: "";
  opacity: 0;
  transform: translateX(-55%);
  transition: opacity 0.28s ease, transform 0.62s ease;
  pointer-events: none;
}

.hero-panel:hover {
  border-color: rgba(241, 189, 109, 0.45);
  background: linear-gradient(180deg, rgba(18, 27, 37, 0.82), rgba(16, 24, 34, 0.56));
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.32), 0 0 36px rgba(241, 189, 109, 0.11);
  transform: translateY(-4px);
}

.hero-panel:hover::before {
  opacity: 1;
  transform: translateX(55%);
}

.hero-panel p {
  margin: 0 0 8px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-panel h2 {
  margin: 0;
  color: var(--title-warm);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, serif;
  font-size: 1.38rem;
  line-height: 1.25;
}

.hero-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  display: grid;
  gap: 2px;
  padding-top: 10px;
  border-top: 2px solid rgba(241, 189, 109, 0.68);
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.hero-panel li:hover {
  border-top-color: var(--amber);
  transform: translateY(-2px);
}

.hero-panel strong {
  color: var(--white);
  font-size: 0.94rem;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.2;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 22%, rgba(255, 255, 255, 0.42) 48%, transparent 74%);
  content: "";
  opacity: 0;
  transform: translateX(-115%);
  transition: opacity 0.22s ease, transform 0.55s ease;
}

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

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  transform: translateX(115%);
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  color: var(--night);
  background: var(--amber);
  box-shadow: 0 16px 42px rgba(241, 189, 109, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffd07c;
  box-shadow: 0 18px 46px rgba(241, 189, 109, 0.36);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(241, 189, 109, 0.62);
  background: rgba(255, 255, 255, 0.14);
}

.btn-dark {
  color: var(--white);
  background: var(--night);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: #17232e;
  box-shadow: 0 14px 34px rgba(15, 127, 123, 0.2);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-column: 1 / -1;
  gap: 1px;
  width: min(840px, 100%);
  margin: 30px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-facts div {
  padding: 13px;
  background: rgba(8, 11, 16, 0.42);
  text-align: center;
  transition: background 0.22s ease, transform 0.22s ease;
}

.hero-facts div:hover {
  background: rgba(24, 36, 48, 0.78);
  transform: translateY(-2px);
}

.hero-facts dt {
  margin-bottom: 3px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 700;
}

.section {
  padding: clamp(54px, 7vw, 86px) clamp(18px, 5vw, 64px);
}

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

.band-light {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.88), rgba(244, 239, 231, 0.96)),
    repeating-linear-gradient(90deg, rgba(17, 24, 32, 0.035) 0 1px, transparent 1px 56px);
}

.band-paper {
  background: #f6f1e9;
}

.band-ink {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(70, 198, 189, 0.08), transparent 36%),
    linear-gradient(180deg, var(--night), var(--night-2));
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.5fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: end;
  margin-bottom: 30px;
}

@media (min-width: 981px) {
  .section-copy h2,
  .section-head h2,
  .guide-aside h2,
  .faq-copy h2 {
    text-align: center;
  }

  .section-head {
    display: block;
    text-align: center;
  }

  .section-head h2,
  .section-head p {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
  }

  .section-head p:last-child {
    margin-top: 14px;
  }
}

.section-copy h2,
.section-head h2,
.guide-aside h2,
.faq-copy h2 {
  margin: 0;
  color: var(--title);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(1.48rem, 2.7vw, 2.18rem);
  line-height: 1.16;
}

.band-ink .section-head h2 {
  color: var(--title-warm);
}

.section-copy strong,
.section-head strong,
.guide-aside strong,
.guide-step strong {
  color: var(--title);
  font-weight: 900;
}

.band-ink .section-head strong,
.band-ink .feature-item strong,
.band-ink .timeline-item strong {
  color: var(--amber);
}

.section-head p:last-child,
.section-copy p,
.guide-aside p,
.faq-copy p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.band-ink .section-head p:last-child,
.band-ink .feature-item p,
.band-ink .timeline-item p {
  color: rgba(255, 255, 255, 0.76);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.62fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.section-copy {
  display: grid;
  gap: 15px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.18em;
  color: var(--teal-deep);
  content: "✓";
  font-weight: 900;
}

.feature-figure,
.wide-shot,
.gallery-item {
  margin: 0;
}

.feature-figure img,
.wide-shot img,
.gallery-item img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.32s ease, box-shadow 0.32s ease, filter 0.32s ease;
}

.feature-figure,
.wide-shot,
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
}

.feature-figure:hover img,
.wide-shot:hover img,
.gallery-item:hover img {
  filter: saturate(1.08) contrast(1.04);
  box-shadow: 0 28px 78px rgba(17, 24, 32, 0.26);
  transform: scale(1.025);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

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

.feature-item,
.guide-step,
.timeline-item,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.feature-item:hover,
.guide-step:hover,
.timeline-item:hover,
.faq-list details:hover {
  border-color: rgba(15, 127, 123, 0.34);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(17, 24, 32, 0.12);
  transform: translateY(-3px);
}

.band-ink .feature-item,
.band-ink .timeline-item {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.band-ink .feature-item:hover,
.band-ink .timeline-item:hover {
  border-color: rgba(241, 189, 109, 0.36);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.feature-item {
  padding: 18px;
}

.feature-item h3,
.guide-step h3,
.timeline-item h3 {
  margin: 0 0 10px;
  color: var(--title);
  font-size: 1.06rem;
  line-height: 1.35;
}

.band-ink .feature-item h3,
.band-ink .timeline-item h3 {
  color: var(--title-warm);
}

.feature-item p,
.guide-step p,
.timeline-item p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.wide-shot {
  position: sticky;
  top: 92px;
}

.guide-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.78fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.guide-aside {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 15px;
}

.guide-content {
  display: grid;
  gap: 12px;
}

.guide-step {
  position: relative;
  padding: 20px 20px 20px 72px;
  overflow: hidden;
}

.guide-step span {
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--teal-deep);
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 900;
  transition: background 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.guide-step:hover span {
  background: var(--title-warm);
  box-shadow: 0 10px 28px rgba(215, 150, 55, 0.24);
  transform: scale(1.06);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery-item.large img {
  height: 100%;
  min-height: 360px;
}

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

.timeline-item {
  position: relative;
  padding: 20px;
}

.timeline-item time {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--amber);
  font-weight: 900;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 0.76fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.faq-copy {
  display: grid;
  gap: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

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

.faq-list summary {
  cursor: pointer;
  padding: 17px 20px;
  font-weight: 900;
  list-style: none;
  transition: color 0.22s ease, background 0.22s ease;
}

.faq-list details:hover summary,
.faq-list details[open] summary {
  color: var(--title);
  background: rgba(15, 127, 123, 0.06);
}

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

.faq-list summary::after {
  float: right;
  color: var(--teal-deep);
  content: "+";
  font-size: 1.3rem;
  line-height: 1;
}

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

.faq-list details p {
  padding: 0 20px 18px;
  color: var(--ink-soft);
}

.site-footer {
  padding: 28px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.78);
  background: #0e141b;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  font-weight: 800;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-links a:hover {
  color: var(--amber);
  transform: translateY(-1px);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

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

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

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(14, 20, 27, 0.96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    transform: translateY(-14px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

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

  .site-nav a {
    padding: 13px 10px;
  }

  .site-nav .nav-download {
    display: inline-flex;
    justify-content: center;
    margin-top: 8px;
    padding: 13px 14px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-panel {
    margin-bottom: 0;
  }

  .hero-facts,
  .section-head,
  .intro-grid,
  .feature-layout,
  .guide-grid,
  .faq-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-head {
    text-align: left;
  }

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

  .wide-shot,
  .guide-aside {
    position: static;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding: 96px 18px 28px;
  }

  .hero-media {
    object-position: 60% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 11, 16, 0.9) 0%, rgba(8, 11, 16, 0.56) 100%),
      linear-gradient(180deg, rgba(8, 11, 16, 0.14) 0%, rgba(8, 11, 16, 0.88) 100%);
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

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

  .hero-panel {
    padding: 16px;
  }

  .hero-panel h2 {
    font-size: 1.02rem;
  }

  .hero-panel ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 12px;
  }

  .hero-panel li {
    padding-top: 8px;
  }

  .hero-panel strong {
    font-size: 0.82rem;
  }

  .hero-panel span {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .hero-facts,
  .feature-list,
  .gallery-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 18px;
  }

  .section-copy h2,
  .section-head h2,
  .guide-aside h2,
  .faq-copy h2 {
    font-size: 1.46rem;
  }

  .guide-step {
    padding: 70px 18px 20px;
  }

  .guide-step span {
    left: 20px;
    top: 20px;
  }

  .gallery-item.large img {
    min-height: 0;
  }
}
