:root {
  --ink: #0b1b32;
  --ink-soft: #34435c;
  --paper: #fbfaf6;
  --white: #ffffff;
  --cream: #f9f2e1;
  --maroon: #8b1628;
  --maroon-dark: #460b19;
  --copper: #c88542;
  --line: rgba(11, 27, 50, 0.14);
  --shadow: 0 24px 70px rgba(11, 27, 50, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

a:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 700;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.brand span {
  overflow-wrap: anywhere;
}

.top-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.top-actions a {
  min-width: 74px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 88svh;
  padding: 126px 20px 84px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.88), rgba(70, 11, 25, 0.54), rgba(7, 17, 31, 0.2)),
    url("assets/hero.jpg") center / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 34%, rgba(0, 0, 0, 0.32)),
    rgba(4, 10, 18, 0.1);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--maroon);
}

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

h1 {
  max-width: 780px;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 700;
}

.launch-note {
  margin-top: 20px;
  color: var(--cream);
  font-size: 24px;
  font-weight: 700;
}

.hero-copy {
  max-width: 670px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.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 18px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  overflow-wrap: anywhere;
}

.button.primary {
  color: var(--white);
  background: var(--maroon);
  box-shadow: 0 18px 40px rgba(70, 11, 25, 0.35);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.status-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: -38px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.status-band div {
  min-width: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.status-band span {
  display: block;
  color: var(--maroon);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-band strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.services {
  width: min(1180px, calc(100% - 40px));
  margin: 86px auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2,
.contact-panel h2 {
  max-width: 780px;
  font-size: 36px;
  line-height: 1.12;
}

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

.service-grid article {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--maroon);
  font-weight: 700;
}

.service-grid h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.service-grid p,
.contact-panel p,
footer p {
  color: var(--ink-soft);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 40px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 80px;
  padding: 40px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.contact-panel .eyebrow {
  color: var(--cream);
}

.contact-panel p {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
}

address {
  display: grid;
  gap: 12px;
  margin: 0;
  font-style: normal;
}

address a {
  display: block;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  overflow-wrap: anywhere;
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 28px;
  font-size: 14px;
}

@media (max-width: 860px) {
  .site-header {
    width: min(100% - 28px, 1180px);
    gap: 14px;
  }

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

  .brand span {
    font-size: 15px;
  }

  .top-actions a {
    min-width: 62px;
    padding: 9px 10px;
  }

  .hero {
    min-height: 86svh;
    padding: 112px 14px 78px;
    background-position: 61% center;
  }

  h1 {
    font-size: 42px;
  }

  .launch-note {
    font-size: 22px;
  }

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

  .status-band,
  .section-heading,
  .service-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .status-band {
    width: calc(100% - 28px);
  }

  .services,
  .contact-panel,
  footer {
    width: calc(100% - 28px);
  }

  .section-heading {
    gap: 12px;
  }

  .section-heading h2,
  .contact-panel h2 {
    font-size: 30px;
  }

  .contact-panel {
    padding: 28px;
  }
}

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

  .top-actions {
    flex-direction: column;
    gap: 8px;
  }

  .top-actions a {
    width: 64px;
  }

  .hero {
    min-height: 84svh;
  }

  h1 {
    font-size: 34px;
  }

  .launch-note {
    font-size: 20px;
  }

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

  .button {
    width: 100%;
  }

  .status-band div,
  .service-grid article {
    padding: 20px;
  }

  .services {
    margin: 64px auto;
  }

  .section-heading h2,
  .contact-panel h2 {
    font-size: 26px;
  }
}
