/* -----------------------------
   FONTS
-------------------------------- */
@font-face {
  font-family: "Fiendstar";
  src:
    url("../fonts/Fiendstar W01 Regular.woff2") format("woff2"),
    url("../fonts/Fiendstar W01 Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Inter: use CDN fallback (replace with local files if you add them) */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");

/* -----------------------------
   RESET / BASE
-------------------------------- */
* { box-sizing: border-box; }
html, body { height: 100%;   font-family: "Fiendstar", "Inter", system-ui, sans-serif;
}
body {
  margin: 0;
  background: #1E1E24;
  color: #fff;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

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

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Utility: lock scroll when menu open */
body.is-locked {
  overflow: hidden;
  touch-action: none;
}



/* =========================
   OUR CARS (DESKTOP FIRST)
   ========================= */

.car-page {
  width: 100%;
  color: #111;
}

/* container */
.cars-container {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 0 40px;
}

.cars-container--center {
  text-align: center;
}

/* headings */
.section-title {
  font-size: 44px;
  letter-spacing: 2px;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}

.section-title--left {
  text-align: left;
}

.section-subtitle {
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 500;
  margin: 12px 0 0;
  text-transform: uppercase;
}

.section-subtitle--left {
  text-align: left;
}

.section-divider {
  display: block;
  width: 55px;
  height: 1px;
  background: #1b1b1b;
  margin: 28px auto 0;
}

.section-divider--left {
  margin: 28px 0 0;
}

.section-text {
  font-size: 18px;
  line-height: 1.8;
  max-width: 820px;
  margin: 26px auto 0;
  color: #222;
}

.section-text--left {
  margin: 26px 0 0;
  max-width: 520px;
}

.section-text--mt {
  margin-top: 22px;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  height: 58px;
  padding: 0 44px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,0.75);
  background: transparent;
}

.btn--blue {
  background: #92140C;
  color: #fff;
  border-color: #92140C;
}

.btn--wide {
  width: 100%;
}

.btn--pill {
  padding: 0 54px;
  width: 360px;
  margin-top: 34px;
}

#cars-button{ 
  padding: 0 54px;
  width: 360px;
  margin-top: 34px;
  background: #92140C;
  color: #fff;
  border-color: #92140C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  height: 58px;
  padding: 0 44px;
  border: 1px solid transparent;
  cursor: pointer;
  }

.btn-arrow {
  margin-left: 14px;
  font-size: 18px;
  line-height: 1;
}

/* HERO */
.car-hero {
  position: relative;
  min-height: 760px;
  background-size: cover;
  background-position: center;
}

.car-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38); /* tweak for contrast */
}


.car-hero__content {
  position: absolute;
  left: 70px;
  bottom: 85px;
  z-index: 2;
  color: #fff;
}

.car-hero__title {
  font-size: 92px;
  font-weight: 400;
  letter-spacing: 3px;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.car-hero__subtitle {
  margin: 0 0 36px;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.car-hero__actions {
  display: flex;
  gap: 22px;
}

/* INTRO + GALLERY */
.car-intro {
  padding: 95px 0 70px;
  background: #fff;
}

.cars-gallery {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 35px;
  align-items: center;
}

.cars-gallery__item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.cars-gallery__item--main img {
  height: 460px;
}

.cars-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}

.dot {
  width: 95px;
  height: 3px;
  background: #d8d8d8;
  display: inline-block;
}

.dot--active {
  background: #111;
}

/* SPECIFICATIONS */
.car-specs {
  padding: 95px 0;
  background: #fff;
}

.car-specs__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 70px;
  align-items: end;
}

.video-card {
  position: relative;
  width: 100%;
  height: 470px;
  background: #1E1E24;
  overflow: hidden;
}

.video-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 78px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.15);
}

.video-card__play::after {
  content: "";
  position: absolute;
  left: 33px;
  top: 25px;
  width: 0;
  height: 0;
  border-left: 20px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

/* BOOK */
.car-book {
  padding: 80px 0 110px;
  background: #fff;
}

.car-book__meta {
  display: flex;
  gap: 44px;
  margin-top: 24px;
  align-items: center;
}

.meta-item {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
}

.meta-item__icon {
  font-size: 14px;
  opacity: 0.7;
}

.car-book__line {
  height: 1px;
  background: #dcdcdc;
  margin-top: 22px;
}

.car-book__grid {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr 1.2fr;
  gap: 55px;
  margin-top: 60px;
  align-items: start;
}

.car-book__car img {
  width: 100%;
  max-width: 520px;
  display: block;
}

/* --- WEDDING PRICING: make car images standard size --- */
.price-col__car{
  width: 100%;
  max-width: 360px;     /* bigger than before */
  height: 130px;        /* standard header height */
  object-fit: contain;
  display: block;
  margin: 0 auto 22px;
}

/* Optional: if the tiny images have extra empty space, this helps a bit */
.price-col{
  padding-top: 6px;
}

.car-book__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
  line-height: 2.0;
}

.car-book__bullets li {
  display: flex;
  gap: 14px;
  margin-bottom: 8px;
}

.bullet-check {
  width: 28px;
  height: 28px;
  border: 1px solid #111;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 4px;
}

.price-card {
  background: #f3f3f3;
  padding: 34px 34px 28px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 16px 0;
  border-bottom: 1px solid #d7d7d7;
  font-size: 16px;
}

.price-row strong {
  font-size: 16px;
}

.price-note {
  margin: 22px 0 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}


/* =========================
   SIMPLE 3-IMG CAROUSEL (NO TRANSITION)
   ========================= */

.car-intro {
  padding: 95px 0 70px;
  background: #fff;
}

/* carousel wrapper */
.cars-simple-carousel {
  margin-top: 55px;
}

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

/* 3 images visible */
.cars-simple-carousel__track {
  display: flex;
  gap: 12px;
  transition: transform 1.2s ease;   /* <-- smooth & slower */
}

/* each slide takes 1/3 width (minus gaps) */
.cars-simple-carousel__slide {
  flex: 0 0 calc((100% - 24px) / 3);
}

.cars-simple-carousel__slide img {
  width: 100%;
  height: 260px;          /* adjust if needed to match your screenshot */
  object-fit: cover;
  display: block;
  background: #fff;
}

/* dots */
.cars-simple-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.cars-simple-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d7d7d7;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.cars-simple-carousel__dot.is-active {
  background: #111;
}


/* LIGHT GREY INFO SECTIONS */
.car-info {
  padding: 95px 0 95px;
  background: #eef2f5;
}

/* FULL WIDTH BANNER */
.car-banner {
  height: 520px;
  background-size: cover;
  background-position: center;
}

/* BESPOKE ENQUIRY */
.car-enquiry {
  padding: 90px 0 120px;
  background: #fff;
}

.car-enquiry__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: start;
}

.call-row {
  margin-top: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.call-row__label {
  font-weight: 700;
}

.form-panel {
  background: #f3f3f3;
  padding: 46px 44px 44px;
}

.form-panel__title {
  margin: 0 0 22px;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.field {
  display: block;
  margin-bottom: 16px;
}

.field__label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.field__label em {
  color: #b30000;
  font-style: normal;
  margin-left: 6px;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #6d6d6d;
  background: #fff;
  padding: 14px 14px;
  font-size: 16px;
  outline: none;
  resize: none;
}

.field textarea {
  padding: 14px;
}




/* =========================
   OUR CARS — MOBILE
   (NO text/design changes, only responsive)
   ========================= */

@media (max-width: 991px) {
  .cars-container {
    padding: 0 20px;
  }

  /* HERO */
  .car-hero {
    min-height: 620px;
  }

  .car-hero__content {
    left: 20px;
    right: 20px;
    bottom: 32px;
  }

  .car-hero__title {
    font-size: 56px;
    letter-spacing: 2px;
  }

  .car-hero__subtitle {
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
  }

  .car-hero__actions {
    gap: 12px;
    flex-wrap: wrap;
  }

  .car-hero__actions .btn {
    width: 100%;
    justify-content: center;
    height: 52px;
  }

  /* Titles / text spacing (same style, just smaller for mobile) */
  .section-title {
    font-size: 30px;
    letter-spacing: 1.5px;
  }

  .section-subtitle {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .section-text {
    font-size: 16px;
    line-height: 1.75;
    max-width: 100%;
  }

  .car-book {
    padding: 55px 0 70px;
  }

  /* Meta row wraps nicely */
  .car-book__meta {
    gap: 14px 18px;
    flex-wrap: wrap;
  }

  .meta-item {
    font-size: 14px;
  }

  /* BOOK grid stacks */
  .car-book__grid {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 30px;
  }

  .car-book__car img {
    max-width: 100%;
    margin: 0 auto;
  }

  .car-book__bullets {
    font-size: 16px;
    line-height: 1.85;
  }

  .bullet-check {
    width: 24px;
    height: 24px;
    font-size: 13px;
    margin-top: 2px;
  }

  .price-card {
    padding: 22px 18px 18px;
  }

  .price-row {
    font-size: 14px;
    padding: 14px 0;
  }

  .price-row strong {
    font-size: 14px;
  }

  /* CAROUSEL: 1 image per view on mobile */
  .cars-simple-carousel {
    margin-top: 28px;
  }

  .cars-simple-carousel__track {
    gap: 10px;
  }

  .cars-simple-carousel__slide {
    flex: 0 0 100%;
  }

  .cars-simple-carousel__slide img {
    height: 220px;
  }

  /* INFO section spacing */
  .car-info {
    padding: 60px 0;
  }

  /* ENQUIRY stacks */
  .car-enquiry {
    padding: 60px 0 80px;
  }

  .car-enquiry__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-title--left,
  .section-subtitle--left,
  .section-text--left {
    text-align: left;
    max-width: 100%;
  }

  .form-panel {
    padding: 26px 18px 22px;
  }

  .form-panel__title {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .field input,
  .field textarea {
    font-size: 15px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .car-hero {
    min-height: 560px;
  }

  .car-hero__title {
    font-size: 46px;
  }

  .cars-simple-carousel__slide img {
    height: 200px;
  }
}