:root {
  --purple: #102039;
  --yellow: #F37332;
  --ink: #2e2e2e;
  --muted: #777386;
  --soft: #f7f5ff;
  --white: #ffffff;
  --radius-xl: 30px;
  --shadow-card: 0 4px 53px rgba(235, 230, 255, 0.95);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter Tight", Arial, sans-serif;
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-shell {
  background: #fff;
  border-radius: var(--radius-xl);
  margin: 3px auto 0;
  max-width: 1920px;
  overflow: hidden;
  padding: 27px 30px 0;
  position: relative;
}

.section-pad {
  padding: 88px 0;
}

.content-container,
.blog-section {
  max-width: 1460px;
  margin: 0 auto;
}

.eyebrow {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1.7px;
  line-height: 1.25;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.eyebrow.eyebrow-svg::after {
  content: none;
}

.eyebrow.eyebrow-svg svg,
.eyebrow.eyebrow-decor svg {
  flex: 0 0 auto;
}

.eyebrow.eyebrow-decor {
  gap: 10px;
}

.eyebrow.eyebrow-decor::after {
  content: none;
}

.eyebrow.dark {
  margin-bottom: 8px;
  color: var(--Black, #2E2E2E);
  font-family: "Inter Tight";
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2,
.about-section h2,
.testimonial-section h2,
.footer-newsletter h2 {
  color: var(--ink);
  font-size: 50px;
  font-weight: 600;
  line-height: 1.16;
  margin: 0;
  text-transform: capitalize;
}

.section-heading h2 span,
.testimonial-section h2 span,
.footer-newsletter h2 span {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.btn {
  align-items: center;
  border: 0;
  border-radius: 30px;
  display: inline-flex;
  font-size: 17px;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 1.7px;
  min-height: 60px;
  padding: 16px 34px;
  text-transform: uppercase;
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary-yellow,
.btn-signup {
  background: var(--yellow);
  color: #fff;
}

.btn-primary-yellow:hover,
.btn-signup:hover {
  background: var(--purple);
  color: var(--white);
}

/* Hero */
.hero-section {
  border-radius: var(--radius-xl);
  min-height: 900px;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .46) 36%, rgba(0, 0, 0, .1) 72%),
    linear-gradient(0deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, 0) 24%),
    url("../images/hero-car.png");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.main-header {
  left: 0;
  margin: 0 auto;
  max-width: 1720px;
  position: absolute;
  right: 0;
  top: 60px;
  width: min(1720px, calc(100% - 140px));
  z-index: 10;
}

.navbar {
  align-items: center;
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, .5);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 100px;
  display: grid;
  grid-template-columns: minmax(220px, 318px) minmax(0, 1fr) auto;
  min-height: 86px;
  padding: 14px 24px;
  width: 100%;
}

.navbar-brand {
  align-items: center;
  display: inline-flex;
  margin: 0;
  min-width: 0;
}

.brand-logo {
  height: 50px;
  object-fit: contain;
  width: min(318px, 100%);
}

.nav-panel {
  align-items: center;
  display: contents;
}

.navbar-nav {
  align-items: center;
  display: flex;
  gap: clamp(24px, 2.3vw, 44px);
  justify-content: center;
  list-style: none;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.nav-link {
  color: var(--ink);
  font-size: clamp(14px, .9vw, 17px);
  font-weight: 500;
  letter-spacing: clamp(1px, .09vw, 1.7px);
  line-height: 1;
  padding: 0 !important;
  text-transform: uppercase;
  transition: color .25s ease;
  white-space: nowrap;
}

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

.header-actions {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  min-width: 0;
}

.btn-login {
  background: var(--purple);
  color: var(--white);
  min-width: 125px;
}

.btn-login:hover {
  background: var(--yellow);
  color: var(--white);
}

.btn-signup {
  min-width: 125px;
}

.navbar-toggler {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  justify-self: end;
  padding: 0;
  position: relative;
  width: 44px;
}

.navbar-toggler span {
  background: var(--ink);
  display: block;
  height: 2px;
  left: 10px;
  position: absolute;
  transition: transform .25s ease, opacity .25s ease;
  width: 24px;
}

.navbar-toggler span:nth-child(1) {
  top: 14px;
}

.navbar-toggler span:nth-child(2) {
  top: 21px;
}

.navbar-toggler span:nth-child(3) {
  top: 28px;
}

.menu-overlay,
.menu-close,
.mobile-menu-brand,
.mobile-nav-panel {
  display: none;
}

.hero-content {
  left: 197px;
  max-width: 820px;
  padding: 0;
  position: absolute;
  top: 190px;
  z-index: 2;
}

.hero-content h1 {
  color: var(--white);
  font-size: 85px;
  font-weight: 600;
  line-height: .98;
  margin: 0 0 24px;
  text-transform: capitalize;
  overflow-wrap: anywhere;
}

.hero-content h1 span {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 100px;
  font-style: italic;
  font-weight: 400;
  line-height: .98;
}

.hero-content p {
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.58;
  margin: 0 0 46px;
  max-width: 612px;
}

.booking-bar {
  align-items: center;
  /* backdrop-filter: blur(18px); */
  /* background: rgba(0, 0, 0, .36); */
  /* border: 1px solid rgba(255, 255, 255, .08); */
  border-radius: 28px;
  bottom: 55px;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.3fr 1fr 1fr 74px;
  left: 200px;
  padding: 26px 28px;
  position: absolute;
  right: 160px;
  z-index: 3;
}

.booking-field {
  border-bottom: 1px solid rgba(255, 255, 255, .7);
  color: var(--white);
  display: grid;
  gap: 12px;
  min-height: 75px;
  padding-bottom: 13px;
  transition: border-color .25s ease;
}

.booking-field:hover,
.booking-field:focus-within {
  border-color: var(--yellow);
}

.booking-field > span:not(.booking-control) {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.booking-control {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) 18px;
  min-height: 30px;
  min-width: 0;
  position: relative;
}

.booking-field input {
  appearance: none;
  background: transparent;
  border: 0;
  color-scheme: dark;
  color: var(--white);
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1.7px;
  line-height: 1.25;
  min-height: 30px;
  min-width: 0;
  outline: 0;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  text-transform: uppercase;
  width: 100%;
}

.booking-field input[type="text"] {
  cursor: text;
}

.booking-field input::placeholder {
  color: rgba(255, 255, 255, .9);
  opacity: 1;
}

.picker-control input {
  color: transparent;
  grid-column: 1 / 3;
  grid-row: 1;
  padding-right: 28px;
  position: relative;
  z-index: 2;
}

.picker-control.has-value input,
.picker-control:focus-within input {
  color: var(--white);
}

.picker-placeholder {
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  grid-column: 1;
  grid-row: 1;
  letter-spacing: 1.7px;
  min-width: 0;
  overflow: hidden;
  pointer-events: none;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 1;
}

.picker-control.has-value .picker-placeholder,
.picker-control:focus-within .picker-placeholder {
  opacity: 0;
}

.booking-field input[type="date"]::-webkit-calendar-picker-indicator,
.booking-field input[type="time"]::-webkit-calendar-picker-indicator {
  height: 100%;
  inset: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  z-index: 3;
}

.booking-field input::-webkit-date-and-time-value {
  text-align: left;
}

.booking-icon {
  fill: none;
  grid-column: 2;
  grid-row: 1;
  height: 18px;
  justify-self: end;
  pointer-events: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: color .25s ease, transform .25s ease;
  width: 18px;
  z-index: 4;
}

.booking-field:hover .booking-icon,
.booking-field:focus-within .booking-icon {
  color: var(--yellow);
  transform: translateY(1px);
}

.booking-field input[type="date"]::-webkit-calendar-picker-indicator,
.booking-field input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(1);
  opacity: 0;
}

.booking-split {
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
}

.booking-split > span:first-child {
  grid-column: 1 / -1;
}

.search-btn {
  align-items: center;
  background: var(--yellow);
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  height: 74px;
  justify-content: center;
  margin-top: 8px;
  transition: transform .25s ease, background-color .25s ease;
  width: 74px;
}

.search-btn svg {
  fill: none;
  height: 24px;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 24px;
}

.search-btn:hover {
  background: var(--white);
  transform: translateY(-2px);
}

/* Car listings */
.cars-section {
  background: #F7F5FF;
  margin: 0 -30px;
  max-width: none;
  padding-left: 30px;
  padding-right: 30px;
}

.cars-section > * {
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
}

.filter-row {
  align-items: center;
  background: var(--white);
  border-radius: 999px;
  display: flex;
  gap: 5px;
  justify-content: center;
  margin: 0 auto 52px;
  padding: 12px;
  width: max-content;
}

.filter-pill {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  min-height: 37px;
  padding: 20px 24px;
  transition: background-color .25s ease, color .25s ease;
  color: var(--Black, #2E2E2E);
  font-family: "Inter Tight";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.filter-pill svg,
.filter-pill-icon {
  flex: 0 0 auto;
}

.filter-pill-icon {
  height: 18px;
  object-fit: contain;
  transition: filter .25s ease;
  width: 18px;
}

.filter-pill svg path {
  transition: fill .25s ease;
}

.filter-pill.active,
.filter-pill:hover {
  background: var(--purple);
  color: var(--white);
}

.filter-pill.active svg path,
.filter-pill:hover svg path {
  fill: var(--white);
}

.filter-pill.active .filter-pill-icon,
.filter-pill:hover .filter-pill-icon {
  filter: brightness(0) invert(1);
}

.rental-row {
  margin-bottom: 54px;
}

.row-title {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.row-title h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 6px;
}

.cars-section .row-title h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 6px;
}

.row-title p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.slider-arrows {
  display: flex;
  gap: 12px;
}

.slider-arrows button {
  align-items: center;
  background: var(--white);
  border: 1px solid #2E2E2E;
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  font-size: 27px;
  height: 46px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: relative;
  transition: background-color .25s ease, color .25s ease;
  width: 46px;
}

.slider-arrows button svg {
  display: block;
  flex: 0 0 auto;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.slider-arrows button:not(:has(svg)) {
  color: transparent;
  font-size: 0;
}

.slider-arrows button[aria-label*="Previous"]:not(:has(svg))::before,
.slider-arrows button[aria-label*="Next"]:not(:has(svg))::before {
  color: var(--ink);
  font-size: 24px;
  font-weight: 400;
  left: 50%;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.slider-arrows button[aria-label*="Previous"]:not(:has(svg))::before {
  content: "\2190";
}

.slider-arrows button[aria-label*="Next"]:not(:has(svg))::before {
  content: "\2192";
}

.slider-arrows button svg path {
  transition: fill .25s ease;
}

.slider-arrows button:hover {
  background: var(--yellow);
  border-color: #2E2E2E;
}

.cars-slider {
  overflow: hidden;
  width: 100%;
}

.cars-grid {
  --cars-gap: 29px;
  display: flex;
  gap: var(--cars-gap);
  padding-bottom: 24px;
  transition: transform .48s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.cars-grid .car-card {
  flex: 0 0 calc((100% - (var(--cars-gap) * 2)) / 3);
}

.car-card {
  background: var(--white);
  border: 1px solid #DED5FF;
  border-radius: var(--radius-xl);
  box-shadow: none;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 44px rgb(55 26 148 / 10%);
}

.car-card img {
  aspect-ratio: 468 / 270;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.car-body {
  padding: 25px 19px 19px;
}

.car-body h4 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 14px;
  text-transform: capitalize;
}

.car-body p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 25px;
}

.car-specs {
  display: grid;
  gap: 5px;
  grid-template-columns: 179px 1fr 1fr;
  margin-bottom: 22px;
}

.car-specs span {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.car-specs svg {
  display: block;
  flex: 0 0 auto;
  max-width: 100%;
}

.card-line {
  background: #dedbe8;
  height: 1px;
  margin-bottom: 19px;
}

.car-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  justify-content: space-between;
  text-transform: uppercase;
}

.car-meta span {
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 1.2px;
}

.rating-inline {
  align-items: center;
  display: inline-flex;
  gap: 4px;
}

.rating-star {
  display: block;
  flex: 0 0 auto;
}

.car-meta strong {
  color: var(--purple);
  font-size: 18px;
}

/* About */
.about-section {
  background: var(--white);
  margin: 8px -30px 0;
  padding: 92px 0;
}

.about-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 34px;
  justify-content: center;
}

.about-image {
  border-radius: 12px;
  height: 520px;
  object-fit: cover;
  max-width: 96%;
  overflow: hidden;
}

.about-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  width: 100%;
}

.about-eyebrow {
  align-items: center;
  gap: 9px;
  margin-bottom: 11px;
}

.about-section h2 {
  color: var(--Black, #2E2E2E);
  font-size: 43px;
  font-weight: 600;
  line-height: 1.08;
  margin: 15px 0 27px;
  max-width: 620px;
  text-transform: capitalize;
}

.about-section h2 span {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1.06;
  margin-top: 20px;
}

.about-description {
  color: #5f5f5f;
  font-size: 17px;
  line-height: 1.6;
  margin: -8px 0 28px;
  max-width: 590px;
}

.about-btn {
  font-size: 17px;
  letter-spacing: .9px;
  min-height: 48px;
  padding: 16px 35px;
}

/* Testimonial */
.testimonial-section {
  border-radius: var(--radius-xl);
  color: var(--white);
  margin: 0 0 88px;
  min-height: 688px;
  overflow: hidden;
  position: relative;
}

.testimonial-bg {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, .22) 0%, rgba(0, 0, 0, .78) 100%),
    url("../images/testimonial-bg.jpg");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.testimonial-inner {
  inset: 0;
  padding: 94px 200px 76px;
  position: relative;
  z-index: 2;
}

.testimonial-head {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 220px;
}

.testimonial-section h2 {
  color: var(--white);
}

.slider-arrows.light button {
  background: transparent;
  border-color: rgba(255, 255, 255, .42);
  color: var(--white);
  height: 65px;
  width: 65px;
}

.slider-arrows.light button:last-child,
.slider-arrows.light button:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.slider-arrows.light button:hover svg path {
  fill: #2E2E2E;
}

.testimonial-slide {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .48s cubic-bezier(.22, .61, .36, 1), transform .48s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}

.testimonial-slide.is-changing {
  opacity: 0;
}

.testimonial-quote-icon {
  display: block;
  height: auto;
  margin-bottom: 24px;
  width: 48px;
}

.testimonial-section blockquote {
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 52px;
  max-width: 1287px;
}

.client {
  align-items: center;
  display: flex;
  gap: 22px;
}

.client img {
  border-radius: 50%;
  height: 115px;
  object-fit: cover;
  width: 115px;
}

.client strong {
  display: block;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
}

.client span {
  display: block;
  font-size: 17px;
}

/* Blog */
.blog-section {
  padding-top: 0;
}

.blog-head {
  gap: 24px;
  margin-bottom: 42px;
}

.blog-head .section-heading {
  margin-bottom: 0;
}

.blog-arrows {
  flex: 0 0 auto;
  margin-bottom: 10px;
}

.blog-slider {
  overflow: hidden;
  width: 100%;
}

.blog-track {
  --blog-gap: 30px;
  display: flex;
  gap: var(--blog-gap);
  padding-bottom: 24px;
  transition: transform .48s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.blog-card {
  background: var(--white);
  border: 1px solid #DED5FF;
  border-radius: 30px;
  color: inherit;
  flex: 0 0 calc((100% - (var(--blog-gap) * 2)) / 3);
  overflow: hidden;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
  box-shadow: 0 6px 44px rgb(55 26 148 / 10%);
  transform: translateY(-6px);
}

.blog-card img {
  height: 288px;
  object-fit: cover;
  width: 100%;
}

.blog-body {
  padding: 23px 24px 27px;
}

.blog-body time {
  color: var(--purple);
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.3px;
  line-height: 1.2;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.blog-body h3 {
  color: var(--ink);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.22;
  margin: 0 0 14px;
}

.blog-body p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 23px;
}

.blog-read-more,
.blog-body a {
  color: var(--purple);
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color .25s ease, transform .25s ease;
}

.blog-card:hover .blog-read-more,
.blog-body a:hover {
  color: var(--ink);
  transform: translateX(4px);
}

/* Blog listing page */
.blog-page-shell {
  padding-bottom: 0;
}

.blog-page-shell .nav-link.active,
.blog-page-shell .nav-link:hover {
  color: var(--yellow);
}

.blog-hero-section {
  border-radius: var(--radius-xl);
  height: 520px;
  overflow: hidden;
  position: relative;
}

.blog-hero-img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.blog-hero-section::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .08) 45%, rgba(0, 0, 0, .12) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.blog-hero-title {
  align-items: flex-end;
  display: flex;
  height: 100%;
  margin: 0 auto;
  max-width: 1460px;
  padding: 0 0 86px;
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 1;
}

.blog-hero-title h1 {
  color: var(--white);
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.blog-hero-title strong {
  font-weight: 700;
}

.blog-hero-title span {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}

.blog-listing-section {
  padding: 98px 0 80px;
}

.blog-listing-container {
  margin: 0 auto;
  max-width: 1450px;
}

.blog-listing-grid {
  display: grid;
  gap: 34px 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-listing-card {
  background: var(--white);
  border: 1px solid #E4E1EA;
  border-radius: 24px;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow .25s ease, transform .25s ease;
}

.blog-listing-card article {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.blog-listing-card:hover {
  box-shadow: 0 14px 46px rgba(16, 32, 57, .1);
  transform: translateY(-6px);
}

.blog-listing-card img {
  aspect-ratio: 464 / 318;
  display: block;
  object-fit: cover;
  width: 100%;
}

.blog-listing-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 28px 32px;
}

.blog-listing-body time {
  align-items: center;
  color: #2e2e2e;
  display: inline-flex;
  font-size: 15px;
  font-weight: 500;
  gap: 8px;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.blog-listing-body time svg {
  fill: currentColor;
  height: 16px;
  width: 16px;
}

.blog-listing-body h2 {
  color: #2e2e2e;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 20px;
}

.blog-listing-body p {
  color: #565656;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 28px;
}

.blog-listing-read-more,
.blog-listing-body a {
  align-items: center;
  color: var(--purple);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 1.35px;
  line-height: 1.2;
  margin-top: auto;
  text-transform: uppercase;
  transition: color .25s ease, transform .25s ease;
  width: fit-content;
}

.blog-listing-read-more svg,
.blog-listing-body a svg {
  flex: 0 0 auto;
}

.blog-listing-card:hover .blog-listing-read-more,
.blog-listing-body a:hover {
  color: var(--yellow);
  transform: translateX(4px);
}

.blog-pagination {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 52px;
}

.blog-pagination a {
  align-items: center;
  border-radius: 50%;
  color: var(--purple);
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  height: 42px;
  justify-content: center;
  line-height: 1;
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
  width: 42px;
}

.blog-pagination a:first-child,
.blog-pagination a:last-child {
  background: transparent;
  font-size: 26px;
  height: auto;
  width: auto;
}

.blog-pagination a.active,
.blog-pagination a:hover {
  background: #3A27B0;
  color: var(--white);
}

.blog-pagination a:first-child:hover,
.blog-pagination a:last-child:hover {
  background: transparent;
  color: var(--yellow);
  transform: translateX(2px);
}

/* Blog detail page */
.blog-detail-hero .inner-hero-bg {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .18) 100%), url("../images/image 28732.png");
}

.blog-detail-section {
  padding: 96px 0;
}

.blog-detail-head {
  display: grid;
  gap: 22px;
  margin: 0 auto 42px;
  max-width: 1020px;
  text-align: center;
}

.blog-detail-meta {
  align-items: center;
  color: #777386;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 800;
  gap: 12px;
  justify-content: center;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.blog-detail-meta em {
  font-style: normal;
}

.blog-detail-head h2 {
  color: var(--ink);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
}

.blog-detail-head p {
  color: #565656;
  font-size: 18px;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 760px;
}

.blog-detail-featured {
  border-radius: 30px;
  margin-bottom: 46px;
  overflow: hidden;
}

.blog-detail-featured img {
  aspect-ratio: 1460 / 620;
  display: block;
  object-fit: cover;
  width: 100%;
}

.blog-detail-grid {
  margin: 0 auto;
  max-width: 1180px;
}

.blog-detail-content {
  color: #2e2e2e;
  font-size: 18px;
  line-height: 1.8;
}

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

.blog-detail-content p,
.blog-detail-content ul,
.blog-detail-content ol {
  margin-bottom: 26px;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
  color: #102039;
  font-weight: 700;
  line-height: 1.18;
  margin: 42px 0 18px;
}

.blog-detail-content img {
  border-radius: 22px;
  height: auto;
  max-width: 100%;
}

.blog-detail-nav {
  border-top: 1px solid #e8e4ef;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 58px auto 0;
  max-width: 1180px;
  padding-top: 28px;
}

.blog-detail-nav a {
  background: #fbfcff;
  border: 1px solid #e8e4ef;
  border-radius: 18px;
  color: #102039;
  display: grid;
  gap: 8px;
  padding: 22px;
  text-decoration: none;
  transition: border-color .25s ease, transform .25s ease;
}

.blog-detail-nav a:hover {
  border-color: #f37332;
  transform: translateY(-3px);
}

.blog-detail-nav span {
  color: #f37332;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-detail-nav strong {
  font-size: 18px;
  line-height: 1.25;
}

/* Contact page */
.contact-page-shell {
  padding-bottom: 0;
}

.contact-page-shell .nav-link.active,
.contact-page-shell .nav-link:hover {
  color: var(--yellow);
}

.contact-hero-section {
  border-radius: var(--radius-xl);
  height: 520px;
  overflow: hidden;
  position: relative;
}

.contact-hero-img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.contact-hero-section::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .12) 46%, rgba(0, 0, 0, .08) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.contact-hero-title {
  align-items: flex-end;
  display: flex;
  height: 100%;
  inset: 0;
  margin: 0 auto;
  max-width: 1460px;
  padding: 0 0 86px;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.contact-hero-title h1 {
  color: var(--white);
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.contact-hero-title strong {
  font-weight: 700;
}

.contact-hero-title span,
.contact-section-heading h2 span,
.contact-form-card h2 span {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}

.contact-info-section {
  padding: 96px 0 100px;
}

.contact-page-container,
.contact-form-container {
  margin: 0 auto;
  max-width: 1450px;
}

.contact-section-heading {
  margin: 0 auto 40px;
  text-align: center;
}

.contact-eyebrow {
  align-items: center;
  color: #2E2E2E;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  gap: 13px;
  letter-spacing: 1.8px;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.contact-eyebrow span {
  background: currentColor;
  height: 1px;
  position: relative;
  width: 28px;
}

.contact-eyebrow span::after {
  background: currentColor;
  border-radius: 50%;
  content: "";
  height: 5px;
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
}

.contact-eyebrow span:first-child::after {
  left: -2px;
  right: auto;
}

.contact-section-heading h2 {
  color: #2E2E2E;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
}

.contact-info-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-info-card {
  align-items: center;
  background: var(--white);
  border: 1px solid #E4E1EA;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 205px;
  padding: 34px 24px 30px;
  text-align: center;
  transition: box-shadow .25s ease, transform .25s ease;
}

.contact-info-card:hover {
  box-shadow: 0 16px 44px rgba(16, 32, 57, .08);
  transform: translateY(-4px);
}

.contact-info-card img {
  height: 72px;
  margin-bottom: 18px;
  object-fit: contain;
  width: 82px;
}

.contact-info-card h3 {
  color: #2E2E2E;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 14px;
}

.contact-info-card p,
.contact-info-card a {
  color: #565656;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.contact-form-section {
  background: linear-gradient(180deg, #F7F5FF 27.74%, rgba(247, 245, 255, 0) 96.65%);
  border-radius: 24px;
  margin-bottom: 0;
  padding: 96px 0;
}

.contact-form-layout {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.contact-form-media img {
  aspect-ratio: 715 / 626;
  border-radius: 24px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.contact-form-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(16, 32, 57, .11);
  padding: 42px 44px 38px;
}

.contact-form-card h2 {
  color: #2E2E2E;
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 30px;
}

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

.contact-form label {
  display: block;
  margin: 0;
}

.contact-form input,
.contact-form textarea {
  background: var(--white);
  border: 1px solid #E4E1EA;
  border-radius: 999px;
  color: #2E2E2E;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  min-height: 56px;
  outline: 0;
  padding: 0 24px;
  transition: border-color .25s ease, box-shadow .25s ease;
  width: 100%;
}

.contact-form textarea {
  border-radius: 20px;
  min-height: 136px;
  padding: 22px 24px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #565656;
  opacity: .85;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(55, 26, 148, .42);
  box-shadow: 0 0 0 4px rgba(55, 26, 148, .08);
}

.contact-form button {
  align-items: center;
  background: var(--purple);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 15px;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 1.2px;
  line-height: 1.2;
  min-height: 60px;
  padding: 18px 30px;
  text-transform: uppercase;
  transition: background-color .25s ease, transform .25s ease;
  width: 100%;
}

.contact-form button:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

.contact-form-card .gform_wrapper.gravity-theme {
  margin: 0;
}

.contact-form-card .gform_wrapper.gravity-theme .gform_required_legend,
.footer-form-shortcode .gform_wrapper.gravity-theme .gform_required_legend {
  display: none;
}

.contact-form-card .gform_wrapper.gravity-theme form,
.contact-form-card .gform_wrapper.gravity-theme .gform_fields {
  display: grid;
  gap: 23px;
}

.contact-form-card .gform_wrapper.gravity-theme .gfield {
  margin: 0;
}

.contact-form-card .gform_wrapper.gravity-theme .gfield_label {
  display: none;
}

.contact-form-card .gform_wrapper.gravity-theme input[type="text"],
.contact-form-card .gform_wrapper.gravity-theme input[type="tel"],
.contact-form-card .gform_wrapper.gravity-theme input[type="email"],
.contact-form-card .gform_wrapper.gravity-theme textarea {
  background: var(--white);
  border: 1px solid #E4E1EA;
  border-radius: 999px;
  color: #2E2E2E;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  min-height: 56px;
  outline: 0;
  padding: 0 24px;
  transition: border-color .25s ease, box-shadow .25s ease;
  width: 100%;
}

.contact-form-card .gform_wrapper.gravity-theme textarea {
  border-radius: 20px;
  min-height: 136px;
  padding: 22px 24px;
  resize: vertical;
}

.contact-form-card .gform_wrapper.gravity-theme input::placeholder,
.contact-form-card .gform_wrapper.gravity-theme textarea::placeholder {
  color: #565656;
  opacity: .85;
}

.contact-form-card .gform_wrapper.gravity-theme input:focus,
.contact-form-card .gform_wrapper.gravity-theme textarea:focus {
  border-color: rgba(55, 26, 148, .42);
  box-shadow: 0 0 0 4px rgba(55, 26, 148, .08);
}

.contact-form-card .gform_wrapper.gravity-theme .gform_footer {
  margin: 0;
  padding: 0;
  position: relative;
}

.contact-form-card .gform_wrapper.gravity-theme .gform_button {
  align-items: center;
  background: var(--purple);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 15px;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 1.2px;
  line-height: 1.2;
  min-height: 60px;
  padding: 18px 30px;
  text-transform: uppercase;
  transition: background-color .25s ease, transform .25s ease;
  width: 100%;
}

.contact-form-card .gform_wrapper.gravity-theme .gform_button:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

.contact-form-card .gform_wrapper.gravity-theme .gfield_error input[type="text"],
.contact-form-card .gform_wrapper.gravity-theme .gfield_error input[type="tel"],
.contact-form-card .gform_wrapper.gravity-theme .gfield_error input[type="email"],
.contact-form-card .gform_wrapper.gravity-theme .gfield_error textarea {
  border-color: #d63638;
  box-shadow: 0 0 0 4px rgba(214, 54, 56, .08);
}

.contact-form-card .gform_wrapper.gravity-theme .gfield_validation_message,
.contact-form-card .gform_wrapper.gravity-theme .validation_message {
  background: transparent;
  border: 0;
  color: #d63638;
  font-size: 13px;
  margin: 7px 0 0;
  padding: 0;
}

.contact-form-card .gform_wrapper.gravity-theme .gform_validation_errors {
  display: none;
}

.contact-form-card .gform_wrapper.gravity-theme .gform_ajax_spinner,
.contact-form-card .gform_wrapper.gravity-theme .gform-loader {
  animation: mdw-gf-spin .75s linear infinite;
  border: 2px solid rgba(16, 32, 57, .18);
  border-radius: 50%;
  border-top-color: var(--purple);
  height: 22px !important;
  margin: -11px 0 0 !important;
  object-fit: contain;
  position: absolute;
  right: 24px;
  top: 50%;
  width: 22px !important;
}

.contact-form-card .gform_confirmation_message {
  background: rgba(55, 26, 148, .08);
  border: 1px solid rgba(55, 26, 148, .16);
  border-radius: 18px;
  color: #2E2E2E;
  font-size: 15px;
  line-height: 1.5;
  padding: 18px 20px;
}

@keyframes mdw-gf-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Registration page */
.registration-page-shell {
  background: #F7F5FF;
  padding-bottom: 0;
}

.registration-page-shell .nav-link.active,
.registration-page-shell .nav-link:hover {
  color: var(--yellow);
}

.registration-hero-section {
  border-radius: var(--radius-xl);
  height: 520px;
  overflow: hidden;
  position: relative;
}

.registration-hero-img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.registration-section {
  background: #F7F5FF;
  padding: 96px 0 118px;
}

.registration-container {
  margin: 0 auto;
  max-width: 1440px;
}

.registration-heading {
  margin: 0 auto 42px;
  text-align: center;
}

.registration-eyebrow {
  align-items: center;
  color: #2E2E2E;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  gap: 13px;
  letter-spacing: 1.8px;
  line-height: 1.2;
  margin-bottom: 17px;
  text-transform: uppercase;
}

.registration-eyebrow span {
  background: currentColor;
  height: 1px;
  position: relative;
  width: 28px;
}

.registration-eyebrow span::after {
  background: currentColor;
  border-radius: 50%;
  content: "";
  height: 5px;
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
}

.registration-eyebrow span:first-child::after {
  left: -2px;
  right: auto;
}

.registration-heading h1 {
  color: #2E2E2E;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
}

.registration-heading h1 span {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}

.registration-card {
  background: var(--white);
  border-radius: 8px 8px 24px 24px;
  box-shadow: 0 18px 60px rgba(16, 32, 57, .06);
  margin: 0 auto;
  max-width: 1440px;
  padding: 36px 38px 68px;
}

.registration-card h2 {
  color: #2E2E2E;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.registration-divider {
  background: #EFEAF8;
  height: 1px;
  margin: 30px 0 34px;
  width: 100%;
}

.registration-grid {
  display: grid;
  gap: 26px 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.registration-field {
  color: #2E2E2E;
  display: grid;
  gap: 14px;
  margin: 0;
  min-width: 0;
}

.registration-field > span:first-child {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.registration-field strong {
  color: #E02020;
  font-weight: 600;
}

.registration-field input,
.registration-field select {
  appearance: none;
  background: var(--white);
  border: 1px solid #E8E4EF;
  border-radius: 18px;
  color: #2E2E2E;
  font-size: 14px;
  font-weight: 400;
  min-height: 65px;
  outline: 0;
  padding: 0 35px;
  transition: border-color .25s ease, box-shadow .25s ease;
  width: 100%;
}

.registration-field input::placeholder,
.registration-field select:invalid {
  color: #B8B8B8;
  opacity: 1;
}

.registration-field input:focus,
.registration-field select:focus {
  border-color: rgba(55, 26, 148, .35);
  box-shadow: 0 0 0 4px rgba(55, 26, 148, .07);
}

.registration-field select,
.contact-form-card .gform_wrapper.gravity-theme select,
.footer-form-shortcode .gform_wrapper.gravity-theme select,
form select:not([multiple]) {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%23777386' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: calc(100% - 28px) 50%;
  background-repeat: no-repeat;
  background-size: 14px 9px;
  padding-right: 58px;
}

.registration-select,
.registration-date {
  position: relative;
}

.registration-select::after {
  content: none;
}

.registration-date::after {
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='20' viewBox='0 0 19 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 1.75V4.75M13.5 1.75V4.75M2.25 7.5H16.75M4 3.25H15C16.1046 3.25 17 4.14543 17 5.25V16C17 17.1046 16.1046 18 15 18H4C2.89543 18 2 17.1046 2 16V5.25C2 4.14543 2.89543 3.25 4 3.25Z' stroke='%23777386' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 19px 20px;
  bottom: 22px;
  content: "";
  height: 24px;
  pointer-events: none;
  position: absolute;
  right: 31px;
  width: 24px;
}

.registration-date input[type="date"] {
  appearance: none;
  background-image: none;
  padding-right: 58px;
}

.registration-date input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  height: 100%;
  opacity: 0;
  position: absolute;
  right: 0;
  width: 58px;
}

.registration-date .mowvr-dob-picker {
  cursor: pointer;
  padding-right: 58px;
}

.registration-date-icon {
  bottom: 24px;
  pointer-events: none;
  position: absolute;
  right: 31px;
}

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

.registration-upload input {
  height: 1px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.upload-box {
  align-items: center;
  background: var(--white);
  border: 1px solid #E8E4EF;
  border-radius: 18px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 205px;
  padding: 30px 20px;
  text-align: center;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.upload-box.has-preview {
  padding: 16px;
}

.upload-box.has-preview > em {
  display: none;
}

.mowvr-upload-preview {
  align-items: center;
  display: grid;
  gap: 10px;
  justify-items: center;
  max-width: 100%;
  position: relative;
  width: 100%;
}

.mowvr-upload-preview img {
  border-radius: 12px;
  display: block;
  height: 118px;
  max-width: 100%;
  object-fit: cover;
  width: 180px;
}

.mowvr-upload-preview strong {
  align-items: center;
  background: #f6f3ff;
  border: 1px solid #E8E4EF;
  border-radius: 12px;
  color: #102039;
  display: inline-flex;
  font-size: 18px;
  font-weight: 800;
  height: 72px;
  justify-content: center;
  width: 96px;
}

.mowvr-upload-preview em {
  color: #2E2E2E;
  font-size: 13px;
  font-style: normal;
  line-height: 1.3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mowvr-upload-remove {
  align-items: center;
  background: #102039;
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  height: 28px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 8px;
  top: 8px;
  width: 28px;
}

.registration-upload:not(.registration-full) .upload-box {
  min-height: 198px;
}

.upload-box svg {
  margin-bottom: 15px;
}

.upload-box em {
  color: #2E2E2E;
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

.upload-box small {
  color: #B8B8B8;
  font-size: inherit;
}

.registration-upload:hover .upload-box {
  border-color: rgba(55, 26, 148, .28);
  box-shadow: 0 10px 30px rgba(16, 32, 57, .05);
}

.registration-terms {
  align-items: center;
  color: #565656;
  display: flex;
  font-size: 14px;
  gap: 13px;
  line-height: 1.4;
  margin: 30px 0 44px;
}

.registration-terms input {
  appearance: none;
  border: 1px solid #DCD7E9;
  border-radius: 5px;
  flex: 0 0 24px;
  height: 24px;
  margin: 0;
  width: 24px;
}

.registration-terms input:checked {
  background: var(--purple);
  box-shadow: inset 0 0 0 5px var(--white);
}

.registration-submit {
  align-items: center;
  background: var(--purple);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  display: flex;
  font-size: 15px;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 1.2px;
  line-height: 1.2;
  margin: 0 auto;
  min-height: 61px;
  min-width: 407px;
  padding: 18px 34px;
  text-transform: uppercase;
  transition: background-color .25s ease, transform .25s ease;
}

.registration-submit:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

/* About page */
.about-page-shell {
  padding-bottom: 0;
}

.inner-hero {
  border-radius: var(--radius-xl);
  height: 520px;
  overflow: hidden;
  position: relative;
}

.inner-hero-bg {
  background-image: url("../images/image 28732.png");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.listing-page-hero .inner-hero-bg {
  background-image: url("../images/image 28740.png");
}

.inner-hero-content {
  align-items: flex-end;
  display: flex;
  height: 100%;
  margin: 0 auto;
  max-width: 1460px;
  padding: 0 0 86px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.inner-hero h1 {
  color: var(--white);
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.inner-hero h1 span {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.about-detail-section {
  background: var(--white);
}

.about-detail-row {
  --bs-gutter-x: 66px;
}

.about-detail-image {
  border-radius: 30px;
  height: 550px;
  object-fit: cover;
  width: 100%;
}

.about-detail-image-right {
  border-radius: 30px;
  margin-left: auto;
  max-width: 100%;
}

.about-copy {
  max-width: 640px;
}

.about-copy-right {
  margin-left: 8px;
}

.about-copy-left {
  max-width: 690px;
}

.eyebrow-line {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  margin-bottom: 12px;
}

.eyebrow-line::after {
  background: currentColor;
  content: "";
  height: 1px;
  width: 33px;
}

.eyebrow-line.eyebrow-line-svg::after {
  content: none;
}

.eyebrow-line.eyebrow-line-svg svg {
  flex: 0 0 auto;
}

.about-copy h2 {
  color: var(--ink);
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
  margin: 0 0 20px;
  text-transform: capitalize;
}

.about-copy h2 span {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.about-copy p {
  color: #565656;
  font-family: "Inter Tight", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  margin: 0 0 13px;
}

.purpose-section {
  padding: 0;
}

.purpose-panel {
  background: var(--soft);
  border-radius: 18px;
  padding: 82px 90px 88px;
}

.content-container.purpose-panel {
  max-width: 100%;
}

.purpose-panel .section-heading {
  margin-bottom: 34px;
}

.purpose-panel .section-heading h2 {
  font-size: 50px;
  line-height: 60px;
}

.purpose-cards {
  margin: 0 auto;
  max-width: 1460px;
}

.purpose-card {
  align-items: center;
  background: transparent;
  border: 1px solid #ded5ff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  min-height: 235px;
  padding: 34px 28px 30px;
  text-align: center;
  transition: box-shadow .25s ease, transform .25s ease;
}

.purpose-card:hover {
  box-shadow: 0 6px 44px rgb(55 26 148 / 10%);
  transform: translateY(-5px);
}

.purpose-card img {
  height: 72px;
  margin-bottom: 18px;
  object-fit: contain;
  width: 88px;
}

.purpose-card h3 {
  color: var(--ink);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 12px;
}

.purpose-card p {
  color: #565656;
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  max-width: 100%;
}

.about-detail-bottom {
  padding-top: 88px;
}

/* Car listing page */
.listing-page-section {
  background: var(--white);
  padding-bottom: 104px;
}

.listing-page-container {
  align-items: flex-start;
  display: grid;
  gap: 34px;
  grid-template-columns: 318px minmax(0, 1fr);
}

.listing-sidebar {
  background: var(--white);
  border: 1px solid rgba(16, 32, 57, .08);
  border-radius: 24px;
  box-shadow: 0 12px 46px rgba(16, 32, 57, .08);
  padding: 26px 20px;
  position: sticky;
  top: 130px;
}

.listing-sidebar h2 {
  color: var(--ink);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 22px;
}

.listing-category-list {
  display: grid;
  gap: 12px;
}

.listing-category {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  min-height: 58px;
  padding: 14px 18px;
  text-align: left;
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 1.2;
}

.listing-category:hover,
.listing-category.active {
  background: #102039;
  color: var(--white);
}

.listing-category-icon {
  align-items: center;
  display: inline-flex;
  flex: 0 0 24px;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.listing-category-icon svg {
  display: block;
  fill: currentColor;
  height: 22px;
  width: 22px;
}

.listing-category-icon svg path {
  fill: currentColor;
  transition: fill .25s ease;
}

.listing-category-icon .filter-pill-icon {
  transition: filter .25s ease;
}

.listing-category:hover .listing-category-icon .filter-pill-icon,
.listing-category.active .listing-category-icon .filter-pill-icon {
  filter: brightness(0) invert(1);
}

.listing-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.listing-car-card {
  background: var(--white);
  border: 1px solid #ded5ff;
  border-radius: 30px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.listing-car-card:hover {
  border-color: #fff;
  box-shadow: 0 10px 42px rgba(16, 32, 57, .12);
  transform: translateY(-5px);
}

.listing-car-card img {
  aspect-ratio: 468 / 270;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.listing-car-body {
  padding: 25px 0;
}

.listing-car-body h3 {
  color: var(--ink);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 14px;
  padding: 0 20px;
}

.listing-car-body p {
  color: #565656;
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 24px;
  padding: 0 20px;
}

.listing-car-specs {
  border-bottom: 1px solid #EBE5FF;
  border-top: 1px solid #EBE5FF;
  display: grid;
  gap: 9px;
  grid-template-columns: 1.45fr .85fr .8fr;
  margin-bottom: 21px;
  padding: 20px 20px;
}

.listing-car-specs span {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 500;
  gap: 8px;
  letter-spacing: .7px;
  line-height: 1.2;
}

.listing-car-specs span::before {
  background: var(--ink);
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  height: 14px;
  mask: url("data:image/svg+xml,%3Csvg width='17' height='11' viewBox='0 0 17 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.7167 4.4C16.6104 4.22813 15.5617 3.78847 15.5617 3.78847C15.7441 3.69703 15.8688 3.67813 15.8688 3.3C15.8688 2.8875 15.8667 2.75 15.5833 2.75H14.6221C14.6182 2.74175 14.614 2.73316 14.6101 2.72456C13.9896 1.40937 13.9064 1.07697 12.9809 0.629406C11.7396 0.0302499 9.41233 0 8.5 0C7.58767 0 5.26044 0.0302499 4.02015 0.629406C3.09365 1.07628 3.11667 1.30625 2.39098 2.72456C2.39098 2.72834 2.38354 2.73831 2.37681 2.75H1.41454C1.13333 2.75 1.13121 2.8875 1.13121 3.3C1.13121 3.67813 1.25587 3.69703 1.43827 3.78847C1.43827 3.78847 0.425 4.2625 0.283333 4.4C0.141667 4.5375 0 5.5 0 7.15C0 8.8 0.141667 10.45 0.141667 10.45H0.564542C0.564542 10.9313 0.6375 11 0.85 11H3.68333C3.89583 11 3.96667 10.9313 3.96667 10.45H13.0333C13.0333 10.9313 13.1042 11 13.3167 11H16.2208C16.3625 11 16.4333 10.8969 16.4333 10.45H16.8583C16.8583 10.45 17 8.76562 17 7.15C17 5.53437 16.8229 4.57188 16.7167 4.4ZM3.86962 5.94481C3.22459 6.01326 2.57625 6.04838 1.92737 6.05C1.20417 6.05 1.17937 6.09503 1.12837 5.65675C1.10919 5.45615 1.11526 5.25402 1.14644 5.05484L1.16875 4.95H1.275C1.7 4.95 2.09915 4.96753 2.85281 5.18306C3.23614 5.2947 3.59668 5.46984 3.9185 5.70075C4.07292 5.80938 4.10833 5.9125 4.10833 5.9125L3.86962 5.94481ZM12.6232 8.41981L12.4667 8.8H4.53333C4.53333 8.8 4.54715 8.77903 4.35625 8.41569C4.21458 8.14687 4.39167 7.975 4.67181 7.87737C5.2144 7.68762 6.8 7.15 8.5 7.15C10.2 7.15 11.8171 7.61337 12.3427 7.87737C12.5375 7.975 12.7794 8.04375 12.6232 8.42188V8.41981ZM3.52112 3.72659C3.40673 3.73299 3.29209 3.73381 3.17758 3.729C3.27002 3.5695 3.32137 3.39178 3.41169 3.20616C3.69502 2.62178 4.01908 1.96041 4.59602 1.68163C5.42973 1.27875 7.15771 1.09725 8.5 1.09725C9.84229 1.09725 11.5703 1.27737 12.404 1.68163C12.9809 1.96041 13.3036 2.62213 13.5883 3.20616C13.6793 3.3935 13.73 3.57259 13.8249 3.73313C13.7541 3.73691 13.6726 3.73313 13.4782 3.72659H3.52112ZM15.8362 5.65538C15.7604 6.08438 15.8312 6.05 15.0726 6.05C14.4237 6.04837 13.7754 6.01326 13.1304 5.94481C13.0294 5.92728 13.0007 5.76194 13.0815 5.70075C13.4017 5.46728 13.7627 5.2919 14.1472 5.18306C14.9009 4.96753 15.3251 4.93866 15.7441 4.95309C15.7723 4.95413 15.799 4.96524 15.8192 4.98428C15.8394 5.00332 15.8517 5.02895 15.8536 5.05622C15.8736 5.25632 15.8678 5.45806 15.8362 5.65675V5.65538Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
  width: 17px;
}

.listing-car-specs span:nth-child(2)::before {
  background: var(--ink);
  border: 0;
  border-radius: 0;
  height: 13px;
  mask: url("data:image/svg+xml,%3Csvg width='11' height='13' viewBox='0 0 11 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.75003 10.6364H0.886366C0.39676 10.6364 0 11.0333 0 11.5228C0 12.3387 0.661312 13 1.47724 13H9.15904C9.97497 13 10.6364 12.3387 10.6364 11.5228C10.6364 11.0333 10.2395 10.6364 9.75003 10.6364ZM2.80452 5.29828C2.81338 4.65279 3.34022 4.1347 3.98571 4.13634H6.65065C7.3031 4.13709 7.83177 4.66575 7.83251 5.3182L8.14036 10.0455H9.43927L9.15904 4.72732C9.15796 3.74866 8.36497 2.95567 7.38631 2.95459H7.09093V2.36361H7.6818C8.00801 2.36327 8.27234 2.09894 8.27268 1.77273V1.18186C8.27193 0.52941 7.74327 0.00077557 7.09093 0H3.54546C2.89302 0.000747871 2.36438 0.52941 2.36361 1.18186V1.77273C2.36394 2.09894 2.62827 2.36327 2.95448 2.36361H3.54546V2.95459H3.24997C2.27671 2.95362 1.48513 3.73847 1.47779 4.71173L1.19712 10.0455H2.48166L2.80452 5.29828ZM4.13634 2.36361H6.49994V2.95459H4.13634V2.36361Z' fill='black'/%3E%3Cpath d='M6.65036 4.72729H3.98544C3.6592 4.72763 3.3949 4.99196 3.39454 5.31817L3.07373 10.0455H7.54788L7.24178 5.33723C7.24357 5.25819 7.22964 5.17959 7.20078 5.10599C7.17192 5.03239 7.12872 4.96527 7.07369 4.90851C7.01866 4.85176 6.95289 4.80651 6.88022 4.7754C6.80754 4.74429 6.72941 4.72794 6.65036 4.72729Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
  width: 11px;
}

.listing-car-specs span:nth-child(3)::before {
  background: var(--ink);
  border: 0;
  border-radius: 0;
  height: 14px;
  mask: url("data:image/svg+xml,%3Csvg width='11' height='14' viewBox='0 0 11 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.2757 1.8094L9.24056 0.659281C9.13946 0.546957 8.9757 0.546957 8.87463 0.659281C8.77353 0.771605 8.77353 0.953556 8.87463 1.06585L9.72681 2.01267L8.87463 2.95949C8.8261 3.0134 8.79881 3.08639 8.79881 3.16279V4.02537C8.79881 4.65969 9.26308 5.17548 9.83397 5.17548V10.0634C9.83397 10.2221 9.71798 10.351 9.57517 10.351C9.4324 10.351 9.31638 10.2221 9.31638 10.0634V9.48839C9.31638 9.01273 8.96813 8.62581 8.54001 8.62581H8.28124V1.15012C8.28124 0.515796 7.817 0 7.24608 0H2.07032C1.49943 0 1.03516 0.515796 1.03516 1.15012V11.5011C0.464266 11.5011 5.58024e-08 12.0169 5.58024e-08 12.6512V13.5138C-2.22727e-05 13.5515 0.00665641 13.589 0.0196542 13.6238C0.0326521 13.6587 0.051714 13.6905 0.0757499 13.7172C0.0997858 13.7439 0.128324 13.765 0.159733 13.7795C0.191142 13.7939 0.224804 13.8013 0.258796 13.8013H9.05761C9.0916 13.8013 9.12526 13.7939 9.15667 13.7795C9.18808 13.765 9.21662 13.7439 9.24065 13.7172C9.26469 13.6905 9.28375 13.6587 9.29675 13.6238C9.30975 13.589 9.31642 13.5515 9.3164 13.5138V12.6512C9.3164 12.0169 8.85216 11.5011 8.28124 11.5011V9.20088H8.54004C8.68282 9.20088 8.79883 9.32975 8.79883 9.48841V10.0635C8.79883 10.5391 9.14708 10.926 9.5752 10.926C10.0033 10.926 10.3516 10.5391 10.3516 10.0635V2.0127C10.3516 1.97494 10.3449 1.93755 10.3318 1.90266C10.3188 1.86778 10.2998 1.83609 10.2757 1.8094ZM7.24608 4.89329C7.2461 4.93105 7.23942 4.96845 7.22643 5.00335C7.21343 5.03825 7.19437 5.06995 7.17033 5.09666C7.14629 5.12336 7.11776 5.14454 7.08635 5.15898C7.05494 5.17343 7.02128 5.18085 6.98728 5.18082H2.32909C2.2951 5.18085 2.26144 5.17343 2.23003 5.15898C2.19862 5.14454 2.17008 5.12336 2.14605 5.09666C2.12201 5.06995 2.10295 5.03825 2.08995 5.00335C2.07695 4.96845 2.07028 4.93105 2.0703 4.89329V1.43763C2.07028 1.39986 2.07695 1.36246 2.08995 1.32756C2.10295 1.29266 2.12201 1.26096 2.14605 1.23425C2.17008 1.20755 2.19862 1.18637 2.23003 1.17193C2.26144 1.15749 2.2951 1.15006 2.32909 1.15009H6.98728C7.02128 1.15006 7.05494 1.15749 7.08635 1.17193C7.11776 1.18637 7.14629 1.20755 7.17033 1.23425C7.19437 1.26096 7.21343 1.29266 7.22643 1.32756C7.23942 1.36246 7.2461 1.39986 7.24608 1.43763V4.89329Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
  width: 11px;
}

.listing-car-meta {
  align-items: center;
  border-top: 0;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: space-between;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.listing-car-meta strong {
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
}

.listing-rating {
  align-items: center;
  display: inline-flex;
  gap: 4px;
}

.listing-rating .star {
  color: #f59c01;
  font-size: 19px;
  line-height: 1;
}

.listing-load-more {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.listing-load-more .btn {
  min-width: 178px;
}

/* Car details page */
.details-page-shell {
  padding-bottom: 0;
}

.details-page-top {
  min-height: 782px;
  position: relative;
}

.details-page-shell .main-header {
  left: 0;
  margin: 0 auto;
  max-width: 1720px;
  position: absolute;
  right: 0;
  top: 60px;
  width: min(1720px, calc(100% - 140px));
  z-index: 10;
}

.details-page-shell .navbar {
  align-items: center;
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, .5);
  border: 1px solid #D8D8D8;
  border-radius: 100px;
  display: grid;
  grid-template-columns: minmax(220px, 318px) minmax(0, 1fr) auto;
  min-height: 86px;
  padding: 14px 24px;
  width: 100%;
}

.car-details-wrap {
  padding-top: 130px;
}

.car-gallery {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 24px;
  margin-bottom: 32px;
  margin-left: 0;
  margin-right: 0;
}

.car-details-content > .content-container > .row {
  margin-left: 0;
  margin-right: 0;
}

.gallery-main-img,
.gallery-thumbs img {
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery-main-img {
  aspect-ratio: 1070 / 647;
  object-position: center;
}

.gallery-thumbs {
  display: grid;
  gap: 30px;
  height: 100%;
}

.gallery-thumbs img {
  aspect-ratio: 584 / 278;
}

.car-title-block {
  padding: 0 24px 34px;
}

.car-title-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
  margin-bottom: 24px;
}

.car-title-row h1 {
  color: #222;
  font-size: 43px;
  font-weight: 600;
  letter-spacing: -.2px;
  line-height: 1.08;
  margin: 0;
}

.car-type-badge {
  align-items: center;
  background: #fbf9ff;
  border-radius: 999px;
  color: #2E2E2E;
  display: inline-flex;
  font-size: 18px;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 1.7px;
  line-height: 1;
  min-height: 41px;
  min-width: 207px;
  padding: 12px 28px;
  text-transform: uppercase;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-tags span {
  align-items: center;
  background: var(--white);
  border: 1px solid #f1edf9;
  border-radius: 999px;
  color: #2E2E2E;
  display: inline-flex;
  font-size: 12px;
  font-weight: 500;
  gap: 7px;
  letter-spacing: .7px;
  min-height: 28px;
  padding: 7px 15px;
  text-transform: uppercase;
}

.detail-tags svg {
  display: block;
  fill: currentColor;
  height: 14px;
  width: 14px;
}

.car-details-content {
  padding: 0 0 92px;
}

.details-section {
  border-top: 1px solid #EBE5FF;
  padding: 36px 0 42px;
}

.details-section h2 {
  color: #222;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 22px;
}

.description-section p,
.review-card > p {
  color: #565656;
  font-size: 15px;
  line-height: 1.56;
  margin: 0;
}

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

.amenities-grid h3 {
  color: #2E2E2E;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 17px;
}

.amenities-grid ul {
  color: #565656;
  display: grid;
  font-size: 13px;
  gap: 13px;
  line-height: 1.35;
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

.amenities-grid li::marker {
  color: #565656;
  font-size: 25px;
  margin: 0 !important;
  line-height: 25px;
}

.view-features-btn {
  background: var(--purple);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.2px;
  min-height: 46px;
  min-width: 254px;
  padding: 15px 28px;
}

.view-features-btn:hover {
  background: var(--yellow);
  color: var(--white);
}

.reviews-section {
  border-bottom: 0;
  padding-bottom: 0;
}

.reviews-heading {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 13px 18px;
  margin-bottom: 25px;
}

.reviews-heading h2 {
  margin: 0;
}

.reviews-heading > span {
  align-items: center;
  color: #222;
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  gap: 8px;
}

.review-star,
.review-stars {
  color: #f59c01;
}

.review-list {
  display: grid;
  gap: 0;
}

.review-card {
  border-bottom: 1px solid #ebe5ff;
  padding: 0 0 32px;
}

.review-card + .review-card {
  padding-top: 31px;
}

.review-author {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.review-avatar {
  align-items: center;
  background: #3d28b8;
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  flex: 0 0 54px;
  font-size: 25px;
  font-weight: 500;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.review-author h3 {
  color: #222;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 3px;
}

.review-author p {
  color: #777386;
  font-size: 13px;
  line-height: 1.25;
  margin: 0;
}

.review-stars {
  font-size: 18px;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 18px;
}

.booking-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 20px 54px rgba(16, 32, 57, .12);
  margin-left: auto;
  max-width: 684px;
  padding: 48px 40px 42px;
  position: sticky;
  top: 132px;
  margin-top: -139px;
}

.booking-price-row {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.booking-price-row strong {
  color: var(--purple);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.booking-price-row strong span,
.booking-price-row > span {
  color: #222;
  font-size: 22px;
  font-weight: 400;
}

.booking-tax {
  color: #565656;
  font-size: 12px;
  line-height: 1.2;
  margin: 10px 0 0;
}

.booking-divider {
  border-top: 1px solid #ebe5ff;
  margin: 30px 0 27px;
}

.booking-card h2 {
  color: #222;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 22px;
}

.trip-form {
  display: grid;
  gap: 22px 20px;
  grid-template-columns: 1fr 1fr;
}

.trip-form label {
  color: #222;
  display: grid;
  font-size: 14px;
  font-weight: 500;
  gap: 10px;
  line-height: 1.2;
  min-width: 0;
}

.trip-control {
  align-items: center;
  background: #F5F2FF;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  min-height: 43px;
  min-width: 0;
  padding: 0 16px;
  position: relative;
  width: 100%;
}

.trip-control input {
  appearance: none;
  background: transparent;
  border: 0;
  color: #222;
  font-size: 11px;
  inset: 0;
  min-width: 0;
  opacity: 0;
  outline: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.trip-control input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  inset: 0;
  opacity: 0;
  position: absolute;
  width: auto;
}

.trip-control-text {
  color: #b1aabd;
  display: block;
  font-size: 11px;
  line-height: 1;
  min-width: 0;
  overflow: hidden;
  padding-right: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.trip-control.has-value .trip-control-text {
  color: #222;
}

.trip-control svg {
  fill: #777386;
  flex: 0 0 14px;
  height: 14px;
  pointer-events: none;
  width: 14px;
}

.trip-form button {
  background: var(--purple);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  grid-column: 1 / -1;
  justify-self: center;
  letter-spacing: 1.5px;
  margin-top: 12px;
  min-height: 60px;
  min-width: 243px;
  padding: 16px 34px;
  text-transform: uppercase;
  transition: background-color .25s ease, transform .25s ease;
  max-width: 100%;
}

.trip-form button:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background: #202020;
  border-radius: 12px;
  color: var(--white);
  margin: 0 auto 26px;
  max-width: 1840px;
  padding: 62px 150px 36px;
}

.footer-newsletter {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  margin: 0 0 48px;
  padding-bottom: 54px;
}

.footer-eyebrow {
  color: rgba(255, 255, 255, .84);
  font-size: 11px;
  font-weight: 600;
  gap: 10px;
  letter-spacing: .9px;
  line-height: 1;
  margin-bottom: 12px;
}

.footer-newsletter h2 {
  color: var(--white);
  font-size: 50px;
  font-weight: 600;
  line-height: 1.04;
  margin: 0;
  max-width: 560px;
}

.footer-newsletter h2 span {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.footer-form {
  display: grid;
  gap: 13px;
  margin-left: auto;
  max-width: 376px;
  width: 100%;
}

.footer-input {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: 999px;
  display: flex;
  gap: 11px;
  min-height: 40px;
  padding: 0 20px;
}

.footer-newsletter input {
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 12px;
  outline: 0;
  padding: 0;
  width: 100%;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, .74);
}

.footer-newsletter button {
  background: var(--yellow);
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  min-height: 41px;
  padding: 12px 24px;
  text-transform: uppercase;
  transition: background-color .25s ease, color .25s ease;
}

.footer-newsletter button:hover {
  background: var(--white);
}

.footer-form-shortcode .gform_wrapper.gravity-theme {
  margin-left: auto;
  max-width: 376px;
  width: 100%;
}

.footer-form-shortcode .gform_wrapper.gravity-theme form {
  display: grid;
  gap: 13px;
}

.footer-form-shortcode .gform_wrapper.gravity-theme .gform_fields {
  display: block;
}

.footer-form-shortcode .gform_wrapper.gravity-theme .gfield {
  margin: 0;
  padding: 0;
}

.footer-form-shortcode .gform_wrapper.gravity-theme .ginput_container_email {
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: 999px;
  min-height: 40px;
}

.footer-form-shortcode .gform_wrapper.gravity-theme .gfield_label {
  display: none;
}

.footer-form-shortcode .gform_wrapper.gravity-theme input[type="email"] {
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 12px;
  min-height: 38px;
  outline: 0;
  padding: 0 20px;
  width: 100%;
}

.footer-form-shortcode .gform_wrapper.gravity-theme input[type="email"]::placeholder {
  color: rgba(255, 255, 255, .74);
}

.footer-form-shortcode .gform_wrapper.gravity-theme .gform_footer {
  margin: 0;
  padding: 0;
  position: relative;
}

.footer-form-shortcode .gform_wrapper.gravity-theme .gform_button {
  background: var(--yellow);
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  min-height: 41px;
  padding: 12px 24px;
  text-transform: uppercase;
  transition: background-color .25s ease, color .25s ease;
  width: 100%;
}

.footer-form-shortcode .gform_wrapper.gravity-theme .gform_button:hover {
  background: var(--white);
}

.footer-form-shortcode .gform_wrapper.gravity-theme .gfield_error {
  box-shadow: none;
}

.footer-form-shortcode .gform_wrapper.gravity-theme .gfield_error .ginput_container_email {
  border-color: rgba(255, 100, 100, .95);
  box-shadow: 0 0 0 3px rgba(255, 100, 100, .14);
}

.footer-form-shortcode .gform_wrapper.gravity-theme .gfield_validation_message,
.footer-form-shortcode .gform_wrapper.gravity-theme .validation_message {
  background: transparent;
  border: 0;
  color: #ff6464;
  font-size: 12px;
  margin: 7px 0 0;
  padding: 0 20px;
}

.footer-form-shortcode .gform_wrapper.gravity-theme .gform_validation_errors {
  display: none;
}

.footer-form-shortcode .gform_wrapper.gravity-theme .gform_ajax_spinner,
.footer-form-shortcode .gform_wrapper.gravity-theme .gform-loader {
  animation: mdw-gf-spin .75s linear infinite;
  border: 2px solid rgba(16, 32, 57, .24);
  border-radius: 50%;
  border-top-color: var(--ink);
  height: 18px !important;
  margin: -9px 0 0 !important;
  object-fit: contain;
  position: absolute;
  right: 18px;
  top: 50%;
  width: 18px !important;
}

.footer-form-shortcode .gform_confirmation_message {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  margin-left: auto;
  max-width: 376px;
  text-align: center;
}

.footer-main {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  display: grid;
  gap: 74px;
  grid-template-columns: 1.35fr .78fr .9fr 1.7fr;
  margin: 0;
  padding: 0 0 58px;
}

.site-footer .brand-logo {
  filter: none;
  height: auto;
  max-width: 160px;
  width: 160px;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 29px;
}

.socials a {
  align-items: center;
  background: #2b2b2b;
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  height: 35px;
  justify-content: center;
  transition: background-color .25s ease, color .25s ease;
  width: 35px;
}

.socials a.active,
.socials a:hover {
  background: var(--yellow);
  color: var(--ink);
}

.footer-col h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 21px;
}

.footer-col a,
.footer-col p {
  color: rgba(255, 255, 255, .76);
  display: block;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 12px;
  transition: color .25s ease;
}

.footer-col a:hover,
.contact-col a:hover {
  color: var(--yellow);
}

.contact-col p {
  align-items: flex-start;
  display: flex;
  gap: 10px;
}

.contact-col p a {
  margin: 0;
}

.contact-icon {
  align-items: center;
  color: var(--yellow);
  display: inline-flex;
  flex: 0 0 18px;
  font-size: 16px;
  line-height: 1.45;
  justify-content: center;
}

.copyright {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  padding-top: 24px;
  text-align: center;
}
