/* SL Apex Renew — Steel Horizon + blueprint lines */

:root {
  --ink: #0b0d10;
  --ink-2: #161a20;
  --steel: #2a3038;
  --mist: #e8e4dc;
  --mist-dim: rgba(232, 228, 220, 0.72);
  --copper: #c4a574;
  --copper-dim: rgba(196, 165, 116, 0.45);
  --recycle-green: #4a8f6a;
  --recycle-green-dim: rgba(74, 143, 106, 0.35);
  --line: rgba(232, 228, 220, 0.14);
  --line-strong: rgba(196, 165, 116, 0.55);
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --max: 1120px;
  --header-h: 4.25rem;
}

/* Vietnamese: fonts with full diacritic support */
html[lang="vi"] {
  --font-display: "Noto Serif", "Be Vietnam Pro", Georgia, serif;
  --font-body: "Be Vietnam Pro", system-ui, sans-serif;
}

html[lang="zh"] {
  --font-display: "Noto Serif SC", "Noto Sans SC", serif;
  --font-body: "Noto Sans SC", system-ui, sans-serif;
}

html[lang="ja"] {
  --font-display: "Noto Serif JP", "Noto Sans JP", serif;
  --font-body: "Noto Sans JP", system-ui, sans-serif;
}

html[lang="ko"] {
  --font-display: "Noto Serif KR", "Noto Sans KR", serif;
  --font-body: "Noto Sans KR", system-ui, sans-serif;
}

html[lang="ms"] {
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

html[lang="th"] {
  --font-display: "Noto Serif Thai", "Noto Sans Thai", serif;
  --font-body: "Noto Sans Thai", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--mist);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  background: rgba(11, 13, 16, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  color: var(--copper);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.brand-mark img {
  width: 36px;
  height: 36px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-cn {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--copper);
  text-transform: none;
}

.brand-name {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.nav {
  display: none;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist-dim);
  transition: color 0.25s ease;
}

.nav a:hover {
  color: var(--mist);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.lang-select-wrap {
  display: block;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 1.65rem 0.45rem 0.65rem;
  background:
    linear-gradient(45deg, transparent 50%, var(--mist-dim) 50%) calc(100% - 14px) / 5px 5px no-repeat,
    linear-gradient(135deg, var(--mist-dim) 50%, transparent 50%) calc(100% - 9px) / 5px 5px no-repeat,
    transparent;
  border: none;
  color: var(--mist);
  cursor: pointer;
  min-width: 5.5rem;
}

.lang-select:focus {
  outline: 1px solid var(--copper-dim);
  outline-offset: -1px;
}

.lang-select option {
  color: #0b0d10;
  background: #e8e4dc;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lang-btn {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.55rem;
  background: transparent;
  border: none;
  color: var(--mist-dim);
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--steel);
  color: var(--mist);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--mist);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

body.nav-open .nav {
  display: flex;
  position: fixed;
  inset: var(--header-h) 0 auto;
  flex-direction: column;
  padding: 1.5rem var(--pad) 2rem;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  gap: 1.25rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 3rem) var(--pad) 4rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(11, 13, 16, 0.62) 0%, rgba(20, 48, 36, 0.28) 45%, transparent 72%),
    url("../assets/images/client/hero-green.jpg") 72% center / cover no-repeat;
  transform: scale(1.06);
  animation: hero-zoom 18s ease-out forwards;
}

@keyframes hero-zoom {
  to {
    transform: scale(1);
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(11, 13, 16, 0.92) 0%,
      rgba(11, 28, 20, 0.72) 38%,
      rgba(30, 72, 52, 0.22) 68%,
      rgba(11, 13, 16, 0.35) 100%
    ),
    linear-gradient(to top, rgba(11, 13, 16, 0.94) 0%, transparent 42%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.07;
  background-image:
    linear-gradient(var(--mist) 1px, transparent 1px),
    linear-gradient(90deg, var(--mist) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.line {
  position: absolute;
  background: var(--line-strong);
  opacity: 0;
  animation: line-draw 1.1s ease forwards;
}

.line-h {
  height: 1px;
  left: 0;
  right: 0;
  transform-origin: left;
}

.line-h1 {
  top: calc(var(--header-h) + 1.5rem);
  animation-delay: 0.35s;
}

.line-h2 {
  bottom: 5.5rem;
  animation-delay: 0.55s;
}

.line-v {
  width: 1px;
  top: 0;
  bottom: 0;
  transform-origin: top;
}

.line-v1 {
  left: var(--pad);
  animation-delay: 0.45s;
}

.line-v2 {
  right: var(--pad);
  animation-delay: 0.65s;
}

.line-tick {
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--copper);
  border-left: 1px solid var(--copper);
  opacity: 0;
  animation: fade-in 0.6s ease forwards 1s;
}

.tick-1 {
  top: calc(var(--header-h) + 1.5rem);
  left: var(--pad);
}

.tick-2 {
  bottom: 5.5rem;
  right: var(--pad);
  transform: rotate(180deg);
}

@keyframes line-draw {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.line-v {
  animation-name: line-draw-v;
}

@keyframes line-draw-v {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, 38rem);
}

.hero-brand {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
}

.hero-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.35rem, 6.5vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--mist);
}

.hero-lead {
  margin: 0 0 2rem;
  max-width: 32rem;
  font-size: 1.05rem;
  color: var(--mist-dim);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: var(--copper);
  color: var(--ink);
  border-color: var(--copper);
}

.btn-primary:hover {
  background: #d4b889;
  border-color: #d4b889;
}

.btn-ghost {
  background: transparent;
  color: var(--mist);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--mist-dim);
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist-dim);
  writing-mode: vertical-rl;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal-up 0.9s ease forwards;
}

.reveal-delay-1 {
  animation-delay: 0.2s;
}

.reveal-delay-2 {
  animation-delay: 0.4s;
}

.reveal-delay-3 {
  animation-delay: 0.6s;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Sections —— */
.section {
  padding: clamp(4.5rem, 10vw, 7rem) 0;
  position: relative;
}

.section-rule {
  position: absolute;
  top: 0;
  left: var(--pad);
  right: var(--pad);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
}

.section-head {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  max-width: 36rem;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.about {
  background: var(--ink-2);
  overflow: hidden;
}

.about-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }
}

.about-body {
  display: grid;
  gap: 1.25rem;
  max-width: 42rem;
}

.about-body p {
  margin: 0;
  color: var(--mist-dim);
}

/* Photo frames — shared */
.photo-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(232, 228, 220, 0.04);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(196, 165, 116, 0.22);
  pointer-events: none;
  z-index: 2;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.photo-frame:hover img {
  transform: scale(1.04);
}

/* About collage */
.about-visual {
  position: relative;
  width: min(100%, 420px);
  margin-inline: auto;
  min-height: clamp(280px, 42vw, 380px);
}

.photo-frame--main {
  width: 72%;
  margin-left: auto;
  aspect-ratio: 4 / 5;
}

.photo-frame--sub {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54%;
  aspect-ratio: 1;
  border: 3px solid var(--ink-2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: rotate(-2.5deg);
}

.photo-frame__mark {
  position: absolute;
  top: 12%;
  right: 6%;
  width: 28px;
  height: 28px;
  border-top: 1px solid var(--copper);
  border-right: 1px solid var(--copper);
  opacity: 0.7;
  pointer-events: none;
}

.what {
  position: relative;
}
.service-list {
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.75rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.service-index {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--copper);
  line-height: 1.2;
  padding-top: 0.15rem;
}

.service-copy h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.service-copy p {
  margin: 0;
  color: var(--mist-dim);
  max-width: 40rem;
}

@media (min-width: 768px) {
  .service-item {
    grid-template-columns: 3.5rem 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }
}

.why {
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(196, 165, 116, 0.08), transparent 55%),
    var(--ink);
}

.why-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .why-inner {
    grid-template-columns: 1fr min(42%, 400px);
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

.why-copy .section-head {
  margin-bottom: 1.5rem;
}

.why-lead,
.why-close {
  margin: 0 0 1.25rem;
  max-width: 40rem;
  color: var(--mist-dim);
}

.why-close {
  margin-bottom: 0;
}

.photo-frame--why {
  aspect-ratio: 16 / 10;
  width: 100%;
  max-width: 480px;
}

@media (min-width: 900px) {
  .photo-frame--why {
    max-width: none;
    justify-self: end;
  }
}

/* Gallery */
.gallery {
  background: var(--ink-2);
}

.gallery-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
}

.gallery-block__label {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--recycle-green);
}

/* Materials — uniform tiles */
.gallery-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.gallery-tile {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}

.gallery-tile--portrait img {
  object-position: center 30%;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 13, 16, 0.88) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-tile:hover img {
  transform: scale(1.04);
}

.gallery-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  padding: 0.75rem 0.9rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
}

@media (min-width: 768px) {
  .gallery-tiles {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

/* Operations — full image, no crop */
.gallery-spotlights {
  display: grid;
  gap: 1rem;
}

.gallery-spotlight {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  border: 1px solid var(--line);
  overflow: hidden;
}

.gallery-spotlight__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(200px, 28vw, 320px);
  padding: clamp(0.65rem, 1.5vw, 1.15rem);
  background:
    radial-gradient(ellipse 90% 80% at 50% 50%, rgba(196, 165, 116, 0.06), transparent 70%),
    #0a0c0f;
}

.gallery-spotlight__media img {
  width: 100%;
  height: auto;
  max-height: clamp(200px, 30vw, 340px);
  object-fit: contain;
  display: block;
}

.gallery-spotlight figcaption {
  margin: 0;
  padding: 0.9rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  border-top: 1px solid var(--line);
  background: rgba(22, 26, 32, 0.85);
}

@media (min-width: 900px) {
  .gallery-spotlights {
    grid-template-columns: 1.55fr 1fr;
    gap: 1.15rem;
    align-items: stretch;
  }

  .gallery-spotlight {
    height: 100%;
  }

  .gallery-spotlight__media {
    flex: 1;
    min-height: 280px;
  }

  .gallery-spotlight__media img {
    max-height: 360px;
  }
}

.gallery-note {
  display: none;
}

/* Contact */
.contact-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.75rem;
    align-items: start;
  }
}

.contact-panel {
  border: 1px solid var(--line);
  border-left: 2px solid var(--copper);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: rgba(22, 26, 32, 0.6);
}

.contact-form-panel {
  border: 1px solid var(--line);
  border-left: 2px solid var(--recycle-green);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: rgba(22, 26, 32, 0.6);
}

.contact-form__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact-form__lead {
  margin: 0 0 1.25rem;
  color: var(--mist-dim);
  font-size: 0.95rem;
}

.contact-form__success {
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--recycle-green-dim);
  background: rgba(74, 143, 106, 0.12);
  color: var(--mist);
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.contact-form__field {
  display: grid;
  gap: 0.4rem;
}

.contact-form__field label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--mist);
  background: rgba(11, 13, 16, 0.65);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: var(--copper-dim);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 7rem;
}

.contact-form__submit {
  justify-self: start;
  margin-top: 0.35rem;
  cursor: pointer;
}

.contact-pending {
  display: none;
}

.contact-list a,
.contact-office__list a {
  color: var(--mist);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-list a:hover,
.contact-office__list a:hover {
  color: var(--copper);
}

.contact-list {
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

.contact-list--shared {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.contact-list__full {
  grid-column: 1 / -1;
}

.contact-offices {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-offices {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.contact-office__title {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--recycle-green);
}

.contact-office__list {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.contact-office__list dt {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.35rem;
}

.contact-office__list dd {
  margin: 0;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .contact-list--shared {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-list dt {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.35rem;
}

.contact-list dd {
  margin: 0;
  font-size: 1rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-brand .brand-cn {
  letter-spacing: 0.18em;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--mist-dim);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-image,
  .line,
  .line-tick,
  .reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-image {
    transform: scale(1);
  }
}
