:root {
  --ink: #0b2638;
  --ink-2: #163b4f;
  --blue: #007ea7;
  --cyan: #28bed1;
  --orange: #f36b35;
  --paper: #f4f7f5;
  --white: #ffffff;
  --muted: #5f737e;
  --line: #a9bdc5;
  --display: "Arial Black", "Avenir Next Heavy", "Trebuchet MS", sans-serif;
  --body: "Avenir Next", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --utility: ui-monospace, "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.5;
}

a { color: inherit; }
img { max-width: 100%; }
h1, h2, h3, p { text-wrap: balance; }
h1, h2, h3 {
  margin-top: 0;
  font-family: var(--display);
  line-height: 0.98;
}

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

.skip-link:focus { transform: translateY(0); }
:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: 4px;
}

.utility-bar {
  display: grid;
  min-height: 34px;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 5px clamp(20px, 5vw, 80px);
  color: var(--white);
  background: var(--ink);
  font-family: var(--utility);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.utility-bar p { margin: 0; }
.utility-bar p:nth-child(2) { text-align: center; }
.utility-bar a {
  color: var(--cyan);
  font-weight: 900;
  text-align: right;
  text-decoration: none;
}

.site-header {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  padding: 10px clamp(20px, 5vw, 80px);
  border-bottom: 2px solid var(--ink);
  background: var(--white);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.brand > span {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-family: var(--display);
  font-size: 1.02rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.brand small {
  color: var(--blue);
  font-family: var(--utility);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
}

nav a {
  font-size: 0.79rem;
  font-weight: 800;
  text-decoration: none;
}

nav a:hover { color: var(--blue); }

.header-cta {
  padding: 13px 17px;
  border: 2px solid var(--ink);
  color: var(--white);
  background: var(--ink);
}

.header-cta:hover {
  border-color: var(--orange);
  color: var(--ink);
  background: var(--orange);
}

.hero {
  position: relative;
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(320px, 0.87fr) minmax(460px, 1fr);
  align-items: center;
  gap: clamp(46px, 8vw, 128px);
  padding: clamp(66px, 8vw, 120px) clamp(20px, 6vw, 96px);
  overflow: hidden;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(11, 38, 56, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 38, 56, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero::before {
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(11, 38, 56, 0.18);
  content: "";
  pointer-events: none;
}

.measurement-mark {
  position: absolute;
  z-index: 1;
  color: var(--blue);
  font-family: var(--utility);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.measurement-mark::before {
  display: inline-block;
  width: 48px;
  height: 1px;
  margin-right: 8px;
  vertical-align: middle;
  background: var(--blue);
  content: "";
}

.measurement-mark-a { top: 42px; left: clamp(44px, 8vw, 128px); }
.measurement-mark-b {
  right: clamp(44px, 8vw, 128px);
  bottom: 42px;
}

.hero-copy,
.field-ticket {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-family: var(--utility);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow.light { color: var(--cyan); }

h1 {
  max-width: 760px;
  margin-bottom: 25px;
  font-size: clamp(3.15rem, 5.8vw, 6.6rem);
  letter-spacing: -0.06em;
}

.hero-lede {
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--ink-2);
  font-size: clamp(1.03rem, 1.5vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.button-call {
  gap: 10px;
  border-color: var(--orange);
  color: var(--ink);
  background: var(--orange);
}

.button-call span {
  font-family: var(--utility);
  font-size: 0.67rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.button-call strong { font-size: 1.12rem; }
.button-call:hover {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.button-text { background: var(--white); }
.button-text:hover { background: #dceef2; }

.start-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 0.72rem;
  font-weight: 700;
}

.start-note span {
  padding-right: 5px;
  color: var(--orange);
  font-size: 1rem;
}

.field-ticket {
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 14px 14px 0 var(--cyan);
}

.ticket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 2px solid var(--ink);
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticket-head p { margin: 0; }
.ticket-head span {
  padding: 4px 7px;
  color: var(--white);
  background: var(--blue);
}

.ticket-photo {
  position: relative;
  height: clamp(320px, 34vw, 520px);
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}

.ticket-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}

.ticket-photo p {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 9px 12px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--utility);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
}

.ticket-grid div {
  padding: 13px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ticket-grid div:nth-child(even) { border-right: 0; }
.ticket-grid div:nth-last-child(-n+2) { border-bottom: 0; }
.ticket-grid dt {
  color: var(--blue);
  font-family: var(--utility);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ticket-grid dd {
  margin: 2px 0 0;
  font-size: 0.87rem;
  font-weight: 800;
}

.phone-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px clamp(20px, 6vw, 96px);
  color: var(--white);
  background: var(--ink);
}

.phone-rail p { margin: 0; }
.phone-rail p span {
  display: block;
  color: var(--cyan);
  font-family: var(--utility);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-rail a {
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  letter-spacing: -0.035em;
  text-decoration: none;
}

.section { padding: clamp(76px, 9vw, 140px) clamp(20px, 6vw, 96px); }

.section-head {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.48fr);
  align-items: end;
  gap: clamp(36px, 8vw, 130px);
  margin-bottom: 54px;
}

.section-head.compact {
  display: block;
  max-width: 930px;
}

.section-head h2,
.field-plan h2,
.direct-section h2,
.coverage h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.75rem, 5.5vw, 6rem);
  letter-spacing: -0.055em;
}

.section-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.services { background: var(--white); }

.service-list {
  border-top: 3px solid var(--ink);
}

.service-list article {
  display: grid;
  grid-template-columns: 100px minmax(280px, 1fr) auto;
  align-items: center;
  gap: 30px;
  min-height: 180px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-list article:hover { background: #eef6f7; }

.service-code {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin: 0;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 900;
}

.service-list h3 {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 3.1vw, 3rem);
  letter-spacing: -0.04em;
}

.service-list article div p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.service-list article > a {
  padding: 11px 13px;
  border: 2px solid var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.service-list article > a:hover {
  border-color: var(--orange);
  background: var(--orange);
}

.field-plan {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(380px, 0.75fr);
  align-items: center;
  gap: clamp(50px, 10vw, 160px);
  padding: clamp(82px, 10vw, 150px) clamp(20px, 6vw, 96px);
  color: var(--white);
  background: var(--ink-2);
}

.field-plan h2 { color: var(--white); }
.field-plan-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 24px 0;
  color: #cfe0e7;
  font-size: 1.07rem;
}

.text-link {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 3px solid var(--orange);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.measure-sheet {
  position: relative;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(0, 126, 167, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 126, 167, 0.09) 1px, transparent 1px);
  background-size: 24px 24px;
  box-shadow: 12px 12px 0 var(--orange);
}

.sheet-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 3px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.sheet-title strong {
  padding: 4px 7px;
  color: var(--white);
  background: var(--blue);
}

.measure-sheet ul {
  margin: 0;
  padding: 20px 24px;
  border-right: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
  list-style: none;
}

.measure-sheet li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-weight: 800;
}

.measure-sheet li:last-child { border-bottom: 0; }
.measure-sheet li span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  font-family: var(--utility);
  font-size: 0.7rem;
}

.measure-sheet > p {
  margin: 0;
  padding: 26px 24px;
  border: 3px solid var(--ink);
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  line-height: 1.05;
}

.process { background: var(--paper); }

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border: 3px solid var(--ink);
  background: var(--white);
  list-style: none;
}

.process-list li {
  min-height: 280px;
  padding: 28px;
  border-right: 2px solid var(--ink);
}

.process-list li:last-child { border-right: 0; }
.process-list > li > span {
  display: inline-block;
  margin-bottom: 56px;
  padding: 6px 8px;
  color: var(--white);
  background: var(--blue);
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 11px;
  font-size: 1.65rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.direct-section {
  display: grid;
  grid-template-columns: auto minmax(300px, 1fr) minmax(260px, 0.55fr);
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
  padding: clamp(62px, 8vw, 110px) clamp(20px, 6vw, 96px);
  color: var(--white);
  background: var(--blue);
}

.direct-tag {
  display: flex;
  width: 155px;
  height: 155px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  background: var(--ink);
  transform: rotate(-2deg);
}

.direct-tag span {
  color: var(--cyan);
  font-family: var(--utility);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.direct-tag strong {
  font-family: var(--display);
  font-size: 1.7rem;
}

.direct-section h2 { color: var(--white); }
.direct-section > p {
  margin: 0;
  color: #d9f2f7;
  font-size: 1.03rem;
}

.coverage {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(44px, 9vw, 140px);
  padding: clamp(82px, 10vw, 150px) clamp(20px, 6vw, 96px);
  border-bottom: 2px solid var(--ink);
  background: var(--white);
}

.city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.city-grid span {
  padding: 10px 13px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-family: var(--utility);
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
}

.city-grid span:nth-child(4n+1),
.city-grid span:nth-child(4n+4) { background: #e7f5f7; }

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: clamp(44px, 9vw, 140px);
  padding: clamp(80px, 10vw, 150px) clamp(20px, 6vw, 96px);
  color: var(--white);
  background: var(--ink);
}

.contact h2 { color: var(--white); }
.contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 3px solid var(--cyan);
  background: var(--ink-2);
}

.contact-block a {
  margin-top: 10px;
  color: var(--white);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-block .contact-phone {
  margin-top: 0;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(2.25rem, 4.5vw, 4.3rem);
  letter-spacing: -0.05em;
  text-decoration: none;
}

footer {
  display: grid;
  grid-template-columns: 0.7fr 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(20px, 6vw, 96px);
  border-top: 1px solid #385263;
  color: #bdd0d8;
  background: var(--ink);
  font-size: 0.74rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--display);
  text-decoration: none;
  text-transform: uppercase;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

footer p { margin: 0; }
.mobile-call { display: none; }

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(11, 38, 56, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 38, 56, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}

.error-ticket {
  width: min(760px, 100%);
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--cyan);
}

.error-ticket header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 2px solid var(--ink);
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.error-ticket header span {
  padding: 4px 7px;
  color: var(--white);
  background: var(--orange);
}

.error-ticket-body { padding: clamp(34px, 7vw, 72px); }
.error-ticket-body img {
  display: block;
  width: 84px;
  height: 84px;
  margin-bottom: 25px;
  object-fit: contain;
}

.error-ticket h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.error-ticket-body > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 28px;
  color: var(--muted);
}

@media (max-width: 1000px) {
  nav a:not(.header-cta) { display: none; }
  .hero {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .hero-copy { max-width: 850px; }
  .field-ticket {
    width: min(780px, 96%);
    margin: 0 auto;
  }
  .section-head,
  .field-plan,
  .coverage,
  .contact { grid-template-columns: 1fr; }
  .direct-section { grid-template-columns: auto 1fr; }
  .direct-section > p { grid-column: 2; }
  footer { grid-template-columns: 1fr 1fr; }
  footer p:last-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  body { padding-bottom: 66px; }
  .utility-bar {
    grid-template-columns: 1fr auto;
    font-size: 0.6rem;
  }
  .utility-bar p:nth-child(2) { display: none; }
  .site-header {
    min-height: 80px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .brand img {
    width: 58px;
    height: 58px;
  }
  .brand strong { font-size: 0.83rem; }
  .brand small { font-size: 0.53rem; }
  .header-cta {
    padding: 10px 11px;
    font-size: 0.69rem;
  }
  .hero {
    min-height: 0;
    gap: 42px;
    padding-top: 64px;
    padding-bottom: 74px;
    background-size: 24px 24px;
  }
  .hero::before { inset: 13px; }
  .measurement-mark-a { top: 24px; left: 28px; }
  .measurement-mark-b { display: none; }
  h1 { font-size: clamp(3rem, 14.5vw, 4.1rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .start-note { font-size: 0.67rem; }
  .field-ticket {
    width: 100%;
    box-shadow: 8px 8px 0 var(--cyan);
  }
  .ticket-photo { height: 270px; }
  .ticket-grid dd { font-size: 0.78rem; }
  .phone-rail {
    display: block;
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .phone-rail a {
    display: inline-block;
    margin-top: 10px;
  }
  .section-head { gap: 18px; }
  .service-list article {
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 26px 0;
  }
  .service-code {
    width: 48px;
    height: 48px;
  }
  .service-list article > a {
    grid-column: 2;
    justify-self: start;
  }
  .measure-sheet {
    box-shadow: 8px 8px 0 var(--orange);
  }
  .process-list { grid-template-columns: 1fr; }
  .process-list li {
    min-height: 0;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }
  .process-list li:last-child { border-bottom: 0; }
  .process-list > li > span { margin-bottom: 28px; }
  .direct-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .direct-section > p { grid-column: auto; }
  .direct-tag {
    width: 130px;
    height: 130px;
  }
  .coverage { gap: 35px; }
  .city-grid span {
    padding: 9px 8px;
    font-size: 0.62rem;
  }
  .contact-block { padding: 22px; }
  footer {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  footer p:last-child { grid-column: auto; }
  .mobile-call {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: flex;
    height: 66px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    color: var(--ink);
    background: var(--orange);
    font-family: var(--utility);
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
  }
  .mobile-call strong {
    font-family: var(--display);
    font-size: 1.1rem;
    letter-spacing: -0.02em;
  }
  .error-page { padding-bottom: 90px; }
  .error-ticket { box-shadow: 8px 8px 0 var(--cyan); }
  .error-ticket-body { padding: 30px 24px; }
  .error-ticket h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
}

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