:root {
  --ink: #17191b;
  --charcoal: #232323;
  --muted: #74706a;
  --line: #e5e0d7;
  --paper: #f8f5ef;
  --white: #fffaf0;
  --gold: #b59a64;
  --gold-deep: #7b673f;
  --shadow: 0 22px 60px rgba(25, 25, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  line-height: 1.58;
}

body.is-intro-playing {
  overflow: hidden;
}

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

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

.intro-loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: #111315;
  transition: opacity 820ms ease, visibility 820ms ease;
}

.intro-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader-visuals,
.loader-dim,
.loader-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.loader-frame {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  filter: saturate(0.86) contrast(1.05);
}

.loader-frame-one {
  animation: loaderFrameOne 4.6s ease both;
}

.loader-frame-two {
  animation: loaderFrameTwo 4.6s ease both;
}

.loader-frame-three {
  animation: loaderFrameThree 4.6s ease both;
}

.loader-dim {
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 250, 240, 0.14), transparent 18%),
    linear-gradient(90deg, rgba(17, 19, 21, 0.82), rgba(17, 19, 21, 0.42), rgba(17, 19, 21, 0.82)),
    linear-gradient(0deg, rgba(17, 19, 21, 0.96), rgba(17, 19, 21, 0.18) 52%, rgba(17, 19, 21, 0.82));
}

.loader-mark {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  animation: loaderLogo 4.6s cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.loader-mark img {
  width: clamp(240px, 26vw, 380px);
  height: auto;
}

.skip-intro {
  position: absolute;
  right: clamp(22px, 4vw, 58px);
  bottom: clamp(22px, 4vw, 50px);
  z-index: 2;
  min-width: 70px;
  min-height: 38px;
  border: 1px solid rgba(255, 250, 240, 0.26);
  color: rgba(255, 250, 240, 0.74);
  background: rgba(17, 19, 21, 0.22);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
}

.skip-intro:hover {
  color: var(--white);
  border-color: rgba(255, 250, 240, 0.5);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(96px, 1fr) auto minmax(96px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 26px clamp(22px, 5vw, 70px);
  color: var(--white);
  transition: background 220ms ease, padding 220ms ease, border-color 220ms ease;
}

body.is-intro-playing .site-header,
body.is-intro-playing .hero-inner {
  opacity: 0;
  transform: translateY(18px);
}

.site-header,
.hero-inner {
  transition:
    opacity 760ms ease,
    transform 760ms ease,
    background 220ms ease,
    padding 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(23, 25, 27, 0.86);
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  justify-self: start;
  width: 112px;
  min-width: 112px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: clamp(22px, 3.2vw, 46px);
  font-size: 14px;
  color: rgba(255, 250, 240, 0.82);
}

.header-spacer {
  justify-self: end;
  min-width: 112px;
}

.nav-links a {
  display: inline-block;
  font-weight: 500;
  transform: scale(1);
  transform-origin: center;
  transition: color 180ms ease, transform 180ms ease, font-weight 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
}

.nav-links a.is-active {
  font-weight: 750;
  transform: scale(1.08);
}

.nav-links.has-active a:not(.is-active) {
  color: rgba(255, 250, 240, 0.56);
}

.hero {
  position: relative;
  --hero-scroll-fade: 1;
  --hero-scroll-progress: 0;
  --hero-paper-fade: 0;
  --hero-subtitle-opacity: 0;
  --hero-subtitle-y: 18px;
  --hero-copy-opacity: 0;
  --hero-copy-y: 22px;
  --hero-actions-opacity: 0;
  --hero-actions-y: 24px;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.company-page .hero {
  min-height: 760px;
  align-items: end;
  background: var(--charcoal);
}

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

.hero-media {
  object-fit: cover;
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.company-page .hero-media {
  opacity: var(--hero-scroll-fade);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 20, 21, 0.86) 0%, rgba(18, 20, 21, 0.62) 42%, rgba(18, 20, 21, 0.18) 100%),
    linear-gradient(0deg, rgba(18, 20, 21, 0.9) 0%, rgba(18, 20, 21, 0) 52%);
}

.company-page .hero::after {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 78%;
  opacity: var(--hero-paper-fade);
  pointer-events: none;
  background:
    linear-gradient(0deg, var(--paper) 0%, rgba(248, 245, 239, 0.96) 18%, rgba(248, 245, 239, 0.58) 54%, rgba(248, 245, 239, 0) 100%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 190px 0 104px;
}

.company-page .hero-inner {
  padding-bottom: clamp(132px, 15vh, 190px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 700;
}

.company-page .hero h1 {
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.08;
}

.hero-subtitle {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--gold);
  font-size: clamp(15px, 1.45vw, 20px);
  font-weight: 700;
  line-height: 1.42;
}

.hero-copy {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(14px, 1.28vw, 16px);
  line-height: 1.58;
}

@media (min-width: 921px) {
  .company-page .hero-copy {
    max-width: 760px;
    line-height: 1.56;
  }
}

@media (min-width: 921px) and (max-height: 820px) {
  .company-page .hero {
    min-height: 700px;
  }

  .company-page .hero-inner {
    padding-bottom: clamp(110px, 14vh, 140px);
  }

  .company-page .hero h1 {
    font-size: clamp(32px, 3.6vw, 48px);
  }

  .company-page .hero-subtitle {
    margin-top: 14px;
  }

  .company-page .hero-actions {
    margin-top: 20px;
  }
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: clamp(24px, 3.2vh, 40px);
  flex-wrap: wrap;
}

.hero-eyebrow,
.hero h1,
.hero-subtitle,
.hero-copy,
.hero-actions,
.page-hero h1,
.page-hero .page-subtitle,
.page-hero p,
.page-main .page-media,
.page-main .content-section,
.page-main .case-section,
.page-main .contact-section {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 820ms cubic-bezier(0.2, 0.72, 0.18, 1),
    transform 820ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

body.is-page-ready .hero-eyebrow,
body.is-page-ready .hero h1,
body.is-page-ready .hero-subtitle,
body.is-page-ready .hero-copy,
body.is-page-ready .hero-actions,
body.is-page-ready .page-hero h1,
body.is-page-ready .page-hero .page-subtitle,
body.is-page-ready .page-hero p,
body.is-page-ready .page-main .page-media,
body.is-page-ready .page-main .content-section,
body.is-page-ready .page-main .case-section,
body.is-page-ready .page-main .contact-section {
  opacity: 1;
  transform: translateY(0);
}

body.is-page-ready .hero h1,
body.is-page-ready .page-hero .page-subtitle {
  transition-delay: 90ms;
}

body.is-page-ready .hero-subtitle {
  transition-delay: 140ms;
}

body.is-page-ready .hero-copy,
body.is-page-ready .page-hero p {
  transition-delay: 210ms;
}

body.is-page-ready .hero-actions,
body.is-page-ready .page-main .page-media,
body.is-page-ready .page-main .content-section,
body.is-page-ready .page-main .case-section,
body.is-page-ready .page-main .contact-section {
  transition-delay: 250ms;
}

body.is-page-ready .company-page .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 390ms;
}

body.is-page-ready .company-page .hero-copy {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 690ms;
}

body.is-page-ready .company-page .hero-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 690ms;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-size: 15px;
}

.primary-action {
  color: var(--ink);
  background: var(--white);
}

.secondary-action {
  color: var(--white);
  border: 1px solid rgba(255, 250, 240, 0.32);
}

.dark-action {
  color: var(--ink);
  border-color: rgba(23, 25, 27, 0.22);
}

section:not(.hero) {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.page-main {
  min-height: 100vh;
  padding-top: 122px;
}

.company-content {
  padding-top: 0;
}

.company-content .page-hero {
  padding-top: clamp(200px, 39vh, 380px);
}

.page-hero {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 46px 0 42px;
}

.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.02;
}

.page-subtitle {
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.1;
}

.page-hero p {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.55;
}

.page-hero .business-hero-copy {
  max-width: none;
  font-size: 14px;
  line-height: 1.45;
}

.outdoor-page-hero .business-hero-copy,
.page-hero:not(.outdoor-page-hero) .business-hero-copy {
  width: max-content;
  max-width: none;
  font-size: 15px;
  line-height: 1.42;
  white-space: nowrap;
}

@media (min-width: 921px) {
  .page-hero .business-hero-copy {
    width: max-content;
    white-space: nowrap;
  }
}

.page-media {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto 84px;
}

.page-media img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.content-section {
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.content-section:first-of-type {
  border-top: 0;
}

.content-section h2 {
  max-width: 820px;
}

.content-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.business-page-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: 42px;
  align-items: start;
}

.outdoor-resource-section .resource-grid {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.engineering-resource-section .resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-bottom-note {
  max-width: none;
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.58;
}

.page-case-block + .page-case-block {
  margin-top: 92px;
  padding-top: 92px;
  border-top: 1px solid var(--line);
}

.intro {
  padding: 82px 0 76px;
}

.intro-grid,
.section-heading,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.12;
  font-weight: 650;
}

.intro-copy p,
.section-heading p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.intro-copy p + p {
  margin-top: 14px;
}

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

.metric-row div {
  min-height: 132px;
  padding: 30px;
  background: rgba(255, 250, 240, 0.58);
}

.metric-row strong {
  display: block;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  color: var(--gold-deep);
}

.metric-row span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.company-position p {
  max-width: 860px;
  font-size: 14px;
  line-height: 1.62;
}

.company-position .page-subtitle,
.company-section-heading .section-kicker,
.company-cta-section .section-kicker {
  display: block;
  margin: 10px 0 0;
  color: var(--gold);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
}

.company-position p + p {
  margin-top: 16px;
}

.company-detail-section {
  padding-top: 68px;
  padding-bottom: 68px;
}

.company-section-heading {
  display: block;
  margin-bottom: 28px;
}

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

.company-reason-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.company-capability-grid article,
.company-reason-grid article {
  min-height: 0;
  padding: 22px;
  background: rgba(255, 250, 240, 0.62);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.company-capability-grid article:hover,
.company-reason-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(179, 142, 79, 0.72);
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 18px 42px rgba(39, 35, 29, 0.08);
}

.capability-index {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-size: 22px;
  line-height: 1;
  font-weight: 750;
}

.company-capability-grid h3,
.company-reason-grid h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.company-capability-grid p,
.company-reason-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.capability-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  background: rgba(238, 232, 220, 0.72);
  border-radius: 999px;
}

.section-support {
  max-width: 680px;
  margin: -8px 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.company-stat-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(238, 232, 220, 0.42);
  border: 1px solid rgba(218, 210, 196, 0.8);
}

.company-stat-grid div {
  min-height: 124px;
  padding: 24px 18px;
  background: rgba(255, 250, 240, 0.72);
}

.company-stat-grid strong {
  display: block;
  color: var(--gold-deep);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1;
}

.company-stat-grid span {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

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

.company-client-grid article {
  min-height: 132px;
  padding: 22px;
  background: rgba(255, 250, 240, 0.62);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.company-client-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(179, 142, 79, 0.72);
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 18px 42px rgba(39, 35, 29, 0.08);
}

.company-client-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.company-client-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.56;
}

.company-cta-section {
  padding-bottom: 96px;
}

.company-cta-card {
  padding: 34px;
  background: rgba(255, 250, 240, 0.62);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.company-cta-card h2 {
  max-width: 760px;
}

.company-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.company-cta-actions .primary-action {
  border: 1px solid rgba(23, 25, 27, 0.28);
}

.business-section,
.case-section,
.process-section {
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 40px;
}

.business-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 7px;
  margin-bottom: 30px;
  background: #eee8dd;
  border: 1px solid var(--line);
}

.tab-button {
  min-width: 136px;
  min-height: 46px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
}

.tab-button.is-active {
  color: var(--white);
  background: var(--ink);
}

.business-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: 36px;
  align-items: start;
}

.panel-copy {
  position: sticky;
  top: 118px;
}

.panel-copy h3 {
  margin: 0;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.16;
}

.panel-copy p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

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

.resource-card,
.case-card,
.process-list article,
.contact-card {
  background: rgba(255, 250, 240, 0.62);
  border: 1px solid var(--line);
}

.resource-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.resource-card img {
  width: 100%;
  aspect-ratio: 1.46;
  object-fit: cover;
}

.resource-body {
  padding: 22px;
}

.resource-body h4,
.case-card h3,
.process-list h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.28;
}

.resource-body p,
.case-card p,
.process-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.price {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
}

.price-note {
  grid-column: 2;
  margin-top: -14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

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

.case-card {
  overflow: hidden;
}

.case-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.case-card div {
  padding: 22px;
}

.process-section h2 {
  max-width: 680px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.process-list article {
  min-height: 214px;
  padding: 28px;
}

.process-list span {
  display: block;
  margin-bottom: 32px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.2;
}

.contact-section {
  --contact-left-inset: clamp(28px, 5vw, 66px);
  padding: 36px 0 88px;
  border-top: 0;
  align-items: stretch;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  padding-left: var(--contact-left-inset);
}

.contact-copy h1,
.contact-copy .page-subtitle,
.contact-info-list {
  padding-left: 0;
  margin-left: 0;
}

.contact-copy h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.02;
}

.contact-copy .page-subtitle {
  margin-top: 8px;
  font-size: 13px;
}

.contact-card {
  padding: 34px;
}

.contact-info-list {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 24px;
  margin-top: 44px;
}

.contact-info-item {
  display: grid;
  gap: 8px;
}

.contact-info-item:last-child {
  margin-top: auto;
}

.contact-info-item h2 {
  color: var(--gold-deep);
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.contact-info-item p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
  white-space: nowrap;
}

.qr-placeholder,
.map-placeholder {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: rgba(116, 112, 106, 0.68);
  background:
    linear-gradient(135deg, rgba(181, 154, 100, 0.08), rgba(255, 250, 240, 0.58)),
    rgba(255, 250, 240, 0.42);
  font-size: 14px;
}

.qr-placeholder {
  width: min(142px, 42vw);
  aspect-ratio: 1;
}

.map-placeholder {
  width: min(340px, 100%);
  min-height: 0;
  aspect-ratio: 1;
  overflow: hidden;
}

.map-link {
  padding: 0;
  text-align: center;
  transition: border-color 180ms ease, color 180ms ease;
}

.map-link:hover {
  color: var(--gold-deep);
  border-color: rgba(123, 103, 63, 0.42);
}

.map-link span {
  display: block;
  line-height: 1.45;
}

.map-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-form {
  display: grid;
  gap: 18px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label span {
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.78);
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}

.lead-form textarea {
  resize: vertical;
  min-height: 116px;
}

.lead-submit {
  width: 100%;
  border: 0;
  margin-top: 4px;
  cursor: pointer;
}

.lead-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(22px, 5vw, 70px);
  color: rgba(255, 250, 240, 0.64);
  background: var(--ink);
  font-size: 13px;
}

@keyframes loaderFrameOne {
  0% {
    opacity: 1;
    transform: scale(1.14);
  }
  34% {
    opacity: 1;
  }
  46% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

@keyframes loaderFrameTwo {
  0%,
  30% {
    opacity: 0;
    transform: scale(1.12);
  }
  42%,
  66% {
    opacity: 1;
  }
  78% {
    opacity: 0;
    transform: scale(1.04);
  }
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@keyframes loaderFrameThree {
  0%,
  62% {
    opacity: 0;
    transform: scale(1.1);
  }
  78%,
  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes loaderLogo {
  0%,
  18% {
    opacity: 0;
    transform: translateY(16px) scale(0.95);
  }
  34%,
  78% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(0.985);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.07) translate3d(-1.8%, 0.8%, 0);
  }
}

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

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

  body.is-intro-playing {
    overflow: auto;
  }

  .intro-loader {
    display: none;
  }

  .hero-eyebrow,
  .hero h1,
  .hero-subtitle,
  .hero-copy,
  .hero-actions,
  .page-hero h1,
  .page-hero .page-subtitle,
  .page-hero p,
  .page-main .page-media,
  .page-main .content-section,
  .page-main .case-section,
  .page-main .contact-section {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
  }

  .brand {
    justify-self: center;
    width: 86px;
    min-width: 86px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13px;
  }

  .header-spacer {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    padding-bottom: 72px;
  }

  .intro-grid,
  .section-heading,
  .business-panel,
  .contact-section,
  .business-page-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-section {
    --contact-left-inset: 0px;
  }

  .contact-info-item:last-child {
    margin-top: 0;
  }

  .contact-info-item p {
    white-space: normal;
  }

  .panel-copy {
    position: static;
  }

  .price-note {
    grid-column: auto;
    margin-top: 0;
  }

  .metric-row,
  .company-stat-grid,
  .company-reason-grid,
  .company-client-grid,
  .case-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media (max-width: 640px) {
  .hero {
    min-height: 680px;
  }

  .page-main {
    padding-top: 146px;
  }

  .page-hero {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .page-hero .business-hero-copy,
  .outdoor-page-hero .business-hero-copy,
  .page-hero:not(.outdoor-page-hero) .business-hero-copy {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(18, 20, 21, 0.88) 0%, rgba(18, 20, 21, 0.62) 100%),
      linear-gradient(0deg, rgba(18, 20, 21, 0.92) 0%, rgba(18, 20, 21, 0) 58%);
  }

  .intro,
  .business-section,
  .case-section,
  .process-section,
  .contact-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .metric-row,
  .company-stat-grid,
  .company-reason-grid,
  .company-client-grid,
  .resource-grid,
  .case-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .company-detail-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .company-capability-grid,
  .company-reason-grid {
    grid-template-columns: 1fr;
  }

  .company-stat-grid div {
    min-height: 106px;
  }

  .outdoor-resource-section .resource-grid {
    grid-template-columns: 1fr;
  }

  .engineering-resource-section .resource-grid {
    grid-template-columns: 1fr;
  }

  .metric-row div {
    min-height: 104px;
  }

  .business-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .loader-mark img {
    width: clamp(210px, 58vw, 260px);
  }

  .tab-button {
    min-width: 0;
    padding: 0 10px;
  }

  .site-footer {
    flex-direction: column;
  }
}
