:root {
  --navy: #071b30;
  --paper: #f2efe8;
  --gold: #d7ae5c;
  --ink: #182638;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
}

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

header {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  border-bottom: 1px solid rgba(215, 174, 92, .35);
  background: var(--navy);
  color: white;
}

header img {
  display: block;
  width: min(270px, 52vw);
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.back {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  font-size: 9px;
  letter-spacing: .19em;
  text-transform: uppercase;
}

main {
  min-height: calc(100vh - 210px);
  padding: clamp(70px, 10vw, 145px) 8vw;
}

.eyebrow {
  color: #a7782e;
  font-size: 9px;
  letter-spacing: .25em;
}

h1 {
  margin: 22px 0 clamp(60px, 8vw, 110px);
  font-family: "Italiana", serif;
  font-size: clamp(58px, 9vw, 132px);
  font-weight: 400;
  line-height: .9;
}

h1 i { color: #b7832d; font-weight: 400; }

.license-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(45px, 9vw, 140px);
  border-top: 1px solid rgba(24, 38, 56, .25);
  padding-top: 42px;
}

.lead {
  margin: 0;
  font-family: "Italiana", serif;
  font-size: clamp(28px, 3.3vw, 50px);
  line-height: 1.17;
}

h2 {
  margin: 0 0 10px;
  color: #a7782e;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h2:not(:first-child) { margin-top: 36px; }

.license-grid p:not(.lead) {
  margin: 0;
  color: #5f625f;
  font-size: 14px;
  line-height: 1.8;
}

.contact {
  display: inline-flex;
  gap: 40px;
  margin-top: 34px;
  padding-bottom: 10px;
  border-bottom: 1px solid #b7832d;
  font-size: 11px;
  letter-spacing: .1em;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 6vw;
  background: #0c0c0b;
  color: #777;
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  header { min-height: 84px; padding-inline: 20px; }
  header img { width: 190px; height: 54px; }
  main { padding: 70px 24px 90px; }
  .license-grid { grid-template-columns: 1fr; }
  footer { padding-inline: 24px; flex-direction: column; }
}
