:root {
  color-scheme: dark;
  --ink: #f3eee5;
  --muted: #c5b8a7;
  --quiet: #867967;
  --coal: #0c0b09;
  --black: #050504;
  --steel: #30363a;
  --brass: #c0a36f;
  --copper: #9d5937;
  --line: rgba(243, 238, 229, 0.18);
  --shadow: rgba(0, 0, 0, 0.56);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 10%, rgba(192, 163, 111, 0.14), transparent 32rem),
    linear-gradient(135deg, #0a0908 0%, #15110d 48%, #050504 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 4, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid rgba(192, 163, 111, 0.5);
  border-radius: 50%;
  box-shadow: 0 8px 22px var(--shadow);
}

.brand span {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100svh - 76px);
  padding: clamp(28px, 5vw, 74px) clamp(18px, 5vw, 78px) clamp(56px, 8vw, 96px);
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: 9% 2% 2% 2%;
  content: "";
  background: rgba(0, 0, 0, 0.54);
  filter: blur(26px);
  transform: translateY(20px);
}

.hero-media img {
  position: relative;
  display: block;
  width: min(100%, 620px);
  margin: 0 auto;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.72));
}

.hero-content {
  max-width: 660px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 20px;
  font-size: clamp(3.6rem, 8.4vw, 8.2rem);
  line-height: 0.86;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 0.95;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.16rem;
  text-transform: uppercase;
}

.hero-content p:not(.eyebrow),
.intro p,
.contact p {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 19px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  color: #12100d;
  border-color: var(--brass);
  background: linear-gradient(180deg, #ddc48c, #a98853);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.band,
.section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 78px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(280px, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: end;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

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

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

.capability-card {
  min-height: 260px;
  padding: clamp(22px, 3vw, 32px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    var(--coal);
}

.capability-card span {
  display: block;
  margin-bottom: 50px;
  color: var(--copper);
  font-weight: 900;
}

.capability-card p,
.process-list span,
.fine-print {
  color: var(--muted);
  line-height: 1.55;
}

.process {
  background:
    linear-gradient(90deg, rgba(48, 54, 58, 0.45), rgba(5, 5, 4, 0.2)),
    rgba(255, 255, 255, 0.03);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  min-height: 160px;
  padding: 24px;
  border-left: 3px solid var(--brass);
  background: rgba(5, 5, 4, 0.36);
}

.process-list strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.06rem;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
}

.contact-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

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

.contact-panel p {
  margin: 20px 0 0;
  font-size: 1rem;
}

.contact-panel .fine-print {
  font-size: 0.88rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 78px);
  color: var(--quiet);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .hero,
  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-content {
    order: -1;
  }

  .hero-media img {
    max-width: 560px;
  }

  .capability-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 4.4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .capability-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

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

  footer {
    flex-direction: column;
  }
}
