* {
  box-sizing: border-box;
}

:root {
  --bg: #111110;
  --bg-deep: #0b0b0a;
  --panel: #171715;
  --cream: #ded1b9;
  --paper: #eee3cf;
  --rust: #a85b2d;
  --rust-bright: #bd6a35;
  --muted: #bdb3a3;
  --line: #493b31;
  --line-soft: rgba(222, 209, 185, .16);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 20% 0%, rgba(168, 91, 45, .07), transparent 24rem),
    repeating-linear-gradient(0deg, rgba(255,255,255,.012) 0, rgba(255,255,255,.012) 1px, transparent 1px, transparent 4px),
    var(--bg);
  font-family: "Roboto Condensed", Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .17;
  background-image:
    radial-gradient(circle at 10% 20%, #a85b2d 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 42%, #eee3cf 0 1px, transparent 1.5px);
  background-size: 113px 127px, 173px 191px;
  mix-blend-mode: soft-light;
}

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

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid var(--rust);
  background: rgba(11, 11, 10, .93);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark,
.nav-links a,
h1, h2, h3,
.btn {
  font-family: "Oswald", Impact, sans-serif;
  text-transform: uppercase;
}

.wordmark {
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .02em;
}

.nav-links {
  display: flex;
  gap: 42px;
}

.nav-links a {
  font-weight: 600;
  letter-spacing: .09em;
  color: var(--cream);
}

.nav-links a:hover {
  color: var(--rust-bright);
}

.brand-banner {
  margin-top: 26px;
  padding: 0;
  border: 1px solid rgba(168, 91, 45, .25);
  box-shadow: 0 18px 45px rgba(0,0,0,.38);
}

.brand-banner img {
  aspect-ratio: 2.68 / 1;
  object-fit: cover;
}

.hero {
  display: grid;
  grid-template-columns: 1.03fr 1.2fr;
  min-height: 530px;
  border-bottom: 1px solid var(--line-soft);
}

.hero-copy {
  padding: clamp(34px, 5vw, 70px) 34px 52px 0;
  align-self: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--rust-bright);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: .11em;
  font-size: 1rem;
}

h1 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: .99;
  letter-spacing: .005em;
  text-shadow: 0 2px 0 rgba(0,0,0,.55);
}

.lead {
  max-width: 540px;
  margin: 22px 0 28px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--paper);
}

.buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--rust-bright);
  font-weight: 600;
  letter-spacing: .045em;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-solid {
  background: var(--rust);
  color: white;
}

.btn-solid:hover {
  background: var(--rust-bright);
}

.btn-outline {
  color: var(--rust-bright);
  background: rgba(0,0,0,.28);
}

.btn-outline:hover {
  color: var(--paper);
}

.photo-panel {
  overflow: hidden;
  background: var(--panel);
}

.photo-panel img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.08) brightness(.84);
}

.hero-image {
  min-height: 530px;
}

.hero-image img {
  object-position: center center;
}

.about {
  margin-top: 28px;
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  border: 1px solid var(--line);
  background: linear-gradient(115deg, rgba(23,23,21,.92), rgba(13,13,12,.96));
}

.engine-image {
  min-height: 360px;
}

.engine-image img {
  object-position: center center;
}

.about-copy {
  padding: clamp(30px, 5vw, 58px);
}

.about-copy h2,
.follow h2 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  line-height: 1.06;
  color: var(--cream);
  text-transform: none;
}

.about-copy p:not(.eyebrow) {
  font-size: 1.13rem;
  color: var(--paper);
}

.pillars {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pillar {
  min-height: 178px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--line);
  background: rgba(23,23,21,.8);
}

.icon {
  color: var(--rust-bright);
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 12px;
  filter: sepia(1) saturate(.8);
}

.gear {
  font-size: 2.9rem;
}

.pillar h3 {
  margin: 0 0 4px;
  color: var(--cream);
  font-size: 1.65rem;
}

.pillar p {
  margin: 0;
  color: var(--paper);
  font-size: 1.04rem;
}

.follow {
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 24px 30px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 30px;
  background: rgba(23,23,21,.74);
}

.follow h2 {
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  margin-bottom: 0;
}

.follow-actions {
  text-align: center;
}

.socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.socials a {
  border: 1px solid var(--rust);
  min-height: 50px;
  display: grid;
  place-items: center;
  color: var(--rust-bright);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .04em;
}

.socials a:hover {
  background: var(--rust);
  color: white;
}

.follow-actions p {
  color: var(--muted);
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--rust);
  padding: 22px 0;
  background: var(--bg-deep);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.rust {
  color: var(--rust-bright);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: .06em;
}

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

  .hero-copy {
    padding-right: 0;
  }

  .hero-image {
    min-height: 420px;
  }

  .engine-image {
    min-height: 320px;
  }

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

  .follow {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 62px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: .82rem;
  }

  .brand-banner {
    margin-top: 14px;
  }

  .brand-banner img {
    min-height: 150px;
    object-fit: cover;
  }

  .hero-copy {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-image {
    min-height: 320px;
  }

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

  .footer-inner {
    flex-direction: column;
  }
}
