:root {
  --black: #060a0d;
  --charcoal: #11191d;
  --panel: #151e22;
  --line: rgba(255, 255, 255, 0.22);
  --text: #f7f8f8;
  --muted: #c9d0d3;
  --orange: #ff5b12;
  --orange-2: #f07b24;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 70% 0%, rgba(255, 91, 18, 0.14), transparent 30%),
    linear-gradient(180deg, #071015, #060a0d 70%);
}

p,
a,
li,
small {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

.wrap {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 4px solid var(--orange);
  color: var(--orange);
  font-size: 21px;
  transform: rotate(45deg);
}

.brand-mark span {
  transform: rotate(-45deg);
}

.brand-name {
  display: block;
  font-size: 31px;
  line-height: 0.83;
}

.brand small {
  display: block;
  margin-top: 6px;
  color: #e8eeee;
  font-size: 12px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a,
.nav-trigger {
  position: relative;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
  white-space: nowrap;
  transition: color 160ms ease;
}

.nav-links > a::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active,
.nav-item:hover .nav-trigger {
  color: var(--orange);
}

.nav-links > a:hover::after,
.nav-links > a.active::after,
.nav-trigger:hover::after,
.nav-trigger.active::after,
.nav-item:hover .nav-trigger::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.chev {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 20;
  width: 240px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  background: rgba(9, 15, 18, 0.98);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.36);
  display: grid;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 11px;
  border-radius: 3px;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: rgba(255, 91, 18, 0.15);
  color: #fff;
}

.phone,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 3px;
  background: var(--orange);
  color: var(--text);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  white-space: nowrap;
}

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 3px;
  background: rgba(6, 10, 13, 0.88);
  color: var(--text);
  cursor: pointer;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu[open] > summary {
  border-color: var(--orange);
  color: var(--orange);
}

.mobile-menu__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 50;
  width: min(340px, calc(100vw - 28px));
  max-height: calc(100vh - 118px);
  overflow: auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(8, 13, 16, 0.98);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.48);
}

.mobile-menu__panel a,
.mobile-menu__panel summary {
  width: 100%;
  justify-content: flex-start;
  padding: 12px 10px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
}

.mobile-menu__panel > a {
  display: block;
  border-radius: 3px;
}

.mobile-menu__panel > a:hover,
.mobile-menu__panel details[open] > summary,
.mobile-menu__panel summary:hover {
  background: rgba(255, 91, 18, 0.14);
  color: #fff;
}

.mobile-submenu {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-submenu__links {
  display: grid;
  gap: 2px;
  padding: 0 0 8px 14px;
}

.mobile-submenu__links a {
  color: var(--muted);
}

.hero {
  padding: 78px 0 90px;
  background:
    linear-gradient(90deg, rgba(4, 8, 11, 0.95), rgba(4, 8, 11, 0.72)),
    var(--hero-image, url("site-hook-crew.jpg")) center / cover;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 18px;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.94;
  text-transform: uppercase;
}

.lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

main {
  padding: 34px 0 72px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

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

.card {
  min-width: 0;
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(17, 25, 29, 0.92);
}

.card h2,
.card h3 {
  max-width: 100%;
  margin-bottom: 12px;
  font-size: clamp(24px, 2.2vw, 31px);
  line-height: 1.02;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.card p,
.card li {
  color: #d8dfe2;
  font-size: 16px;
  line-height: 1.48;
}

.card ul {
  margin: 0;
  padding-left: 19px;
}

.rule {
  width: 60px;
  height: 3px;
  margin-top: 22px;
  background: var(--orange);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: stretch;
}

.photo {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--image) center / cover;
}

.photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.cta {
  margin-top: 14px;
  padding: 30px;
  border-radius: 5px;
  background: linear-gradient(180deg, var(--orange), var(--orange-2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta h2 {
  margin-bottom: 4px;
  font-size: 34px;
  text-transform: uppercase;
}

.cta p {
  margin-bottom: 0;
  color: #fff8f3;
  font-weight: 700;
}

.dark-button {
  background: var(--black);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .grid,
  .grid.two,
  .split {
    grid-template-columns: 1fr;
  }

  .cta {
    display: block;
  }

  .cta .button {
    width: 100%;
    margin-top: 18px;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: calc(100% - 28px);
  }

  .phone {
    display: none;
  }

  .brand-name {
    font-size: 25px;
  }

  .hero {
    padding: 58px 0 68px;
  }

  h1 {
    font-size: 48px;
  }
}
