:root {
  --black: #060607;
  --graphite: #111316;
  --panel: #191c20;
  --panel-strong: #20242a;
  --steel: #c5c7c9;
  --steel-dark: #82878c;
  --line: #343940;
  --red: #e11919;
  --red-dark: #9f0c0c;
  --white: #f6f7f8;
  --muted: #b6bbc0;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 12px clamp(18px, 4vw, 60px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 6, 7, 0.78);
  backdrop-filter: blur(16px);
  animation: header-enter 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes header-enter {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.brand img {
  width: 88px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.brand span {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--steel);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  color: var(--steel);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
  column-gap: clamp(22px, 4vw, 70px);
  align-items: center;
  min-height: 58svh;
  overflow: hidden;
  padding: 90px clamp(18px, 5vw, 72px) 36px;
  background:
    linear-gradient(118deg, rgba(6, 6, 7, 0.92), rgba(11, 12, 14, 0.78) 44%, rgba(50, 8, 8, 0.58)),
    radial-gradient(circle at 84% 38%, rgba(225, 25, 25, 0.32), transparent 34%),
    var(--black);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.78;
}

.beam {
  position: absolute;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 12px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
  transform-origin: center;
}

.beam-one {
  top: 17%;
  right: -8%;
  width: 54%;
  transform: rotate(-8deg);
}

.beam-two {
  right: 4%;
  bottom: 28%;
  width: 38%;
  background-color: rgba(225, 25, 25, 0.72);
  transform: rotate(-14deg);
}

.beam-three {
  left: -12%;
  bottom: 17%;
  width: 45%;
  transform: rotate(-6deg);
}

.plate-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 70%, transparent);
}

.hero-content,
.hero-logo {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(4.4rem, 12vw, 9.5rem);
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.62rem;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--steel);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn svg {
  width: 20px;
  height: 20px;
}

svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(225, 25, 25, 0.28);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.hero-logo {
  justify-self: center;
  width: min(36vw, 560px);
  filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.6));
  transform: translateX(10px);
}

.hero-logo img {
  width: 100%;
  height: auto;
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
}

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

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

.service-card {
  min-height: 292px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: rgba(225, 25, 25, 0.14);
  color: var(--red);
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service-card p,
.module-copy p,
.timeline p,
.capability-copy p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.welcome-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(225, 25, 25, 0.09), transparent 42%),
    var(--graphite);
  padding-top: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(32px, 4vw, 48px);
}

.welcome-home {
  padding-top: calc(76px + clamp(32px, 4vw, 48px));
  scroll-margin-top: 0;
}

.welcome-section h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
}

.welcome-copy {
  position: relative;
  display: grid;
  align-items: center;
  gap: 12px;
  min-height: 170px;
  padding: 24px clamp(12px, 2vw, 30px);
  overflow: hidden;
}

.welcome-copy::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(280px, 70%);
  aspect-ratio: 1;
  background: url("assets/logo-movesteel.png") center / contain no-repeat;
  filter: grayscale(1);
  opacity: 0.055;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: watermark-breathe 9s ease-in-out infinite;
}

@keyframes watermark-breathe {
  0%,
  100% {
    opacity: 0.045;
    transform: translate(-50%, -50%) scale(0.98);
  }

  50% {
    opacity: 0.065;
    transform: translate(-50%, -50%) scale(1.02);
  }
}

.welcome-copy p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.module-area {
  display: grid;
  gap: 18px;
  padding-top: clamp(46px, 6vw, 76px);
  padding-bottom: clamp(52px, 7vw, 88px);
}

.module-area .section-heading {
  margin-bottom: 16px;
}

.service-module {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(90deg, rgba(225, 25, 25, 0.1), transparent 52%),
    var(--panel);
  box-shadow: var(--shadow);
  scroll-margin-top: 96px;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.service-module-alt {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    linear-gradient(90deg, rgba(197, 199, 201, 0.08), rgba(225, 25, 25, 0.1)),
    var(--panel);
}

.compact-module {
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
}

.module-copy h3 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  text-transform: uppercase;
}

.module-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.module-copy p {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.module-list {
  display: grid;
  gap: 7px;
  margin: 0 0 20px;
  padding: 0;
  color: var(--steel);
  list-style: none;
}

.module-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 700;
}

.module-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--red);
}

.module-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  grid-template-rows: 142px 142px;
  gap: 12px;
  min-height: 296px;
}

.maintenance-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-height: 220px;
}

.module-photo {
  position: relative;
  min-height: 150px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.08)),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 16px),
    var(--panel-strong);
}

.module-photo::before,
.module-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.module-photo::before {
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(135deg, transparent 0 38%, rgba(225, 25, 25, 0.28) 38% 44%, transparent 44%),
    linear-gradient(25deg, rgba(197, 199, 201, 0.22), transparent 52%);
}

.module-photo::after {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  mix-blend-mode: screen;
}

.module-photo span {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: var(--white);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.module-photo.has-image {
  background: #151719;
}

.module-photo.has-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms ease;
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease var(--reveal-delay, 0ms),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@media (hover: hover) and (pointer: fine) {
  .service-module:hover {
    border-color: rgba(225, 25, 25, 0.42);
    box-shadow: 0 28px 76px rgba(0, 0, 0, 0.46);
    transform: translateY(-3px);
  }

  .module-photo.has-image:hover img,
  .project-gallery figure:hover img,
  .project-main-media:hover img {
    filter: brightness(1.05);
    transform: scale(1.025);
  }
}

.module-photo.has-image.photo-contain img {
  object-fit: contain;
}

.module-photo.has-image::before {
  z-index: 1;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 5, 6, 0.88));
}

.module-photo.has-image::after {
  z-index: 2;
  background: none;
  mix-blend-mode: normal;
}

.module-photo.has-image span {
  z-index: 3;
}

.module-photo.has-video {
  background: #111315;
}

.module-photo.has-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module-photo.has-video::before {
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.68), transparent 42%);
}

.module-photo.has-video::after {
  z-index: 2;
  background: none;
  mix-blend-mode: normal;
}

.module-photo.has-video span {
  z-index: 3;
  top: 12px;
  right: 12px;
  bottom: auto;
  left: 12px;
  pointer-events: none;
}

.photo-large {
  grid-row: span 2;
}

.two-photo-gallery {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.8fr);
}

.two-photo-gallery .module-photo {
  grid-row: 1 / -1;
}

.machining-gallery .module-photo {
  background:
    linear-gradient(145deg, rgba(197, 199, 201, 0.16), rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at 45% 44%, rgba(225, 25, 25, 0.2), transparent 30%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14) 0 2px, transparent 2px 18px),
    var(--panel-strong);
}

.structure-gallery .module-photo {
  background:
    linear-gradient(145deg, rgba(225, 25, 25, 0.16), rgba(0, 0, 0, 0.2)),
    repeating-linear-gradient(90deg, rgba(197, 199, 201, 0.18) 0 18px, transparent 18px 34px),
    var(--panel-strong);
}

.machining-gallery .module-photo.has-image,
.structure-gallery .module-photo.has-image,
.maintenance-gallery .module-photo.has-image {
  background: #151719;
}

.structure-gallery .module-photo.has-video,
.maintenance-gallery .module-photo.has-video {
  background: #111315;
}

.maintenance-strip .module-photo {
  min-height: 220px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.22)),
    linear-gradient(25deg, rgba(225, 25, 25, 0.22), transparent 44%),
    repeating-linear-gradient(0deg, rgba(197, 199, 201, 0.1) 0 12px, transparent 12px 26px),
    var(--panel-strong);
}

.capability {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(225, 25, 25, 0.22), transparent 58%),
    var(--graphite);
}

.capability-copy p {
  max-width: 620px;
  font-size: 1.06rem;
}

.capability-panel {
  display: grid;
  gap: 14px;
}

.metric {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(225, 25, 25, 0.15), rgba(255, 255, 255, 0.04)),
    var(--panel-strong);
}

.metric strong {
  color: var(--red);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.metric span {
  color: var(--steel);
  font-weight: 800;
  text-transform: uppercase;
}

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

.timeline article {
  position: relative;
  min-height: 240px;
  padding: 22px;
  border-top: 3px solid var(--red);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.timeline span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--red);
  font-weight: 800;
}

.work-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(70px, 9vw, 112px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(100deg, rgba(6, 6, 7, 0.95), rgba(6, 6, 7, 0.72)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 16px);
}

.work-copy {
  max-width: 740px;
}

.work-visuals {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  grid-template-rows: 170px 170px;
  gap: 14px;
}

.work-visuals div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.22)),
    repeating-linear-gradient(90deg, rgba(197, 199, 201, 0.14) 0 12px, rgba(225, 25, 25, 0.14) 12px 14px, transparent 14px 24px),
    var(--panel);
  box-shadow: var(--shadow);
}

.work-visuals div:first-child {
  grid-row: span 2;
  background:
    linear-gradient(145deg, rgba(225, 25, 25, 0.18), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(0deg, rgba(197, 199, 201, 0.16) 0 10px, rgba(20, 22, 25, 0.5) 10px 24px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 106px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--steel);
  font-weight: 700;
}

.contact-list svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex: 0 0 auto;
}

.contact-list .contact-facebook {
  color: #9db7e8;
}

.contact-facebook svg path {
  fill: currentColor;
  stroke: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 48%),
    var(--panel);
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #25d366;
  color: #06140c;
  flex: 0 0 auto;
}

.whatsapp-mark svg {
  width: 24px;
  height: 24px;
}

.form-heading p {
  margin: 0 0 3px;
  color: #55df85;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 0;
  font-size: 1.75rem;
  text-transform: uppercase;
}

.form-intro {
  margin: -4px 0 0;
  color: var(--muted);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form label small {
  color: var(--steel-dark);
  font-size: 0.68rem;
  font-weight: 600;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #0d0f12;
  color: var(--white);
  outline: none;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
  padding: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #747a80;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 25, 25, 0.18);
}

.btn-whatsapp {
  min-height: 54px;
  border-color: #25d366;
  background: #1fa855;
  color: #fff;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.18);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #25b95e;
}

.form-note {
  margin: -7px 0 0;
  color: var(--steel-dark);
  font-size: 0.82rem;
  text-align: center;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 0;
  color: #55df85;
  font-weight: 700;
  text-align: center;
}

.form-status:empty {
  display: none;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #050506;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(240px, 0.9fr) minmax(240px, 0.9fr);
  gap: clamp(32px, 6vw, 88px);
  padding: clamp(38px, 5vw, 64px) clamp(18px, 5vw, 72px);
}

.footer-brand img {
  width: min(230px, 62vw);
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 430px;
  margin-bottom: 18px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 21px;
  height: 21px;
}

.footer-whatsapp {
  color: #55df85;
}

.footer-facebook {
  color: #7fa8ef;
}

.footer-facebook svg path {
  fill: currentColor;
  stroke: none;
}

.footer-info {
  display: grid;
  align-content: start;
  gap: 9px;
  padding-top: 8px;
}

.footer-info .footer-label {
  margin: 0 0 6px;
  color: var(--red);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-info strong {
  max-width: 340px;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-info span,
.footer-info address {
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--steel-dark);
  font-size: 0.78rem;
}

@media (max-width: 1060px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

.portfolio-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  min-height: 62svh;
  overflow: hidden;
  padding: 128px clamp(18px, 5vw, 72px) 64px;
  background:
    linear-gradient(118deg, rgba(6, 6, 7, 0.95), rgba(13, 15, 18, 0.86) 50%, rgba(62, 8, 8, 0.58)),
    radial-gradient(circle at 80% 36%, rgba(225, 25, 25, 0.26), transparent 32%),
    var(--black);
}

.portfolio-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.portfolio-hero h1 {
  font-size: clamp(3.8rem, 9vw, 7.5rem);
}

.portfolio-hero img {
  position: relative;
  z-index: 1;
  width: min(42vw, 590px);
  justify-self: center;
  filter: drop-shadow(0 26px 52px rgba(0, 0, 0, 0.58));
}

.portfolio-section {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
  padding-top: calc(76px + clamp(42px, 5vw, 72px));
}

.portfolio-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.portfolio-intro h2 {
  max-width: 760px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.portfolio-intro > p {
  max-width: 620px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1.04rem;
}

.featured-project {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.featured-project[hidden] {
  display: none;
}

.featured-project-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 1.26fr);
  min-height: 650px;
}

.project-main-media,
.project-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #111412;
}

.project-main-media {
  min-height: 650px;
  border-right: 1px solid var(--line);
}

.project-main-media img,
.project-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms ease;
}

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

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

  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

.project-main-media figcaption,
.project-gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  border-left: 3px solid var(--red);
  background: rgba(5, 5, 6, 0.82);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-summary {
  align-self: center;
  padding: clamp(30px, 5vw, 66px);
}

.project-summary h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 4.8vw, 4.7rem);
}

.project-summary > p:not(.eyebrow) {
  color: var(--muted);
}

.project-facts {
  display: grid;
  gap: 0;
  margin: 34px 0;
}

.project-facts div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.project-facts div:last-child {
  border-bottom: 1px solid var(--line);
}

.project-facts dt {
  color: var(--red);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.project-facts dd {
  margin: 0;
  color: var(--steel);
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 265px));
  justify-content: center;
  gap: 18px;
  padding: 28px;
  border-top: 1px solid var(--line);
}

.project-gallery figure {
  aspect-ratio: 3 / 4;
}

.project-gallery figure + figure {
  border-left: 0;
}

.project-video {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--line);
  background: #111315;
}

.project-video h3 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  text-transform: uppercase;
}

.project-video p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.project-video video {
  display: block;
  width: 100%;
  max-height: 560px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050506;
  object-fit: contain;
}

.portfolio-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--steel);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  border-color: rgba(225, 25, 25, 0.7);
  background: rgba(225, 25, 25, 0.15);
  color: var(--white);
}

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

.portfolio-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.portfolio-card[hidden] {
  display: none;
}

.portfolio-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 245px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.18)),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.065) 0 2px, transparent 2px 17px),
    var(--panel-strong);
}

.portfolio-media::before,
.portfolio-media::after {
  content: "";
  position: absolute;
  inset: 0;
}

.portfolio-media::before {
  background:
    linear-gradient(25deg, rgba(225, 25, 25, 0.24), transparent 46%),
    radial-gradient(circle at 55% 42%, rgba(255, 255, 255, 0.14), transparent 28%);
}

.portfolio-media::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
}

.portfolio-media > span,
.portfolio-media svg {
  position: relative;
  z-index: 1;
}

.portfolio-media > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.34);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-media svg {
  width: 62px;
  height: 62px;
  margin-bottom: 12px;
  color: var(--red);
}

.video-placeholder {
  align-content: center;
  gap: 8px;
}

.media-machining .portfolio-media {
  background:
    linear-gradient(145deg, rgba(197, 199, 201, 0.16), rgba(0, 0, 0, 0.18)),
    repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0 2px, transparent 2px 20px),
    var(--panel-strong);
}

.media-structure .portfolio-media {
  background:
    linear-gradient(145deg, rgba(225, 25, 25, 0.16), rgba(0, 0, 0, 0.22)),
    repeating-linear-gradient(90deg, rgba(197, 199, 201, 0.18) 0 20px, transparent 20px 38px),
    var(--panel-strong);
}

.media-maintenance .portfolio-media,
.media-video .portfolio-media {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.24)),
    linear-gradient(30deg, rgba(225, 25, 25, 0.22), transparent 50%),
    repeating-linear-gradient(0deg, rgba(197, 199, 201, 0.1) 0 12px, transparent 12px 28px),
    var(--panel-strong);
}

.portfolio-card-copy {
  padding: 20px;
}

.portfolio-card-copy p {
  margin-bottom: 8px;
  color: var(--red);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-card-copy h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.portfolio-card-copy span {
  color: var(--muted);
}

.portfolio-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(225, 25, 25, 0.18), rgba(255, 255, 255, 0.035)),
    var(--graphite);
}

.portfolio-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.portfolio-cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 1060px) {
  .hero,
  .service-module,
  .capability,
  .work-band,
  .contact,
  .welcome-section,
  .portfolio-hero,
  .portfolio-intro,
  .featured-project-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-logo {
    justify-self: start;
    width: min(700px, 86vw);
    opacity: 0.9;
    transform: none;
  }

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

  .module-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-hero img {
    width: min(620px, 84vw);
    justify-self: start;
  }

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

  .project-main-media {
    min-height: min(760px, 88vw);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-main-media img {
    width: 70%;
    height: auto;
    margin-inline: auto;
  }

  .portfolio-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-copy {
    position: static;
  }
}

@media (min-width: 761px) and (max-width: 1400px) {
  .site-header {
    gap: 18px;
    padding-inline: 28px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 76px;
  }

  .brand span {
    padding-left: 10px;
    font-size: 0.92rem;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.82rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 70px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 68px;
  }

  .brand span {
    padding-left: 10px;
    font-size: 0.82rem;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 14px 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(6, 6, 7, 0.98);
    transform: translateY(-130%);
    transition: transform 200ms ease;
  }

  .menu-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 0;
  }

  .hero {
    row-gap: 16px;
    padding-top: 96px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: clamp(3.3rem, 19vw, 5rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-logo {
    width: min(380px, 68vw);
  }

  .welcome-section {
    gap: 18px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .welcome-home {
    padding-top: 98px;
  }

  .welcome-section h2 {
    font-size: 2.15rem;
  }

  .welcome-copy {
    gap: 8px;
    min-height: 0;
    padding: 8px 0 4px;
  }

  .welcome-copy::before {
    width: 190px;
    opacity: 0.045;
  }

  .welcome-copy p {
    font-size: 0.96rem;
  }

  .service-grid,
  .timeline,
  .maintenance-strip,
  .portfolio-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .portfolio-hero {
    min-height: auto;
    padding-top: 112px;
  }

  .portfolio-hero h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .portfolio-media {
    min-height: 210px;
  }

  .project-gallery {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .project-video {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .project-gallery figure {
    aspect-ratio: 4 / 5;
    width: 70%;
    justify-self: center;
  }

  .project-gallery figure + figure {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .project-summary {
    padding: 28px 20px 36px;
  }

  .project-summary h2 {
    font-size: clamp(2.15rem, 9vw, 2.8rem);
  }

  .project-facts div {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
  }

  .service-module {
    padding: 20px;
  }

  .module-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 150px);
    min-height: auto;
  }

  .two-photo-gallery {
    grid-template-rows: repeat(2, 220px);
  }

  .two-photo-gallery .module-photo {
    grid-row: auto;
  }

  .photo-large {
    grid-row: span 1;
  }

  .maintenance-strip {
    min-height: auto;
  }

  .maintenance-strip .module-photo {
    min-height: 150px;
  }

  .work-visuals {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 145px);
  }

  .work-visuals div:first-child {
    grid-row: span 1;
  }

  .metric {
    grid-template-columns: 72px 1fr;
  }

  .metric strong {
    font-size: 2.5rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}
