:root {
  --ink: #12151a;
  --steel: #5c6672;
  --mist: #d7dde4;
  --concrete: #e8ecf0;
  --paper: #f3f5f7;
  --forge: #0b0d10;
  --forge-2: #171b21;
  --spark: #e28a2a;
  --spark-hot: #ffb347;
  --line: rgba(18, 21, 26, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --font-display: 'Big Shoulders Display', 'Arial Narrow', Impact, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(226, 138, 42, 0.08), transparent 55%),
    radial-gradient(900px 500px at 100% 20%, rgba(90, 120, 150, 0.12), transparent 50%),
    linear-gradient(180deg, #eef1f4 0%, var(--concrete) 40%, #e4e8ed 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  font-weight: 700;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.section {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--spark);
}

.eyebrow--light {
  color: var(--spark-hot);
}

.display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--spark {
  background: linear-gradient(135deg, var(--spark), #c96a12);
  color: #120e08;
  box-shadow: 0 10px 30px rgba(226, 138, 42, 0.28);
}

.btn--spark:hover {
  box-shadow: 0 14px 36px rgba(226, 138, 42, 0.4);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn--ghost-dark {
  border-color: rgba(18, 21, 26, 0.25);
  color: var(--ink);
  background: transparent;
}

.btn--ghost-dark:hover {
  border-color: var(--ink);
  background: rgba(18, 21, 26, 0.04);
}

/* INTRO */
.intro {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.intro__veil {
  position: absolute;
  inset: 0;
  background: var(--forge);
}

.intro__logo {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.55));
  will-change: transform, opacity;
  transform-origin: center center;
}

body.is-intro {
  overflow: hidden;
}

body.is-intro .nav {
  pointer-events: none;
  opacity: 0;
}

body.is-intro .hero__rail,
body.is-intro .hero__title,
body.is-intro .hero__line,
body.is-intro .hero__actions {
  opacity: 0;
}

body.is-intro .hero__logo.is-intro-target {
  opacity: 0;
  visibility: hidden;
}

body.is-intro .hero__logo,
body.is-intro .hero__title,
body.is-intro .hero__line,
body.is-intro .hero__actions {
  animation: none;
}

body:not(.is-intro-done) .hero__logo,
body:not(.is-intro-done) .hero__title,
body:not(.is-intro-done) .hero__line,
body:not(.is-intro-done) .hero__actions {
  animation: none;
}

body:not(.is-intro-done) .hero__title,
body:not(.is-intro-done) .hero__line,
body:not(.is-intro-done) .hero__actions {
  opacity: 0;
}

body:not(.is-intro-done) .hero__logo {
  opacity: 0;
}

body.is-intro-done .hero__logo {
  opacity: 1;
  animation: none;
}

body.is-intro-done .hero__title {
  animation: logoRise 1s var(--ease) 0.05s both;
}

body.is-intro-done .hero__line {
  animation: logoRise 1s var(--ease) 0.12s both;
}

body.is-intro-done .hero__actions {
  animation: logoRise 1s var(--ease) 0.2s both;
}

body.is-intro-done .hero__rail,
body.is-intro-done .nav {
  opacity: 1;
  transition: opacity 0.45s var(--ease);
}

/* NAV */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.1rem, 3vw, 2rem);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease),
    border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-solid {
  background: rgba(11, 13, 16, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-light);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nav__mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav__links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav__links a:hover {
  color: #fff;
}

.nav__cta {
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.nav__cta:hover {
  border-color: var(--spark);
  color: var(--spark-hot) !important;
}

.nav__links a.is-active {
  color: var(--spark-hot);
}

.nav__cta.is-active {
  border-color: var(--spark);
  color: var(--spark-hot);
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: 0.35rem;
  padding-left: 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.lang__btn {
  min-width: 2rem;
  min-height: 2rem;
  padding: 0.25rem 0.4rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.lang__btn:hover {
  color: #fff;
}

.lang__btn.is-active {
  color: #120e08;
  background: var(--spark);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--forge);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  animation: heroDrift 18s ease-in-out infinite alternate;
  filter: grayscale(1) contrast(1.12) brightness(0.42);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 12, 0.78) 0%, rgba(8, 10, 12, 0.52) 42%, rgba(8, 10, 12, 0.92) 100%),
    radial-gradient(ellipse at 50% 35%, rgba(226, 138, 42, 0.16), transparent 55%);
}

.hero__scan {
  position: absolute;
  inset: -20% 0 auto;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(255, 179, 71, 0.08), transparent);
  animation: scan 7s linear infinite;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 2rem));
  text-align: center;
  padding-block: 6.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
}

.hero__logo {
  width: min(420px, 70vw);
  height: auto;
  margin: 0 auto 0.85rem;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
  animation: logoRise 1.2s var(--ease) both;
}

.hero__title {
  margin: 0 0 0.75rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4.6vw, 3rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: balance;
  animation: logoRise 1.2s var(--ease) 0.12s both;
}

.hero__line {
  max-width: 30rem;
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  animation: logoRise 1.2s var(--ease) 0.2s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  animation: logoRise 1.2s var(--ease) 0.3s both;
}

.hero__rail {
  position: absolute;
  left: clamp(0.5rem, 2vw, 1.5rem);
  top: 50%;
  z-index: 2;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

@keyframes heroDrift {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes scan {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(220%);
  }
}

@keyframes logoRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MARQUEE */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
  padding-block: 0.95rem;
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.marquee .dot {
  color: var(--spark);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.about__copy p {
  margin: 0 0 1.1rem;
  color: var(--steel);
}

.about__copy strong {
  color: var(--ink);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.stats dt {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
}

.stats dd {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: var(--steel);
}

.stats > div,
.about__intro,
.services__head,
.careers__head,
.crew__visual,
.service,
.job,
.culture__manifesto span {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.stats > div.is-in,
.about__intro.is-in,
.services__head.is-in,
.careers__head.is-in,
.crew__visual.is-in,
.service.is-in,
.job.is-in,
.culture__manifesto span.is-in {
  opacity: 1;
  transform: none;
}

.stats > div:nth-child(2) {
  transition-delay: 0.08s;
}
.stats > div:nth-child(3) {
  transition-delay: 0.16s;
}

/* CREW */
.crew {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.crew__visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--forge);
}

.crew__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.85) contrast(1.08);
}

.crew__badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  background: rgba(11, 13, 16, 0.82);
  border: 1px solid var(--line-light);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.crew__badge img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.crew__text p {
  margin: 1.2rem 0 0;
  color: var(--steel);
  max-width: 34rem;
}

/* CULTURE */
.culture {
  position: relative;
  padding-block: clamp(5rem, 12vw, 8rem);
  background:
    linear-gradient(135deg, rgba(226, 138, 42, 0.12), transparent 40%),
    linear-gradient(180deg, var(--forge) 0%, var(--forge-2) 100%);
  color: #fff;
  overflow: hidden;
}

.culture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -18deg,
    transparent 0 18px,
    rgba(255, 255, 255, 0.015) 18px 19px
  );
  pointer-events: none;
}

.culture__inner {
  position: relative;
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.culture__manifesto {
  margin: 0;
  display: grid;
  gap: 0.15em;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.culture__manifesto span:nth-child(2) {
  transition-delay: 0.08s;
}
.culture__manifesto span:nth-child(3) {
  transition-delay: 0.16s;
}
.culture__manifesto span:nth-child(4) {
  transition-delay: 0.24s;
}

.culture__manifesto .accent {
  color: var(--spark-hot);
}

.culture__motto {
  margin: 2rem 0 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.1rem;
}

/* SERVICES */
.services__lead {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: var(--steel);
}

.services__list {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.service {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.service:nth-child(2) {
  transition-delay: 0.04s;
}
.service:nth-child(3) {
  transition-delay: 0.08s;
}
.service:nth-child(4) {
  transition-delay: 0.12s;
}
.service:nth-child(5) {
  transition-delay: 0.16s;
}

.service__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--spark);
  line-height: 1.2;
}

.service h3,
.service h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service p {
  margin: 0;
  max-width: 46rem;
  color: var(--steel);
}

.service:hover h3,
.service:hover h2 {
  color: #8a4d10;
}

/* INDUSTRIES */
.industries__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin: 2rem 0 0;
  padding: 0;
}

.industries__grid li {
  padding: 1.4rem 1.1rem;
  border-bottom: 2px solid var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.15));
}

/* PAGE HERO */
.page-hero {
  padding: clamp(7rem, 14vw, 9.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background:
    linear-gradient(180deg, rgba(11, 13, 16, 0.92), rgba(11, 13, 16, 0.86)),
    url('../images/photo-2.jpg') center / cover;
  color: #fff;
}

.page-hero__inner {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.page-hero .eyebrow {
  color: var(--spark-hot);
}

.page-hero .display {
  max-width: 16ch;
}

.culture--page {
  min-height: calc(100svh - 8rem);
  display: flex;
  align-items: center;
}

.about__copy--wide {
  max-width: 48rem;
}

.home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.home-teaser p {
  color: var(--steel);
}

.home-teaser .display {
  margin-bottom: 1rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1.25rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--spark);
  border-bottom: 1px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.text-link:hover {
  color: #8a4d10;
  border-bottom-color: currentColor;
}

.page-hero__inner,
.home-teaser {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.page-hero__inner.is-in,
.home-teaser.is-in {
  opacity: 1;
  transform: none;
}

.home-teaser:nth-child(2) {
  transition-delay: 0.06s;
}
.home-teaser:nth-child(3) {
  transition-delay: 0.12s;
}
.home-teaser:nth-child(4) {
  transition-delay: 0.18s;
}

/* CAREERS */
.careers__lead {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: var(--steel);
}

.jobs {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.job {
  display: grid;
  gap: 0.65rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.job__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
}

.job__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  background: rgba(226, 138, 42, 0.14);
  color: #8a4d10;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.job__place {
  font-size: 0.85rem;
  color: var(--steel);
  font-weight: 600;
}

.job h3,
.job h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.job p {
  margin: 0;
  max-width: 44rem;
  color: var(--steel);
}

.job__apply {
  justify-self: start;
  margin-top: 0.25rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--spark);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.job__apply:hover {
  color: #8a4d10;
  border-bottom-color: currentColor;
}

/* CONTACT */
.contact__panel {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem 3rem;
  padding: clamp(1.75rem, 4vw, 3rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28)),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(18, 21, 26, 0.03) 22px 23px);
  border: 1px solid var(--line);
}

.contact__panel > div:first-child {
  grid-column: 1 / -1;
}

.contact__panel p {
  max-width: 36rem;
  color: var(--steel);
}

.contact__panel address {
  font-style: normal;
  line-height: 1.7;
}

.contact__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-self: end;
}

/* FOOTER */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  padding: 2.5rem clamp(1.1rem, 3vw, 2rem) 2rem;
  background: var(--forge);
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid var(--line-light);
}

.footer__brand img {
  width: min(220px, 55vw);
  margin-bottom: 0.75rem;
}

.footer__brand p {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.footer__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  text-align: right;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.25rem;
}

.footer__legal a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.footer__legal a:hover {
  color: #fff;
  border-bottom-color: var(--spark);
}

.footer__copy {
  margin: 0;
  font-size: 0.85rem;
}

/* LEGAL PAGES */
.legal {
  max-width: 46rem;
}

.legal__block {
  margin-bottom: 2.25rem;
}

.legal__block h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}

.legal__block p {
  margin: 0;
  color: var(--steel);
}

.legal__block a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid rgba(18, 21, 26, 0.2);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.legal__block a:hover {
  color: var(--spark);
  border-bottom-color: var(--spark);
}

.legal__meta {
  margin-top: 1rem !important;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink) !important;
}

.legal__note {
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--steel);
}

.legal__note a {
  color: var(--ink);
  border-bottom: 1px solid transparent;
}

.legal__note a:hover {
  color: var(--spark);
  border-bottom-color: var(--spark);
}

@media (max-width: 900px) {
  .about,
  .crew,
  .contact__panel,
  .home-grid {
    grid-template-columns: 1fr;
  }

  .crew__visual {
    min-height: 320px;
  }

  .industries__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__rail {
    display: none;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav__toggle {
    display: inline-block;
  }

  .nav__links {
    position: absolute;
    inset: calc(100% + 1px) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    background: rgba(11, 13, 16, 0.96);
    border-bottom: 1px solid var(--line-light);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 0.9rem 0.75rem;
    border-bottom: 1px solid var(--line-light);
  }

  .nav__cta {
    border: 0;
    margin-top: 0.25rem;
  }

  .lang {
    margin: 0.75rem 0 0;
    padding: 0.75rem 0 0.25rem;
    border-left: 0;
    border-top: 1px solid var(--line-light);
    width: 100%;
    justify-content: flex-start;
  }

  .industries__grid {
    grid-template-columns: 1fr;
  }

  .service {
    grid-template-columns: 3rem 1fr;
  }

  .contact__actions {
    align-items: stretch;
  }

  .footer__meta {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .footer__legal {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .intro {
    display: none;
  }

  .hero__photo,
  .hero__scan,
  .marquee__track,
  .hero__logo,
  .hero__title,
  .hero__line,
  .hero__actions {
    animation: none;
  }

  body:not(.is-intro-done) .hero__logo,
  body:not(.is-intro-done) .hero__title,
  body:not(.is-intro-done) .hero__line,
  body:not(.is-intro-done) .hero__actions,
  body.is-intro .hero__rail,
  body.is-intro .hero__title,
  body.is-intro .hero__line,
  body.is-intro .hero__actions,
  body.is-intro .nav,
  body.is-intro .hero__logo.is-intro-target {
    opacity: 1;
    visibility: visible;
  }

  .page-hero__inner,
  .home-teaser,
  .stats > div,
  .about__intro,
  .services__head,
  .careers__head,
  .crew__visual,
  .service,
  .job,
  .culture__manifesto span {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
