:root {
  --navy: #0d1b2a;
  --navy-soft: #13263a;
  --gold: #b88a4a;
  --grey: #6b6f76;
  --light: #f6f7f8;
  --line: #e5e7eb;
  --white: #ffffff;
  --ink: #111827;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.3s ease, padding 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(13, 27, 42, 0.08);
}

.brand {
  display: block;
  width: clamp(210px, 23vw, 330px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-bottom-color: var(--gold);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--gold);
}

.button.secondary {
  color: var(--navy);
  background: transparent;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(13, 27, 42, 0.12);
}

.menu-toggle {
  display: none;
}

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.22fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 86px);
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: #0a1018;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  max-width: 660px;
  margin-bottom: 26px;
  font-size: clamp(48px, 6vw, 78px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 54px);
}

h3 {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.hero-lede {
  max-width: 560px;
  color: var(--grey);
  font-size: 18px;
}

.hero-detail {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

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

.micro-trust {
  margin-top: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  width: min(760px, 112%);
  margin-left: -4%;
}

.hero-media img {
  position: relative;
  width: 100%;
  display: block;
  box-shadow: 0 34px 70px rgba(13, 27, 42, 0.18);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading p:not(.eyebrow) {
  color: var(--grey);
  font-size: 17px;
}

.section-heading.compact {
  max-width: 600px;
  margin-bottom: 0;
}

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

.product-card {
  min-height: 100%;
  padding: 18px 18px 24px;
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f8f9fa;
  transition: transform 0.3s ease;
}

.product-card h3 {
  margin: 22px 0 8px;
  text-align: center;
  text-transform: uppercase;
}

.product-card p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 14px;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 138, 74, 0.55);
  box-shadow: 0 18px 40px rgba(13, 27, 42, 0.08);
}

.product-card:hover img {
  transform: translateY(-5px);
}

.product-link {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.soft {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  background: var(--light);
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

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

.feature-grid article,
.capability-grid article {
  padding: 32px 28px;
  background: var(--white);
}

.feature-grid article {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(13, 27, 42, 0.07);
}

.feature-grid img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 22px;
}

.feature-index {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.feature-grid p,
.feature-grid p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 14px;
}

.capability-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  border: 0;
}

.capability-card {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 26px;
  color: var(--white);
  background: var(--navy);
}

.capability-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.capability-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.08), rgba(13, 27, 42, 0.88));
}

.capability-card h3,
.capability-card p {
  position: relative;
  z-index: 1;
}

.capability-card h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.capability-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.capability-card:hover img {
  transform: scale(1.035);
  opacity: 1;
}

.capability-section .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.application-section .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.application-list article {
  min-height: 210px;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.07);
  color: var(--navy);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.application-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 138, 74, 0.45);
  box-shadow: 0 18px 34px rgba(13, 27, 42, 0.07);
}

.application-list img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 18px;
}

.application-list h3 {
  margin-bottom: 10px;
}

.application-list p {
  margin-bottom: 0;
  color: var(--grey);
  font-size: 14px;
}

.about-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.about-copy {
  color: var(--grey);
  font-size: 17px;
}

.company-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--navy);
  list-style: none;
}

.company-list li {
  position: relative;
  padding-left: 18px;
}

.company-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "/";
  font-weight: 800;
}

.about-illustration {
  width: 100%;
  margin-top: 34px;
  opacity: 0.92;
}

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

.contact-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.contact-section h2 {
  color: var(--white);
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card {
  display: grid;
  gap: 6px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.form-note,
.response-note {
  font-size: 14px;
}

.response-note {
  color: var(--gold) !important;
  font-weight: 800;
}

.contact-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card a {
  font-size: 20px;
  font-weight: 700;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  color: var(--navy);
  background: var(--white);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--grey);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--navy);
  background: #fbfbfb;
  font: inherit;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(184, 138, 74, 0.18);
}

.full-span,
.quote-form button {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.15fr 0.6fr 0.8fr 1.15fr;
  gap: 36px;
  align-items: center;
  padding: 38px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.78);
  background: #07111d;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--white);
  font-size: 13px;
}

.footer-brand span,
.site-footer address,
.footer-links,
.footer-column {
  font-size: 13px;
  font-style: normal;
}

.footer-links,
.footer-column {
  display: grid;
  gap: 8px;
}

.footer-links h3,
.footer-column h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
}

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

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

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  color: var(--white);
  background: var(--navy);
}

.thank-you-card {
  width: min(760px, 100%);
  padding: clamp(36px, 8vw, 74px);
  background: var(--white);
  color: var(--navy);
}

.thank-you-card img {
  width: 88px;
  margin-bottom: 32px;
}

.thank-you-card p {
  color: var(--grey);
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 16px;
  }

  .hero,
  .split-section,
  .about-section,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    width: 100%;
    margin-left: 0;
  }

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

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

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    width: min(245px, calc(100vw - 100px));
  }

  .menu-toggle {
    display: inline-grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--navy);
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
  }

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

  h1 {
    font-size: 43px;
  }

  .section-shell,
  .contact-shell {
    padding: 72px 0;
  }

  .product-grid,
  .feature-grid,
  .capability-grid,
  .application-list,
  .quote-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 360px;
  }

  .quote-form {
    padding: 22px;
  }

  .site-footer {
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

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