:root {
  --navy: #0b1d26;
  --blue: #2f45b8;
  --deep: #18233f;
  --cream: #e3c08c;
  --gold: #cfaa73;
  --white: #fff;
  --paper: #f7f4ee;
  --display: "League Spartan", sans-serif;
  --body: "Source Sans 3", sans-serif;
  --pad: clamp(1rem, 5vw, 5rem);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font: 400 1rem/1.55 var(--body);
}
body.lock {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure {
  margin: 0;
}
a {
  color: inherit;
}
.skip {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  background: #fff;
  padding: 0.8rem;
}
.skip:focus {
  top: 1rem;
}
.site-header {
  height: 76px;
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 29, 38, 0.96);
  color: #fff;
}
.brand img,
footer img {
  width: 240px;
}
.site-header nav,
nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
}
.header-phone {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  text-decoration: none;
  font-weight: 600;
}
.cream {
  background: var(--cream);
  color: var(--navy);
}
.dark {
  background: var(--navy);
  color: #fff;
}
.menu-open,
.mobile-menu {
  display: none;
}
.hero {
  height: 100vh;
  height: 100svh;
  min-height: 700px;
  padding: 76px var(--pad) 72px;
  position: relative;
  background: var(--deep);
  overflow: hidden;
}
.hero-image {
  height: 100%;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-docket {
  position: absolute;
  z-index: 3;
  left: var(--pad);
  bottom: 110px;
  width: min(70%, 860px);
  background: var(--cream);
  padding: clamp(1.5rem, 4vw, 4rem);
  border-left: 8px solid var(--blue);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  font-weight: 600;
}
.brand-promise {
  margin: 0.5rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  letter-spacing: -0.015em;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin: 0.45rem 0;
}
h1 {
  font-size: clamp(3.5rem, 5.5vw, 5rem);
  max-width: 14ch;
}
h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}
.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2rem;
  margin-top: 1.2rem;
}
.hero-actions p {
  margin: 0;
}
.hero-actions > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-actions > div > a:last-child {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.roofline {
  position: absolute;
  z-index: 4;
  left: var(--pad);
  right: var(--pad);
  bottom: 0;
  min-height: 64px;
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 0.7fr) 1.9fr;
  align-items: center;
  padding: 0 1.2rem;
  gap: 1rem;
}
.roofline span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.roofline strong {
  text-align: right;
}
.needs {
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 9rem);
}
.needs header h2 {
  max-width: 11ch;
}
.needs header > p:last-child {
  max-width: 40ch;
}
.need-tabs {
  display: flex;
  border-bottom: 1px solid var(--navy);
}
.need-tabs button {
  border: 0;
  background: transparent;
  min-height: 52px;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
}
.need-tabs button[aria-selected="true"] {
  background: var(--blue);
  color: #fff;
}
.need-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  background: var(--paper);
}
.need-tabs {
  grid-column: 1/-1;
}
.need-stage figure {
  position: relative;
}
.need-stage figure img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}
.need-stage figcaption,
.work figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: #fff;
  color: var(--navy);
  padding: 0.6rem 0.75rem;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.need-stage article {
  padding: clamp(2rem, 4vw, 4rem);
  align-self: end;
}
.need-stage article > span {
  font: 400 2rem var(--display);
  color: var(--blue);
}
.need-stage h3 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}
.services {
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
  background: var(--navy);
  color: #fff;
}
.services header {
  position: static;
  height: auto;
  padding: 0;
  background: none;
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.services header h2 {
  max-width: 12ch;
}
.services > div {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.services article {
  display: grid;
  grid-template-columns: 60px minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.services article span {
  color: var(--cream);
}
.services h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}
.services article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}
.work {
  padding: var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: clamp(2rem, 6vw, 7rem);
  background: var(--paper);
  align-items: center;
}
.work figure {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}
.work figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work > div h2 {
  max-width: 11ch;
}
.contact {
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
  background: var(--cream);
}
.contact h2 {
  max-width: 13ch;
}
.contact > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.contact > div p {
  max-width: 50ch;
  margin-right: auto;
}
.contact > div > a:not(.button) {
  display: flex;
  min-height: 44px;
  align-items: center;
}
footer {
  padding: 3rem var(--pad);
  background: var(--deep);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
footer > div {
  display: flex;
  flex-direction: column;
}
footer a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
footer > p {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 1rem;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--navy);
  color: #fff;
  padding: 5rem 1rem 1rem;
}
.mobile-menu[aria-hidden="false"] {
  display: grid;
  align-content: start;
}
.mobile-menu a {
  font: 400 2rem var(--display);
  padding: 1rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.menu-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  min-height: 44px;
  border: 0;
  background: #fff;
  padding: 0.6rem 1rem;
}
@media (max-width: 900px) {
  .site-header nav {
    display: none;
  }
  .menu-open {
    display: block;
    min-height: 44px;
    background: var(--cream);
    color: var(--navy);
    border: 0;
    padding: 0.5rem 1rem;
  }
  .needs {
    grid-template-columns: 1fr;
  }
  .services header {
    grid-template-columns: 1fr;
  }
  .need-stage {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 650px) {
  .site-header {
    height: 68px;
    padding: 0 1rem;
  }
  .brand img {
    width: 190px;
  }
  .hero {
    height: 100svh;
    min-height: 812px;
    padding: 68px 1rem 64px;
  }
  .hero-image {
    height: 42%;
  }
  .hero-docket {
    left: 1rem;
    bottom: 76px;
    width: calc(100% - 2rem);
    padding: 1rem;
    border-left-width: 5px;
  }
  .hero-docket h1 {
    font-size: clamp(2.7rem, 12vw, 3.3rem);
    max-width: 100%;
  }
  .hero-actions {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .hero-actions p {
    font-size: 0.9rem;
  }
  .hero-actions > div {
    gap: 0.7rem;
  }
  .roofline {
    left: 1rem;
    right: 1rem;
    grid-template-columns: repeat(3, 1fr);
    padding: 0.5rem;
  }
  .roofline strong {
    display: none;
  }
  .roofline span {
    text-align: center;
    font-size: 0.55rem;
  }
  .needs,
  .services,
  .contact {
    padding: 5rem 1rem;
  }
  .needs header h2,
  .services header h2,
  .work > div h2,
  .contact h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }
  .need-stage figure img {
    height: 360px;
  }
  .need-tabs {
    overflow-x: auto;
  }
  .need-tabs button {
    flex-shrink: 0;
  }
  .services article {
    grid-template-columns: 40px 1fr;
  }
  .services article p {
    grid-column: 2;
  }
  .work {
    padding: 1rem;
    grid-template-columns: 1fr;
  }
  .work figure {
    min-height: 440px;
  }
  .work > div {
    padding: 3rem 0;
  }
  .contact > div {
    align-items: flex-start;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 3rem 1rem;
  }
  footer > p {
    grid-column: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
