:root {
  --black: #0b0d0f;
  --charcoal: #14181c;
  --charcoal-2: #1f252b;
  --silver: #e5e8ea;
  --muted: #aeb6bd;
  --orange: #f26a21;
  --orange-dark: #c84f13;
  --blue: #174a86;
  --blue-bright: #2f73bf;
  --line: rgba(229, 232, 234, 0.16);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--silver);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 13, 15, 0.92);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  color: var(--silver);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 2px solid #d7dde2;
  border-radius: 0.25rem;
  background:
    linear-gradient(90deg, var(--orange) 0 0.32rem, transparent 0.32rem),
    #050607;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 1px rgba(242, 106, 33, 0.35);
}

.site-nav {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  flex: 0 0 auto;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--orange);
  color: var(--silver);
  outline: none;
}

.hero {
  display: grid;
  min-height: calc(100svh - 6rem);
  background:
    linear-gradient(180deg, rgba(11, 13, 15, 0.2), var(--black) 92%),
    var(--charcoal);
}

.hero-media {
  min-height: 48svh;
  border-bottom: 4px solid var(--orange);
  background: var(--charcoal);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 48svh;
  object-fit: cover;
  object-position: 58% 58%;
}

.hero-content {
  display: grid;
  align-content: center;
  gap: 0.9rem;
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.eyebrow {
  margin: 0;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 0;
  color: #ffffff;
  font-size: clamp(3rem, 15vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: clamp(2rem, 9vw, 3.35rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.6rem;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.2;
}

.tagline {
  margin-bottom: 0;
  color: var(--silver);
  font-size: clamp(1.3rem, 5.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
}

.hero-copy,
.section-heading p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.05rem;
  border-radius: 0.25rem;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--orange);
  color: #111111;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff7d32;
  outline: none;
}

.button-secondary {
  border: 1px solid rgba(229, 232, 234, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: var(--silver);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--blue-bright);
  background: rgba(47, 115, 191, 0.22);
  outline: none;
}

.section,
.contact {
  padding: 4rem 1rem;
  background: #f4f5f6;
  color: #182028;
}

.section-dark {
  background: var(--charcoal);
  color: var(--silver);
}

.section-inner {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section:not(.section-dark) .eyebrow,
.contact .eyebrow {
  color: var(--orange-dark);
}

.section:not(.section-dark) h2,
.section:not(.section-dark) h3,
.contact h2 {
  color: #11161b;
}

.section:not(.section-dark) .section-heading p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  color: #4f5962;
}

.service-grid,
.hiring-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.job-card,
.gallery-card,
.gallery-feature,
.contact-panel {
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.service-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(23, 74, 134, 0.35), rgba(255, 255, 255, 0.04));
}

.service-card p,
.job-card li {
  color: var(--muted);
}

.job-card {
  padding: 1.35rem;
  border-top: 0.35rem solid var(--orange);
  background: #ffffff;
  color: #182028;
}

.job-card h3 {
  color: #11161b;
}

.job-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.2rem;
}

.job-card li {
  color: #4c5660;
}

.hiring-cta {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.25rem;
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.16), transparent 50%),
    #11161b;
  box-shadow: var(--shadow);
}

.hiring-cta p {
  max-width: 44rem;
  margin: 0;
  color: var(--silver);
  font-size: 1.02rem;
  font-weight: 700;
}

.hiring-buttons .button {
  width: 100%;
}

.benefits {
  padding: 3.2rem 1rem;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.16), transparent 45%),
    var(--black);
}

.benefits-inner {
  display: grid;
  gap: 1.2rem;
}

.benefit-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(242, 106, 33, 0.45);
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-weight: 800;
}

.gallery-feature,
.gallery-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--black);
}

.gallery-feature img,
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.gallery-card img {
  aspect-ratio: 1 / 1;
}

.gallery-flyer img {
  aspect-ratio: 4 / 5;
  max-height: 34rem;
  object-fit: contain;
  background: #050607;
}

figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact {
  background:
    linear-gradient(135deg, rgba(23, 74, 134, 0.1), transparent 42%),
    #f4f5f6;
}

.contact-inner {
  display: grid;
  gap: 1.3rem;
}

.contact-panel {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  background: #11161b;
  color: var(--silver);
}

.contact-panel p {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-panel strong {
  color: var(--orange);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-panel a {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-panel span {
  color: var(--muted);
}

.contact-buttons .button {
  width: 100%;
}

.site-footer {
  padding: 1.5rem 1rem;
  border-top: 1px solid var(--line);
  background: #070809;
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (min-width: 720px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
  }

  .site-nav {
    justify-content: flex-end;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    min-height: calc(100svh - 4.8rem);
  }

  .hero-media {
    min-height: auto;
    border-right: 4px solid var(--orange);
    border-bottom: 0;
  }

  .hero-media img {
    min-height: calc(100svh - 4.8rem);
    object-position: 56% center;
  }

  .hero-content {
    padding: 3rem 1.5rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .gallery-feature {
    grid-column: span 2;
  }

  .benefits-inner,
  .contact-inner {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
  }

  .benefit-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-buttons .button {
    width: auto;
  }

  .hiring-buttons .button {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .section,
  .contact {
    padding-block: 5.5rem;
  }

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

  .hero-content {
    padding-right: max(2rem, calc((100vw - 72rem) / 2));
    padding-left: 2.5rem;
  }
}
