:root {
  --ink: #f4f7fb;
  --ink-soft: rgba(244, 247, 251, 0.72);
  --muted: rgba(244, 247, 251, 0.52);
  --bg: #07090d;
  --bg-2: #0c1118;
  --panel: rgba(18, 24, 32, 0.78);
  --panel-solid: #111821;
  --line: rgba(255, 255, 255, 0.12);
  --red: #e31939;
  --red-dark: #a80f28;
  --silver: #c7d0d8;
  --green: #7ba18d;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(227, 25, 57, 0.14), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(123, 161, 141, 0.14), transparent 24%),
    linear-gradient(180deg, #050609 0%, var(--bg) 46%, #0a0e13 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 9, 13, 0.84);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 126px;
}

.brand img {
  width: 158px;
  height: 58px;
  object-fit: contain;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 26px);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav a {
  position: relative;
  opacity: 0.78;
  transition: opacity 160ms ease, color 160ms ease;
}

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

.main-nav a:hover,
.main-nav a.is-active {
  opacity: 1;
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  padding: 112px clamp(18px, 5vw, 72px) 48px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% 48%;
  transform: scale(1.06);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 5, 8, 0.94) 0%, rgba(3, 5, 8, 0.67) 40%, rgba(3, 5, 8, 0.12) 78%),
    linear-gradient(0deg, rgba(3, 5, 8, 0.9) 0%, rgba(3, 5, 8, 0.08) 54%),
    radial-gradient(circle at 20% 62%, rgba(227, 25, 57, 0.28), transparent 30%),
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.18), transparent 22%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
  animation: liftIn 800ms ease both 120ms;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffccd3;
}

.eyebrow.dark,
.section-kicker {
  color: #ff687d;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6.2vw, 80px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.12;
}

.hero-lede {
  max-width: 720px;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: linear-gradient(135deg, var(--red), #ff3150);
  color: #fff;
  box-shadow: 0 16px 42px rgba(227, 25, 57, 0.3);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 64px;
  z-index: 2;
  display: grid;
  gap: 9px;
  width: min(310px, 32vw);
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--red);
  background: rgba(11, 15, 22, 0.62);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  animation: liftIn 800ms ease both 280ms;
}

.hero-panel span {
  color: #ffccd3;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.hero-panel a {
  font-weight: 800;
}

.hero-panel strong {
  font-size: 18px;
  line-height: 1.15;
}

.hero-panel small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 18px;
  background: var(--red);
  animation: scrollCue 1.7s ease-in-out infinite;
}

.capability-dock {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(1180px, calc(100% - 36px));
  margin: -48px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 7, 10, 0.52);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.capability-dock a {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  background: transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.capability-dock a:last-child {
  border-right: 0;
}

.capability-dock a:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(227, 25, 57, 0.16), rgba(255, 255, 255, 0.035));
  border-color: rgba(227, 25, 57, 0.32);
}

.capability-dock span {
  color: #ff6077;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.capability-dock strong {
  font-size: 22px;
  line-height: 1.08;
}

.capability-dock small {
  color: var(--muted);
  font-size: 14px;
}

.section-band {
  background: transparent;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 56px);
  width: min(1180px, calc(100% - 36px));
  padding: clamp(28px, 4vw, 48px) 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(36px, 5vw, 74px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.glass-card,
.engineering-grid article,
.news-grid article,
.process-cards article,
.contact-form {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(12, 17, 24, 0.8);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.16);
}

.facts article {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.facts article:first-child {
  padding: 24px;
  margin-top: -24px;
  margin-bottom: -24px;
  border: 1px solid rgba(227, 25, 57, 0.28);
  background:
    linear-gradient(180deg, rgba(227, 25, 57, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(10, 14, 20, 0.56);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.facts span,
.metric-row span,
.engineering-grid span,
.engineering-feature span,
.news time,
.process-cards span,
.feature-strip span {
  display: block;
  margin-bottom: 10px;
  color: #ff6077;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.facts strong {
  display: block;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.04;
  margin-bottom: 18px;
}

.facts p,
.intro p,
.showcase-copy > p,
.media-split p,
.engineering-grid p,
.news p,
.school p,
.feature-strip p {
  color: var(--ink-soft);
}

.intro,
.showcase,
.engineering,
.media-split,
.news,
.contact,
.school,
.feature-strip,
.transport-panel {
  padding: clamp(76px, 9vw, 136px) clamp(18px, 5vw, 72px);
}

.intro-grid,
.showcase,
.media-split,
.contact,
.school {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.intro p,
.showcase-copy > p,
.media-split p,
.contact-copy p,
.school-copy > p {
  max-width: 740px;
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(227, 25, 57, 0.8);
  padding-bottom: 5px;
}

.showcase {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.04)),
    var(--bg);
}

.image-frame {
  margin: 0;
  min-height: 560px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel-solid);
}

.image-frame img,
.media-split figure img,
.gallery img,
.school-media > img,
.feature-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
}

.image-frame:hover img,
.media-split figure:hover img,
.school-media:hover > img,
.feature-strip article:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
}

.metric-row div {
  padding: 24px 0 0;
  background: transparent;
}

.metric-row strong {
  display: block;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}

.metric-row b {
  font: inherit;
}

.metric-row small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.dealer-ribbon,
.service-badge {
  display: inline-grid;
  gap: 6px;
  margin: 4px 0 24px;
  padding: 16px 18px;
  border: 1px solid rgba(227, 25, 57, 0.32);
  border-left: 2px solid var(--red);
  background:
    linear-gradient(135deg, rgba(227, 25, 57, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(10, 14, 20, 0.46);
  backdrop-filter: blur(14px);
}

.dealer-ribbon span,
.service-badge span {
  color: #ff6077;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.dealer-ribbon strong,
.service-badge strong {
  font-size: 18px;
  line-height: 1.12;
}

.service-badge {
  margin: 2px 0 18px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 1.3fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  margin-bottom: 46px;
}

.engineering-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 42px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.engineering-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: stretch;
}

.engineering-lead {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(227, 25, 57, 0.28);
  background:
    linear-gradient(135deg, rgba(227, 25, 57, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(10, 14, 20, 0.52);
  backdrop-filter: blur(14px);
}

.engineering-lead h3 {
  font-size: clamp(28px, 3.4vw, 44px);
  margin-bottom: 18px;
}

.engineering-lead p {
  color: var(--ink-soft);
  font-size: 18px;
}

.engineering-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.engineering-list article {
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.engineering-list h3 {
  margin-bottom: 8px;
}

.engineering-list p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.certificate-section {
  padding: 0 clamp(18px, 5vw, 72px) clamp(76px, 9vw, 136px);
  background:
    radial-gradient(circle at 20% 20%, rgba(227, 25, 57, 0.14), transparent 28%),
    #070a0f;
}

.certificate-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(227, 25, 57, 0.28);
  background:
    linear-gradient(135deg, rgba(227, 25, 57, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(9, 13, 19, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.certificate-copy p {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 18px;
}

.certificate-preview {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(213, 220, 226, 0.82)),
    #fff;
  color: #111821;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease;
}

.certificate-preview:hover {
  transform: translateY(-6px) rotate(-1deg);
}

.certificate-preview::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 2px solid rgba(227, 25, 57, 0.72);
}

.certificate-preview::after {
  content: "TYPE APPROVAL";
  position: absolute;
  right: -46px;
  top: 42px;
  padding: 9px 58px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  transform: rotate(38deg);
}

.certificate-preview span {
  position: relative;
  z-index: 1;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.certificate-preview strong {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.98;
}

.certificate-preview small {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: rgba(17, 24, 33, 0.68);
  font-weight: 800;
}

.engineering-grid article {
  min-height: 0;
  padding: clamp(26px, 3vw, 38px) 0;
  border: 0;
  border-top: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.engineering-grid article:hover,
.process-cards article:hover,
.news-grid article:hover {
  transform: translateY(-4px);
}

.school {
  background:
    radial-gradient(circle at 84% 18%, rgba(227, 25, 57, 0.12), transparent 28%),
    #0a0e13;
}

.school-media {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(320px, calc(100% - 48px));
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(7, 9, 13, 0.74);
  backdrop-filter: blur(14px);
}

.floating-note span {
  display: block;
  color: #ff6077;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.floating-note strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.08;
}

.process-cards {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.process-cards article {
  position: relative;
  padding: 22px 0 22px 32px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.process-cards article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--red);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(227, 25, 57, 0.38);
}

.process-cards h3 {
  margin-bottom: 10px;
}

.media-split {
  background: #080b10;
}

.media-split figure {
  margin: 0;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.media-split figure img {
  object-position: 52% 50%;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(227, 25, 57, 0.5);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: #0b1016;
}

.transport-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background:
    radial-gradient(circle at 78% 42%, rgba(44, 116, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #090d13, #06080c);
}

.transport-copy {
  max-width: 720px;
}

.transport-copy p {
  color: var(--ink-soft);
  font-size: 18px;
}

.transport-panel figure {
  margin: 0;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.transport-panel figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 52%;
  transition: transform 700ms ease;
}

.transport-panel figure:hover img {
  transform: scale(1.04);
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.transport-grid span {
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 2px solid rgba(227, 25, 57, 0.72);
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-strip article {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel-solid);
}

.feature-strip article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 5, 8, 0.88) 0%, rgba(3, 5, 8, 0.24) 58%, transparent 100%);
}

.feature-strip div {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.feature-strip h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 44px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.news-grid article {
  min-height: 0;
  padding: clamp(26px, 3vw, 36px) 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1px;
  background: #050609;
}

.gallery img {
  min-height: 440px;
  object-fit: cover;
}

.contact {
  background:
    radial-gradient(circle at 14% 20%, rgba(227, 25, 57, 0.15), transparent 32%),
    #050609;
}

address {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 40px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(7, 10, 15, 0.72);
  backdrop-filter: blur(16px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  padding: 13px 14px;
  border-radius: 0;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(227, 25, 57, 0.72);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(227, 25, 57, 0.14);
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.74);
  background: #030405;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 2px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(227, 25, 57, 0.96), rgba(126, 15, 31, 0.96));
  color: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta span {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.78;
}

.sticky-cta strong {
  font-size: 14px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.11) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollCue {
  0% {
    transform: translateY(-22px);
  }
  100% {
    transform: translateY(54px);
  }
}

@media (max-width: 1080px) {
  .main-nav {
    position: fixed;
    inset: 88px 14px auto;
    display: none;
    padding: 18px;
    color: var(--ink);
    background: rgba(8, 11, 16, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .nav-toggle {
    display: block;
  }

  .hero-panel {
    display: none;
  }

  .intro-grid,
  .showcase,
  .media-split,
  .contact,
  .section-heading,
  .school,
  .engineering-feature,
  .certificate-card {
    grid-template-columns: 1fr;
  }

  .engineering-grid,
  .news-grid,
  .facts,
  .feature-strip,
  .capability-dock,
  .transport-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-frame,
  .media-split figure,
  .school-media {
    min-height: 460px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 124px;
    height: 48px;
  }

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

  .hero-image {
    object-position: 63% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 5, 8, 0.94) 0%, rgba(3, 5, 8, 0.74) 100%),
      linear-gradient(0deg, rgba(3, 5, 8, 0.72) 0%, rgba(3, 5, 8, 0.1) 48%);
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .button {
    width: 100%;
  }

  .facts,
  .metric-row,
  .engineering-grid,
  .news-grid,
  .gallery,
  .feature-strip,
  .capability-dock,
  .transport-panel,
  .transport-grid {
    grid-template-columns: 1fr;
  }

  .image-frame,
  .media-split figure,
  .gallery img,
  .school-media,
  .feature-strip article,
  .transport-panel figure {
    min-height: 330px;
  }

  .capability-dock {
    margin-top: -26px;
  }

  .facts article:first-child {
    margin: 0;
  }

  .certificate-preview {
    min-height: 280px;
  }

  .capability-dock a {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .capability-dock a:last-child {
    border-bottom: 0;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 12px;
    text-align: center;
  }

  .site-footer {
    display: grid;
    padding-bottom: 88px;
  }
}

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