:root {
  --navy: #0c1730;
  --ink: #172033;
  --muted: #5c6677;
  --line: #dfe5ec;
  --paper: #f6f8fb;
  --white: #ffffff;
  --red: #e84f48;
  --gold: #b99153;
  --teal: #2c817d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: rgba(12, 23, 48, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--red);
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  letter-spacing: 0;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.main-nav a:hover,
.header-action:hover {
  color: var(--white);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 16, 34, 0.94) 0%, rgba(8, 16, 34, 0.78) 42%, rgba(8, 16, 34, 0.26) 100%),
    linear-gradient(0deg, rgba(8, 16, 34, 0.42), rgba(8, 16, 34, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 88px);
  padding-top: 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 700;
}

.primary-button {
  background: var(--red);
  color: var(--white);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-band,
.value-band {
  background: var(--paper);
}

.intro-grid,
.value-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  padding: 72px 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.intro-grid p:last-child,
.contact-copy p,
.value-list p {
  color: var(--muted);
  font-size: 17px;
}

.sectors {
  padding: 82px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.sector-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  min-height: 270px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(12, 23, 48, 0.08);
}

.sector-photo {
  grid-row: 1 / span 4;
  width: 100%;
  height: 100%;
  min-height: 234px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--paper);
}

.sector-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 34px;
  margin-bottom: 2px;
  border-radius: 8px;
  background: rgba(232, 79, 72, 0.1);
  color: var(--red);
  font-weight: 700;
  align-self: start;
}

.sector-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
}

.sector-card p {
  color: var(--muted);
  font-size: 15px;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.product-list li {
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.value-list {
  display: grid;
  gap: 18px;
}

.value-list p {
  margin: 0;
  padding-left: 18px;
  border-left: 3px solid var(--red);
}

.value-list strong {
  color: var(--ink);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 70px);
  padding: 82px 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-panel a,
.contact-panel p {
  min-height: 116px;
  margin: 0;
  padding: 20px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.contact-panel span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.contact-panel strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 17px;
  line-height: 1.35;
}

.contact-panel p:last-child {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .main-nav {
    display: none;
  }

  .intro-grid,
  .value-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-action {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .sector-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .sector-card {
    grid-template-columns: 1fr;
  }

  .sector-photo {
    grid-row: auto;
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .intro-grid,
  .value-grid,
  .sectors,
  .contact-section {
    padding: 56px 0;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 8px;
  }
}
