@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Mulish:wght@400;500;600;700&display=swap");
:root {
  --coal: #16191d;
  --graphite: #23272d;
  --paper: #f5f1e9;
  --white: #fff;
  --cobalt: #315994;
  --copper: #b57449;
  --line: #cfc8bc;
  --ink: #20242a;
  --muted: #696d71;
  --max: 1200px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font:
    16px/1.7 Mulish,
    sans-serif;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3 {
  font-family: "Libre Baskerville", serif;
  line-height: 1.14;
  margin: 0 0 0.7em;
}
h1 {
  font-size: clamp(2.7rem, 5.8vw, 5.5rem);
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(2rem, 3.7vw, 3.3rem);
}
h3 {
  font-size: 1.12rem;
}
.wrap {
  width: min(calc(100% - 36px), var(--max));
  margin: auto;
}
.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 10px;
  top: 10px;
  background: white;
  padding: 12px;
  z-index: 10;
}
.head {
  background: var(--coal);
  color: white;
  position: relative;
  z-index: 4;
  border-bottom: 1px solid #3b3f45;
}
.nav {
  height: 86px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  text-decoration: none;
  font: 700 1.02rem "Libre Baskerville";
  letter-spacing: 0.02em;
}
.brand span {
  color: #d7a27d;
}
.links {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-left: auto;
}
.links a {
  text-decoration: none;
  font-size: 0.92rem;
}
.links a:hover,
.links a[aria-current="page"] {
  color: #d7a27d;
}
.menu-toggle,
.menu-label {
  display: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  text-decoration: none;
  background: var(--copper);
  color: white;
  border: 1px solid var(--copper);
  font-weight: 700;
}
.button.alt {
  background: transparent;
  border-color: currentColor;
}
.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  color: white;
  background:
    linear-gradient(
      90deg,
      rgba(22, 25, 29, 0.98),
      rgba(22, 25, 29, 0.8) 42%,
      rgba(22, 25, 29, 0.06) 68%
    ),
    url("images/chicago-license-advisory.png") center/cover;
}
.hero-copy {
  max-width: 650px;
  padding: 90px 0;
}
.eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #d7a27d;
  margin-bottom: 18px;
}
.lead {
  font-size: 1.15rem;
  max-width: 700px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.section {
  padding: 92px 0;
}
.visual-atlas {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 8px;
  padding: 18px 0;
}
.visual-atlas img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 1px solid var(--line);
}
.white {
  background: white;
}
.intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  margin-bottom: 45px;
}
.intro p {
  max-width: 700px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card {
  background: white;
  padding: 32px;
}
.card p,
.muted {
  color: var(--muted);
}
.card a {
  color: var(--cobalt);
  font-weight: 700;
}
.index {
  font: 700 1.8rem "Libre Baskerville";
  color: var(--copper);
}
.dark {
  background: var(--graphite);
  color: white;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process div {
  border-top: 2px solid var(--copper);
  padding-top: 20px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.list {
  list-style: none;
  padding: 0;
}
.list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.quote {
  font: 400 clamp(1.7rem, 3.5vw, 3rem) / 1.35 "Libre Baskerville";
  max-width: 920px;
}
.page-hero {
  padding: 105px 0 75px;
  background: #e9e1d5;
}
.page-hero h1 {
  max-width: 1000px;
}
.crumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 26px;
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
.table th,
.table td {
  padding: 16px;
  border: 1px solid var(--line);
  text-align: left;
}
.table th {
  background: #e7e2d9;
}
.faq {
  max-width: 850px;
}
.faq details {
  border-block: 1px solid var(--line);
  padding: 20px 0;
  margin-top: -1px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
}
.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
}
.panel {
  background: white;
  border: 1px solid var(--line);
  padding: 32px;
}
label {
  display: block;
  margin: 12px 0 5px;
  font-weight: 700;
}
input,
select,
textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--line);
  font: inherit;
}
textarea {
  min-height: 130px;
}
.cta {
  padding: 65px 0;
  background: var(--cobalt);
  color: white;
}
.cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.foot {
  padding: 65px 0 24px;
  background: var(--coal);
  color: white;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 35px;
}
.foot a {
  display: block;
  color: #c8cbd0;
  text-decoration: none;
  margin: 8px 0;
}
.foot h3 {
  font: 700 0.8rem Mulish;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d7a27d;
}
.legal {
  max-width: 860px;
}
.legal h2 {
  font-size: 1.75rem;
  margin-top: 2em;
}
.fine {
  border-top: 1px solid #3d4147;
  margin-top: 40px;
  padding-top: 20px;
  color: #9da1a7;
  font-size: 0.82rem;
}
@media (max-width: 820px) {
  .visual-atlas {
    grid-template-columns: repeat(4, 1fr);
  }
  .menu-label {
    display: block;
    margin-left: auto;
    padding: 12px;
    border: 1px solid #555;
  }
  .links {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: var(--coal);
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .menu-toggle:checked ~ .links {
    display: flex;
  }
  .hero {
    min-height: 730px;
    align-items: end;
    background:
      linear-gradient(
        0deg,
        rgba(22, 25, 29, 0.98),
        rgba(22, 25, 29, 0.65) 58%,
        transparent
      ),
      url("images/chicago-license-advisory.png") 60% center/cover;
  }
  .hero-copy {
    padding: 60px 0;
  }
  .intro,
  .split,
  .contact,
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .grid,
  .process {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 66px 0;
  }
  .cta .wrap {
    display: block;
  }
  .cta .button {
    margin-top: 15px;
  }
}
