:root {
  --ink: #101114;
  --charcoal: #17191d;
  --graphite: #2b2d33;
  --muted: #70737c;
  --line: #e3e1dc;
  --paper: #f8f6f1;
  --white: #ffffff;
  --orange: #f05a28;
  --orange-deep: #cb3d17;
  --steel: #d9e5e8;
  --shadow: 0 22px 70px rgba(16, 17, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(16, 17, 20, 0.88);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--orange);
  stroke-width: 5.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: #e6e6e8;
  font-size: 32px;
  font-weight: 400;
}

.brand-copy small {
  color: #a9abb0;
  font-size: 12px;
  font-weight: 700;
  margin-top: 6px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 600;
}

.nav a,
.header-action {
  border-radius: 999px;
  padding: 10px 14px;
  transition: color 160ms ease, background 160ms ease;
}

.nav a:hover,
.header-action:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
}

.header-action {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--charcoal);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.96) 0%, rgba(9, 10, 12, 0.78) 37%, rgba(9, 10, 12, 0.26) 70%, rgba(9, 10, 12, 0.66) 100%),
    linear-gradient(0deg, rgba(9, 10, 12, 0.9) 0%, rgba(9, 10, 12, 0.05) 48%, rgba(9, 10, 12, 0.72) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 154px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(260px, 360px);
  align-items: end;
  gap: clamp(28px, 7vw, 88px);
}

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

.hero h1,
.section h2,
.cta h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.94;
  font-weight: 800;
}

.hero-text {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-actions {
  max-width: 260px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(240, 90, 40, 0.28);
}

.button-primary:hover {
  background: var(--orange-deep);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost.light {
  color: var(--ink);
  border-color: rgba(16, 17, 20, 0.16);
  background: rgba(255, 255, 255, 0.62);
}

.hero-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero-panel > div {
  display: grid;
  gap: 7px;
  padding: 22px;
  background: rgba(12, 13, 16, 0.46);
}

.panel-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-panel strong {
  font-size: 22px;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 94px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 330px) minmax(0, 690px);
  gap: 58px;
  align-items: end;
  margin-bottom: 34px;
}

.section h2,
.cta h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  font-weight: 800;
}

.cta {
  width: min(1180px, calc(100% - 36px));
  margin: 34px auto 24px;
  padding: clamp(34px, 6vw, 66px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(240, 90, 40, 0.92), rgba(203, 61, 23, 0.78)),
    var(--orange);
}

.cta .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 30px 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 920px) {
  .site-header {
    min-height: 74px;
  }

  .nav {
    display: none;
  }

  .hero-inner,
  .section-heading,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 132px;
  }

  .hero-panel {
    max-width: 480px;
  }

}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 26px;
  }

  .brand-copy small,
  .header-action {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .footer {
    flex-direction: column;
  }
}
