:root {
  --red: #e90e13;
  --red-dark: #b80b10;
  --black: #0b0b0b;
  --ink: #161616;
  --muted: #5c5854;
  --line: #ddd6cc;
  --cream: #f3efe8;
  --paper: #fffdf9;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(11, 11, 11, 0.12);
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --wrap: 1120px;
  --header-h: 84px;
  --radius: 6px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--red);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--red-dark);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--black);
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 0.85rem;
  text-decoration: none;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(calc(100% - 2rem), var(--wrap));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 3px solid var(--red);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo img {
  width: min(230px, 58vw);
  height: auto;
}

.nav-toggle {
  display: none;
  border: 2px solid var(--black);
  background: var(--paper);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--black);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--red);
}

.site-nav a.is-active {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.btn-red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white) !important;
}

.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white) !important;
}

.btn-ghost {
  background: transparent;
  border-color: var(--white);
  color: var(--white) !important;
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--black) !important;
}

.btn-dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--white) !important;
}

.btn-dark:hover {
  background: var(--red);
  border-color: var(--red);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--cream);
  padding: 4.5rem 0 5rem;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: var(--red);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2.5rem;
}

.eyebrow {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 5.1rem);
  margin-bottom: 0.45em;
}

.hero p {
  color: #d8d2c8;
  font-size: 1.2rem;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-mark {
  justify-self: end;
  width: min(360px, 100%);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
}

.page-hero {
  background: var(--black);
  color: var(--cream);
  padding: 3.2rem 0 3.4rem;
  border-bottom: 8px solid var(--red);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.page-hero p {
  color: #d8d2c8;
  max-width: 40rem;
  font-size: 1.15rem;
}

.section {
  padding: 4.25rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.band-dark {
  background: var(--black);
  color: var(--cream);
}

.band-dark h2,
.band-dark h3 {
  color: var(--white);
}

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

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--paper);
  border: 2px solid var(--black);
  border-top: 6px solid var(--red);
  padding: 1.25rem 1.2rem 1.35rem;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4em;
}

.card p {
  color: var(--muted);
}

#pricing {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}

.price-card {
  background: var(--paper);
  border: 2px solid var(--black);
  border-top: 6px solid var(--red);
  padding: 1.1rem 1rem 1.2rem;
}

.price-card h3 {
  font-size: 1.2rem;
  margin: 0.65rem 0 0.15rem;
}

.price-amt {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.55rem);
  line-height: 1;
  color: var(--black);
  margin: 0.15rem 0 0.55rem;
}

.price-card p:last-child {
  color: var(--muted);
  font-size: 0.95rem;
}

.price-card.is-featured {
  background: var(--black);
  color: var(--cream);
}

.price-card.is-featured h3,
.price-card.is-featured .price-amt {
  color: var(--white);
}

.price-card.is-featured p:last-child {
  color: #c9c3ba;
}

.trailer-meter {
  position: relative;
  height: 72px;
  border: 2px solid var(--black);
  background: var(--cream);
  overflow: hidden;
}

.price-card.is-featured .trailer-meter {
  border-color: var(--white);
  background: #1c1c1c;
}

.trailer-meter span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--red);
}

.trailer-meter .fill-min {
  height: 16%;
}

.trailer-meter .fill-q {
  height: 25%;
}

.trailer-meter .fill-h {
  height: 50%;
}

.trailer-meter .fill-tq {
  height: 75%;
}

.trailer-meter .fill-full {
  height: 100%;
}

.price-notes {
  margin-top: 1.5rem;
}

.price-note {
  margin-top: 1.25rem;
  color: var(--muted);
  max-width: 46rem;
}

.price-note a {
  color: var(--black);
  font-weight: 700;
}

.price-note a:hover {
  color: var(--red);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.2rem 1rem 1.3rem;
}

.step-num {
  display: block;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 0.55rem;
}

.step h3 {
  font-size: 1.3rem;
}

.step p {
  color: #c9c3ba;
}

.towns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.town-col {
  background: var(--paper);
  border: 2px solid var(--black);
  padding: 1.3rem 1.25rem;
}

.town-col h3 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}

.town-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  gap: 1.5rem;
}

.town-col li {
  padding: 0.18rem 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.founder {
  background: var(--paper);
  border: 2px solid var(--black);
  padding: 1.4rem 1.25rem;
}

.founder-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

.founder h3 {
  margin-bottom: 0.15em;
}

.founder p {
  color: var(--muted);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.3em;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
}

.contact-card,
.form-card {
  background: var(--paper);
  border: 2px solid var(--black);
  padding: 1.5rem;
}

.contact-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.contact-list li {
  margin: 0 0 1rem;
}

.contact-list a {
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--red);
}

label {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.88rem;
  margin: 0.85rem 0 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 0.7rem 0.75rem;
  border-radius: 2px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--red);
  outline-offset: 1px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-actions {
  margin-top: 1.2rem;
}

.form-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-list {
  display: grid;
  gap: 1rem;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(15.5rem, 17.5rem) 1fr;
  gap: 1.25rem;
  background: var(--paper);
  border: 2px solid var(--black);
  padding: 1.2rem 1.25rem;
}

.service-row h3 {
  font-size: 1.4rem;
  margin: 0;
}

.muted {
  color: var(--muted);
}

.site-footer {
  background: var(--black);
  color: #cfc9c0;
  padding: 2.6rem 0 6.5rem;
  border-top: 8px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--red);
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.footer-logo {
  width: 86px;
  margin-bottom: 0.9rem;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.fineprint {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.call-bar {
  display: none;
}

.error-page {
  min-height: 58vh;
  display: grid;
  align-content: center;
  padding: 4rem 0;
}

.error-page h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

@media (max-width: 1100px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .cards,
  .steps,
  .towns,
  .split,
  .founders,
  .contact-grid,
  .footer-grid,
  .service-row {
    grid-template-columns: 1fr;
  }

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

  .price-card.is-featured {
    grid-column: 1 / -1;
  }

  .hero-mark {
    display: none;
  }

  .cta-band {
    display: grid;
  }

  .town-col ul {
    columns: 1;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 3px solid var(--red);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    gap: 0.35rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.7rem 0.2rem;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 3px solid var(--red);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    gap: 0.35rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.7rem 0.2rem;
  }

  .hero,
  .section,
  .page-hero {
    padding-top: 2.6rem;
    padding-bottom: 2.8rem;
  }

  .hero {
    padding-bottom: 5.5rem;
  }

  body {
    padding-bottom: 4.75rem;
  }

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

  .call-bar {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: var(--black);
    border-top: 3px solid var(--red);
  }

  .call-bar a {
    color: var(--white);
    text-decoration: none;
    text-align: center;
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.95rem 0.5rem;
  }

  .call-bar a:first-child {
    background: var(--red);
  }
}

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

  .card {
    transition: none;
  }
}
