:root {
  --navy: #071f3d;
  --teal: #0b7b7f;
  --teal-dark: #075e62;
  --gold: #c79b46;
  --cream: #fbf7ea;
  --ivory: #fffdf5;
  --ink: #12263d;
  --muted: #5c6a78;
  --line: rgba(7, 31, 61, 0.14);
  --shadow: 0 18px 45px rgba(7, 31, 61, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.topbar {
  background: var(--navy);
  color: var(--ivory);
  font-size: 0.92rem;
}

.topbar-inner,
.nav-inner,
.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 247, 234, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

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

.brand-name {
  font-family: "Libre Baskerville", Georgia, serif;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand-tagline {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 800;
  color: var(--navy);
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--teal-dark);
  border-color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--navy);
  border-radius: var(--radius);
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--navy);
  color: var(--ivory);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.gold {
  background: var(--gold);
  color: var(--navy);
}

.button.outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(7, 31, 61, 0.28);
}

.button.outline:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 247, 234, 0.98) 0%, rgba(251, 247, 234, 0.9) 45%, rgba(251, 247, 234, 0.28) 100%),
    url("fleet-tahoe.jpeg") right center / min(780px, 58vw) auto no-repeat;
}

.hero::before,
.map-band::before,
.booking-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(30deg, transparent 0 44%, rgba(7, 31, 61, 0.32) 45% 47%, transparent 48% 100%),
    linear-gradient(120deg, transparent 0 52%, rgba(11, 123, 127, 0.26) 53% 55%, transparent 56% 100%);
  background-size: 210px 130px, 240px 160px;
}

.hero-inner {
  position: relative;
  width: min(1160px, calc(100% - 32px));
  min-height: calc(100vh - 118px);
  max-height: 820px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.6fr);
  gap: 34px;
  padding: 72px 0 104px;
}

.eyebrow {
  color: var(--teal-dark);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  color: var(--navy);
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  color: #34475b;
  max-width: 680px;
}

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

.hero-card {
  align-self: end;
  background: rgba(255, 253, 245, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.vehicle-visual {
  position: relative;
  min-height: 230px;
  display: grid;
  place-items: center;
}

.van {
  width: min(360px, 100%);
  height: 170px;
  border-radius: 30px 36px 18px 18px;
  background: linear-gradient(155deg, var(--ivory) 0 58%, #e5f0ee 58% 100%);
  border: 5px solid var(--navy);
  position: relative;
  box-shadow: 18px 18px 0 rgba(199, 155, 70, 0.24);
}

.van::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 34px;
  width: 86px;
  height: 46px;
  background: var(--teal);
  border-radius: 8px;
  box-shadow: 104px 0 0 var(--teal);
}

.van::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 88px;
  width: 72px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
}

.wheel {
  position: absolute;
  bottom: -20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  border: 10px solid #d9e7e5;
}

.wheel.left {
  left: 50px;
}

.wheel.right {
  right: 50px;
}

.medical-cross {
  position: absolute;
  left: 48%;
  top: 91px;
  width: 44px;
  height: 44px;
  color: var(--navy);
}

.medical-cross::before,
.medical-cross::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}

.medical-cross::before {
  left: 16px;
  top: 2px;
  width: 12px;
  height: 40px;
}

.medical-cross::after {
  left: 2px;
  top: 16px;
  width: 40px;
  height: 12px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.stat {
  border-left: 3px solid var(--gold);
  padding-left: 13px;
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 1.5rem;
  font-family: "Libre Baskerville", Georgia, serif;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

section {
  position: relative;
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: var(--ivory);
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-header p {
  max-width: 560px;
  color: var(--muted);
  margin: 0;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(7, 31, 61, 0.07);
}

.alt .card {
  background: var(--cream);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(199, 155, 70, 0.2);
  margin-bottom: 18px;
}

.icon svg {
  width: 26px;
  height: 26px;
}

.card p,
.step p,
.feature p {
  color: var(--muted);
  margin-bottom: 0;
}

.photo-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--ivory);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.photo-card.contain img {
  object-fit: contain;
  padding: 18px;
  background: var(--ivory);
}

.photo-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(7, 31, 61, 0.86);
  color: var(--ivory);
  font-weight: 700;
}

.media-strip {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 18px;
}

.media-strip .photo-card:first-child {
  grid-row: span 2;
  min-height: 520px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(199, 155, 70, 0.18);
  color: var(--navy);
  font-weight: 700;
  border: 1px solid rgba(199, 155, 70, 0.42);
}

.insurance-band {
  background: var(--teal-dark);
  color: var(--ivory);
}

.insurance-band h2,
.insurance-band p {
  color: var(--ivory);
}

.care-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
}

.brand-art {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.brand-art img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
}

.check-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #34475b;
}

.check-list li::before {
  content: "";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 6px var(--cream);
  border: 2px solid var(--teal);
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  background: var(--navy);
  color: var(--ivory);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 210px;
  overflow: hidden;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--gold);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 900;
}

.step h3,
.step p {
  color: var(--ivory);
}

.step p {
  opacity: 0.82;
}

.map-band {
  overflow: hidden;
  background: var(--navy);
  color: var(--ivory);
}

.map-band h2,
.map-band p {
  color: var(--ivory);
}

.map-band .section-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.zip-checker,
.booking-panel {
  position: relative;
  background: var(--ivory);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.zip-checker > *,
.booking-panel > * {
  position: relative;
}

.field-group {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
}

label {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(7, 31, 61, 0.22);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(199, 155, 70, 0.32);
  border-color: var(--gold);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 16px;
}

.full {
  grid-column: 1 / -1;
}

.form-note,
.result-message {
  color: var(--muted);
  font-size: 0.92rem;
}

.result-message {
  margin-top: 12px;
  font-weight: 800;
}

.result-message.good {
  color: var(--teal-dark);
}

.result-message.warn {
  color: #8a5f00;
}

.testimonial {
  border-top: 4px solid var(--gold);
}

.testimonial blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.testimonial cite {
  display: block;
  margin-top: 18px;
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 900;
}

.page-hero {
  background: var(--navy);
  color: var(--ivory);
  overflow: hidden;
}

.page-hero .section-inner {
  position: relative;
  padding: 74px 0;
}

.page-hero h1,
.page-hero p {
  color: var(--ivory);
}

.page-hero p {
  max-width: 710px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.feature:last-child {
  border-bottom: 0;
}

.mini-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 123, 127, 0.12);
  color: var(--teal-dark);
  font-weight: 900;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-button::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold);
}

.faq-item.open .faq-button::after {
  content: "-";
}

.faq-panel {
  display: none;
  color: var(--muted);
  padding: 0 0 20px;
}

.faq-item.open .faq-panel {
  display: block;
}

.blog-date {
  color: var(--teal-dark);
  font-weight: 900;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer {
  background: var(--navy);
  color: var(--ivory);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 26px;
}

.footer-logo {
  width: 210px;
  max-height: 90px;
  object-fit: contain;
  margin-bottom: 16px;
}

.site-footer h3 {
  color: var(--ivory);
  font-size: 1rem;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 253, 245, 0.78);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 253, 245, 0.18);
  margin-top: 34px;
  padding-top: 18px;
  color: rgba(255, 253, 245, 0.72);
  font-size: 0.9rem;
}

.chat-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  border: 0;
  box-shadow: var(--shadow);
  font-weight: 900;
  cursor: pointer;
}

.chat-panel {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 40;
  width: min(340px, calc(100% - 36px));
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
}

.chat-panel.open {
  display: block;
}

.chat-panel h3 {
  margin-bottom: 8px;
}

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

@media (max-width: 980px) {
  .mobile-toggle {
    display: block;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .site-header.open .nav-links,
  .site-header.open .nav-actions {
    display: flex;
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
  }

  .site-header.open .nav-links {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .site-header.open .nav-actions {
    padding: 0 0 18px;
  }

  .nav-inner {
    min-height: 72px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(251, 247, 234, 0.98) 0%, rgba(251, 247, 234, 0.86) 100%),
      url("fleet-tahoe.jpeg") center 24px / min(620px, 96vw) auto no-repeat;
  }

  .hero-inner,
  .care-split,
  .map-band .section-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 280px;
  }

  .section-header {
    display: block;
  }

  .section-header p {
    margin-top: 12px;
  }

  .grid.three,
  .grid.two,
  .steps,
  .footer-grid,
  .media-strip {
    grid-template-columns: 1fr 1fr;
  }

  .media-strip .photo-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .topbar-inner {
    flex-direction: column;
    gap: 2px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-tagline {
    font-size: 0.64rem;
  }

  .hero-inner {
    padding-top: 230px;
    padding-bottom: 76px;
  }

  .stats-row,
  .grid.three,
  .grid.two,
  .steps,
  .footer-grid,
  .media-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .media-strip .photo-card:first-child,
  .photo-card {
    min-height: 280px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-actions,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

}
