:root {
  --off-white: #F7F5EF;
  --orange: #D87932;
  --ink: #222629;
  --muted: #60625f;
  --line: rgba(34, 38, 41, 0.14);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  min-height: 92px;
  padding: 24px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--orange);
  background: rgba(247, 245, 239, 0.94);
  position: sticky;
  top: 0;
  z-index: 5;
}

.brand {
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 800;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: -0.04em;
}

nav {
  display: flex;
  gap: 24px;
  font-size: 16px;
}

nav a {
  text-decoration: none;
  font-weight: 700;
}

.hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  border-bottom: 1px solid var(--line);
}

.hero-text {
  padding: clamp(44px, 7vw, 92px) clamp(24px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-image {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(247,245,239,0.88), rgba(247,245,239,0.14) 42%, rgba(247,245,239,0.02)),
    url("images/hero-gear.jpg") center / cover no-repeat;
}

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

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.9;
  color: var(--orange);
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 1.1;
}

.hero p,
.intro p,
.split p,
.contact-section p {
  max-width: 680px;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--ink);
}

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

.button {
  display: inline-block;
  padding: 14px 22px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: var(--off-white);
  font-weight: 800;
  text-decoration: none;
}

.button.ghost {
  background: transparent;
  color: var(--orange);
}

.section {
  padding: clamp(52px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.intro {
  border-bottom: 1px solid var(--line);
}

.intro h2 {
  color: var(--orange);
}

.section-heading {
  margin-bottom: 32px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 44px);
}

.card {
  background: var(--off-white);
  border: 1px solid var(--line);
}

.card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(100%);
}

.card-body {
  padding: 22px 0 0;
}

.card p {
  font-size: clamp(19px, 1.8vw, 26px);
  color: var(--ink);
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 6vw, 80px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-section {
  margin: clamp(24px, 5vw, 72px);
  padding: clamp(34px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  background: var(--ink);
  color: var(--off-white);
}

.contact-section h2,
.contact-section p {
  color: var(--off-white);
}

.contact-card {
  display: grid;
  gap: 12px;
  justify-items: start;
  font-size: clamp(26px, 3vw, 42px);
}

.contact-card a {
  color: var(--off-white);
  text-decoration-color: var(--orange);
  text-underline-offset: 6px;
}

footer {
  padding: 28px clamp(20px, 5vw, 72px) 52px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

footer a {
  color: var(--orange);
  font-weight: 800;
}

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

  nav {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero,
  .cards,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    min-height: 360px;
    order: -1;
  }

  .card-body {
    padding-top: 16px;
  }

  footer {
    flex-direction: column;
  }
}
