@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@500;600;700&family=Noto+Sans:wght@400;500&display=swap");
:root {
  --navy: #102b36;
  --teal: #2e6869;
  --mist: #edf4f2;
  --white: #fff;
  --red: #a83d45;
  --lime: #dce96b;
  --ink: #17303a;
  --muted: #5b7078;
  --line: #bdd0cc;
  --max: 1120px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font:
    16px/1.7 "Noto Sans",
    sans-serif;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3 {
  font-family: Lexend, sans-serif;
  line-height: 1.1;
  margin: 0 0 0.65em;
}
h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
h3 {
  font-size: 1.1rem;
}
.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin: auto;
}
.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 10px;
  top: 10px;
  padding: 12px;
  background: white;
  z-index: 9;
}
.top {
  background: var(--navy);
  color: white;
  font-size: 0.82rem;
}
.top .wrap {
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
}
.head {
  background: white;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 4;
}
.nav {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  text-decoration: none;
  font: 700 1.15rem Lexend;
}
.brand b {
  color: var(--red);
}
.links {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}
.links a {
  text-decoration: none;
  font-weight: 500;
}
.links a:hover,
.links a[aria-current="page"] {
  color: var(--red);
}
.menu-toggle,
.menu-label {
  display: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  background: var(--red);
  color: white;
  text-decoration: none;
  border: 2px solid var(--red);
  font-weight: 700;
  border-radius: 8px;
}
.button.alt {
  background: white;
  color: var(--navy);
  border-color: var(--navy);
}
.hero {
  min-height: 680px;
  display: grid;
  align-items: center;
  color: white;
  background:
    linear-gradient(
      90deg,
      rgba(16, 43, 54, 0.08),
      rgba(16, 43, 54, 0.1) 50%,
      rgba(16, 43, 54, 0.96) 68%
    ),
    url("images/boston-support-desk.png") center/cover;
}
.hero-copy {
  margin-left: auto;
  max-width: 530px;
  padding: 75px 0;
}
.label {
  display: inline-block;
  padding: 7px 10px;
  background: var(--lime);
  color: var(--navy);
  font: 700 0.75rem Lexend;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  border-radius: 5px;
}
.lead {
  font-size: 1.16rem;
  max-width: 680px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.section {
  padding: 88px 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);
  border-radius: 7px;
}
.white {
  background: white;
}
.head-row {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  margin-bottom: 40px;
}
.head-row p {
  max-width: 560px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 27px;
}
.card .tag {
  font: 600 0.75rem Lexend;
  color: var(--red);
  text-transform: uppercase;
}
.card p,
.muted {
  color: var(--muted);
}
.card a {
  font-weight: 700;
  color: var(--teal);
}
.status {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: white;
}
.status div {
  padding: 25px;
  border-right: 1px solid var(--line);
}
.status div:last-child {
  border: 0;
}
.status strong {
  display: block;
  font: 700 1.4rem Lexend;
  color: var(--teal);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.check {
  list-style: none;
  padding: 0;
}
.check li {
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.check li:before {
  content: "✓";
  position: absolute;
  left: 3px;
  color: var(--red);
  font-weight: 700;
}
.page-hero {
  padding: 92px 0 68px;
  background: linear-gradient(120deg, #dfecea, #fff 65%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  max-width: 900px;
}
.crumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
.table th,
.table td {
  border: 1px solid var(--line);
  padding: 15px;
  text-align: left;
}
.table th {
  background: #dbeae7;
}
.faq {
  max-width: 820px;
}
.faq details {
  background: white;
  border: 1px solid var(--line);
  margin: 10px 0;
  border-radius: 8px;
  padding: 18px;
}
.faq summary {
  font-weight: 700;
  cursor: pointer;
}
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 35px;
}
.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px;
}
label {
  display: block;
  font-weight: 600;
  margin: 11px 0 5px;
}
input,
select,
textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--line);
  font: inherit;
}
textarea {
  min-height: 120px;
}
.cta {
  padding: 60px 0;
  background: var(--lime);
}
.cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.foot {
  padding: 60px 0 22px;
  background: var(--navy);
  color: white;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}
.foot a {
  display: block;
  text-decoration: none;
  color: #c5d9da;
  margin: 7px 0;
}
.foot h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--lime);
}
.legal {
  max-width: 850px;
}
.legal h2 {
  font-size: 1.7rem;
  margin-top: 2em;
}
.fine {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid #39525d;
  color: #9db2b7;
  font-size: 0.82rem;
}
@media (max-width: 800px) {
  .visual-atlas {
    grid-template-columns: repeat(4, 1fr);
  }
  .top {
    display: none;
  }
  .menu-label {
    display: block;
    margin-left: auto;
    padding: 12px;
    border: 1px solid var(--line);
  }
  .links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: white;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .menu-toggle:checked ~ .links {
    display: flex;
  }
  .hero {
    min-height: 720px;
    align-items: end;
    background:
      linear-gradient(
        0deg,
        rgba(16, 43, 54, 0.98),
        rgba(16, 43, 54, 0.65) 55%,
        transparent
      ),
      url("images/boston-support-desk.png") 35% center/cover;
  }
  .hero-copy {
    margin: 0;
    padding: 55px 0;
  }
  .grid,
  .status,
  .split,
  .contact,
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .status div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .head-row {
    display: block;
  }
  .section {
    padding: 64px 0;
  }
  .cta .wrap {
    display: block;
  }
  .cta .button {
    margin-top: 15px;
  }
}
