:root {
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --text: #212934;
  --muted: #6f7f90;
  --line: #e4ebf2;
  --brand: #18a66f;
  --brand-deep: #08744f;
  --accent: #eb8c2c;
  --blue: #1848c8;
  --shadow: 0 18px 40px rgba(31, 52, 88, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", "Microsoft YaHei UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

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

.site-shell {
  overflow: clip;
}

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

.section {
  padding: 96px 0;
  scroll-margin-top: 104px;
}

.topbar {
  background: #f7f7f7;
  border-bottom: 1px solid #eceef1;
}

.topbar-inner,
.header-inner,
.footer-inner,
.consult-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-inner {
  min-height: 36px;
  color: #7d8793;
  font-size: 13px;
}

.topbar-inner p {
  margin: 0;
}

.topbar-inner a {
  color: var(--accent);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 60px;
  height: 60px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #33c088 0%, #bdf6dc 100%);
  color: #0b5a3d;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(24, 166, 111, 0.16);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-copy small {
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #687484;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  color: #333a44;
  font-size: 16px;
  font-weight: 500;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hotline {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.hotline span {
  font-size: 12px;
  color: #6f7b89;
}

.hotline strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 42px;
  line-height: 1;
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: #2d3947;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 220ms ease;
}

.hero {
  padding: 0;
  background: #ffffff;
}

.hero-banner {
  --sky-start: #9bc6ff;
  --sky-end: #f7d5d2;
  --sea-start: #85b4ea;
  --sea-end: #4b80c9;
  --ship-start: #f39b59;
  --ship-end: #d65a43;
  --crane-main: #d34c35;
  --crane-support: #7d9dca;
  --crane-arm-a: #f7b14c;
  --crane-arm-b: #f07f33;
  --container-a: #466cae;
  --container-b: #db6d4a;
  --container-c: #5c7d92;
  --container-d: #ddb26a;
  position: relative;
  width: 100%;
  min-height: calc(100vh - 124px);
  max-height: 920px;
  overflow: hidden;
  background-color: #0f2740;
  background-image: linear-gradient(180deg, rgba(8, 24, 40, 0.16) 0%, rgba(8, 24, 40, 0.56) 100%), url("资料/bg1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-banner[data-hero-variant="1"] {
  background-image: linear-gradient(180deg, rgba(8, 24, 40, 0.16) 0%, rgba(8, 24, 40, 0.56) 100%), url("资料/bg2.jpg");
}

.hero-banner[data-hero-variant="2"] {
  background-image: linear-gradient(180deg, rgba(8, 24, 40, 0.16) 0%, rgba(8, 24, 40, 0.56) 100%), url("资料/bg3.jpg");
}

.hero-banner[data-hero-variant="3"] {
  background-image: linear-gradient(180deg, rgba(8, 24, 40, 0.16) 0%, rgba(8, 24, 40, 0.56) 100%), url("资料/bg4.jpg");
}

.hero-banner[data-hero-variant="4"] {
  background-image: linear-gradient(180deg, rgba(8, 24, 40, 0.16) 0%, rgba(8, 24, 40, 0.56) 100%), url("资料/bg5.jpg");
}

.hero-art {
  display: none;
}

.hero-label {
  position: absolute;
  left: 50%;
  bottom: 72px;
  transform: translateX(-50%);
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #243243;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-50%);
  transition: background 200ms ease, transform 200ms ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.48);
  transform: translateY(-50%) scale(1.04);
}

.hero-arrow span {
  font-size: 38px;
  line-height: 1;
}

.hero-arrow-prev {
  left: 18px;
}

.hero-arrow-next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
}

.hero-dot.is-active {
  background: #ffffff;
}

.section-kicker,
.section-heading p,
.news-card span {
  margin: 0;
}

.section-kicker {
  color: var(--blue);
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 46px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.intro-copy h1,
.consult-copy h2 {
  margin: 14px 0 16px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-heading h2 {
  font-size: clamp(34px, 4.6vw, 56px);
}

.intro-copy h1,
.consult-copy h2 {
  font-size: clamp(36px, 4.8vw, 62px);
}

.section-heading p,
.intro-copy p,
.value-card p,
.service-point span,
.advantage-item p,
.news-card p,
.consult-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.9;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.95fr);
  gap: 50px;
  align-items: center;
}

.intro-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.intro-meta article,
.value-card,
.service-point,
.advantage-item,
.news-card {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.intro-meta article {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  text-align: center;
}

.intro-meta strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Rajdhani", sans-serif;
  font-size: 38px;
  color: var(--blue);
}

.intro-meta span {
  font-size: 13px;
  color: #738192;
}

.intro-media {
  min-width: 0;
}

.media-card {
  position: relative;
  min-height: 560px;
  padding: 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, #f5f9ff, #e4edfb);
  border: 1px solid #dce5f4;
  box-shadow: var(--shadow);
}

.media-photo {
  position: relative;
  height: 100%;
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #d3e7ff 0%, #b8d4f5 42%, #6d98cf 42%, #4870b1 58%, #f6bb71 58%, #d17345 100%);
}

.media-sky,
.media-water,
.media-ship,
.media-stacks,
.media-crane {
  position: absolute;
}

.media-sky {
  inset: 0 0 55% 0;
  background: radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.8), transparent 34%);
}

.media-water {
  left: 0;
  right: 0;
  top: 48%;
  height: 18%;
  background: linear-gradient(180deg, rgba(86, 134, 194, 0.2), rgba(50, 94, 164, 0.55));
}

.media-crane {
  width: 14px;
  background: #d65b41;
  border-radius: 8px;
}

.media-crane::before,
.media-crane::after {
  content: "";
  position: absolute;
  left: 6px;
  width: 88px;
  height: 0;
  border-top: 16px solid #f3ac49;
  border-right: 46px solid transparent;
}

.media-crane::after {
  top: 64px;
  border-top-color: #ee8338;
  border-right-width: 58px;
}

.crane-a {
  left: 72px;
  top: 204px;
  height: 200px;
}

.crane-b {
  left: 286px;
  top: 160px;
  height: 252px;
}

.crane-c {
  right: 82px;
  top: 190px;
  height: 220px;
}

.media-ship {
  left: 142px;
  right: 110px;
  bottom: 126px;
  height: 110px;
  border-radius: 18px 18px 28px 28px;
  background: linear-gradient(135deg, #f09a57, #cf5c45);
  transform: skewX(-10deg);
}

.media-ship::before {
  content: "";
  position: absolute;
  left: 120px;
  top: -48px;
  width: 118px;
  height: 48px;
  border-radius: 12px;
  background: #f6f8fc;
}

.media-stacks {
  left: 0;
  right: 0;
  bottom: 0;
  height: 170px;
  background:
    linear-gradient(90deg, #4b6aa5 0 6%, transparent 6% 8%, #df764b 8% 15%, transparent 15% 17%, #6f8299 17% 23%, transparent 23% 25%, #e5bc73 25% 32%, transparent 32% 34%, #4b6aa5 34% 41%, transparent 41% 43%, #df764b 43% 51%, transparent 51% 53%, #6f8299 53% 60%, transparent 60% 62%, #e5bc73 62% 70%, transparent 70% 72%, #4b6aa5 72% 79%, transparent 79% 81%, #df764b 81% 88%, transparent 88% 90%, #6f8299 90% 100%),
    repeating-linear-gradient(180deg, transparent 0 18px, rgba(255, 255, 255, 0.12) 18px 20px);
}

.media-note {
  position: absolute;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 26px rgba(42, 61, 94, 0.12);
}

.media-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.media-note strong {
  display: block;
  line-height: 1.6;
}

.media-note-primary {
  left: 30px;
  bottom: 30px;
  max-width: 240px;
}

.media-note-secondary {
  right: 30px;
  top: 32px;
  max-width: 248px;
}

.values {
  background: var(--bg-soft);
}

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

.value-card,
.news-card {
  padding: 30px;
  border-radius: var(--radius-md);
}

.value-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #e7f5ef;
  color: var(--brand-deep);
  font-family: "Rajdhani", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.value-card h3,
.advantage-item h3,
.news-card h3,
.service-point strong {
  margin: 16px 0 10px;
}

.services {
  background: #ffffff;
}

.service-stage {
  position: relative;
  min-height: 640px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fbff, #f2f7ff);
  border: 1px solid #dfebfb;
  overflow: hidden;
}

.service-map {
  width: 100%;
  height: 100%;
  min-height: 640px;
}

.service-point {
  position: absolute;
  width: 260px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
}

.point-a {
  left: 64px;
  top: 76px;
}

.point-b {
  right: 84px;
  top: 92px;
}

.point-c {
  left: 120px;
  bottom: 92px;
}

.point-d {
  right: 128px;
  bottom: 84px;
}

.point-e {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.stats-strip {
  position: relative;
  padding: 48px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.12) 0 2px, transparent 3px) 0 0 / 20px 20px,
    linear-gradient(90deg, #1647c8, #1f56d4);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.stat-icon {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.54);
  border-radius: 8px;
  opacity: 0.7;
}

.metric-value {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(52px, 6vw, 70px);
  line-height: 1;
}

.stat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.process {
  background: #ffffff;
}

.process-wheel {
  position: relative;
  width: min(820px, 100%);
  height: 820px;
  margin: 0 auto;
}

.wheel-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.wheel-ring.outer {
  width: 520px;
  height: 520px;
  border: 36px solid #241e1e;
}

.wheel-ring.inner {
  width: 444px;
  height: 444px;
  border: 6px dotted #f1eeb8;
}

.wheel-node {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #f5efb6;
}

.wheel-node.node-top {
  left: 50%;
  top: 142px;
  transform: translateX(-50%);
  background: #e41616;
}

.wheel-node.node-right-top {
  right: 168px;
  top: 282px;
}

.wheel-node.node-right-bottom {
  right: 192px;
  bottom: 254px;
}

.wheel-node.node-bottom {
  left: 50%;
  bottom: 146px;
  transform: translateX(-50%);
}

.wheel-node.node-left-bottom {
  left: 194px;
  bottom: 254px;
}

.wheel-node.node-left-top {
  left: 170px;
  top: 282px;
}

.wheel-step {
  position: absolute;
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.wheel-step strong {
  font-size: 26px;
  letter-spacing: 0.18em;
}

.wheel-step span {
  color: var(--muted);
  font-size: 14px;
}

.step-top {
  left: 50%;
  top: 46px;
  transform: translateX(-50%);
}

.step-right-top {
  right: 18px;
  top: 244px;
}

.step-right-bottom {
  right: 12px;
  bottom: 206px;
}

.step-bottom {
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
}

.step-left-bottom {
  left: 20px;
  bottom: 206px;
}

.step-left-top {
  left: 22px;
  top: 244px;
}

.wheel-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 360px;
  height: 360px;
  overflow: hidden;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 36px rgba(21, 54, 98, 0.14);
}

.wheel-art {
  width: 100%;
  height: 100%;
}

.advantages {
  background: var(--bg-soft);
}

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

.advantage-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 26px 28px;
  border-radius: var(--radius-md);
}

.advantage-item span {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: #edf4ff;
  color: var(--blue);
  font-family: "Rajdhani", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.insights {
  background: #ffffff;
}

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

.news-card span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.news-cover {
  height: 170px;
  margin: -30px -30px 24px;
  border-radius: 16px 16px 0 0;
}

.cover-blue {
  background: linear-gradient(135deg, #d8ebff, #5d92e7);
}

.cover-orange {
  background: linear-gradient(135deg, #ffe3b8, #ef8540);
}

.cover-green {
  background: linear-gradient(135deg, #d6f7e7, #26ae7d);
}

.news-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 700;
}

.news-card a::after {
  content: " >";
}

.consult-strip {
  padding: 56px 0;
  background: linear-gradient(135deg, #0f4fcf, #2d77ef);
  color: #ffffff;
}

.consult-copy .section-kicker,
.consult-copy p,
.consult-side span,
.consult-side strong,
.consult-button,
.site-footer strong,
.footer-links a,
.to-top {
  color: inherit;
}

.consult-copy .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.consult-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.consult-side {
  display: grid;
  gap: 18px;
  justify-items: end;
}

.consult-side span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.consult-side strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 34px;
}

.consult-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: #ffffff;
  color: #1848c8;
  font-weight: 800;
}

.site-footer {
  padding: 28px 0 34px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: #283340;
}

.footer-links {
  display: inline-flex;
  gap: 18px;
  color: #566575;
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 15;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #efb85c, #f3d9a6);
  color: #724711;
  box-shadow: 0 12px 28px rgba(25, 45, 76, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 560ms ease var(--delay, 0s), transform 560ms ease var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .intro-layout,
  .values-grid,
  .stats-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-layout {
    grid-template-columns: 1fr;
  }

  .consult-inner,
  .footer-inner {
    flex-wrap: wrap;
  }

  .service-stage {
    min-height: 860px;
  }

  .service-map {
    min-height: 860px;
  }

  .point-a {
    left: 48px;
  }

  .point-b {
    right: 48px;
  }

  .point-c {
    left: 48px;
    bottom: 60px;
  }

  .point-d {
    right: 48px;
    bottom: 60px;
  }

  .hero-label {
    width: min(88%, 520px);
    text-align: center;
  }
}

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

  .main-nav,
  .hotline {
    display: none;
  }

  .site-header.menu-open .main-nav {
    display: grid;
    width: 100%;
    gap: 12px;
    padding-bottom: 18px;
  }

  .site-header.menu-open .hotline {
    display: grid;
    width: 100%;
    justify-items: start;
    padding-bottom: 16px;
  }

  .site-header.menu-open .nav-toggle span:first-child {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .values-grid,
  .stats-grid,
  .news-grid,
  .advantage-list {
    grid-template-columns: 1fr;
  }

  .hotline strong {
    font-size: 34px;
  }

  .service-stage,
  .service-map {
    min-height: 1040px;
  }

  .point-a,
  .point-b,
  .point-c,
  .point-d,
  .point-e {
    left: 50%;
    right: auto;
    width: min(82%, 340px);
    transform: translateX(-50%);
  }

  .point-a {
    top: 34px;
  }

  .point-b {
    top: 194px;
  }

  .point-e {
    top: 354px;
    transform: translate(-50%, 0);
  }

  .point-c {
    top: 514px;
    bottom: auto;
  }

  .point-d {
    top: 674px;
    bottom: auto;
  }

  .process-wheel {
    width: 100%;
    height: 760px;
  }

  .wheel-ring.outer {
    width: 420px;
    height: 420px;
    border-width: 28px;
  }

  .wheel-ring.inner {
    width: 364px;
    height: 364px;
  }

  .wheel-center {
    width: 284px;
    height: 284px;
  }

  .wheel-node.node-top {
    top: 170px;
  }

  .wheel-node.node-right-top {
    right: 178px;
    top: 280px;
  }

  .wheel-node.node-right-bottom {
    right: 188px;
    bottom: 242px;
  }

  .wheel-node.node-bottom {
    bottom: 174px;
  }

  .wheel-node.node-left-bottom {
    left: 188px;
    bottom: 242px;
  }

  .wheel-node.node-left-top {
    left: 178px;
    top: 280px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100vw - 24px, 100%);
  }

  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 74px;
  }

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

  .brand-copy small {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .hero-banner,
  .hero-art {
    min-height: 440px;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-label {
    bottom: 54px;
    padding: 12px 16px;
    font-size: 13px;
  }

  .intro-meta {
    grid-template-columns: 1fr;
  }

  .media-card {
    min-height: 460px;
    padding: 14px;
  }

  .media-photo {
    min-height: 430px;
  }

  .media-note {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .process-wheel {
    height: auto;
    display: grid;
    gap: 18px;
    justify-items: center;
  }

  .wheel-step {
    position: static;
    order: 2;
  }

  .wheel-step strong {
    font-size: 22px;
  }

  .wheel-ring.outer,
  .wheel-ring.inner,
  .wheel-node {
    display: none;
  }

  .wheel-center {
    position: static;
    transform: none;
    width: min(86vw, 280px);
    height: min(86vw, 280px);
    order: 1;
  }

  .consult-side {
    justify-items: start;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .to-top {
    width: 50px;
    height: 50px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}