/* Zhongjin Times corporate homepage v2 */
:root {
  --ink: #14201d;
  --ink-soft: #4d5b56;
  --forest: #102a25;
  --forest-deep: #0a1b18;
  --forest-mid: #173a33;
  --gold: #c9a466;
  --gold-light: #e2ca9b;
  --ivory: #f3f0e8;
  --paper: #fbfaf6;
  --line: rgba(20, 32, 29, 0.15);
  --line-light: rgba(255, 255, 255, 0.16);
  --white: #fffef9;
  --shell: 1320px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 102px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

::selection {
  color: var(--white);
  background: var(--forest-mid);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell {
  width: min(calc(100% - 80px), var(--shell));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(84px, 7.5vw, 124px);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1500;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: relative;
  z-index: 1000;
  color: var(--ink);
  background: rgba(251, 250, 246, 0.96);
  border-bottom: 1px solid rgba(20, 32, 29, 0.1);
  transition: box-shadow 300ms ease, background 300ms ease;
}

.site-header.is-scrolled {
  position: sticky;
  top: 0;
  background: rgba(251, 250, 246, 0.93);
  box-shadow: 0 18px 50px rgba(13, 31, 27, 0.1);
  backdrop-filter: blur(18px);
}

.utility-bar {
  color: rgba(255, 255, 255, 0.72);
  background: var(--forest-deep);
  font-size: 10px;
  letter-spacing: 0.09em;
}

.utility-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner p {
  margin: 0;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.utility-links a {
  padding-inline: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  transition: color 180ms ease;
}

.utility-links a:hover {
  color: var(--gold-light);
}

.nav-shell {
  min-height: 70px;
  display: grid;
  grid-template-columns: minmax(390px, 0.95fr) minmax(620px, 1.55fr);
  align-items: stretch;
  gap: 20px;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 102, 0.35);
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 9px 26px rgba(68, 49, 19, 0.08);
}

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

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.25;
}

.brand-copy strong {
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 4px;
  color: #7d776c;
  font-size: 6.5px;
  font-weight: 650;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.site-nav > a {
  position: relative;
  min-width: 78px;
  padding: 0 16px;
  display: grid;
  place-items: center;
  color: #4e5854;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 220ms ease, background 220ms ease;
}

.site-nav > a::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 360ms var(--ease);
}

.site-nav > a:hover {
  color: var(--forest);
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.site-nav .nav-contact {
  min-width: 128px;
  margin-left: 12px;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--white);
  background: var(--forest);
}

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

.site-nav .nav-contact:hover {
  color: var(--white);
  background: var(--forest-mid);
}

.site-nav .nav-contact svg,
.button svg,
.text-link svg,
.scenario-text a svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 280ms var(--ease);
}

.site-nav .nav-contact:hover svg,
.button:hover svg,
.text-link:hover svg,
.scenario-text a:hover svg {
  transform: translateX(4px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: var(--ink);
  transition: transform 250ms ease;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100dvh - var(--header-height)));
  isolation: isolate;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.hero-media,
.hero-media video,
.hero-media-fallback,
.hero-shade,
.hero-grid-lines {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
}

.hero-media video {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-fallback {
  z-index: 0;
  background: url("./assets/images/hero-scene-city-v3.webp") center / cover no-repeat;
  transform: scale(1.02);
}

.video-unavailable .hero-media video {
  opacity: 0;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(6, 20, 17, 0.8) 0%, rgba(8, 26, 22, 0.54) 42%, rgba(8, 26, 22, 0.06) 76%),
    linear-gradient(180deg, rgba(6, 17, 15, 0.08) 0%, rgba(6, 17, 15, 0.02) 50%, rgba(6, 17, 15, 0.72) 100%);
}

.hero-grid-lines {
  z-index: 3;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 100% 25%, 12.5% 100%;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.hero::after {
  position: absolute;
  top: 0;
  right: 7%;
  z-index: -1;
  width: 1px;
  height: 76%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(226, 202, 155, 0.62), transparent);
  animation: scan 7s ease-in-out infinite;
}

.hero-inner {
  padding-top: clamp(72px, 10vh, 116px);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.56fr);
  align-items: end;
  gap: clamp(52px, 7vw, 108px);
}

.overline {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #887149;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.overline span {
  width: 36px;
  height: 1px;
  display: inline-block;
  background: currentColor;
}

.overline.light {
  color: var(--gold-light);
}

.hero-copy {
  padding-bottom: 16px;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 4.6vw, 64px);
  font-weight: 520;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.76;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 650;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.button:active {
  transform: scale(0.98);
}

.button-gold {
  color: #1f271f;
  background: var(--gold-light);
}

.button-gold:hover {
  background: #eedab3;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(7, 24, 20, 0.25);
  backdrop-filter: blur(12px);
}

.button-ghost:hover,
.button-outline:hover {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
}

.hero-brief {
  align-self: end;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 30, 25, 0.54);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), 0 30px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px);
}

.hero-brief-head {
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-brief-head > span {
  color: var(--gold-light);
  font-size: 13px;
}

.hero-brief-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  letter-spacing: 0.17em;
}

.hero-brief h2 {
  margin: 22px 0;
  font-size: 20px;
  font-weight: 520;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.brief-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.brief-list article {
  min-height: 76px;
  padding: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  column-gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brief-list article > span {
  grid-row: span 2;
  color: var(--gold);
  font-size: 10px;
}

.brief-list strong {
  font-size: 13px;
}

.brief-list small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.hero-foot {
  position: relative;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 180px)) 1fr;
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stat {
  min-height: 96px;
  padding: 20px 20px 16px 0;
  display: grid;
  align-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stat + .hero-stat {
  padding-left: 28px;
}

.hero-stat strong {
  font-size: 24px;
  font-weight: 560;
  line-height: 1;
}

.hero-stat sup,
.proof sup {
  color: var(--gold-light);
  font-size: 0.44em;
}

.hero-stat span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.hero-location {
  margin: 0 100px 24px auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 2;
  letter-spacing: 0.12em;
  text-align: right;
}

.film-control {
  position: absolute;
  right: max(24px, calc((100vw - min(calc(100vw - 80px), var(--shell))) / 2));
  bottom: 27px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  font-size: 10px;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.film-control em {
  font-style: normal;
}

.pause-icon {
  width: 28px;
  height: 28px;
  display: grid;
  grid-template-columns: repeat(2, 2px);
  place-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.pause-icon i {
  width: 2px;
  height: 8px;
  background: currentColor;
}

.play-icon {
  width: 28px;
  height: 28px;
  display: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.play-icon::after {
  width: 0;
  height: 0;
  margin-left: 2px;
  content: "";
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
}

.film-control.is-paused .pause-icon {
  display: none;
}

.film-control.is-paused .play-icon {
  display: grid;
}

.value-rail {
  min-height: 68px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: rgba(16, 42, 37, 0.9);
  background: var(--gold-light);
  border-block: 1px solid rgba(16, 42, 37, 0.1);
}

.rail-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: marquee 52s linear infinite;
  will-change: transform;
}

.rail-sequence {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.rail-track span {
  padding-inline: 38px;
  font-size: 13px;
  font-weight: 560;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
}

.rail-track i {
  width: 26px;
  height: 1px;
  flex: 0 0 26px;
  background: rgba(16, 42, 37, 0.34);
}

.value-rail:hover .rail-track {
  animation-play-state: paused;
}

.intro {
  position: relative;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(20, 32, 29, 0.05) 50%, transparent calc(50% + 1px)),
    var(--paper);
}

.intro::before {
  position: absolute;
  inset: 36px auto 36px 4.5%;
  width: 1px;
  content: "";
  background: var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.62fr 2.38fr;
  gap: 7vw;
}

.section-kicker strong {
  display: block;
  color: #938b7f;
  font-size: 14px;
  font-weight: 550;
  line-height: 1.75;
  letter-spacing: 0.08em;
}

.intro-main h2,
.matrix-heading h2,
.brand-story-copy h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(32px, 3.3vw, 46px);
  font-weight: 520;
  line-height: 1.28;
  letter-spacing: -0.032em;
}

.intro-copy-grid {
  max-width: 840px;
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.intro-copy-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.corporate-values {
  background: #efefeb;
}

.values-heading {
  max-width: 720px;
  margin: 0 auto clamp(44px, 5vw, 68px);
  text-align: center;
}

.values-heading .overline {
  justify-content: center;
}

.values-heading h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  font-size: clamp(32px, 3.3vw, 46px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.values-heading > p:not(.overline) {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(20, 32, 29, 0.16);
  border-left: 1px solid rgba(20, 32, 29, 0.16);
}

.value-item {
  min-height: 230px;
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid rgba(20, 32, 29, 0.16);
  border-bottom: 1px solid rgba(20, 32, 29, 0.16);
  background: rgba(255, 255, 255, 0.36);
}

.value-item > span {
  color: #8b744d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.value-item h3 {
  margin: 46px 0 16px;
  color: var(--forest);
  font-size: 19px;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.value-item p {
  max-width: 330px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.text-link {
  width: fit-content;
  margin-top: 32px;
  padding-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.services {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.services::before {
  position: absolute;
  inset: -25% -6% auto auto;
  width: 580px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(226, 202, 155, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(226, 202, 155, 0.025), 0 0 0 200px rgba(226, 202, 155, 0.018);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(300px, 0.68fr);
  align-items: end;
  gap: 60px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 520;
  line-height: 1.28;
  letter-spacing: -0.032em;
}

.section-heading > p {
  max-width: 460px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.8;
}

.service-lines {
  margin-top: clamp(54px, 5.8vw, 82px);
  border-top: 1px solid var(--line-light);
}

.service-line {
  position: relative;
  min-height: 178px;
  padding-block: 34px;
  display: grid;
  grid-template-columns: 0.22fr 1.12fr 1.22fr 0.82fr 58px;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line-light);
  transition: background 360ms ease;
}

.service-line::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  content: "";
  background: rgba(255, 255, 255, 0.035);
  opacity: 0;
  transition: opacity 300ms ease;
}

.service-line:hover::before {
  opacity: 1;
}

.service-index {
  align-self: start;
  color: var(--gold-light);
  font-size: 13px;
}

.service-title span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-title h3 {
  margin: 12px 0 0;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 520;
  letter-spacing: -0.035em;
}

.service-line > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.82;
}

.service-line ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.service-line li {
  position: relative;
  padding: 5px 0 5px 18px;
}

.service-line li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  border: 1px solid var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.service-line > a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transition: color 240ms ease, background 240ms ease, transform 240ms var(--ease);
}

.service-line > a svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.service-line > a:hover {
  color: var(--forest);
  background: var(--gold-light);
  transform: rotate(-8deg);
}

.matrix {
  background:
    radial-gradient(circle at 85% 8%, rgba(201, 164, 102, 0.16), transparent 28%),
    var(--ivory);
}

.matrix-heading {
  display: grid;
  grid-template-columns: 0.62fr 2.38fr;
  gap: 7vw;
}

.matrix-heading .overline {
  margin-top: 12px;
}

.matrix-grid {
  margin-top: clamp(54px, 5.8vw, 82px);
  display: grid;
  grid-template-columns: 1.05fr 0.72fr 1.23fr;
  grid-template-rows: 320px 290px;
  gap: 16px;
}

.matrix-card {
  position: relative;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 29, 0.12);
  background: rgba(255, 254, 249, 0.8);
}

.matrix-large {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}

.matrix-no {
  color: #8b7d66;
  font-size: 11px;
}

.matrix-icon {
  width: 84px;
  height: 84px;
  margin: auto 0 36px;
  display: grid;
  place-items: center;
  color: var(--forest);
  border: 1px solid rgba(16, 42, 37, 0.24);
  border-radius: 50%;
}

.matrix-icon svg {
  width: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.matrix-card > p,
.matrix-wide > div p {
  margin: 0 0 9px;
  color: #887149;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.matrix-card h3 {
  margin: 0;
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 520;
  letter-spacing: -0.03em;
}

.matrix-card > strong {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 650;
}

.matrix-card > span:not(.matrix-no) {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.82;
}

.matrix-dark {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.matrix-dark > p,
.matrix-dark .matrix-no {
  color: var(--gold-light);
}

.matrix-dark > span:not(.matrix-no) {
  color: rgba(255, 255, 255, 0.57);
}

.matrix-rings {
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 260px;
  height: 260px;
}

.matrix-rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(226, 202, 155, 0.18);
  border-radius: 50%;
}

.matrix-rings i:nth-child(2) {
  inset: 38px;
}

.matrix-rings i:nth-child(3) {
  inset: 76px;
}

.matrix-photo {
  grid-column: 3;
  grid-row: 1;
  padding: 0;
  color: var(--white);
  border: 0;
}

.matrix-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(6, 20, 17, 0.02), rgba(6, 20, 17, 0.68));
}

.matrix-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 1.2s var(--ease);
}

.matrix-photo:hover img {
  transform: scale(1.035);
}

.matrix-photo-copy {
  position: absolute;
  inset: auto 30px 26px;
  z-index: 1;
}

.matrix-photo-copy span {
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.matrix-photo-copy h3 {
  margin-top: 7px;
}

.matrix-photo-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
}

.matrix-wide {
  grid-column: 2 / 4;
  grid-row: 2;
  display: grid;
  grid-template-columns: 0.6fr 0.9fr 1.1fr;
  align-items: start;
  gap: 34px;
}

.matrix-wide > strong,
.matrix-wide > span {
  margin-top: 42px;
}

.matrix-route {
  position: absolute;
  right: 38px;
  bottom: 28px;
  left: 38px;
  width: calc(100% - 76px);
  height: 90px;
  overflow: visible;
}

.matrix-route path {
  fill: none;
  stroke: rgba(201, 164, 102, 0.58);
  stroke-dasharray: 7 7;
  stroke-width: 1.2;
}

.matrix-route circle {
  fill: var(--paper);
  stroke: var(--gold);
  stroke-width: 1.5;
}

.ecosystem {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.ecosystem::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 9% 100%, 100% 25%;
}

.ecosystem-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(72px, 8vw, 124px);
}

.ecosystem-intro {
  position: sticky;
  top: 140px;
  align-self: start;
}

.ecosystem-intro h2 {
  margin: 0;
  font-size: clamp(32px, 3.3vw, 46px);
  font-weight: 520;
  line-height: 1.28;
  letter-spacing: -0.032em;
}

.ecosystem-intro > p:not(.overline) {
  max-width: 560px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.8;
}

.ecosystem-flow {
  position: relative;
}

.ecosystem-flow::before {
  position: absolute;
  top: 62px;
  bottom: 62px;
  left: 31px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, var(--gold-light), rgba(226, 202, 155, 0.1));
}

.flow-step {
  position: relative;
  min-height: 178px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 30px;
}

.flow-step > span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--forest-deep);
  background: var(--gold-light);
  border-radius: 50%;
  font-size: 11px;
  box-shadow: 0 0 0 10px var(--forest-deep);
}

.flow-step > div {
  padding: 5px 0 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.flow-step small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  letter-spacing: 0.17em;
}

.flow-step h3 {
  margin: 12px 0 14px;
  font-size: clamp(23px, 1.8vw, 29px);
  font-weight: 520;
  letter-spacing: -0.035em;
}

.flow-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.78;
}

.ecosystem-backdrop {
  position: absolute;
  inset: auto 0 -3.5vw;
  z-index: -1;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.025);
  font-size: 15vw;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.proof {
  color: var(--forest);
  background: var(--gold-light);
}

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

.proof article {
  min-height: 220px;
  padding: 44px 30px;
  display: grid;
  align-content: center;
  border-left: 1px solid rgba(16, 42, 37, 0.18);
}

.proof article:last-child {
  border-right: 1px solid rgba(16, 42, 37, 0.18);
}

.proof strong {
  font-size: clamp(38px, 3.5vw, 52px);
  font-weight: 560;
  line-height: 1;
  letter-spacing: -0.05em;
}

.proof sup {
  color: inherit;
}

.proof span {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
}

.proof p {
  margin: 6px 0 0;
  color: rgba(16, 42, 37, 0.62);
  font-size: 11px;
}

.scenarios {
  background: var(--paper);
}

.scenario-heading > p {
  color: var(--ink-soft);
}

.scenario-grid {
  margin-top: clamp(54px, 5.8vw, 82px);
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.65fr;
  grid-template-rows: 220px 230px;
  gap: 16px;
}

.scenario-card {
  position: relative;
  overflow: hidden;
}

.scenario-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 1.2s var(--ease);
}

.scenario-card:hover img {
  transform: scale(1.035);
}

.scenario-feature {
  grid-row: 1 / 3;
}

.scenario-tall {
  grid-row: 1 / 3;
}

.scenario-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 19, 16, 0.01) 28%, rgba(5, 19, 16, 0.7) 100%);
}

.scenario-copy {
  position: absolute;
  inset: auto clamp(22px, 2.5vw, 38px) clamp(24px, 3vw, 42px);
  color: var(--white);
}

.scenario-copy > span,
.scenario-text > span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.scenario-copy h3,
.scenario-text h3 {
  max-width: 540px;
  margin: 13px 0 0;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 520;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.scenario-copy p {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.scenario-tall .scenario-copy h3 {
  font-size: clamp(23px, 1.8vw, 29px);
}

.scenario-text {
  grid-column: 3;
  grid-row: 1 / 3;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: var(--forest);
}

.scenario-text p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 12px;
  line-height: 1.82;
}

.scenario-text a {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
}

.brand-story {
  overflow: hidden;
  background: var(--ivory);
}

.brand-story-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 8vw;
}

.brand-emblem {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)),
    var(--forest);
}

.brand-emblem::before,
.brand-emblem::after {
  position: absolute;
  inset: 7%;
  content: "";
  border: 1px solid rgba(226, 202, 155, 0.22);
  border-radius: 50%;
}

.brand-emblem::after {
  inset: 17%;
}

.brand-emblem img {
  position: relative;
  z-index: 1;
  width: min(60%, 310px);
  border-radius: 25%;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.26);
}

.brand-emblem span {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-align: center;
}

.brand-story-copy > p:not(.overline) {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.brand-story-copy blockquote {
  max-width: 650px;
  margin: 40px 0 0;
  padding: 24px 0 0 26px;
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--gold);
}

.brand-story-copy blockquote span {
  color: #89785b;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.brand-story-copy blockquote strong {
  margin-top: 11px;
  font-size: 19px;
  font-weight: 620;
}

.contact {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.contact-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.56;
  background: url("./assets/images/hero-scene-city-v3.webp") center / cover no-repeat;
}

.contact::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(5, 20, 16, 0.94) 0%, rgba(5, 20, 16, 0.76) 58%, rgba(5, 20, 16, 0.42) 100%);
}

.contact-grid {
  padding-block: 88px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 8vw;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 520;
  line-height: 1.26;
  letter-spacing: -0.035em;
}

.contact-copy > p:not(.overline) {
  max-width: 610px;
  margin: 28px 0 32px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.8;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(9, 30, 25, 0.46);
  backdrop-filter: blur(18px);
}

.contact-panel article {
  min-height: 138px;
  padding: 24px;
  display: grid;
  align-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-panel span {
  margin-bottom: 13px;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.contact-panel a,
.contact-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.contact-panel a:hover {
  color: var(--white);
}

.site-footer {
  color: rgba(255, 255, 255, 0.64);
  background: #071411;
}

.footer-top {
  padding-block: 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-brand img {
  width: 68px;
  height: 68px;
  border-radius: 18px;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  color: var(--white);
  font-size: 16px;
  font-weight: 560;
}

.footer-brand span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-nav > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-nav strong {
  margin-bottom: 9px;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.footer-nav a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

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

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 260ms;
}

@keyframes scan {
  0%, 100% { transform: translateX(-18vw); opacity: 0; }
  18%, 82% { opacity: 1; }
  50% { transform: translateX(14vw); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1220px) {
  :root {
    --header-height: 76px;
  }

  .shell {
    width: min(calc(100% - 48px), var(--shell));
  }

  .utility-bar {
    display: none;
  }

  .nav-shell {
    min-height: 76px;
    grid-template-columns: 350px 1fr;
    gap: 14px;
  }

  .site-nav > a {
    min-width: auto;
    padding-inline: 10px;
    font-size: 12px;
  }

  .site-nav .nav-contact {
    min-width: 120px;
    margin-left: 8px;
  }

  .hero-inner {
    grid-template-columns: 1.2fr 0.65fr;
    gap: 50px;
  }

  .hero-brief {
    padding: 22px;
  }

  .service-line {
    grid-template-columns: 0.2fr 1fr 1.1fr 0.7fr 62px;
    gap: 26px;
  }

  .matrix-grid {
    grid-template-columns: 1fr 0.75fr 1fr;
  }

  .scenario-grid {
    grid-template-columns: 1.15fr 0.78fr 0.68fr;
  }
}

@media (max-width: 980px) {
  .shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .nav-shell {
    min-height: 72px;
    display: flex;
    justify-content: space-between;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    padding: 118px 32px 48px;
    display: grid;
    align-content: center;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 280ms ease, transform 280ms var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a {
    min-height: 58px;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    font-weight: 520;
  }

  .site-nav > a::after {
    display: none;
  }

  .site-nav .nav-contact {
    min-height: 58px;
    margin: 28px 0 0;
    padding-inline: 20px;
    justify-content: space-between;
    font-size: 16px;
  }

  .hero {
    min-height: 810px;
  }

  .hero-inner {
    padding-top: 78px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 7vw, 56px);
  }

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

  .hero-foot {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-location {
    display: none;
  }

  .film-control {
    right: 22px;
    bottom: 132px;
  }

  .intro-grid,
  .matrix-heading,
  .brand-story-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .section-kicker {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }

  .intro-copy-grid {
    max-width: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-line {
    grid-template-columns: 52px 1fr 62px;
  }

  .service-line > p,
  .service-line ul {
    grid-column: 2 / 3;
  }

  .service-line > a {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .matrix-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 380px 320px 290px;
  }

  .matrix-large {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .matrix-dark {
    grid-column: 2;
    grid-row: 1;
  }

  .matrix-photo {
    grid-column: 2;
    grid-row: 2;
  }

  .matrix-wide {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .ecosystem-intro {
    position: static;
  }

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

  .proof article:nth-child(2) {
    border-right: 1px solid rgba(16, 42, 37, 0.18);
  }

  .proof article:nth-child(n + 3) {
    border-top: 1px solid rgba(16, 42, 37, 0.18);
  }

  .scenario-grid {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 390px 280px;
  }

  .scenario-feature {
    grid-row: 1;
  }

  .scenario-tall {
    grid-row: 1;
  }

  .scenario-text {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .brand-emblem {
    min-height: 460px;
  }

  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  .shell {
    width: calc(100% - 32px);
  }

  .section-pad {
    padding-block: 68px;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

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

  .brand-copy small {
    margin-top: 3px;
    font-size: 6px;
    letter-spacing: 0.045em;
  }

  .hero {
    min-height: 780px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 20, 16, 0.84), rgba(5, 20, 16, 0.38)),
      linear-gradient(180deg, rgba(5, 20, 16, 0.08), rgba(5, 20, 16, 0.92));
  }

  .hero-media video,
  .hero-media-fallback {
    object-position: 64% center;
    background-position: 64% center;
  }

  .hero-inner {
    padding-top: 62px;
    gap: 32px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 9.6vw, 40px);
    line-height: 1.16;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.76;
  }

  .hero-actions {
    margin-top: 26px;
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

  .hero-brief {
    padding: 19px;
  }

  .hero-brief h2 {
    margin-block: 18px;
    font-size: 18px;
  }

  .brief-list article {
    min-height: 72px;
    padding: 10px;
  }

  .hero-foot {
    margin-top: 30px;
  }

  .hero-stat {
    min-height: 82px;
    padding: 18px 10px 12px 0;
  }

  .hero-stat + .hero-stat {
    padding-left: 13px;
  }

  .hero-stat strong {
    font-size: 20px;
  }

  .hero-stat span {
    font-size: 9px;
    line-height: 1.45;
  }

  .film-control {
    right: 16px;
    bottom: 101px;
  }

  .value-rail {
    min-height: 60px;
  }

  .rail-track span {
    padding-inline: 24px;
    font-size: 12px;
    font-weight: 540;
    letter-spacing: 0.1em;
  }

  .rail-track i {
    width: 18px;
    flex-basis: 18px;
  }

  .intro-main h2,
  .matrix-heading h2,
  .brand-story-copy h2,
  .section-heading h2,
  .ecosystem-intro h2,
  .contact-copy h2,
  .values-heading h2 {
    font-size: clamp(28px, 7.8vw, 34px);
    line-height: 1.32;
  }

  .values-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .values-heading .overline {
    justify-content: flex-start;
  }

  .values-heading > p:not(.overline) {
    margin-inline: 0;
  }

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

  .value-item {
    min-height: 0;
    padding: 26px 24px 30px;
  }

  .value-item h3 {
    margin-top: 30px;
    font-size: 18px;
  }

  .intro-copy-grid {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-line {
    min-height: 0;
    padding-block: 30px;
    grid-template-columns: 40px 1fr;
    gap: 20px;
  }

  .service-line > p,
  .service-line ul {
    grid-column: 2;
  }

  .service-line > a {
    grid-column: 2;
    grid-row: auto;
    width: 48px;
    height: 48px;
    margin-top: 10px;
  }

  .matrix-grid {
    display: block;
  }

  .matrix-card {
    min-height: 290px;
    margin-top: 14px;
    padding: 26px;
  }

  .matrix-large {
    min-height: 430px;
  }

  .matrix-photo {
    min-height: 320px;
  }

  .matrix-wide {
    min-height: 360px;
    display: block;
  }

  .matrix-wide > strong,
  .matrix-wide > span {
    display: block;
    margin-top: 24px;
  }

  .flow-step {
    grid-template-columns: 52px 1fr;
    gap: 25px;
  }

  .flow-step > span {
    width: 52px;
    height: 52px;
  }

  .ecosystem-flow::before {
    left: 25px;
  }

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

  .proof article {
    min-height: 176px;
    padding: 28px 20px;
    border-right: 1px solid rgba(16, 42, 37, 0.18);
    border-bottom: 1px solid rgba(16, 42, 37, 0.18);
  }

  .scenario-grid {
    display: block;
  }

  .scenario-card {
    min-height: 340px;
    margin-top: 14px;
  }

  .scenario-tall {
    min-height: 380px;
  }

  .scenario-text {
    min-height: 300px;
  }

  .brand-emblem {
    min-height: 350px;
  }

  .contact {
    min-height: 0;
  }

  .contact-grid {
    padding-block: 70px;
    gap: 48px;
  }

  .contact-panel {
    grid-template-columns: 1fr 1fr;
  }

  .contact-panel article {
    min-height: 112px;
    padding: 18px;
  }

  .contact-panel a {
    font-size: 11px;
    letter-spacing: -0.02em;
  }

  .footer-top {
    padding-block: 54px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand strong {
    font-size: 13px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    row-gap: 38px;
  }

  .footer-bottom {
    padding-block: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 360px) {
  .brand {
    gap: 9px;
  }

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

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    width: 40px;
  }
}

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

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

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