:root {
  --ink: #10171d;
  --ink-rgb: 16 23 29;
  --ink-soft: #19242c;
  --steel: #66727a;
  --line: #dfe3e5;
  --paper: #f5f5f2;
  --white: #fff;
  --accent: #e36d29;
  --accent-dark: #b9470c;
  --accent-rgb: 227 109 41;
  --topbar: #0b1115;
  --contact-bg: #0d151a;
  --footer-bg: #080d10;
  --dark-rgb: 9 15 19;
  --shadow-rgb: 11 20 26;
  --green: #24a965;
  --heading: "Barlow Condensed", sans-serif;
  --body: "Manrope", sans-serif;
  --container: 1180px;
  --shadow: 0 24px 70px rgb(var(--shadow-rgb) / 14%);
  color-scheme: light;
}

html[data-theme="blue"] {
  --ink: #0b1728;
  --ink-rgb: 11 23 40;
  --ink-soft: #132a46;
  --steel: #61718a;
  --line: #d9e3f0;
  --paper: #f2f6fb;
  --accent: #2772e0;
  --accent-dark: #1751a6;
  --accent-rgb: 39 114 224;
  --topbar: #06101f;
  --contact-bg: #08182a;
  --footer-bg: #050d18;
  --dark-rgb: 6 20 40;
  --shadow-rgb: 5 22 46;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgb(var(--accent-rgb) / 45%);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--accent);
  transform: translateY(-160%);
}

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

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

.topbar {
  color: #c8d0d4;
  background: var(--topbar);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar p {
  margin: 0;
  text-transform: uppercase;
}

.topbar__contacts {
  display: flex;
  align-items: center;
  gap: 26px;
}

.topbar__contacts a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 180ms ease;
}

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

.topbar svg {
  width: 14px;
  fill: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid rgb(255 255 255 / 9%);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgb(0 0 0 / 24%);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 74px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  font-family: var(--heading);
  font-size: 25px;
  letter-spacing: 0.09em;
}

.brand__text small {
  margin-top: 5px;
  color: #aab5bb;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.primary-nav > a:not(.button) {
  position: relative;
  color: #cdd4d8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover {
  color: var(--white);
}

.primary-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.theme-picker {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #cdd4d8;
}

.theme-picker > span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.theme-picker select {
  width: 116px;
  height: 34px;
  padding: 0 8px;
  color: var(--white);
  background: var(--ink-soft);
  border: 1px solid rgb(255 255 255 / 18%);
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.theme-picker select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgb(var(--accent-rgb) / 14%);
}

.theme-picker option {
  color: var(--ink);
  background: var(--white);
}

.menu-toggle {
  width: auto;
  height: 44px;
  flex: 0 0 auto;
  display: none;
  position: relative;
  z-index: 2;
  align-items: center;
  gap: 8px;
  padding: 8px 0 8px 12px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__label {
  color: #cdd4d8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle svg {
  width: 24px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: square;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 27px;
  color: var(--white);
  background: var(--accent);
  border: 1px solid var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding-inline: 20px;
}

.button--outline {
  color: var(--white);
  background: transparent;
  border-color: rgb(255 255 255 / 40%);
}

.button--outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.button svg {
  width: 17px;
  fill: currentColor;
}

.button--full {
  width: 100%;
  border: 0;
}

.hero {
  min-height: 720px;
  height: calc(100vh - 120px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(var(--dark-rgb) / 96%) 0%, rgb(var(--dark-rgb) / 79%) 45%, rgb(var(--dark-rgb) / 20%) 100%),
    linear-gradient(0deg, rgb(var(--dark-rgb) / 46%), transparent 60%),
    url("images/industries/precision-machining.jpg?v=ad95920a72") center 57% / cover no-repeat;
  transform: scale(1.02);
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgb(255 255 255 / 18%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 18%) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__copy {
  width: min(680px, 70%);
  padding-bottom: 75px;
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 38px;
  height: 2px;
  display: block;
  background: var(--accent);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(66px, 7.5vw, 108px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.84;
  text-transform: uppercase;
}

.hero h1 em {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  font-style: normal;
}

.hero__lead {
  max-width: 600px;
  margin: 32px 0;
  color: #c5cdd1;
  font-size: 17px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero__proof {
  position: absolute;
  right: 24px;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(115px, 1fr));
  background: rgb(var(--dark-rgb) / 82%);
  backdrop-filter: blur(12px);
  border: 1px solid rgb(255 255 255 / 10%);
}

.hero__proof div {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 25px;
  border-right: 1px solid rgb(255 255 255 / 10%);
}

.hero__proof div:last-child {
  border: 0;
}

.hero__proof strong {
  color: var(--accent);
  font-family: var(--heading);
  font-size: 34px;
  line-height: 1;
}

.hero__proof span {
  margin-top: 6px;
  color: #b8c1c6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 35px;
  left: 35px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9ca7ad;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

.hero__scroll i {
  width: 50px;
  height: 1px;
  display: block;
  background: var(--accent);
}

.trust-strip {
  color: var(--white);
  background: var(--accent);
}

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

.trust-strip__grid div {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-inline: 24px;
  border-right: 1px solid rgb(255 255 255 / 20%);
}

.trust-strip__grid div:last-child {
  border-right: 0;
}

.trust-strip span {
  opacity: 0.64;
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 700;
}

.trust-strip strong {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.section {
  padding: 120px 0;
}

.about {
  position: relative;
  overflow: hidden;
}

.about::after {
  content: "GARUDAN";
  position: absolute;
  right: -20px;
  bottom: -80px;
  z-index: -1;
  color: #f4f4f2;
  font-family: var(--heading);
  font-size: 220px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 95px;
}

.about__visual {
  position: relative;
  padding: 0 0 35px 35px;
}

.about__visual::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 75%;
  height: 74%;
  border: 2px solid var(--accent);
}

.about__image {
  position: relative;
  height: 520px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgb(var(--dark-rgb) / 40%));
}

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

.about__badge {
  position: absolute;
  right: -34px;
  bottom: 0;
  z-index: 2;
  min-width: 205px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 21px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.about__badge svg {
  width: 38px;
  fill: var(--accent);
}

.about__badge div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.about__badge strong {
  font-family: var(--heading);
  font-size: 22px;
  text-transform: uppercase;
}

.about__badge span {
  color: #aab4b9;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
}

.section h2 span,
.mission blockquote span {
  color: var(--accent);
}

.section-intro {
  margin: 30px 0 15px;
  color: #34434b;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.65;
}

.about__copy > p:not(.section-label, .section-intro) {
  color: var(--steel);
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 30px 0;
}

.about__features div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}

.about__features svg {
  width: 22px;
  padding: 4px;
  fill: var(--white);
  background: var(--accent);
  border-radius: 50%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--accent);
  font-size: 18px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.products,
.industries {
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 5px;
  color: #8f9ba2;
  font-size: 14px;
}

.section-label--light {
  color: var(--accent);
}

.section-heading--center {
  display: block;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .section-label {
  justify-content: center;
}

.section-heading--center > p:last-child {
  margin: 20px auto 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 310px;
  gap: 2px;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
}

.product-card--wide {
  grid-column: span 2;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
  transition: transform 500ms ease, filter 300ms ease;
}

.product-card--wide img {
  object-position: center 58%;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(var(--dark-rgb) / 94%) 0%, rgb(var(--dark-rgb) / 8%) 72%);
}

.product-card__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 26px;
}

.product-card__overlay > span {
  color: var(--accent);
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
}

.product-card h3 {
  margin: 5px 0 0;
  font-family: var(--heading);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.product-card p {
  max-width: 330px;
  margin: 10px 0 0;
  color: #b6c0c5;
  font-size: 12px;
}

.product-card a {
  max-height: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  overflow: hidden;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: max-height 300ms ease, margin 300ms ease, opacity 300ms ease;
}

.product-card:hover img {
  filter: saturate(1);
  transform: scale(1.06);
}

.product-card:hover a {
  max-height: 30px;
  margin-top: 14px;
  opacity: 1;
}

.more-products {
  margin-top: 28px;
  border: 1px solid rgb(255 255 255 / 16%);
}

.more-products summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 19px;
  color: #c0c9cd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.more-products summary::-webkit-details-marker {
  display: none;
}

.more-products summary span {
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  transition: transform 200ms ease;
}

.more-products[open] summary span {
  transform: rotate(45deg);
}

.more-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 2px;
}

.more-products article {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.more-products img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.more-products h3 {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 50px 20px 20px;
  background: linear-gradient(transparent, rgb(var(--dark-rgb) / 92%));
  font-family: var(--heading);
  font-size: 22px;
  text-transform: uppercase;
}

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

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brand-tile {
  min-height: 155px;
  display: grid;
  place-items: center;
  padding: 34px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.brand-tile:hover {
  position: relative;
  z-index: 2;
  box-shadow: 0 16px 35px rgb(var(--shadow-rgb) / 10%);
  transform: translateY(-3px);
}

.brand-tile img {
  width: auto;
  max-width: 210px;
  max-height: 66px;
}

.brand-tile--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.brand-tile--text strong {
  font-family: var(--heading);
  font-size: 38px;
  font-style: italic;
  letter-spacing: -0.02em;
}

.brand-tile--text span {
  margin-top: 6px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.brands__note {
  margin: 25px 0 0;
  color: #899298;
  font-size: 10px;
  text-align: center;
}

.industries {
  padding-bottom: 130px;
  overflow: hidden;
}

.industries .section-heading {
  margin-bottom: 45px;
}

.industry-track {
  width: min(calc(100% - 48px), 1440px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-inline: auto;
}

.industry-card {
  height: 390px;
  position: relative;
  overflow: hidden;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35);
  transition: filter 300ms ease, transform 500ms ease;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgb(var(--dark-rgb) / 88%));
}

.industry-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 27px;
}

.industry-card span {
  color: var(--accent);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
}

.industry-card h3 {
  margin: 2px 0 0;
  font-family: var(--heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.industry-card:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.mission {
  min-height: 580px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.mission__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(var(--dark-rgb) / 96%), rgb(var(--dark-rgb) / 75%) 52%, rgb(var(--dark-rgb) / 32%)),
    url("images/industries/industrial-fabrication.jpg?v=ad95920a72") center / cover;
}

.mission__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(var(--accent-rgb) / 13%), transparent 50%);
}

.mission__content {
  position: relative;
  z-index: 2;
}

.mission blockquote {
  max-width: 940px;
  margin: 30px 0;
  font-family: var(--heading);
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.08;
  text-transform: uppercase;
}

.mission__signature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mission__signature i {
  width: 42px;
  height: 2px;
  background: var(--accent);
}

.mission__signature div {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.mission__signature strong {
  font-size: 10px;
  letter-spacing: 0.1em;
}

.mission__signature span {
  color: #929ea5;
  font-size: 10px;
}

.why-us {
  background: var(--paper);
}

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

.benefit {
  min-height: 300px;
  position: relative;
  padding: 38px 32px;
  background: var(--white);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.benefit > span {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #cfd4d7;
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 700;
}

.benefit svg {
  width: 50px;
  margin-bottom: 50px;
  fill: var(--accent);
  transition: fill 220ms ease;
}

.benefit h3 {
  margin: 0 0 12px;
  font-family: var(--heading);
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.benefit p {
  margin: 0;
  color: var(--steel);
  font-size: 12px;
  line-height: 1.6;
  transition: color 220ms ease;
}

.benefit:hover {
  z-index: 2;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-7px);
}

.benefit:hover svg {
  fill: var(--accent);
}

.benefit:hover p {
  color: #aeb8bd;
}

.contact {
  color: var(--white);
  background: var(--contact-bg);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 90px;
}

.contact__info {
  padding-top: 30px;
}

.contact__info > p:not(.section-label) {
  max-width: 510px;
  margin: 27px 0 40px;
  color: #99a5ab;
}

.contact-list {
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.contact-list > * {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px 0;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.contact-list__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 13%);
}

.contact-list__icon svg {
  width: 19px;
  fill: var(--accent);
}

.contact-list > * > span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-list small {
  margin-bottom: 3px;
  color: #76838a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 12px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.quote-card {
  padding: 48px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 20px 80px rgb(0 0 0 / 30%);
}

.quote-card__heading span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.quote-card__heading h2 {
  margin-top: 5px;
  font-size: 40px;
}

.quote-card__heading p {
  margin: 6px 0 28px;
  color: var(--steel);
  font-size: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

form label {
  display: block;
  margin-bottom: 17px;
}

form label > span {
  display: block;
  margin-bottom: 7px;
  color: #4d5a61;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dce0e2;
  border-radius: 0;
  color: var(--ink);
  background: #fafafa;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input,
select {
  height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 100px;
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgb(var(--accent-rgb) / 10%);
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-note {
  margin: 12px 0 0;
  color: #8c969b;
  font-size: 9px;
  text-align: center;
}

.footer {
  color: #b4bec3;
  background: var(--footer-bg);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 1.2fr 0.85fr;
  gap: 55px;
  padding-top: 70px;
  padding-bottom: 60px;
}

.brand--footer {
  color: var(--white);
}

.footer__brand p {
  max-width: 300px;
  margin-top: 20px;
  color: #7f8c93;
  font-size: 12px;
}

.footer h3 {
  margin: 0 0 20px;
  color: var(--white);
  font-family: var(--heading);
  font-size: 17px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer nav,
.footer__top > div:not(.footer__brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer nav {
  gap: 8px;
}

.footer a,
.footer address,
.footer p {
  font-size: 11px;
  font-style: normal;
  line-height: 1.8;
}

.footer__top > div > a:hover,
.footer nav a:hover {
  color: var(--accent);
}

.footer__top address {
  margin-bottom: 10px;
}

.footer__top > div > p {
  margin: 0 0 15px;
}

.footer__top p strong {
  color: var(--white);
  font-size: 12px;
}

.footer__whatsapp {
  display: flex;
  gap: 8px;
  padding-bottom: 3px;
  color: var(--green);
  border-bottom: 1px solid var(--green);
  font-weight: 700;
}

.footer__bottom {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgb(255 255 255 / 9%);
}

.footer__bottom p {
  margin: 0;
  color: #657178;
  font-size: 9px;
}

.footer__bottom a {
  color: #a5b0b6;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-whatsapp {
  width: 56px;
  height: 56px;
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 9px 28px rgb(0 0 0 / 25%);
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp svg {
  width: 29px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal--delay {
  transition-delay: 150ms;
}

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

@media (max-width: 1050px) {
  .primary-nav {
    gap: 20px;
  }

  .about__grid {
    gap: 60px;
  }

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

  .product-card--wide {
    grid-column: span 1;
  }

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

  .contact__grid {
    gap: 55px;
  }

  .footer__top {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .footer__top > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .topbar p,
  .topbar__contacts a:last-child {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .menu-toggle {
    display: grid;
    position: absolute;
    top: 19px;
    right: 24px;
    place-content: center;
    margin-left: auto;
  }

  .primary-nav {
    position: fixed;
    top: 120px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 45px 24px;
    background: rgb(var(--ink-rgb) / 98%);
    transform: translateX(100%);
    transition: transform 250ms ease;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav > a:not(.button) {
    padding: 17px 5px;
    border-bottom: 1px solid rgb(255 255 255 / 9%);
    font-family: var(--heading);
    font-size: 22px;
  }

  .primary-nav .button {
    margin-top: 25px;
  }

  .theme-picker {
    justify-content: space-between;
    padding: 17px 5px;
    border-bottom: 1px solid rgb(255 255 255 / 9%);
  }

  .theme-picker > span {
    font-family: var(--heading);
    font-size: 17px;
    font-weight: 600;
  }

  .theme-picker select {
    width: 165px;
    height: 40px;
  }

  .hero {
    min-height: 700px;
    height: calc(100svh - 120px);
  }

  .hero__media {
    background:
      linear-gradient(90deg, rgb(var(--dark-rgb) / 93%), rgb(var(--dark-rgb) / 65%)),
      linear-gradient(0deg, rgb(var(--dark-rgb) / 60%), transparent),
      url("images/industries/precision-machining.jpg?v=ad95920a72") 58% center / cover;
  }

  .hero__copy {
    width: 100%;
    padding-bottom: 120px;
  }

  .hero__proof {
    right: 24px;
    left: 24px;
  }

  .hero__scroll {
    display: none;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip__grid div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip__grid div:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(255 255 255 / 20%);
  }

  .section {
    padding: 90px 0;
  }

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

  .about__visual {
    max-width: 650px;
  }

  .about__image {
    height: 450px;
  }

  .about__badge {
    right: 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }

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

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

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

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

  .contact__info {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-wrap {
    height: 74px;
    position: relative;
  }

  .menu-toggle {
    top: 15px;
    right: 16px;
  }

  .brand__mark {
    width: 62px;
    height: 36px;
  }

  .brand__text strong {
    font-size: 20px;
  }

  .brand__text small {
    font-size: 7px;
  }

  .primary-nav {
    top: 112px;
  }

  .hero {
    min-height: 670px;
    height: calc(100svh - 112px);
    align-items: flex-start;
    padding-top: 84px;
  }

  .hero h1 {
    font-size: clamp(55px, 17vw, 76px);
  }

  .hero__lead {
    margin: 24px 0;
    font-size: 14px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    right: 16px;
    left: 16px;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__proof div {
    min-height: 78px;
    padding: 12px;
  }

  .hero__proof strong {
    font-size: 26px;
  }

  .hero__proof span {
    font-size: 7px;
  }

  .trust-strip__grid div {
    min-height: 67px;
    padding: 12px;
    gap: 8px;
  }

  .trust-strip span {
    font-size: 18px;
  }

  .trust-strip strong {
    font-size: 8px;
  }

  .section {
    padding: 75px 0;
  }

  .section h2 {
    font-size: 44px;
  }

  .about__visual {
    padding: 0 0 25px 20px;
  }

  .about__image {
    height: 340px;
  }

  .about__badge {
    min-width: 175px;
    padding: 14px;
  }

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

  .product-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px;
  }

  .product-card a {
    max-height: 30px;
    margin-top: 12px;
    opacity: 1;
  }

  .more-products__grid {
    grid-template-columns: 1fr;
  }

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

  .brand-tile {
    min-height: 120px;
    padding: 25px;
  }

  .industry-track {
    width: min(calc(100% - 32px), 1440px);
    grid-template-columns: 1fr;
  }

  .industry-card {
    height: 330px;
  }

  .mission {
    min-height: 530px;
  }

  .mission blockquote {
    font-size: 39px;
  }

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

  .benefit {
    min-height: 250px;
  }

  .quote-card {
    padding: 32px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer__top > div:last-child {
    grid-column: auto;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .floating-whatsapp {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 16px;
  }
}

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

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

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