:root {
  --font-heading: 'Libre Baskerville', sans-serif;
  --font-body: 'Libre Franklin', sans-serif;
  --color-background: #FFFFFF;
  --color-foreground: #4C5F6B;
  --color-muted: #788288;
  --color-primary: #78BFC8;
  --color-accent: #2B3D41;
  --color-border: #D9DFE3;
  --radius-md: 6px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 1180px;
  min-height: 100%;
  background: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
}

body {
  overflow-x: hidden;
}

.mobile-draft-warning {
  display: none;
}

.site-shell {
  min-height: 100vh;
  background: var(--color-background);
}

.site-nav {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 1180px;
  height: 74px;
  padding: 8px 36px 8px 31px;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
}

.site-nav__logo-link {
  display: inline-flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}

.site-nav__logo {
  display: block;
  width: auto;
  height: 58px;
  object-fit: contain;
}

.site-nav__phone {
  color: var(--color-primary);
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__phone:hover,
.site-nav__phone:focus-visible {
  color: var(--color-accent);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background: var(--color-background);
}

.hero__content {
  position: absolute;
  z-index: 3;
  top: 49%;
  left: 50%;
  width: min(860px, 56vw);
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  color: var(--color-foreground);
  font-family: var(--font-heading);
  font-size: clamp(86px, 8.6vw, 115px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero__headline span {
  display: block;
  width: max-content;
  max-width: 100%;
  text-align: center;
}

.hero__headline-lock {
  white-space: nowrap;
}

.hero__subtitle {
  margin: 24px 0 0;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero__cta {
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
}

.consultation-button,
.phone-link {
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.consultation-button {
  justify-content: center;
  padding: 0 32px;
  border: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--color-primary);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.consultation-button:hover,
.consultation-button:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.phone-link {
  color: var(--color-primary);
}

.phone-link:hover,
.phone-link:focus-visible {
  color: var(--color-accent);
}

.hero__people {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.person {
  position: absolute;
  bottom: -200px;
  display: block;
  width: auto;
  max-width: none;
  object-fit: contain;
  user-select: none;
}

.person--allen {
  left: 4.4vw;
  height: calc(78vh + 200px);
  z-index: 1;
}

.person--michael {
  left: -9vw;
  height: calc(74vh + 200px);
  z-index: 2;
}

.person--randy {
  right: 3.4vw;
  height: calc(75vh + 200px);
  z-index: 1;
}

.person--matthew {
  right: -9vw;
  height: calc(76vh + 200px);
  z-index: 2;
}

@media (max-height: 760px) {
  .hero__headline {
    font-size: clamp(79px, 7.6vw, 104px);
  }

  .hero__cta {
    margin-top: 34px;
  }

  .person {
    bottom: -200px;
  }
}

@media (max-width: 1179px), (hover: none) and (pointer: coarse) {
  html,
  body {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .site-nav,
  .site-shell {
    visibility: hidden;
  }

  .mobile-draft-warning {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 24px;
    background: var(--color-background);
  }

  .mobile-draft-warning__panel {
    width: min(100%, 430px);
    padding: 24px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-background);
    text-align: left;
  }

  .mobile-draft-warning__eyebrow {
    margin: 0 0 12px;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .mobile-draft-warning__title {
    margin: 0;
    color: var(--color-foreground);
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.01em;
  }

  .mobile-draft-warning__copy {
    margin: 16px 0 0;
    color: var(--color-muted);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
  }
}
