:root {
  --navy: #082b49;
  --blue: #075b9b;
  --ink: #082b49;
  --muted: #315a7a;
  --line: #c9e2f3;
  --pale: #edf7fe;
  --white: #fff;
  --light: #ffcc3d;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  line-height: 1.65;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
img {
  max-width: 100%;
  height: auto;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid #0877bd;
  outline-offset: 5px;
}
.container {
  width: min(1200px, calc(100% - 80px));
  margin: auto;
}
.site-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 110px;
  gap: 30px;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  line-height: 1.1;
}
.brand strong {
  font-size: 25px;
  letter-spacing: -1px;
}
.brand small {
  display: block;
  font-size: 12px;
  letter-spacing: 4px;
  margin-top: 9px;
}
.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}
.primary-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.primary-nav a {
  text-decoration: none;
}
.primary-nav a:hover,
.text-link:hover {
  color: var(--blue);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 15px 23px;
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}
.button:hover {
  background: var(--navy);
  color: #fff;
}
.button-small {
  font-size: 14px;
  padding: 12px 20px;
}
.hero {
  padding: 78px 0 72px;
  background: linear-gradient(110deg, #edf7fe 0%, #fff 75%);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 55px;
  align-items: center;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2.1px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 23px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(40px, 4.2vw, 61px);
  letter-spacing: -2.5px;
  line-height: 1.09;
  margin-bottom: 26px;
  font-weight: 650;
}
h1 em {
  font-style: normal;
  color: var(--blue);
}
.hero-text {
  font-size: 18px;
  line-height: 1.8;
  max-width: 530px;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.text-link {
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.hero-note {
  font-size: 12px;
  margin: 38px 0 0;
  color: var(--muted);
  letter-spacing: 0.3px;
}
.identity-panel {
  text-align: center;
  background: #fff;
  padding: 18px 28px 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 20px 65px #075b9b0d;
}
.identity-panel img {
  width: 270px;
  height: 270px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.identity-name {
  font-size: 39px;
  font-weight: 650;
  letter-spacing: -1.5px;
  line-height: 1.2;
}
.identity-name span {
  display: block;
  letter-spacing: 7px;
  font-size: 14px;
  font-weight: 500;
  margin: 12px 0 23px;
  padding-left: 7px;
}
.identity-panel p {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin: 0;
  color: var(--muted);
}
.section {
  padding: 86px 0;
}
h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: -1.3px;
  margin-bottom: 20px;
  font-weight: 600;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}
.section-heading > p {
  color: var(--muted);
  max-width: 400px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
}
.service-card {
  padding: 30px 25px 20px;
  border-right: 1px solid var(--line);
}
.service-card:last-child {
  border: 0;
}
.service-number {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1px;
}
h3 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.4px;
  margin: 28px 0 17px;
}
.service-card p {
  font-size: 15px;
  color: var(--muted);
}
.parts-note {
  font-size: 14px;
  color: var(--muted);
  margin: 26px 0 0;
}
.parts-note strong {
  color: var(--ink);
}
.about-section {
  background: var(--navy);
  color: white;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.about-section .eyebrow,
.contact-section .eyebrow {
  color: #ffcc3d;
}
.about-section p:not(.eyebrow) {
  color: #d9efff;
}
.about-section .large-copy {
  font-size: 23px;
  color: white;
  line-height: 1.6;
}
.pricing-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 65px;
}
.pricing-panel > div {
  max-width: 710px;
}
.pricing-panel p {
  color: var(--muted);
}
.contact-section {
  background: var(--pale);
  border-top: 1px solid var(--line);
}
.contact-section .eyebrow {
  color: var(--blue);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.contact-grid p {
  color: var(--muted);
  max-width: 420px;
}
address {
  font-style: normal;
  font-size: 15px;
  margin-top: 32px;
}
address a {
  display: block;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.field {
  display: grid;
  gap: 6px;
}
label {
  font-size: 14px;
  font-weight: 600;
}
input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #a8cfe8;
  background: #fff;
  border-radius: 3px;
  min-width: 0;
}
textarea {
  resize: vertical;
}
input:disabled,
textarea:disabled {
  background: #f5faff;
}
button:disabled {
  background: #d9edfa;
  border-color: #d9edfa;
  color: #315a7a;
  cursor: not-allowed;
}
.contact-form p {
  font-size: 13px;
  margin: 0;
}
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status.is-sending {
  color: var(--blue);
}
.form-status.is-success {
  color: #176b45;
  font-weight: 600;
}
.form-status.is-error {
  color: #a12d2d;
  font-weight: 600;
}
.site-footer {
  padding: 32px 0;
  font-size: 13px;
  color: var(--muted);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-inner p {
  margin: 0;
}
.menu-button {
  display: none;
}
.skip-link {
  position: absolute;
  left: 20px;
  top: -100px;
  background: white;
  padding: 10px;
  z-index: 10;
}
.skip-link:focus {
  top: 10px;
}
.narrow {
  max-width: 800px;
}
.legal-page h2 {
  font-size: 24px;
  margin-top: 36px;
}
@media (max-width: 1000px) {
  .container {
    width: calc(100% - 48px);
  }
  .primary-nav {
    gap: 18px;
  }
  .hero-grid {
    gap: 30px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card:nth-child(2) {
    border-right: 0;
  }
  .service-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .contact-grid,
  .about-grid {
    gap: 45px;
  }
  .hero-note {
    line-height: 2;
  }
  .hero h1 {
    font-size: 44px;
  }
}
@media (max-width: 720px) {
  .container {
    width: calc(100% - 36px);
  }
  .header-inner {
    min-height: 88px;
    flex-wrap: wrap;
    gap: 0;
  }
  .brand strong {
    font-size: 22px;
  }
  .brand img {
    width: 52px;
    height: 52px;
  }
  .menu-button {
    display: block;
    border: 1px solid var(--line);
    background: white;
    padding: 8px 12px;
    border-radius: 3px;
  }
  .primary-nav {
    display: none;
    width: 100%;
    padding: 15px 0 22px;
    align-items: stretch;
  }
  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .hero {
    padding: 45px 0;
  }
  .hero-grid,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 42px;
    letter-spacing: -1.7px;
  }
  .hero-text {
    font-size: 17px;
  }
  .identity-panel {
    max-width: 440px;
    width: 100%;
    margin: auto;
  }
  .identity-panel img {
    width: 220px;
    height: 220px;
  }
  .section {
    padding: 55px 0;
  }
  .section-heading,
  .pricing-panel {
    display: block;
  }
  .section-heading > p {
    margin-top: 20px;
  }
  .service-card {
    padding: 23px 19px;
  }
  .service-number {
    font-size: 10px;
  }
  .footer-inner {
    flex-wrap: wrap;
  }
  .hero-note {
    font-size: 11px;
  }
  .about-grid,
  .contact-grid {
    gap: 25px;
  }
}
@media (max-width: 390px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

.rate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.rate-group {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
}
.rate-group h3 {
  margin: 0 0 20px;
  font-size: 23px;
}
.rate-group dl {
  margin: 0;
}
.rate-group dl > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.rate-group dt {
  line-height: 1.5;
}
.rate-group dd {
  margin: 0;
  font-weight: 650;
  color: var(--blue);
  white-space: nowrap;
}
.rate-group small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}
.urgent-rate {
  background: var(--pale);
}
.urgent-rate p:last-child {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 720px) {
  .rate-grid {
    grid-template-columns: 1fr;
  }
  .rate-group {
    padding: 22px;
  }
  .rate-group dl > div {
    gap: 15px;
  }
  .rate-group dd {
    white-space: normal;
    text-align: right;
    max-width: 110px;
  }
}

.minimum-strip {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  background: var(--navy);
  color: white;
  padding: 20px 28px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.minimum-strip p {
  margin: 0;
  font-size: 14px;
}
.minimum-strip strong {
  font-size: 25px;
  margin-right: 9px;
}
@media (max-width: 720px) {
  .minimum-strip {
    flex-direction: column;
    gap: 12px;
  }
}

/* Lighthouse palette: navy, ocean blue, white and restrained warm-yellow light. */
.hero-copy > .eyebrow {
  border-left: 3px solid var(--light);
  padding-left: 12px;
}
.hero-actions > .button {
  background: var(--light);
  border-color: var(--light);
  color: var(--navy);
}
.hero-actions > .button:hover {
  background: #ffdc70;
  border-color: #ffdc70;
}
.identity-panel {
  box-shadow: none;
  border-bottom: 3px solid var(--light);
}
.service-number {
  border-bottom: 2px solid var(--light);
  padding-bottom: 7px;
}
.minimum-strip strong {
  color: var(--light);
}
.urgent-rate {
  border-top: 3px solid var(--light);
}
.about-section .eyebrow {
  color: var(--light);
}
::selection {
  background: var(--light);
  color: var(--navy);
}
