:root {
  --ink: #20233b;
  --muted: #b8b8bc;
  --soft: #f4f1f9;
  --panel: #ffffff;
  --purple: #7540ad;
  --purple-dark: #4d3b73;
  --line: #d9d5e2;
  --shadow: 0 18px 34px rgba(44, 39, 68, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  padding: 11px 5vw;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #252525;
}

.brand img {
  width: 118px;
  height: 86px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover,
.nav a.active {
  color: var(--purple);
}

.nav .quote-link {
  color: #fff;
  padding: 15px 18px;
  border-radius: 4px;
  background: var(--purple);
}

.menu-toggle {
  display: none;
  padding: 10px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #777;
  border-radius: 0;
  font: inherit;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(420px, 1fr);
  min-height: 640px;
  border-bottom: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 5vw 86px;
  background: linear-gradient(110deg, #fff 0%, #f4effa 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: clamp(52px, 5.5vw, 96px);
  font-weight: 900;
}

h1 span,
.purple {
  color: var(--purple);
}

h2 {
  font-size: clamp(42px, 4.8vw, 74px);
  font-weight: 900;
}

h3 {
  font-size: 22px;
  font-weight: 900;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.lead {
  max-width: 920px;
  margin: 24px 0 0;
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid #888;
  border-radius: 4px;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  background: transparent;
}

.btn.primary {
  color: var(--ink);
  background: var(--purple);
  border-color: var(--purple);
}

.btn:hover,
.quote-link:hover {
  transform: translateY(-1px);
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-rows: 1fr 64px;
  min-height: 640px;
  background: #fff;
}

.hero-photo {
  min-height: 580px;
  background-image: url("assets/hero-trinity-van.jpg");
  background-position: 56% center;
  background-size: cover;
  filter: saturate(0.9);
}

.hero-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  color: var(--purple);
  background: #fff;
}

.hero-icons span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  font-size: 25px;
  font-weight: 900;
}

.section {
  padding: 72px 4vw;
}

.section-label {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 18px;
}

.services {
  padding-top: 66px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.card {
  min-height: 126px;
  padding: 27px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card p {
  margin-bottom: 0;
}

.promise-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--purple-dark);
}

.promise-band div {
  min-height: 82px;
  padding: 22px 16px;
  color: #fff;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.promise-band div:last-child {
  border-right: 0;
}

.promise-band strong {
  display: block;
  font-size: 16px;
  text-transform: uppercase;
}

.promise-band span {
  display: block;
  margin-top: 2px;
}

.benefits {
  background: #f4f4f4;
}

.benefit-card {
  min-height: 430px;
}

.benefit-card a {
  display: inline-block;
  margin-top: 8px;
  font-size: 18px;
}

.stars {
  color: #e6b400;
  font-size: 18px;
  letter-spacing: 0;
}

.loyalty-img {
  width: 100%;
  margin: 14px 0 18px;
  border-radius: 4px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 4vw;
  color: #5e6680;
  background: #eee9f4;
}

.site-footer img {
  width: 104px;
  border-radius: 50%;
}

.page-hero {
  padding: 86px 4vw 68px;
  background: linear-gradient(115deg, #f1ebf8, #fff);
}

.page-hero p {
  max-width: 760px;
  color: #777;
}

.text-panel {
  max-width: 1040px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.work-tile {
  min-height: 220px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f3eef9, #ffffff);
  border: 1px solid var(--line);
}

.form {
  display: grid;
  gap: 16px;
  max-width: 760px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #fff;
  border: 1px solid #b6b0c0;
  border-radius: 4px;
}

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

.notice {
  display: none;
  margin: 0;
  color: var(--purple);
  font-weight: 800;
}

.notice.show {
  display: block;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 110px;
    padding: 18px 24px;
  }

  .brand img {
    width: 124px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 110px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 24px;
    background: #fff;
    border-bottom: 1px solid #bbb;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  }

  body.menu-open .nav {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
  }

  .nav .quote-link {
    margin-top: 12px;
    padding: 14px 16px;
    text-align: center;
    border-bottom: 0;
  }

  .hero {
    display: block;
  }

  .hero-copy {
    padding: 64px 24px 70px;
  }

  h1 {
    font-size: clamp(48px, 12vw, 64px);
  }

  h2 {
    font-size: clamp(39px, 10vw, 52px);
  }

  .lead {
    font-size: 18px;
  }

  .btn {
    min-width: 0;
    flex: 1 1 160px;
    padding-inline: 16px;
    white-space: nowrap;
  }

  .hero-visual {
    min-height: auto;
    grid-template-rows: 320px 58px;
  }

  .hero-photo {
    min-height: 320px;
    background-position: center;
  }

  .section {
    padding: 66px 20px;
  }

  .grid,
  .split {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 152px;
    padding: 27px 24px;
  }

  .promise-band {
    grid-template-columns: 1fr;
  }

  .promise-band div {
    border-right: 0;
  }

  .benefit-card {
    min-height: auto;
  }

  .site-footer {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-copy {
    padding-left: 24px;
    padding-right: 20px;
  }

  .eyebrow {
    font-size: 17px;
  }

  h1 {
    font-size: 34px;
    overflow-wrap: anywhere;
  }

  .actions {
    gap: 12px;
  }

  .btn {
    flex: 1 1 170px;
  }

  .site-footer {
    gap: 8px;
    font-size: 16px;
  }

  .site-footer img {
    width: 98px;
  }
}
