:root {
  --subpage-max: 1040px;
}

.subpage-main {
  background: var(--white);
}

.subpage-hero {
  background:
    linear-gradient(135deg, rgba(36, 59, 51, .9), rgba(49, 83, 71, .74)),
    var(--subpage-hero-image, url("../images/fv_kari.jpg")) center / cover;
  border-bottom: 1px solid rgba(49, 83, 71, .08);
  color: var(--white);
}

.subpage-hero__inner {
  max-width: var(--subpage-max);
  margin: 0 auto;
  padding: 76px 24px 64px;
}

.subpage-hero__label,
.subpage-section-label {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.subpage-hero__title {
  max-width: 840px;
  margin-bottom: 18px;
  color: inherit;
  font-size: clamp(2.15rem, 5vw, 3.5rem);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .24);
}

.subpage-hero__lead {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .24);
}

.subpage-layout {
  max-width: var(--subpage-max);
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.subpage-content {
  max-width: 880px;
  margin: 0 auto;
}

.subpage-eyecatch {
  overflow: hidden;
  margin: 0 0 42px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.subpage-eyecatch img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.content-body {
  color: var(--ink);
  font-size: 1rem;
}

.content-body > *:first-child {
  margin-top: 0;
}

.content-body h2,
.content-body h3,
.content-body h4 {
  color: var(--green-dark);
}

.content-body h2 {
  margin-top: 3.2rem;
  font-size: clamp(1.4rem, 5vw, 3rem);
}

.content-body h3 {
  margin-top: 2.4rem;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

.content-body p,
.content-body li {
  color: #465650;
}

.content-body a:not(.button) {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(49, 83, 71, .25);
  text-underline-offset: 5px;
}

.content-body ul,
.content-body ol {
  padding-left: 1.35em;
}

.content-body blockquote {
  margin: 34px 0;
  border-left: 5px solid var(--orange);
  border-radius: 18px;
  padding: 22px 24px;
  background: var(--washi);
  color: var(--green-dark);
  font-weight: 800;
}

.content-body table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.content-body th,
.content-body td {
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.content-body th {
  background: var(--washi);
  color: var(--green-dark);
  font-weight: 900;
}

.content-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.subpage-pagination,
.blog-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.reserve-page {
  background: var(--washi);
}

.subpage-hero--reserve {
  background:
    linear-gradient(135deg, rgba(36, 59, 51, .92), rgba(49, 83, 71, .78)),
    url("../images/fv_kari.jpg") center / cover;
  color: var(--white);
}

.subpage-hero--reserve .subpage-hero__title,
.subpage-hero--reserve .subpage-hero__lead {
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .25);
}

.reserve-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px 0;
}

.reserve-section:last-child {
  padding-bottom: 96px;
}

.reserve-section__head {
  max-width: 760px;
  margin-bottom: 30px;
}

.reserve-section__head p:not(.subpage-section-label) {
  color: var(--sub);
  font-weight: 700;
}

.reserve-notice,
.reserve-info-card,
.reserve-calendar-card,
.reserve-vehicle-card {
  border-radius: 28px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.reserve-notice {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
  padding: 34px;
}

.reserve-notice__label {
  margin: 0;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.reserve-notice h2,
.reserve-notice p {
  margin-bottom: 0;
}

.reserve-notice p {
  color: var(--sub);
  font-weight: 700;
}

.reserve-vehicle-grid,
.reserve-info-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 820px) {
  .reserve-vehicle-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reserve-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.reserve-vehicle-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.reserve-vehicle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(36, 59, 51, .12);
}

.reserve-vehicle-card__label {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 11px;
  background: var(--washi);
  color: var(--green);
  font-size: .75rem;
  font-weight: 900;
}

.reserve-vehicle-card p {
  color: var(--sub);
}

.reserve-calendar-list {
  display: grid;
  gap: 24px;
}

.reserve-calendar-card {
  display: grid;
  gap: 24px;
  padding: 30px;
}

@media (min-width: 900px) {
  .reserve-calendar-card {
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
  }
}

.reserve-calendar-card p {
  color: var(--sub);
}

.reserve-info-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 30px;
}

.reserve-info-card p {
  color: var(--sub);
}

.reserve-info-card--contact {
  background: var(--green);
  color: var(--white);
}

.reserve-info-card--contact h2,
.reserve-info-card--contact p {
  color: var(--white);
}

.reserve-original-content {
  padding-top: 48px;
}

@media (max-width: 620px) {
  .subpage-hero__inner {
    padding: 58px 18px 48px;
  }

  .subpage-layout,
  .reserve-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .content-button-row .button {
    width: 100%;
  }

  .reserve-notice,
  .reserve-info-card,
  .reserve-calendar-card,
  .reserve-vehicle-card {
    border-radius: 24px;
    padding: 24px;
  }
}

/* Vehicle listing page. */
.vehicle-list-page {
  background: var(--washi);
}

.vehicle-list-hero {
  background:
    linear-gradient(135deg, rgba(36, 59, 51, .94), rgba(49, 83, 71, .74)),
    url("../images/fv_kari.jpg") center / cover;
  color: var(--white);
}

.vehicle-list-hero__inner {
  max-width: var(--subpage-max);
  margin: 0 auto;
  padding: 88px 24px 78px;
}

.vehicle-list-hero__title {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.35rem, 5vw, 4rem);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .24);
}

.vehicle-list-hero__lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
}

.vehicle-list-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 0;
}

.vehicle-list-intro {
  display: grid;
  gap: 28px;
}

@media (min-width: 900px) {
  .vehicle-list-intro {
    grid-template-columns: 1fr 360px;
    align-items: end;
  }
}

.vehicle-list-intro__copy {
  max-width: 760px;
}

.vehicle-list-intro__copy p:not(.subpage-section-label),
.vehicle-compare-section__head p,
.vehicle-list-cta p {
  color: var(--sub);
  font-weight: 700;
}

.vehicle-list-intro__note {
  display: grid;
  gap: 6px;
  border-radius: 24px;
  padding: 24px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.vehicle-list-intro__note strong {
  color: var(--green-dark);
  line-height: 1.5;
}

.vehicle-list-intro__note span {
  color: var(--sub);
  font-weight: 700;
  line-height: 1.7;
}

.vehicle-list-grid {
  display: grid;
  gap: 28px;
}

.vehicle-list-card {
  display: grid;
  overflow: hidden;
  border-radius: 32px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}

.vehicle-list-card:hover,
.vehicle-list-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(36, 59, 51, .13);
}

@media (min-width: 920px) {
  .vehicle-list-card {
    grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
  }
}

.vehicle-list-card__visual {
  position: relative;
  display: grid;
  min-height: 280px;
  place-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.vehicle-list-card__visual::after {
  position: absolute;
  right: -10%;
  bottom: -24%;
  width: 70%;
  aspect-ratio: 1.6;
  border-radius: 999px 999px 20px 20px;
  background: rgba(255, 255, 255, .2);
  content: "";
}

.vehicle-list-card__visual span {
  position: relative;
  z-index: 1;
  max-width: 80%;
  text-shadow: 0 3px 20px rgba(0, 0, 0, .2);
}

.vehicle-list-card__visual.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-list-card__visual.has-image::after,
.vehicle-list-card__visual.has-image span {
  display: none;
}

.vehicle-list-card--green .vehicle-list-card__visual {
  background: linear-gradient(135deg, #d7f3ef, #9edbd1 58%, #62b7aa);
}

.vehicle-list-card--yellow .vehicle-list-card__visual {
  background: linear-gradient(135deg, #fff38a, #ffd21f 62%, #f5aa16);
}

.vehicle-list-card--premium .vehicle-list-card__visual {
  background: linear-gradient(135deg, #dfe7eb, #59696d 70%, #27363a);
}

.vehicle-list-card__body {
  display: grid;
  gap: 16px;
  align-content: center;
  padding: clamp(28px, 4vw, 44px);
}

.vehicle-list-card__label {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 12px;
  background: var(--washi);
  color: var(--green);
  font-size: .75rem;
  font-weight: 900;
}

.vehicle-list-card__body h2,
.vehicle-list-card__body p {
  margin-bottom: 0;
}

.vehicle-list-card__body p {
  color: var(--sub);
  font-weight: 700;
}

.vehicle-spec-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.vehicle-spec-list div {
  display: grid;
  gap: 2px;
  border-radius: 18px;
  padding: 13px 16px;
  background: var(--washi);
}

.vehicle-spec-list dt {
  color: var(--orange);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vehicle-spec-list dd {
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
  line-height: 1.55;
}

.vehicle-compare-section__head {
  max-width: 740px;
  margin-bottom: 28px;
}

.vehicle-compare-table-wrap {
  overflow-x: auto;
  border-radius: 28px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.vehicle-compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.vehicle-compare-table th,
.vehicle-compare-table td {
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
}

.vehicle-compare-table thead th {
  background: var(--green);
  color: var(--white);
  font-size: .84rem;
}

.vehicle-compare-table tbody th {
  color: var(--green-dark);
  font-weight: 900;
}

.vehicle-compare-table td {
  color: var(--sub);
  font-weight: 700;
}

.vehicle-list-original {
  max-width: 880px;
}

.vehicle-list-cta {
  display: grid;
  gap: 24px;
  max-width: 1180px;
  margin: 72px auto 96px;
  border-radius: 32px;
  padding: clamp(30px, 5vw, 48px);
  background: var(--green);
  color: var(--white);
}

@media (min-width: 900px) {
  .vehicle-list-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.vehicle-list-cta h2,
.vehicle-list-cta p {
  color: var(--white);
}

.vehicle-list-cta p {
  max-width: 680px;
  margin-bottom: 0;
  opacity: .78;
}

.vehicle-list-cta .content-button-row {
  justify-content: flex-start;
}

@media (max-width: 620px) {
  .vehicle-list-hero__inner,
  .vehicle-list-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .vehicle-list-card {
    border-radius: 26px;
  }

  .vehicle-list-card__visual {
    min-height: 220px;
  }

  .vehicle-list-cta {
    margin-right: 18px;
    margin-left: 18px;
  }
}

.vehicle-feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vehicle-feature-list li {
  position: relative;
  border-radius: 18px;
  padding: 13px 16px 13px 38px;
  background: var(--washi);
  color: var(--green-dark);
  font-weight: 800;
  line-height: 1.55;
}

.vehicle-feature-list li::before {
  position: absolute;
  top: 1.18em;
  left: 17px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

/* Vehicle list intro layout adjustment. */
.vehicle-list-intro {
  grid-template-columns: 1fr;
  align-items: start;
}

.vehicle-list-intro__head {
  width: 100%;
  max-width: 100%;
}

.vehicle-list-intro__head h2 {
  max-width: 100%;
}

.vehicle-list-intro__copy {
  max-width: none;
}

@media (min-width: 900px) {
  .vehicle-list-intro {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .vehicle-list-intro__head {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .vehicle-list-intro {
    align-items: center;
  }

  .vehicle-list-intro__head h2 {
    max-width: none;
    font-size: clamp(2.35rem, 3.6vw, 3.15rem);
  }

  .vehicle-list-intro__copy,
  .vehicle-list-intro__note {
    align-self: center;
  }
}

/* Vehicle visual should stay image/color only. */
.vehicle-list-card__visual::after,
.vehicle-list-card__visual span {
  display: none;
}

/* Reserve page vehicle card refinements. */
.reserve-calendar-card {
  scroll-margin-top: 110px;
}

.reserve-section[id="reserve-calendars"] {
  scroll-margin-top: 50px;
}

.reserve-vehicle-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 44 / 25;
  min-height: 0;
  margin: -8px -8px 4px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--sky), var(--washi));
}

.reserve-vehicle-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reserve-vehicle-card.vehicle-card--green .reserve-vehicle-card__image {
  background: linear-gradient(135deg, #d7f3ef, #9edbd1 58%, #62b7aa);
}

.reserve-vehicle-card.vehicle-card--yellow .reserve-vehicle-card__image {
  background: linear-gradient(135deg, #fff38a, #ffd21f 62%, #f5aa16);
}

.reserve-vehicle-card.vehicle-card--premium .reserve-vehicle-card__image {
  background: linear-gradient(135deg, #dfe7eb, #59696d 70%, #27363a);
}

@media (max-width: 620px) {
  .reserve-calendar-card {
    scroll-margin-top: 86px;
  }

  .reserve-vehicle-card__image {
    border-radius: 18px;
  }
}

/* Pinpoint calendar area needs generous desktop width. */
@media (min-width: 980px) {
  .reserve-calendar-card {
    grid-template-columns: 1fr;
  }

  .reserve-calendar-card > div:first-child {
    max-width: 760px;
  }
}

/* Reserve calendar cards are always stacked. */
.reserve-calendar-card {
  grid-template-columns: 1fr !important;
}

.reserve-calendar-card > div:first-child {
  max-width: 760px;
}

.reserve-calendar-card h2,
.reserve-section__head h2,
.reserve-notice h2,
.reserve-info-card h2,
.vehicle-list-intro__head h2,
.vehicle-list-cta h2,
.vehicle-detail-pricing h2,
.vehicle-detail-equipment h2,
.vehicle-detail-cta h2,
.vehicle-compare-section__head h2,
.vehicle-detail-section__head h2,
.vehicle-detail-calendar__head h2 {
  font-size: clamp(1.4rem, 5vw, 3rem);
}

.reserve-calendar-bar {
  width: min(220px, 100%);
  height: 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
}

.reserve-calendar-card.vehicle-card--green .reserve-calendar-bar {
  background: linear-gradient(90deg, #d7f3ef, #9edbd1 58%, #62b7aa);
}

.reserve-calendar-card.vehicle-card--yellow .reserve-calendar-bar {
  background: linear-gradient(90deg, #fff38a, #ffd21f 62%, #f5aa16);
}

.reserve-calendar-card.vehicle-card--premium .reserve-calendar-bar {
  background: linear-gradient(90deg, #dfe7eb, #59696d 70%, #27363a);
}

@media (min-width: 621px) {
  .vehicle-list-cta {
    width: calc(100% - 48px);
  }
}

/* Vehicle card photo slots: mobile one image, tablet/desktop two images. */
.vehicle-list-card__visual {
  display: grid;
  min-height: auto;
  place-items: stretch;
  gap: 0;
  background: transparent !important;
}

.vehicle-list-card__image-slot {
  min-height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sky), var(--washi));
}

.vehicle-list-card__image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-list-card__image-slot--secondary {
  display: none;
}

.vehicle-list-card--green .vehicle-list-card__image-slot--primary {
  background: linear-gradient(135deg, #d7f3ef, #9edbd1 58%, #62b7aa);
}

.vehicle-list-card--green .vehicle-list-card__image-slot--secondary {
  background: linear-gradient(135deg, #c9eee8, #82cfc4 58%, #49a99a);
}

.vehicle-list-card--yellow .vehicle-list-card__image-slot--primary {
  background: linear-gradient(135deg, #fff38a, #ffd21f 62%, #f5aa16);
}

.vehicle-list-card--yellow .vehicle-list-card__image-slot--secondary {
  background: linear-gradient(135deg, #ffd56b, #e59b1f 72%, #a96710);
}

.vehicle-list-card--premium .vehicle-list-card__image-slot--primary {
  background: linear-gradient(135deg, #dfe7eb, #59696d 70%, #27363a);
}

.vehicle-list-card--premium .vehicle-list-card__image-slot--secondary {
  background: linear-gradient(135deg, #b8c4c9, #46575c 70%, #1f2b2f);
}

@media (min-width: 621px) {
  .vehicle-list-card__visual {
    grid-template-columns: 1fr 1fr;
  }

  .vehicle-list-card__image-slot,
  .vehicle-list-card__image-slot--secondary {
    display: block;
    min-height: 280px;
  }
}

@media (min-width: 920px) {
  .vehicle-list-card__visual {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .vehicle-list-card__image-slot {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .vehicle-list-card__image-slot {
    min-height: 220px;
  }
}


/* Vehicle detail pages and detailed comparison. */
.vehicle-compare-table--detail {
  min-width: 920px;
}

.vehicle-compare-table--detail thead th:not(:first-child) {
  text-align: center;
}

.vehicle-compare-table--detail tbody th {
  width: 150px;
  background: #fff6d8;
  color: var(--green-dark);
}

.vehicle-compare-table--detail td {
  width: 25%;
  text-align: center;
}

.vehicle-detail-page {
  background: var(--washi);
}

.vehicle-detail-hero {
  background: var(--white);
}

.vehicle-detail-hero__inner,
.vehicle-detail-section,
.vehicle-detail-cta {
  width: 100%;
  min-width: 0;
  max-width: 1180px;
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.vehicle-detail-hero__inner {
  display: grid;
  gap: 34px;
  padding-top: 80px;
  padding-bottom: 72px;
}

@media (min-width: 900px) {
  .vehicle-detail-hero__inner {
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    align-items: center;
  }
}

.vehicle-detail-hero__copy h1 {
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.vehicle-detail-hero__catch {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 900;
  line-height: 1.45;
}

.vehicle-detail-hero__lead {
  max-width: 640px;
  color: var(--sub);
  font-weight: 700;
}

.vehicle-detail-hero__visual,
.vehicle-detail-photo {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--sky), var(--washi));
  box-shadow: inset 0 0 0 1px var(--line);
}

.vehicle-detail-hero__visual {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 320px;
  aspect-ratio: 4 / 3;
}

.vehicle-detail-hero__visual img,
.vehicle-detail-photo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-detail-page--green .vehicle-detail-hero__visual,
.vehicle-detail-page--green .vehicle-detail-photo {
  background: linear-gradient(135deg, #d7f3ef, #9edbd1 58%, #62b7aa);
}

.vehicle-detail-page--yellow .vehicle-detail-hero__visual,
.vehicle-detail-page--yellow .vehicle-detail-photo {
  background: linear-gradient(135deg, #fff38a, #ffd21f 62%, #f5aa16);
}

.vehicle-detail-page--premium .vehicle-detail-hero__visual,
.vehicle-detail-page--premium .vehicle-detail-photo {
  background: linear-gradient(135deg, #dfe7eb, #59696d 70%, #27363a);
}

.vehicle-detail-section {
  padding-top: 76px;
}

.vehicle-detail-section__head {
  max-width: 760px;
  margin-bottom: 28px;
}

.vehicle-detail-section__head p:not(.subpage-section-label),
.vehicle-detail-cta p {
  color: var(--sub);
  font-weight: 700;
}

.vehicle-detail-summary {
  display: grid;
  gap: 28px;
}

@media (min-width: 900px) {
  .vehicle-detail-summary {
    grid-template-columns: .75fr 1.25fr;
    align-items: start;
  }
}

.vehicle-detail-spec-table {
  display: grid;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.vehicle-detail-spec-table div {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.vehicle-detail-spec-table div:last-child {
  border-bottom: 0;
}

.vehicle-detail-spec-table dt,
.vehicle-detail-spec-table dd {
  margin: 0;
  padding: 16px 18px;
}

.vehicle-detail-spec-table dt {
  background: #fff6d8;
  color: var(--orange);
  font-weight: 900;
}

.vehicle-detail-spec-table dd {
  color: var(--green-dark);
  font-weight: 800;
}

.vehicle-detail-photo-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 720px) {
  .vehicle-detail-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vehicle-detail-photo {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  margin: 0;
  align-items: stretch;
  background: var(--white);
}

.vehicle-detail-photo img {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.vehicle-detail-photo figcaption {
  padding: 14px 16px 16px;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 900;
}

.vehicle-detail-feature-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 820px) {
  .vehicle-detail-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vehicle-detail-feature-card,
.vehicle-detail-equipment,
.vehicle-detail-content,
.vehicle-detail-cta {
  border-radius: 28px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.vehicle-detail-feature-card {
  padding: 26px;
}

.vehicle-detail-feature-card h3 {
  color: var(--green-dark);
}

.vehicle-detail-feature-card p {
  color: var(--sub);
  font-weight: 700;
}

.vehicle-detail-equipment {
  display: grid;
  gap: 22px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.vehicle-detail-equipment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vehicle-detail-equipment-list li {
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--washi);
  color: var(--green);
  font-weight: 900;
}

.vehicle-detail-content {
  padding-top: 42px;
  padding-bottom: 42px;
}

.vehicle-detail-cta {
  display: grid;
  gap: 24px;
  margin-top: 76px;
  margin-bottom: 96px;
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--green);
  color: var(--white);
}

@media (min-width: 900px) {
  .vehicle-detail-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.vehicle-detail-cta h2,
.vehicle-detail-cta p {
  color: var(--white);
}

.vehicle-detail-cta p {
  opacity: .78;
}

@media (max-width: 620px) {
  .vehicle-detail-hero__inner,
  .vehicle-detail-section,
  .vehicle-detail-cta {
    padding-right: 18px;
    padding-left: 18px;
  }

  .vehicle-detail-hero__inner {
    padding-top: 58px;
    padding-bottom: 56px;
  }

  .vehicle-detail-spec-table div {
    grid-template-columns: 1fr;
  }

  .vehicle-detail-cta {
    margin-right: 18px;
    margin-left: 18px;
  }
}

/* Vehicle comparison sticky first column and border cleanup. */
.vehicle-compare-table-wrap {
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: none;
}

.vehicle-compare-table th,
.vehicle-compare-table td {
  border-right: 1px solid rgba(0, 0, 0, .08);
}

.vehicle-compare-table th:last-child,
.vehicle-compare-table td:last-child {
  border-right: 0;
}

.vehicle-compare-table tbody tr:last-child th,
.vehicle-compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.vehicle-compare-table--detail {
  min-width: 820px;
}

.vehicle-compare-table--detail thead th:first-child,
.vehicle-compare-table--detail tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 112px;
  min-width: 112px;
  max-width: 112px;
  text-align: left;
}

.vehicle-compare-table--detail thead th:first-child {
  z-index: 3;
  background: var(--green);
}

.vehicle-compare-table--detail tbody th {
  background: #fff6d8;
}

.vehicle-compare-table--detail th,
.vehicle-compare-table--detail td {
  padding-right: 16px;
  padding-left: 16px;
}

.vehicle-compare-table--detail th {
  padding-right: 8px;
}

@media (max-width: 620px) {
  .vehicle-compare-table--detail {
    min-width: 760px;
    table-layout: fixed;
  }

  .vehicle-compare-table--detail thead th:first-child,
  .vehicle-compare-table--detail tbody th {
    width: 112px;
    min-width: 112px;
    max-width: 112px;
  }

  .vehicle-compare-table--detail th,
  .vehicle-compare-table--detail td {
    padding-right: 12px;
    padding-left: 12px;
  }

  .vehicle-compare-table--detail th {
    padding-right: 8px;
  }
}

/* Vehicle compare exterior image row. */
.vehicle-compare-table__image-row td {
  padding: 14px;
}

.vehicle-compare-image {
  width: 100%;
  min-width: 130px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky), var(--washi));
}

.vehicle-compare-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.vehicle-compare-image--green {
  background: linear-gradient(135deg, #d7f3ef, #9edbd1 58%, #62b7aa);
}

.vehicle-compare-image--yellow {
  background: linear-gradient(135deg, #fff38a, #ffd21f 62%, #f5aa16);
}

.vehicle-compare-image--premium {
  background: linear-gradient(135deg, #dfe7eb, #59696d 70%, #27363a);
}

@media (max-width: 1180px) and (min-width: 621px) {
  .vehicle-detail-equipment,
  .vehicle-detail-cta,
  .vehicle-detail-content {
    width: calc(100% - 48px);
  }
}

/* Vehicle compare detail button row. */
.vehicle-compare-table__button-row td {
  padding: 18px 14px;
  text-align: center;
}

.vehicle-compare-table__button-row .button {
  min-height: 42px;
  padding: 10px 16px;
  font-size: .82rem;
}

/* Vehicle detail photo captions with notes. */
.vehicle-detail-photo figcaption {
  display: grid;
  gap: 4px;
}

.vehicle-detail-photo figcaption strong {
  color: var(--green-dark);
  line-height: 1.35;
}

.vehicle-detail-photo figcaption span {
  color: var(--sub);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.55;
}

/* Vehicle detail spec table. */
.vehicle-detail-equipment {
  margin-top: 76px;
}

.vehicle-detail-spec-list {
  display: grid;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 22px;
  background: var(--white);
}

.vehicle-detail-spec-list div {
  display: grid;
  grid-template-columns: minmax(130px, .42fr) minmax(0, 1fr);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.vehicle-detail-spec-list div:last-child {
  border-bottom: 0;
}

.vehicle-detail-spec-list dt,
.vehicle-detail-spec-list dd {
  margin: 0;
  padding: 17px 20px;
  line-height: 1.7;
}

.vehicle-detail-spec-list dt {
  display: flex;
  align-items: center;
  background: #fff6d8;
  color: #9b420d;
  font-weight: 900;
}

.vehicle-detail-spec-list dd {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-weight: 800;
  text-align: center;
}

@media (max-width: 620px) {
  .vehicle-detail-equipment {
    margin-top: 56px;
  }

  .vehicle-detail-spec-list div {
    grid-template-columns: 1fr;
  }

  .vehicle-detail-spec-list dd {
    justify-content: flex-start;
    text-align: left;
  }
}

/* Vehicle detail pricing table. */
.vehicle-detail-pricing {
  display: grid;
  gap: 22px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.vehicle-detail-pricing > div:first-child p:not(.subpage-section-label),
.vehicle-detail-pricing__note {
  color: var(--sub);
  font-weight: 700;
}

.vehicle-detail-price-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 22px;
}

.vehicle-detail-price-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--white);
}

.vehicle-detail-price-table th,
.vehicle-detail-price-table td {
  border-right: 1px solid rgba(0, 0, 0, .08);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  padding: 15px 18px;
  vertical-align: middle;
}

.vehicle-detail-price-table th:last-child,
.vehicle-detail-price-table td:last-child {
  border-right: 0;
}

.vehicle-detail-price-table tbody tr:last-child th,
.vehicle-detail-price-table tbody tr:last-child td {
  border-bottom: 0;
}

.vehicle-detail-price-table thead th {
  background: var(--green);
  color: var(--white);
  font-size: .86rem;
  text-align: left;
}

.vehicle-detail-price-table tbody th {
  width: 38%;
  background: #fff6d8;
  color: #9b420d;
  text-align: left;
}

.vehicle-detail-price-table td {
  color: var(--green-dark);
  font-weight: 800;
  text-align: center;
}

.vehicle-detail-pricing__note {
  margin-bottom: 0;
  font-size: .9rem;
}

@media (max-width: 620px) {
  .vehicle-detail-pricing {
    border-radius: 24px;
    padding-right: 18px;
    padding-left: 18px;
  }
}

/* Align vehicle detail spec/price sections and replace final CTA with calendar. */
.vehicle-detail-pricing {
  margin-top: 76px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.vehicle-detail-pricing > div:first-child,
.vehicle-detail-equipment > div:first-child {
  display: grid;
  gap: 10px;
}

.vehicle-detail-pricing h2,
.vehicle-detail-equipment h2 {
  margin-bottom: 0;
}

.vehicle-detail-calendar {
  display: grid;
  gap: 24px;
  max-width: 1180px;
  width: calc(100% - 48px);
  margin: 76px auto 96px;
  border-radius: 28px;
  padding: 40px 24px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
  scroll-margin-top: 110px;
}

.vehicle-detail-calendar__head {
  max-width: 760px;
}

.vehicle-detail-calendar__head p:not(.subpage-section-label) {
  color: var(--sub);
  font-weight: 700;
}

.vehicle-detail-calendar__body {
  width: 100%;
}

@media (max-width: 620px) {
  .vehicle-detail-pricing {
    margin-top: 56px;
  }

  .vehicle-detail-calendar {
    width: calc(100% - 36px);
    margin-top: 56px;
    margin-bottom: 78px;
    border-radius: 24px;
    padding: 30px 18px;
    scroll-margin-top: 86px;
  }
}

/* Make the tax-included price column quieter. */
.vehicle-detail-price-table th:nth-child(3),
.vehicle-detail-price-table td:nth-child(3) {
  width: 24%;
}

.vehicle-detail-price-table tbody td:nth-child(3) {
  color: var(--sub);
  font-size: .9rem;
  font-weight: 600;
}

.vehicle-detail-price-table th:nth-child(2),
.vehicle-detail-price-table td:nth-child(2) {
  width: 32%;
}

/* Let lower-page hero lead text use the full content width. */
.subpage-hero__lead,
.vehicle-list-hero__lead,
.vehicle-detail-hero__lead {
  max-width: none;
}

.vehicle-list-hero__lead {
  max-width: 760px;
}

/* Usage guide page */
.guide-page {
  background: var(--washi);
}

.guide-hero {
  background:
    linear-gradient(135deg, rgba(36, 59, 51, .9), rgba(49, 83, 71, .74)),
    var(--subpage-hero-image, url("../images/fv_kari.jpg")) center / cover;
  color: var(--white);
}

.guide-hero .subpage-hero__title,
.guide-hero .subpage-hero__lead {
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .24);
}

.guide-anchor-nav {
  position: sticky;
  top: var(--header-height, 72px);
  z-index: 20;
  display: flex;
  gap: 8px;
  max-width: var(--subpage-max);
  margin: 0 auto;
  padding: 14px 24px;
  overflow-x: auto;
  background: rgba(247, 245, 239, .86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.guide-anchor-nav a {
  flex: 0 0 auto;
  border: 1px solid rgba(49, 83, 71, .12);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, .72);
  color: var(--green-dark);
  font-size: .84rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.guide-anchor-nav a:hover {
  transform: translateY(-2px);
  background: var(--green);
  color: var(--white);
}

.guide-section,
.guide-final-cta {
  max-width: var(--subpage-max);
  margin: 0 auto;
  padding: 78px 24px 0;
  scroll-margin-top: 112px;
}

.guide-section__head {
  max-width: 100%;
  margin-bottom: 30px;
}

.guide-section__head h2,
.guide-slide h2,
.guide-final-cta h2 {
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: clamp(1.4rem, 5vw, 3rem);
}

.guide-section__head p:not(.subpage-section-label),
.guide-slide p,
.guide-final-cta p,
.guide-note {
  color: var(--sub);
  font-weight: 700;
}

.guide-flow-grid,
.guide-card-grid,
.guide-check-list {
  display: grid;
  gap: 18px;
}

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

.guide-flow-card,
.guide-card,
.guide-check-list article,
.guide-slide,
.guide-final-cta {
  border-radius: 28px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.guide-flow-card,
.guide-card,
.guide-check-list article {
  padding: 28px;
}

.guide-flow-card span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.guide-flow-card h3,
.guide-card h3,
.guide-check-list h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
}

.guide-flow-card p,
.guide-card p,
.guide-check-list p {
  color: var(--sub);
  font-weight: 700;
}

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

.guide-card-grid--2,
.guide-check-list {
  grid-template-columns: repeat(2, 1fr);
}

.guide-card--soft {
  background: rgba(255, 255, 255, .72);
}

.guide-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.guide-cta-row--center {
  justify-content: center;
}

.guide-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
}

.guide-table {
  width: 100%;
  border-collapse: collapse;
}

.guide-table th,
.guide-table td {
  border-bottom: 1px solid var(--line);
  padding: 22px 24px;
  vertical-align: top;
}

.guide-table tr:last-child th,
.guide-table tr:last-child td {
  border-bottom: 0;
}

.guide-table th {
  width: 28%;
  background: #fff4c7;
  color: #9b410c;
  font-weight: 900;
  text-align: left;
}

.guide-table td {
  color: var(--green-dark);
  font-weight: 800;
}

.guide-note {
  margin-top: 16px;
  font-size: .92rem;
}

.guide-slide {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 78px;
  padding: 34px;
}

.guide-final-cta {
  margin-top: 82px;
  margin-bottom: 96px;
  padding: 48px 34px;
  background: var(--green);
  color: var(--white);
  text-align: left;
}

.guide-final-cta .guide-cta-row--center {
  justify-content: flex-start;
}

.guide-final-cta h2,
.guide-final-cta p,
.guide-final-cta .subpage-section-label {
  color: var(--white);
}



@media (max-width: 1079px) {
  .guide-slide,
  .guide-final-cta {
    width: calc(100% - 48px);
  }
}

@media (max-width: 899px) {
  .guide-flow-grid,
  .guide-card-grid--3,
  .guide-card-grid--2,
  .guide-check-list,
  .guide-slide {
    grid-template-columns: 1fr;
  }

  .guide-slide {
    align-items: start;
  }

}

@media (max-width: 620px) {
  .guide-anchor-nav {
    top: 68px;
    padding: 12px 18px;
  }

  .guide-section {
    padding-right: 18px;
    padding-left: 18px;
    scroll-margin-top: 94px;
  }

  .guide-final-cta {
    width: calc(100% - 36px);
    scroll-margin-top: 94px;
  }

  .guide-slide {
    width: calc(100% - 36px);
    margin-top: 64px;
  }

  .guide-flow-card,
  .guide-card,
  .guide-check-list article,
  .guide-slide,
  .guide-final-cta {
    border-radius: 22px;
    padding: 24px;
  }

  .guide-table-wrap {
    overflow: hidden;
    border-radius: 22px;
  }

  .guide-table,
  .guide-table tbody,
  .guide-table tr,
  .guide-table th,
  .guide-table td {
    display: block;
    width: 100%;
  }

  .guide-table tr {
    border-bottom: 1px solid var(--line);
  }

  .guide-table tr:last-child {
    border-bottom: 0;
  }

  .guide-table th,
  .guide-table td,
  .guide-table tr:last-child th,
  .guide-table tr:last-child td {
    border-bottom: 0;
  }

  .guide-table th {
    padding: 16px 20px 10px;
  }

  .guide-table td {
    padding: 16px 20px 18px;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .guide-table td .button {
    width: 100%;
    margin-top: 14px;
  }

  .guide-cta-row .button {
    width: 100%;
  }
}

.guide-payment-grid {
  display: grid;
  gap: 28px;
}

.guide-payment-block h3 {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
}

.guide-payment-modal-button {
  width: fit-content;
  margin-top: 12px;
  cursor: pointer;
}

.guide-payment-modal-toggle {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.guide-payment-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 24px;
}

.guide-payment-modal-toggle:checked + .guide-payment-modal {
  display: grid;
}

.guide-payment-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 31, 27, .62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.guide-payment-modal__panel {
  position: relative;
  z-index: 1;
  width: min(760px, 94vw);
  max-height: 86vh;
  overflow: auto;
  border-radius: 24px;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(17, 31, 27, .28);
}

.guide-payment-modal__panel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.guide-payment-modal__close {
  position: sticky;
  top: 0;
  left: 100%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 0 -42px auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.insurance-alert-card {
  border-radius: 26px;
  padding: 28px;
  background: #fff4c7;
  color: var(--green-dark);
  box-shadow: inset 0 0 0 1px rgba(155, 65, 12, .14);
}

.insurance-alert-card h3 {
  margin-bottom: 10px;
  color: #9b410c;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
}

.insurance-alert-card p,
.insurance-exclusion-grid li {
  color: var(--sub);
  font-weight: 700;
}

.insurance-exclusion-grid ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 1.1em;
}

@media (min-width: 900px) {
  .guide-payment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .guide-payment-modal {
    padding: 16px;
  }

  .guide-payment-modal__panel {
    border-radius: 20px;
    padding: 14px;
  }
}

/* Reservation slide support page */
.slide-case-card h3::before {
  content: "";
  display: block;
  width: 42px;
  height: 6px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--orange);
}

.slide-flow-grid {
  grid-template-columns: repeat(4, 1fr);
}

.slide-contact-card {
  display: grid;
  gap: 24px;
  align-items: center;
  margin-top: 78px;
  margin-bottom: 96px;
  border-radius: 32px;
  padding: clamp(30px, 5vw, 48px);
  background: var(--green);
  color: var(--white);
}

.slide-contact-card h2,
.slide-contact-card p,
.slide-contact-card .subpage-section-label {
  color: var(--white);
}

.slide-contact-card p:not(.subpage-section-label) {
  max-width: 720px;
  opacity: .86;
}

.slide-phone-link {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.slide-phone-hours {
  display: block;
  margin-top: 6px;
  color: var(--sub);
  font-size: .82rem;
  font-weight: 500;
}


@media (min-width: 621px) {
  .slide-phone-link {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
    cursor: text;
  }
}

@media (min-width: 900px) {
  .slide-contact-card {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 1079px) {
  .slide-contact-card {
    width: calc(100% - 48px);
  }
}

@media (max-width: 899px) {
  .slide-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide-contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .slide-flow-grid {
    grid-template-columns: 1fr;
  }

  .slide-contact-card {
    width: calc(100% - 36px);
    border-radius: 22px;
    padding: 24px;
  }

  .slide-contact-card .button {
    width: 100%;
  }
}


.guide-status-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 5px 12px;
  background: var(--washi);
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
}


.pet-price-card {
  display: grid;
  gap: 28px;
  background: #fff4c7;
}

.pet-price-card h3 {
  color: #9b410c;
}


.pet-vehicle-card {
  position: relative;
  overflow: hidden;
}

.pet-vehicle-card__bar {
  display: block;
  width: min(220px, 100%);
  height: 12px;
  margin-bottom: 22px;
  border-radius: 999px;
}

.pet-vehicle-card--green .pet-vehicle-card__bar {
  background: linear-gradient(90deg, #d7f3ef, #9edbd1 58%, #62b7aa);
}

.pet-vehicle-card--yellow .pet-vehicle-card__bar {
  background: linear-gradient(90deg, #fff38a, #ffd21f 62%, #f5aa16);
}

.pet-price-layout {
  width: 100%;
}

.pet-price-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  object-fit: cover;
}

@media (min-width: 900px) {
  .pet-price-card {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 38%);
    align-items: center;
  }

  .pet-price-photo {
    min-height: 100%;
  }
}


.reserve-calendar-contact,
.vehicle-detail-calendar__contact {
  align-items: center;
}

.reserve-calendar-contact__button,
.vehicle-detail-calendar__contact .button {
  width: fit-content;
}

@media (max-width: 620px) {
  .reserve-calendar-contact__button,
  .vehicle-detail-calendar__contact .button {
    width: 100%;
  }
}


.guide-card__link-button {
  width: fit-content;
  margin-top: 18px;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-channel-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 24px;
}

.contact-channel-card__qr {
  display: grid;
  aspect-ratio: 1;
  width: 100%;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(221, 238, 247, .75), rgba(247, 245, 239, .92));
  color: var(--green);
  font-weight: 900;
  text-align: center;
}

.contact-channel-card__qr img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.contact-channel-card .button {
  width: fit-content;
  margin-top: 18px;
}

.contact-form-section {
  margin-bottom: clamp(72px, 10vw, 128px);
}

.contact-form-card {
  padding: clamp(24px, 4vw, 42px);
}

.contact-form-card form {
  display: grid;
  gap: 18px;
}

.contact-form-card input:not([type="submit"]),
.contact-form-card textarea,
.contact-form-card select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: 16px;
  padding: 13px 15px;
  background: var(--white);
  color: var(--text);
  font: inherit;
}

.contact-form-card textarea {
  min-height: 180px;
}

.contact-form-card input[type="submit"] {
  display: flex;
  width: min(100%, 360px);
  min-height: 64px;
  margin: 0 auto;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 980px) {
  .contact-channel-grid,
  .contact-channel-card {
    grid-template-columns: 1fr;
  }

  .contact-channel-card__qr {
    width: min(220px, 100%);
  }
}

@media (max-width: 620px) {
  .guide-card__link-button,
  .contact-channel-card .button,
  .contact-form-card input[type="submit"] {
    width: 100%;
  }
}


.pet-friendly-page .guide-card-grid--3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pet-friendly-page .pet-vehicle-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 18px;
  padding: 14px;
}

.pet-friendly-page .pet-vehicle-card__bar {
  width: 100%;
  height: 8px;
  margin: 0;
  border-radius: 999px;
}

.pet-friendly-page .pet-vehicle-card h3 {
  margin: 0;
  font-size: clamp(.88rem, 3.8vw, 1.2rem);
  line-height: 1.2;
}

.pet-friendly-page .pet-vehicle-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  object-fit: cover;
}

.pet-friendly-page .pet-vehicle-card .button {
  width: 100%;
  margin-top: auto;
  padding: 10px 8px;
  font-size: .76rem;
}


.error404-page .subpage-hero__inner {
  padding-bottom: 84px;
}

.error404-page .error404-links-section {
  padding-top: 104px;
  padding-bottom: 64px;
}

.error404-page .error404-blog-section {
  padding-top: 32px;
}

.error404-page .text-link-row {
  margin-top: 28px;
  text-align: right;
}


.contact-channel-card {
  scroll-margin-top: 88px;
}

.error404-page .error404-blog-section {
  padding-bottom: 104px;
}

@media (max-width: 620px) {
  .contact-channel-card {
    scroll-margin-top: 82px;
  }
}


.content-body iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  aspect-ratio: 4 / 3;
  border: 0;
}


.reserve-calendar-embed {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
}
@media (min-width: 980px) {
  .reserve-calendar-embed {
    min-width: 872px;
  }
}


/* Keep Pinpoint calendars and their customer forms inside the vehicle detail card. */
.vehicle-detail-calendar__head,
.vehicle-detail-calendar__body {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 979px) {
  .vehicle-detail-calendar__head {
    width: 100%;
    max-width: none;
  }

  .vehicle-detail-calendar__body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  .vehicle-detail-calendar__body > * {
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
  }

  .vehicle-detail-calendar__body .DOPBSPCalendar-wrapper {
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .vehicle-detail-calendar__body .DOPBSPCalendar-container,
  .vehicle-detail-calendar__body .DOPBSPCalendar-navigation,
  .vehicle-detail-calendar__body .DOPBSPCalendar-calendar,
  .vehicle-detail-calendar__body .DOPBSPCalendar-month {
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
  }

  .vehicle-detail-calendar__body .DOPBSPCalendar-navigation .dopbsp-week {
    display: flex;
    width: 100%;
  }

  .vehicle-detail-calendar__body .DOPBSPCalendar-navigation .dopbsp-week > .dopbsp-day,
  .vehicle-detail-calendar__body .DOPBSPCalendar-month > .DOPBSPCalendar-day {
    width: 14.285714% !important;
    max-width: 14.285714%;
    min-width: 0;
    box-sizing: border-box;
  }

  .vehicle-detail-calendar__body .DOPBSPCalendar-month > .DOPBSPCalendar-day .dopbsp-bind-middle {
    width: calc(100% - 2px) !important;
    max-width: 100%;
    box-sizing: border-box;
  }
}


.vehicle-detail-calendar__body .DOPBSPCalendar-referral,
.reserve-calendar-embed .DOPBSPCalendar-referral {
  display: none !important;
}

/* Make Pinpoint's terms/privacy controls read as familiar checkboxes. */
:is(.DOPBSPCalendar-sidebar, .DOPBSPCalendar-outer-sidebar)
  .dopbsp-module
  .dopbsp-input-wrapper
  input[type="checkbox"]:is(
    [id^="DOPBSPCalendar-terms-and-conditions"],
    [id^="DOPBSPCalendar-privacy"]
  ) {
  -webkit-appearance: none !important;
  appearance: none !important;
  background: #fff !important;
  border: 2px solid #777 !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  height: 20px !important;
  margin: 0 8px 0 0 !important;
  padding: 0 !important;
  position: relative;
  width: 20px !important;
}

:is(.DOPBSPCalendar-sidebar, .DOPBSPCalendar-outer-sidebar)
  .dopbsp-module
  .dopbsp-input-wrapper
  input[type="checkbox"]:is(
    [id^="DOPBSPCalendar-terms-and-conditions"],
    [id^="DOPBSPCalendar-privacy"]
  ):hover {
  border-color: #ff6300 !important;
}

:is(.DOPBSPCalendar-sidebar, .DOPBSPCalendar-outer-sidebar)
  .dopbsp-module
  .dopbsp-input-wrapper
  input[type="checkbox"]:is(
    [id^="DOPBSPCalendar-terms-and-conditions"],
    [id^="DOPBSPCalendar-privacy"]
  ):checked {
  background: #ff6300 !important;
  border-color: #ff6300 !important;
}

:is(.DOPBSPCalendar-sidebar, .DOPBSPCalendar-outer-sidebar)
  .dopbsp-module
  .dopbsp-input-wrapper
  input[type="checkbox"]:is(
    [id^="DOPBSPCalendar-terms-and-conditions"],
    [id^="DOPBSPCalendar-privacy"]
  ):checked::before {
  background: transparent !important;
  border: 0 !important;
  color: #fff !important;
  content: "✓" !important;
  font-family: Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  height: 18px !important;
  left: -1px !important;
  line-height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute !important;
  text-align: center;
  top: -1px !important;
  width: 18px !important;
}

:is(.DOPBSPCalendar-sidebar, .DOPBSPCalendar-outer-sidebar)
  .dopbsp-module
  .dopbsp-input-wrapper
  input[type="checkbox"]:is(
    [id^="DOPBSPCalendar-terms-and-conditions"],
    [id^="DOPBSPCalendar-privacy"]
  ):checked::after {
  content: none !important;
  display: none !important;
}

:is(.DOPBSPCalendar-sidebar, .DOPBSPCalendar-outer-sidebar)
  .dopbsp-module
  .dopbsp-input-wrapper
  input[type="checkbox"]:is(
    [id^="DOPBSPCalendar-terms-and-conditions"],
    [id^="DOPBSPCalendar-privacy"]
  ):focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 99, 0, 0.25) !important;
}
