:root {
  --page-black: #000;
  --nav-gold: rgb(217, 155, 41);
  --white: #fff;
  --max-width: 1228px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page-black);
  color: var(--white);
  font-family: Lato, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--page-black);
}

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

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

.site-header {
  width: 100%;
  background: var(--page-black);
}

.nav-wrap {
  width: min(calc(100% - 56px), var(--max-width));
  min-height: 132px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 14px 0 6px;
}

.brand {
  width: 124px;
  justify-self: start;
}

.brand img {
  width: 124px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(20px, 2.55vw, 38px);
  min-width: 0;
}

.primary-nav a,
.agent-cta {
  font-family: Oswald, Impact, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav a {
  color: var(--nav-gold);
  padding: 18px 0;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: #f0bf52;
}

.agent-cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border: 1px solid var(--white);
  border-radius: 12px;
  color: var(--white);
  justify-self: end;
}

.agent-cta:hover,
.agent-cta:focus-visible {
  background: var(--white);
  color: var(--page-black);
}

.menu-toggle {
  display: none;
}

.page-shell {
  width: min(calc(100% - 48px), 1040px);
  margin: 126px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-stage {
  width: 100%;
  position: relative;
}

.feature-stage picture {
  display: block;
}

.feature-image {
  width: 100%;
  aspect-ratio: 1.655 / 1;
  object-fit: cover;
  object-position: center;
  background: #06184a;
}

.feature-image[src$="feature.png"] {
  min-height: 420px;
}

.feature-image[src$="feature.png"]:not([data-loaded="true"]) {
  display: none;
}

.feature-placeholder {
  display: none;
}

.feature-stage.has-image .feature-placeholder {
  display: none;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 92px 0 96px;
}

.social-links a {
  width: 67px;
  height: 67px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: var(--white);
}

.social-links .facebook {
  background: #4267b2;
}

.social-links .instagram {
  background: #e1306c;
}

.social-links .youtube {
  background: #ff0000;
}

.social-links .tiktok {
  background: transparent;
}

.social-links .tiktok i {
  filter: drop-shadow(1px 0 #25f4ee) drop-shadow(-1px 0 #fe2c55);
}

@media (max-width: 1180px) {
  .nav-wrap {
    grid-template-columns: 112px minmax(0, 1fr) auto;
    gap: 24px;
  }

  .brand,
  .brand img {
    width: 112px;
  }

  .primary-nav {
    gap: 22px;
  }

  .primary-nav a,
  .agent-cta {
    font-size: 22px;
  }

  .agent-cta {
    min-height: 50px;
    padding: 10px 20px;
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 96px;
    grid-template-columns: 104px 1fr auto;
    gap: 18px;
  }

  .brand,
  .brand img {
    width: 104px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    color: var(--white);
    justify-self: end;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
  }

  .primary-nav,
  .agent-cta {
    display: none;
  }

  .site-header[data-open="true"] .primary-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 10;
    width: 240px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 82px 24px 24px;
    background: var(--page-black);
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.5);
  }

  .site-header[data-open="true"] .agent-cta {
    position: fixed;
    top: 246px;
    right: 24px;
    z-index: 11;
    width: 192px;
    min-height: 44px;
    display: inline-flex;
    padding: 10px 14px;
    font-size: 20px;
  }

  .site-header[data-open="true"] .primary-nav a {
    width: 100%;
    padding: 8px 0;
    font-size: 22px;
  }

  .page-shell {
    margin-top: 80px;
  }
}

@media (max-width: 620px) {
  .nav-wrap,
  .page-shell {
    width: min(calc(100% - 28px), 1040px);
  }

  .page-shell {
    margin-top: 48px;
  }

  .feature-image {
    min-height: 220px;
  }

  .social-links {
    margin-top: 46px;
  }

  .social-links a {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
}
