:root {
  --charcoal: #1f2324;
  --charcoal-deep: #141718;
  --concrete: #656b6d;
  --concrete-light: #d8d8d2;
  --paper: #f3f1e8;
  --white: #fffef7;
  --yellow: #f2b705;
  --orange: #ee7623;
  --ink: #202425;
  --muted: #696d6d;
  --rule: #313637;
  --max-width: 1220px;
  --label-font: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Impact, sans-serif;
  --body-font: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
}

body,
input,
textarea,
button {
  font-family: var(--body-font);
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.caution-strip {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  overflow: hidden;
  padding: 5px 18px;
  border-bottom: 4px solid var(--charcoal-deep);
  background: var(--yellow);
  color: var(--charcoal-deep);
  font-family: var(--label-font);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  white-space: nowrap;
}

.caution-strip span::before {
  content: "///";
  margin-right: 18px;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #535859;
  background: var(--charcoal);
  color: var(--white);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 94px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  line-height: 1.05;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid var(--yellow);
  color: var(--yellow);
  font-family: var(--label-font);
  font-size: 1.4rem;
  font-weight: 900;
  transform: rotate(-2deg);
}

.brand strong,
.brand small {
  display: block;
  font-family: var(--label-font);
  letter-spacing: .08em;
}

.brand strong {
  font-size: 1.15rem;
}

.brand small {
  margin-top: 7px;
  color: #bfc2bd;
  font-size: .66rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.main-nav a {
  border-bottom: 2px solid transparent;
  font-family: var(--label-font);
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: var(--yellow);
  color: var(--yellow);
}

.header-call {
  padding: 11px 14px;
  border: 2px solid #696e6f;
  font-family: var(--label-font);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-decoration: none;
}

.header-call:hover,
.header-call:focus-visible {
  border-color: var(--yellow);
  color: var(--yellow);
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-light {
  background: var(--paper);
}

.section-concrete {
  background-color: var(--concrete-light);
  background-image: linear-gradient(90deg, rgba(32, 36, 37, .05) 1px, transparent 1px), linear-gradient(rgba(32, 36, 37, .05) 1px, transparent 1px);
  background-size: 34px 34px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 10px solid var(--yellow);
}

.hero::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 28px solid rgba(255, 255, 255, .035);
  content: "";
  transform: rotate(20deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 56px;
  align-items: center;
  padding-block: 86px;
}

.label-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.stamp {
  display: inline-block;
  padding: 5px 10px;
  border: 3px solid currentColor;
  color: var(--orange);
  font-family: var(--label-font);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  transform: rotate(-2deg);
}

.stamp-yellow {
  color: var(--yellow);
}

.stamp-small {
  padding: 4px 7px;
  font-size: .7rem;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d9dbd7;
  font-family: var(--label-font);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.status-dot::before {
  width: 9px;
  height: 9px;
  background: var(--yellow);
  content: "";
  box-shadow: 0 0 0 4px rgba(242, 183, 5, .13);
}

.eyebrow,
.section-code,
.item-code,
.article-code,
.footer-label {
  font-family: var(--label-font);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: #bbbeba;
}

.hero h1,
.policy-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--label-font);
  font-size: clamp(3rem, 6.8vw, 6.5rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .88;
  text-transform: uppercase;
}

.hero h1 span,
.policy-hero h1 span {
  color: var(--yellow);
}

.hero-scope {
  max-width: 680px;
  margin: 30px 0 0;
  color: #d4d5d1;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 3px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--label-font);
  font-size: .87rem;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.button-primary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--charcoal-deep);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--white);
  background: var(--white);
}

.button-ghost {
  border-color: #707576;
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--yellow);
  color: var(--yellow);
}

.button-dark {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--charcoal-deep);
}

.spec-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 42px 0 0;
  border-top: 1px dashed #717677;
  border-bottom: 1px dashed #717677;
}

.spec-row div {
  padding: 14px 14px 14px 0;
}

.spec-row div + div {
  padding-left: 16px;
  border-left: 1px dashed #717677;
}

.spec-row dt,
.spec-row dd {
  margin: 0;
  font-family: var(--label-font);
  letter-spacing: .08em;
}

.spec-row dt {
  color: #8f9493;
  font-size: .65rem;
}

.spec-row dd {
  margin-top: 4px;
  font-size: .78rem;
  font-weight: 800;
}

.hero-diagram {
  position: relative;
  z-index: 1;
  padding: 20px;
  border: 2px dashed #858a89;
  background: #292e2f;
  color: #dcded9;
  box-shadow: 16px 16px 0 #151819;
}

.diagram-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 4px solid #dcded9;
  font-family: var(--label-font);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.hero-diagram svg {
  width: 100%;
  margin-top: 12px;
}

.diagram-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.diagram-checks li {
  padding: 8px;
  border: 1px dashed #747979;
  font-family: var(--label-font);
  font-size: .67rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.services,
.process,
.coverage,
.contact-section,
.policy-content {
  padding-block: 94px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 46px;
  padding-bottom: 28px;
  border-bottom: 6px solid var(--rule);
}

.section-heading.compact {
  margin-bottom: 30px;
}

.section-code {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--orange);
}

.section-heading h2,
.contact-copy h2,
.policy-article h2 {
  margin: 0;
  font-family: var(--label-font);
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: .96;
  text-transform: uppercase;
}

.section-heading p {
  margin: 0;
  color: #555a5b;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 2px dashed var(--rule);
  border-left: 2px dashed var(--rule);
}

.service-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  min-height: 245px;
  padding: 28px;
  border-right: 2px dashed var(--rule);
  border-bottom: 2px dashed var(--rule);
}

.check-box {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 4px solid var(--charcoal);
  color: var(--orange);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.item-code {
  margin: 0 0 6px;
  color: var(--orange);
}

.service-item h3,
.process-grid h3 {
  margin: 0;
  font-family: var(--label-font);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.1;
}

.service-item p:last-child {
  margin: 13px 0 0;
  color: #555a5a;
}

.notice-bar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 9px solid var(--yellow);
  background: var(--charcoal);
  color: var(--white);
}

.notice-bar strong {
  color: var(--yellow);
  font-family: var(--label-font);
  letter-spacing: .08em;
}

.process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  border-bottom: 8px solid var(--charcoal);
  list-style: none;
}

.process-grid li {
  display: grid;
  grid-template-columns: 165px 1fr;
  align-items: center;
  min-height: 150px;
  border-top: 8px solid var(--charcoal);
}

.step-number {
  align-self: stretch;
  display: grid;
  place-items: center;
  border-right: 8px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--yellow);
  font-family: var(--label-font);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}

.process-grid li div {
  padding: 24px 30px;
}

.process-grid p {
  margin: 9px 0 0;
  color: #4c5152;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 3px solid var(--charcoal);
  border-left: 3px solid var(--charcoal);
}

.area-grid span {
  display: grid;
  min-height: 104px;
  place-items: center;
  padding: 14px;
  border-right: 3px solid var(--charcoal);
  border-bottom: 3px solid var(--charcoal);
  font-family: var(--label-font);
  font-size: .87rem;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.25;
  text-align: center;
}

.area-grid span:nth-child(3n) {
  background: #e3e1d8;
}

.coverage-note {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
  padding: 18px;
  border: 2px dashed var(--concrete);
}

.coverage-note p {
  margin: 0;
}

.contact-section {
  border-top: 10px solid var(--yellow);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr .9fr;
  border: 8px solid var(--white);
}

.contact-copy {
  padding: clamp(28px, 5vw, 64px);
  border-right: 2px dashed #858a89;
}

.light-code {
  color: var(--yellow);
}

.contact-copy h2 {
  margin-top: 12px;
  color: var(--white);
}

.contact-copy > p {
  color: #ced0cc;
}

.direct-contact {
  display: grid;
  margin-top: 34px;
  border-top: 1px dashed #737879;
}

.direct-contact a,
.direct-contact address {
  display: block;
  padding: 14px 0;
  border-bottom: 1px dashed #737879;
  color: var(--white);
  font-style: normal;
  text-decoration: none;
}

.direct-contact small,
.direct-contact strong {
  display: block;
}

.direct-contact small {
  color: #8e9493;
  font-family: var(--label-font);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.direct-contact strong {
  overflow-wrap: anywhere;
  font-family: var(--label-font);
  font-size: 1.1rem;
  letter-spacing: .04em;
}

.direct-contact a:hover strong {
  color: var(--yellow);
}

.hours {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 13px;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  font-family: var(--label-font);
  font-size: .75rem;
  letter-spacing: .08em;
}

.request-form {
  align-self: stretch;
  padding: clamp(28px, 5vw, 58px);
  background: var(--paper);
  color: var(--ink);
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 15px;
  border-bottom: 5px solid var(--charcoal);
  font-family: var(--label-font);
  letter-spacing: .09em;
}

.request-form > label:not(.consent) {
  display: block;
  margin: 15px 0 5px;
  font-family: var(--label-font);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.request-form input[type="text"],
.request-form input[type="tel"],
.request-form textarea {
  width: 100%;
  border: 2px solid #555a5b;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  outline: none;
}

.request-form input[type="text"],
.request-form input[type="tel"] {
  min-height: 48px;
  padding: 8px 12px;
}

.request-form textarea {
  resize: vertical;
  padding: 12px;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(238, 118, 35, .18);
}

.request-form .field-error {
  border-color: #ad2e18 !important;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin: 18px 0;
  color: #505556;
  font-size: .82rem;
  line-height: 1.45;
}

.consent input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  accent-color: var(--orange);
}

.full-button {
  width: 100%;
  background: var(--orange);
  border-color: var(--orange);
}

.form-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: #9b2815;
  font-size: .85rem;
  font-weight: 700;
}

.form-status.success {
  color: #2d6337;
}

.site-footer {
  padding: 52px 0 18px;
  border-top: 1px solid #555a5a;
  background: var(--charcoal-deep);
  color: #c8cbc6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr auto;
  gap: 34px;
  align-items: start;
}

.footer-grid strong {
  color: var(--white);
  font-family: var(--label-font);
  letter-spacing: .06em;
}

.footer-grid p {
  max-width: 330px;
  margin: 8px 0 0;
  font-size: .87rem;
}

.footer-label {
  display: block;
  margin-bottom: 8px;
  color: #777e7d;
}

.footer-grid a {
  text-decoration-color: #737979;
  text-underline-offset: 4px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--yellow);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: .87rem;
}

.footer-stamp {
  padding: 11px 16px;
  border: 4px solid var(--orange);
  color: var(--orange);
  font-family: var(--label-font);
  line-height: 1.05;
  text-align: center;
  transform: rotate(-2deg);
}

.footer-stamp span,
.footer-stamp strong,
.footer-stamp small {
  display: block;
}

.footer-stamp strong {
  margin: 4px 0;
  color: var(--orange);
  font-size: 1.3rem;
}

.footer-stamp small {
  font-size: .58rem;
  letter-spacing: .08em;
}

.copyright {
  margin-top: 38px;
  padding-top: 15px;
  border-top: 1px dashed #535958;
  color: #747978;
  font-size: .76rem;
}

.policy-hero {
  padding-block: 78px;
  border-bottom: 10px solid var(--yellow);
}

.policy-hero .eyebrow {
  margin-top: 28px;
}

.policy-hero h1 {
  max-width: 900px;
}

.policy-hero > .container > p:last-child {
  margin: 28px 0 0;
  color: #b7bab6;
  font-family: var(--label-font);
  font-size: .8rem;
  letter-spacing: .08em;
}

.policy-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 70px;
  align-items: start;
}

.policy-index {
  position: sticky;
  top: 20px;
  display: grid;
  border: 3px solid var(--charcoal);
}

.policy-index strong,
.policy-index a {
  padding: 11px 14px;
  font-family: var(--label-font);
  font-size: .74rem;
  letter-spacing: .07em;
}

.policy-index strong {
  background: var(--charcoal);
  color: var(--yellow);
}

.policy-index a {
  border-top: 1px dashed #767b7b;
  text-decoration: none;
}

.policy-index a:hover,
.policy-index a:focus-visible {
  background: var(--yellow);
}

.policy-article {
  max-width: 820px;
}

.policy-article section {
  padding: 0 0 42px;
  scroll-margin-top: 20px;
}

.policy-article section + section {
  padding-top: 42px;
  border-top: 3px dashed #777c7c;
}

.article-code {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--orange);
}

.policy-article h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.policy-article p {
  color: #4f5455;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

@media (max-width: 1030px) {
  .header-grid {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    padding-bottom: 16px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-diagram {
    max-width: 720px;
  }

  .area-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    border-right: 0;
    border-bottom: 2px dashed #858a89;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .caution-strip {
    justify-content: flex-start;
  }

  .caution-strip span:nth-child(n+4) {
    display: none;
  }

  .site-header {
    position: static;
  }

  .header-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 17px;
  }

  .header-call {
    grid-row: 2;
    justify-self: start;
  }

  .main-nav {
    grid-column: auto;
    grid-row: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0 0;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .hero-grid {
    gap: 46px;
    padding-block: 62px;
  }

  .hero h1,
  .policy-hero h1 {
    font-size: clamp(2.8rem, 14vw, 5rem);
  }

  .label-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .spec-row {
    grid-template-columns: 1fr;
  }

  .spec-row div + div {
    padding-left: 0;
    border-top: 1px dashed #717677;
    border-left: 0;
  }

  .hero-diagram {
    padding: 14px;
    box-shadow: 8px 8px 0 #151819;
  }

  .diagram-checks {
    grid-template-columns: 1fr;
  }

  .services,
  .process,
  .coverage,
  .contact-section,
  .policy-content {
    padding-block: 66px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 22px 18px;
  }

  .check-box {
    width: 36px;
    height: 36px;
  }

  .notice-bar {
    grid-template-columns: 1fr;
  }

  .process-grid li {
    grid-template-columns: 88px 1fr;
    min-height: 170px;
  }

  .step-number {
    font-size: 2.6rem;
  }

  .process-grid li div {
    padding: 20px 18px;
  }

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-grid span {
    min-height: 88px;
    font-size: .74rem;
  }

  .coverage-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-panel {
    border-width: 4px;
  }

  .hours {
    align-items: flex-start;
    flex-direction: column;
  }

  .request-form,
  .contact-copy {
    padding: 26px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-stamp {
    justify-self: start;
  }

  .policy-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .policy-index {
    position: static;
  }
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 1rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    font-size: .74rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .area-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .caution-strip,
  .site-header,
  .site-footer,
  .policy-index,
  .button {
    display: none;
  }

  body,
  .section-dark,
  .section-light {
    background: #fff;
    color: #000;
  }

  .policy-content {
    padding: 20px 0;
  }

  .policy-grid {
    display: block;
  }
}