:root {
  --black: #0b0b0b;
  --dark: #1f1f1f;
  --red: #c1121f;
  --red-bright: #ec1b24;
  --red-deep: #7f0710;
  --white: #ffffff;
  --silver: #8a8a8a;
  --light: #d9d9d9;
  --panel: rgba(255, 255, 255, 0.1);
  --panel-strong: rgba(255, 255, 255, 0.16);
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--red);
  font-family: Inter, "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(193, 18, 31, 0.14), transparent 38%),
    var(--black);
  transition: opacity 520ms ease, visibility 520ms ease;
}

.preloader-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(340px, calc(100vw - 44px));
  padding: 28px;
}

.preloader-card img {
  width: 240px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--white);
  animation: logoRise 900ms ease both;
}

.preloader-card span {
  color: #f4dedb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

.preloader-card i {
  display: block;
  width: 220px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.preloader-card i::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red-bright);
  content: "";
  transform-origin: left;
  animation: loadLine 1200ms ease-in-out infinite;
}

body.is-loaded .preloader {
  visibility: hidden;
  opacity: 0;
}

@keyframes logoRise {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

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

@keyframes loadLine {
  0% {
    transform: scaleX(0);
  }

  52% {
    transform: scaleX(1);
  }

  100% {
    transform: translateX(100%) scaleX(0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(16px, 5vw, 64px);
  background: rgba(11, 11, 11, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 218px;
  height: 66px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  background: var(--white);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

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

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--red);
  border: 0;
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 136px clamp(18px, 6vw, 86px) 54px;
  overflow: hidden;
  background: var(--black);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.1);
}

.hero-media img {
  position: absolute;
  inset: 0;
}

.hero-media video {
  position: relative;
  z-index: 1;
}

.hero-overlay {
  background:
    radial-gradient(circle at 82% 24%, rgba(193, 18, 31, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(11, 11, 11, 0.9) 0%, rgba(11, 11, 11, 0.68) 48%, rgba(11, 11, 11, 0.34) 100%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.16), rgba(11, 11, 11, 0.86));
  z-index: 2;
}

.hero-grid {
  position: relative;
  z-index: 3;
  width: min(1240px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 420px);
  gap: clamp(34px, 7vw, 94px);
  align-items: center;
}

.hero-content {
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.65);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #ffd8d4;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Montserrat, Poppins, Inter, Arial, Helvetica, sans-serif;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7.2vw, 92px);
  font-weight: 900;
  line-height: 0.96;
}

.brand-headline {
  max-width: 980px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.brand-headline span,
.brand-headline em {
  display: block;
}

.brand-headline span {
  font-size: clamp(58px, 7.8vw, 106px);
  line-height: 0.92;
}

.brand-headline em {
  width: fit-content;
  margin-top: 12px;
  padding: 11px 18px 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  border-left: 6px solid var(--white);
  border-radius: 6px;
  box-shadow: 0 18px 38px rgba(193, 18, 31, 0.34);
  font-size: clamp(28px, 3.3vw, 48px);
  font-style: normal;
  line-height: 1;
}

.hero-statement {
  width: min(760px, 100%);
  margin-bottom: 12px;
  color: var(--white);
  font-family: Montserrat, Poppins, Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 900;
  line-height: 1.12;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.16;
}

.hero-copy {
  width: min(720px, 100%);
  margin-bottom: 30px;
  color: #f4e8e6;
  font-size: clamp(18px, 2.1vw, 24px);
}

.hero-actions,
.section-actions,
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions.center {
  justify-content: center;
}

.button,
.gallery-controls button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.gallery-controls button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  box-shadow: 0 16px 34px rgba(193, 18, 31, 0.34);
}

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

.button.dark {
  color: var(--white);
  background: var(--black);
}

.hero-panel {
  padding: 28px;
  background: rgba(193, 18, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 6px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-panel span,
.hero-panel strong {
  display: block;
}

.hero-panel span {
  margin-bottom: 10px;
  color: #ffe0dc;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  margin-bottom: 12px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 26px;
  line-height: 1.08;
}

.hero-panel p {
  margin-bottom: 0;
  color: #fff2f0;
}

.hero-metrics {
  position: relative;
  z-index: 3;
  width: min(1240px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-metrics div {
  padding: 20px;
  background: rgba(11, 11, 11, 0.62);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--white);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 36px;
  line-height: 1;
}

.hero-metrics span {
  margin-top: 8px;
  color: #ffd8d4;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-band {
  position: relative;
  padding: clamp(66px, 8.6vw, 116px) clamp(18px, 5vw, 64px);
  overflow: hidden;
  scroll-margin-top: 96px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 11, 11, 0.18), rgba(193, 18, 31, 0.92)),
    var(--red);
}

.section-band::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 46%, rgba(255, 255, 255, 0.045) 46% 46.4%, transparent 46.4% 100%);
  background-size: 54px 54px, 54px 54px, 220px 220px;
  content: "";
  opacity: 0.42;
}

.section-band:nth-of-type(even) {
  background:
    linear-gradient(135deg, var(--red-deep), var(--red) 54%, #e31624);
}

.dark-intro,
.capacity-section,
.testimonials-section,
.faq-section {
  background:
    linear-gradient(135deg, var(--black), var(--dark) 52%, #4d050a);
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split,
.capacity-layout,
.contact-layout,
.progress-layout,
.quality-layout,
.faq-layout,
.partners-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.lead-copy,
.progress-layout > div:first-child p,
.capacity-layout p,
.career-card p,
.cta-content p {
  color: #ffe9e6;
  font-size: 18px;
}

.business-strip,
.premium-grid,
.safety-grid,
.testimonial-grid,
.insight-grid {
  display: grid;
  gap: 18px;
}

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

.business-strip article,
.service-grid article,
.progress-card,
.reason-list article,
.safety-grid article,
.capacity-table div,
.testimonial-grid article,
.partner-list span,
.career-card,
.founder-card,
.insight-grid article,
.operations-grid article,
.future-grid article,
.faq-list details,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.business-strip article:hover,
.service-grid article:hover,
.reason-list article:hover,
.safety-grid article:hover,
.capacity-table div:hover,
.testimonial-grid article:hover,
.career-card:hover,
.founder-card:hover,
.insight-grid article:hover,
.operations-grid article:hover,
.future-grid article:hover,
.faq-list details:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.14);
}

.business-strip article {
  min-height: 220px;
  padding: 28px;
}

.business-strip span,
.service-icon,
.project-card span,
.insight-grid span {
  color: #ffd7d3;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.business-strip p {
  color: #f6e2df;
}

.founder-section {
  background:
    linear-gradient(135deg, var(--black), #250306 56%, var(--red));
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.founder-card {
  padding: clamp(24px, 4vw, 44px);
  border-left: 6px solid var(--red-bright);
}

.founder-card p {
  color: #f7e4e1;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.38;
}

.founder-card div {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.founder-card strong {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 22px;
}

.founder-card span {
  color: #ffd8d4;
  font-weight: 800;
}

.section-heading {
  width: min(850px, 100%);
  margin-bottom: 38px;
}

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

.service-grid article {
  min-height: 230px;
  padding: 24px;
}

.service-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
}

.service-grid p,
.reason-list span,
.safety-grid span,
.capacity-table span,
.testimonial-grid span,
.faq-list p {
  color: #f0dbd8;
}

.capability-section {
  background:
    linear-gradient(135deg, var(--black), #2a0306 52%, var(--red-deep));
}

.capability-matrix {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.capability-matrix > div {
  min-height: 86px;
  display: grid;
  align-content: center;
  padding: 18px;
  color: #f6e4e1;
  background: rgba(11, 11, 11, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.capability-matrix > div:nth-child(4n) {
  border-right: 0;
}

.matrix-head {
  color: var(--white);
  background: rgba(193, 18, 31, 0.72) !important;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.matrix-row-title {
  color: var(--white) !important;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.project-heading {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-controls button {
  min-height: 38px;
  padding: 9px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.gallery-controls button.active {
  color: var(--white);
  background: var(--black);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 18px;
}

.project-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: var(--black);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.project-card.large {
  grid-column: span 2;
}

.project-card.tall {
  grid-row: span 2;
  min-height: 578px;
}

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

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card div {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 16px;
  background: rgba(11, 11, 11, 0.82);
  border-left: 5px solid var(--red-bright);
  border-radius: 6px;
}

.project-card p {
  margin-bottom: 0;
  color: #eadbd8;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.comparison-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 11, 11, 0.52);
  box-shadow: var(--shadow);
}

.comparison-frame {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--black);
}

.comparison-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-before {
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 0 999px rgba(11, 11, 11, 0.08);
  transform: translateX(-1px);
}

.comparison-divider::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  background: var(--red);
  border: 2px solid var(--white);
  border-radius: 999px;
  content: "";
  transform: translate(-50%, -50%);
}

.comparison-label {
  position: absolute;
  top: 14px;
  z-index: 1;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(11, 11, 11, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-label.before {
  left: 14px;
}

.comparison-label.after {
  right: 14px;
}

.comparison-card input[type="range"] {
  position: relative;
  z-index: 2;
  margin: -22px auto 22px;
  display: block;
  width: min(420px, calc(100% - 28px));
  height: 42px;
  padding: 0;
  accent-color: var(--red-bright);
  background: transparent;
}

.comparison-card h3,
.comparison-card p {
  padding-inline: 4px;
}

.comparison-card p {
  color: #f1dbd8;
}

.progress-card {
  padding: 26px;
}

.progress-title {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
}

.progress-title strong {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 24px;
}

.progress-title span {
  color: #ffd8d4;
  font-weight: 800;
}

.milestone {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 17px 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.milestone strong {
  color: #ffd8d4;
}

.milestone i {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.milestone i::after {
  display: block;
  width: var(--value);
  height: 100%;
  background: linear-gradient(90deg, var(--red-bright), var(--white));
  border-radius: inherit;
  content: "";
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 0;
  list-style: none;
  counter-reset: step;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.process-list li {
  min-height: 220px;
  padding: 24px;
  background: rgba(11, 11, 11, 0.54);
  counter-increment: step;
}

.process-list li::before {
  display: block;
  margin-bottom: 34px;
  color: #ffd8d4;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  content: counter(step);
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  color: #f1dbd8;
}

.operations-section,
.future-section {
  background:
    linear-gradient(135deg, var(--black), #220205 58%, var(--red-deep));
}

.operations-layout,
.future-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.operations-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.operations-media video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.12);
}

.operations-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(11, 11, 11, 0.88)),
    linear-gradient(135deg, rgba(193, 18, 31, 0.28), transparent 48%);
  content: "";
}

.operations-media div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  padding: 18px;
  background: rgba(11, 11, 11, 0.76);
  border-left: 5px solid var(--red-bright);
  border-radius: 6px;
}

.operations-media span,
.operations-media strong {
  display: block;
}

.operations-media span,
.future-grid span {
  color: #ffd8d4;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.operations-media strong {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 28px;
  line-height: 1.08;
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.operations-grid article,
.future-grid article {
  padding: 20px;
}

.operations-grid strong,
.operations-grid span {
  display: block;
}

.operations-grid span {
  color: #f1dbd8;
}

.command-section {
  position: relative;
  min-height: 740px;
  display: grid;
  align-items: center;
  padding: clamp(74px, 9vw, 130px) clamp(18px, 5vw, 64px);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  scroll-margin-top: 96px;
}

.command-section video,
.command-overlay {
  position: absolute;
  inset: 0;
}

.command-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.12);
}

.command-overlay {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.96), rgba(11, 11, 11, 0.72) 48%, rgba(193, 18, 31, 0.42)),
    linear-gradient(180deg, rgba(11, 11, 11, 0.28), rgba(11, 11, 11, 0.86));
}

.command-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
  margin: 0 auto;
}

.command-inner h2 {
  max-width: 780px;
}

.command-inner p {
  width: min(640px, 100%);
  color: #f3dfdc;
  font-size: 19px;
}

.command-rail {
  display: grid;
  gap: 14px;
}

.command-rail article {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid var(--red-bright);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.command-rail article::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(193, 18, 31, 0.24), transparent 48%);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.command-rail article:hover::before {
  opacity: 1;
}

.command-rail span,
.command-rail strong,
.command-rail em {
  position: relative;
  z-index: 1;
}

.command-rail span {
  color: #ffd8d4;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.command-rail strong,
.command-rail em {
  display: block;
}

.command-rail strong {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.12;
}

.command-rail em {
  margin-top: 6px;
  color: #f2ddda;
  font-style: normal;
}

.quality-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quality-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.reason-list {
  display: grid;
  gap: 12px;
}

.reason-list article,
.safety-grid article,
.testimonial-grid article,
.career-card,
.insight-grid article,
.faq-list details {
  padding: 20px;
}

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

.safety-grid article:first-child {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.capacity-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.capacity-table div {
  padding: 20px;
}

.capacity-table strong,
.capacity-table span {
  display: block;
}

.capacity-table strong {
  font-size: 20px;
}

.team-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.team-line span,
.partner-list span {
  padding: 10px 12px;
  color: #fff2ef;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

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

.testimonial-grid p {
  color: #f7e5e2;
}

.partners-layout {
  align-items: center;
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.insight-grid strong {
  display: block;
  margin-top: 10px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.future-grid article {
  min-height: 180px;
  display: grid;
  align-content: space-between;
}

.future-grid strong {
  display: block;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 22px;
  line-height: 1.16;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.cta-video {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 86px 18px;
  overflow: hidden;
  scroll-margin-top: 96px;
  color: var(--white);
  background: var(--black);
}

.cta-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.94), rgba(11, 11, 11, 0.58)),
    linear-gradient(135deg, rgba(193, 18, 31, 0.36), rgba(11, 11, 11, 0.2));
}

.cta-content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  text-align: center;
}

address {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: #ffe8e5;
  font-style: normal;
  font-size: 18px;
}

address a {
  color: var(--white);
  font-weight: 900;
}

.map-actions {
  margin-top: 28px;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  background: rgba(11, 11, 11, 0.44);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--black);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 6px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(255, 255, 255, 0.32);
  border-color: var(--red-bright);
}

.form-note {
  margin-bottom: 0;
  color: #ffd8d4;
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  color: var(--white);
  background: #128c39;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
  font-weight: 900;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.floating-whatsapp.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

.site-footer {
  color: var(--white);
  background:
    linear-gradient(135deg, var(--black), #180204 60%, var(--red-deep));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(150px, 0.75fr));
  gap: clamp(24px, 5vw, 58px);
  margin: 0 auto;
  padding: 54px clamp(18px, 5vw, 64px) 34px;
}

.footer-brand img {
  width: 218px;
  height: 66px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--white);
}

.footer-brand p {
  width: min(430px, 100%);
  margin: 22px 0 18px;
  color: #f2ddda;
}

.footer-brand strong,
.footer-links strong,
.footer-contact strong {
  display: block;
  margin-bottom: 14px;
  font-family: Montserrat, Inter, sans-serif;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: #f0d9d6;
  font-weight: 700;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.footer-social span {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: #ffd8d4;
  background: rgba(0, 0, 0, 0.34);
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .capacity-layout,
  .contact-layout,
  .progress-layout,
  .quality-layout,
  .faq-layout,
  .partners-layout,
  .operations-layout,
  .future-layout,
  .founder-layout,
  .command-inner,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

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

  .premium-grid,
  .project-grid,
  .operations-grid,
  .future-grid,
  .safety-grid,
  .testimonial-grid,
  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: auto;
  }

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

  .capability-matrix > div:nth-child(4n) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .capability-matrix > div:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(11, 11, 11, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    top: 0;
    justify-content: flex-start;
    padding: 12px 14px;
  }

  .brand img {
    width: 172px;
    height: 52px;
  }

  .preloader-card img {
    width: 206px;
    height: 62px;
  }

  .nav-toggle {
    flex: 0 0 44px;
    margin-left: 12px;
  }

  .site-nav {
    right: auto;
    width: min(360px, calc(100vw - 28px));
  }

  .hero {
    min-height: 100vh;
    padding: 40px 18px 38px;
  }

  .hero-grid,
  .hero-content {
    width: 100%;
    max-width: 360px;
    min-width: 0;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 11, 11, 0.82), rgba(11, 11, 11, 0.58)),
      linear-gradient(180deg, rgba(11, 11, 11, 0.36), rgba(11, 11, 11, 0.92)),
      linear-gradient(135deg, rgba(193, 18, 31, 0.36), rgba(11, 11, 11, 0.14));
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(31px, 8.6vw, 36px);
    line-height: 1.05;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .brand-headline {
    max-width: 350px;
    margin-bottom: 18px;
  }

  .brand-headline span {
    max-width: 8ch;
    font-size: clamp(38px, 11vw, 46px);
    line-height: 0.96;
  }

  .brand-headline em {
    max-width: 100%;
    padding: 9px 12px 10px;
    font-size: clamp(20px, 6vw, 24px);
    line-height: 1.08;
  }

  .hero-statement {
    max-width: 31ch;
    font-size: 20px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy {
    max-width: 32ch;
    font-size: 17px;
  }

  .hero-actions .button,
  .section-actions .button,
  .map-actions .button {
    width: 100%;
  }

  .hero-panel {
    display: none;
  }

  .hero-metrics,
  .business-strip,
  .premium-grid,
  .project-grid,
  .operations-grid,
  .future-grid,
  .capacity-table,
  .safety-grid,
  .testimonial-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    max-width: 360px;
  }

  .capability-matrix {
    display: block;
  }

  .capability-matrix > div {
    min-height: auto;
    border-right: 0;
  }

  .matrix-head {
    display: none !important;
  }

  .matrix-row-title {
    background: rgba(11, 11, 11, 0.76) !important;
    border-left: 5px solid var(--red-bright);
  }

  .command-section {
    min-height: auto;
    padding: 76px 18px;
  }

  .command-rail article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .command-rail span {
    font-size: 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-top: 106px;
  }

  .footer-bottom {
    display: grid;
  }

  .project-heading {
    display: block;
  }

  .gallery-controls {
    margin-top: 18px;
  }

  .project-card.large,
  .project-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .project-card,
  .project-card.tall {
    min-height: 330px;
  }

  .comparison-frame {
    min-height: 300px;
  }

  .operations-media {
    min-height: 420px;
  }

  .operations-media strong {
    font-size: 22px;
  }

  .future-grid article {
    min-height: 140px;
  }

  .floating-whatsapp {
    display: none;
  }
}
