/* TAL components — homepage component styling */

/* Buttons — base styles were missing; Hero and CTA rely on these. */
/* Buttons */
.tal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: .875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color .16s ease,
    color .16s ease,
    border-color .16s ease,
    transform .16s ease;
}

.tal-btn:active {
  transform: translateY(1px);
}

/* Primary — white background, burgundy text */
.tal-btn--primary,
.tal-btn--primary:link,
.tal-btn--primary:visited {
  background: #ffffff;
  color: #671a2d !important;
  border-color: #671a2d;
}

.tal-btn--primary:hover,
.tal-btn--primary:focus,
.tal-btn--primary:focus-visible,
.tal-btn--primary:active {
  background: #ffffff;
  color: #671a2d !important;
  border-color: #671a2d;
}

/* Secondary */
.tal-btn--secondary,
.tal-btn--secondary:link,
.tal-btn--secondary:visited {
  background: transparent;
  color: var(--tal-color-ink, #151515);
  border-color: var(--tal-color-ink, #151515);
}

.tal-btn--secondary:hover,
.tal-btn--secondary:focus,
.tal-btn--secondary:focus-visible {
  background: var(--tal-color-ink, #151515);
  color: #ffffff;
  border-color: var(--tal-color-ink, #151515);
}
/* Hero */
.tal-hero__eyebrow {
  margin: 0 0 22px;
}

.tal-hero__title {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.75rem, 1.75rem + 3.2vw, 4.75rem);
  line-height: .98;
  letter-spacing: -.055em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.tal-hero__lede {
  max-width: 640px;
  margin: 30px 0 0;
  line-height: 1.7;
}

.tal-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.tal-hero__cta-group .tal-btn {
  min-height: 52px;
}

.tal-trust-item {
  padding: 18px 14px 0 0;
  font-size: .76rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(21, 21, 21, .68);
}


/* Booking */
.tal-booking__title,
.tal-fleet__title,
.tal-why__title,
.tal-services__title,
.tal-coverage__title,
.tal-testimonial__title,
.tal-faq__title,
.tal-cta__title {
  margin: 12px 0 0;
}

.tal-booking__lede,
.tal-fleet__lede,
.tal-cta__lede {
  margin: 24px 0 0;
  max-width: 720px;
}

.tal-booking__contact {
  margin-top: 38px;
}

.tal-booking__contact-label {
  margin: 0 0 7px;
  opacity: .68;
}

.tal-booking__phone {
  color: var(--tal-color-burgundy, #671a2d);
  text-decoration: none;
  font-size: clamp(1.2rem, 1.5vw, 1.55rem);
  font-weight: 600;
}

.tal-booking__phone:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}


/* Reservations — stronger editorial contrast */
.tal-booking__intro {
  position: relative;
  z-index: 1;
  background: #671a2d;
  color: #ffffff;
  padding: clamp(56px, 6vw, 96px);
}

.tal-booking__intro::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 100vw;
  background: #671a2d;
  z-index: -1;
}

.tal-booking__intro .tal-eyebrow,
.tal-booking__intro .tal-booking__eyebrow {
  color: #e2c9b7 !important;
}

.tal-booking__intro .tal-booking__title,
.tal-booking__intro .tal-h2 {
  color: #ffffff !important;
}

.tal-booking__intro .tal-body,
.tal-booking__intro .tal-body-lg,
.tal-booking__intro .tal-booking__lede {
  color: rgba(255, 255, 255, .84) !important;
}

.tal-booking__intro .tal-booking__contact {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.tal-booking__intro .tal-booking__contact-label {
  color: rgba(255, 255, 255, .68) !important;
  opacity: 1;
}

.tal-booking__intro .tal-booking__phone,
.tal-booking__intro .tal-booking__phone:visited {
  color: #ffffff !important;
}

.tal-booking__intro .tal-booking__phone:hover,
.tal-booking__intro .tal-booking__phone:focus {
  color: #ffffff !important;
  text-decoration-color: #ffffff;
}

.tal-booking__calculator {
  background: #f2efea;
}


/* Fleet */
.tal-fleet__lede {
  max-width: 720px;
}

.tal-fleet__progress {
  width: min(420px, 100%);
  height: 2px;
  margin-top: 28px;
  background: rgba(21, 21, 21, .12);
  overflow: hidden;
}

.tal-fleet__progress-bar {
  width: 11.111%;
  height: 100%;
  background: var(--tal-color-burgundy, #671a2d);
  transform-origin: left center;
}

.tal-fleet__index {
  display: block;
  margin-bottom: 18px;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tal-color-burgundy, #671a2d);
}

.tal-fleet__name {
  margin: 0;
  max-width: 380px;
}

.tal-fleet__stats {
  display: flex;
  gap: 34px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(21, 21, 21, .12);
}

.tal-fleet__stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(21, 21, 21, .62);
}

.tal-fleet__stat strong {
  font-size: clamp(1.65rem, 2vw, 2.25rem);
  line-height: 1;
  color: var(--tal-color-ink, #151515);
  font-weight: 500;
  letter-spacing: -.03em;
}

.tal-fleet__controls {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.tal-fleet__control {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21, 21, 21, .18);
  color: var(--tal-color-ink, #151515);
  background: transparent;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.tal-fleet__control:hover,
.tal-fleet__control:focus-visible {
  background: var(--tal-color-burgundy, #671a2d);
  color: #fff;
  border-color: var(--tal-color-burgundy, #671a2d);
}

.tal-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* Why */
.tal-why .tal-eyebrow {
  color: #d5b7a1;
}

.tal-why__title {
  max-width: 800px;
  color: #fff;
}

.tal-why__index {
  color: #d5b7a1;
  font-size: .75rem;
  letter-spacing: .15em;
}

.tal-why__label {
  margin: 0;
  color: #fff;
}

.tal-why__desc {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  max-width: 620px;
}


/* Services */
.tal-services__name {
  margin: 0;
}

.tal-services__desc {
  margin: 0;
  max-width: 640px;
  color: rgba(21, 21, 21, .7);
}

.tal-services__link {
  color: var(--tal-color-burgundy, #671a2d);
  text-decoration: none;
  white-space: nowrap;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.tal-services__link::after {
  content: "  ↗";
}

.tal-services__link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}


/* Coverage */
.tal-coverage__group-title {
  margin: 0;
}

.tal-coverage__list li {
  position: relative;
  padding: 14px 28px 14px 20px;
  border-bottom: 1px solid rgba(21, 21, 21, .11);
}

.tal-coverage__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tal-color-burgundy, #671a2d);
  transform: translateY(-50%);
}


/* Testimonial */
.tal-testimonial .tal-eyebrow {
  color: #d5b7a1;
}

.tal-testimonial__title {
  color: #fff;
  max-width: 760px;
}

.tal-testimonial__placeholder {
  max-width: 740px;
  margin: 32px 0 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .7);
  font-style: italic;
}


/* FAQ */
.tal-faq__header {
  align-self: start;
}

.tal-faq__list {
  border-top: 1px solid rgba(21, 21, 21, .14);
}

.tal-faq__item {
  border-bottom: 1px solid rgba(21, 21, 21, .14);
}

.tal-faq__question {
  margin: 0;
}

.tal-faq__trigger {
  width: 100%;
  min-height: 76px;
  padding: 20px 54px 20px 0;
  border: 0;
  background: transparent;
  color: var(--tal-color-ink, #151515);
  font: inherit;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.tal-faq__trigger::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--tal-color-burgundy, #671a2d);
}

.tal-faq__trigger[aria-expanded="true"]::after {
  content: "−";
}

.tal-faq__answer {
  padding: 0 48px 24px 0;
}

.tal-faq__answer p {
  margin: 0;
  color: rgba(21, 21, 21, .7);
}

.tal-faq__trigger:focus-visible {
  outline: 2px solid var(--tal-color-burgundy, #671a2d);
  outline-offset: 4px;
}


/* CTA */
.tal-cta .tal-eyebrow {
  color: #e2c9b7;
}

.tal-cta__title {
  max-width: 920px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 6.8rem);
  line-height: .92;
  letter-spacing: -.055em;
}

.tal-cta__lede {
  color: rgba(255, 255, 255, .74);
}

.tal-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.tal-cta .tal-btn--primary {
  background: #fff;
  color: var(--tal-color-burgundy, #671a2d);
  border-color: #fff;
}

.tal-cta .tal-btn--secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}


/* Footer */
.tal-footer__name {
  margin: 0 0 24px;
  color: #fff;
}

.tal-footer__name a,
.tal-footer__name a:visited {
  color: #fff;
  text-decoration: none;
}

.tal-footer__name a:hover,
.tal-footer__name a:focus {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.tal-footer__phone {
  display: inline-block;
  margin-bottom: 18px;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}

.tal-footer__phone:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.tal-footer__address {
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-style: normal;
  line-height: 1.7;
}

.tal-footer__nav-label {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.tal-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tal-footer__nav-list a {
  color: #fff;
  text-decoration: none;
}

.tal-footer__nav-list a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.tal-footer__copyright {
  margin: 0;
  color: rgba(255, 255, 255, .45);
}


/* Why Choose Us dark-section text fix */
.tal-why,
.tal-why p,
.tal-why .tal-body,
.tal-why .tal-body-lg,
.tal-why .tal-why__desc {
  color: rgba(255, 255, 255, .82) !important;
}

.tal-why .tal-h2,
.tal-why .tal-h3,
.tal-why .tal-why__title,
.tal-why .tal-why__label {
  color: #ffffff !important;
}

.tal-why .tal-eyebrow,
.tal-why .tal-why__index {
  color: #d5b7a1 !important;
}

.tal-why a,
.tal-why a:visited {
  color: #ffffff !important;
  text-decoration-color: rgba(255, 255, 255, .45);
}

.tal-why a:hover,
.tal-why a:focus {
  color: #ffffff !important;
  text-decoration-color: #ffffff;
}


/* Mobile refinements for burgundy Reservations split */
@media (max-width: 1359px) {

  .tal-booking__intro {
    padding: clamp(48px, 7vw, 72px);
  }

  .tal-booking__intro::before {
    right: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
  }

  .tal-booking__calculator {
    background: #f2efea;
  }
}


@media (max-width: 767px) {

  .tal-booking__intro {
    padding:
      clamp(42px, 11vw, 58px)
      max(24px, var(--tal-gutter, 24px));
  }

  .tal-booking__intro .tal-booking__title {
    max-width: 12ch;
  }

  .tal-booking__intro .tal-booking__contact {
    margin-top: 30px;
    padding-top: 22px;
  }
}
/* =========================================================
   RESERVATIONS SECTION — FINAL DESKTOP / TABLET / MOBILE FIX
   ========================================================= */

/* Left burgundy panel */
.tal-booking__intro {
  position: relative;
  z-index: 1;

  background: #671a2d;
  color: #ffffff;

  /* Much less horizontal padding so the text has room */
  padding:
    clamp(52px, 5vw, 78px)
    clamp(28px, 3.2vw, 50px) !important;

  display: flex;
  flex-direction: column;
  justify-content: center;

  min-width: 0;
}

/* Extend burgundy cleanly to the left edge of the viewport */
.tal-booking__intro::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;

  width: 100vw;

  background: #671a2d;
  z-index: -1;
}


/* Reservations eyebrow */
.tal-booking__intro .tal-booking__eyebrow,
.tal-booking__intro .tal-eyebrow {
  color: #e2c9b7 !important;
  margin-bottom: 22px;
}


/* Reservations heading */
.tal-booking__intro .tal-booking__title {
  color: #ffffff !important;

  max-width: 10.5ch;

  font-size:
    clamp(2.6rem, 3.3vw, 4.25rem);

  line-height: 0.98;
  letter-spacing: -0.045em;

  margin: 0;
}


/* Main paragraph */
.tal-booking__intro .tal-booking__lede,
.tal-booking__intro .tal-body-lg {
  color: rgba(255, 255, 255, 0.88) !important;

  max-width: 470px;

  font-size:
    clamp(1rem, 1.15vw, 1.2rem);

  line-height: 1.65;

  margin-top: 30px;
}


/* Secondary paragraph */
.tal-booking__intro .tal-body {
  color: rgba(255, 255, 255, 0.76) !important;

  max-width: 470px;

  font-size:
    clamp(0.95rem, 1vw, 1.08rem);

  line-height: 1.7;

  margin-top: 20px;
}


/* Contact block */
.tal-booking__intro .tal-booking__contact {
  margin-top: 34px;

  padding-top: 24px;

  border-top:
    1px solid rgba(255, 255, 255, 0.20);
}


.tal-booking__intro .tal-booking__contact-label {
  color: rgba(255, 255, 255, 0.65) !important;
  opacity: 1;

  margin-bottom: 8px;
}


.tal-booking__intro .tal-booking__phone,
.tal-booking__intro .tal-booking__phone:visited {
  color: #ffffff !important;

  font-size:
    clamp(1.25rem, 1.5vw, 1.55rem);

  font-weight: 600;

  text-decoration: none;
}


.tal-booking__intro .tal-booking__phone:hover,
.tal-booking__intro .tal-booking__phone:focus {
  color: #ffffff !important;

  text-decoration: underline;
  text-underline-offset: 5px;
}


/* =========================================================
   RIGHT SIDE — NO PREFERENCE VEHICLE
   ========================================================= */

.tal-booking__calculator {
  background: #f2efea !important;

  min-width: 0;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  padding:
    clamp(46px, 5vw, 80px)
    clamp(36px, 5vw, 84px) !important;

  overflow: hidden;
}


/* Only the vehicle image inside Reservations */
.tal-booking__calculator > .tal-fleet__image {
  display: block;

  width: min(88%, 860px) !important;
  max-width: 860px !important;

  height: auto !important;

  max-height: 470px;

  object-fit: contain;

  margin: 0 auto;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1360px) {

  /* Give the text slightly more room than the original 1/3 column */
  .tal-booking__grid {
    grid-template-columns:
      minmax(0, 0.42fr)
      minmax(0, 0.58fr) !important;

    align-items: stretch;
  }


  .tal-booking__intro {
    min-height: 650px;
  }


  .tal-booking__calculator {
    min-height: 650px;
  }


  .tal-booking__calculator > .tal-fleet__image {
    width: min(92%, 900px) !important;
  }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 768px) and (max-width: 1359px) {

  .tal-booking__intro {
    padding:
      60px
      max(32px, 6vw) !important;
  }


  .tal-booking__intro::before {
    left: 50%;
    right: auto;

    width: 100vw;

    transform: translateX(-50%);
  }


  .tal-booking__intro .tal-booking__title {
    max-width: 16ch;

    font-size:
      clamp(2.7rem, 6vw, 4.2rem);
  }


  .tal-booking__calculator {
    padding:
      48px
      max(28px, 6vw) !important;

    min-height: 390px;
  }


  .tal-booking__calculator > .tal-fleet__image {
    width: min(82%, 720px) !important;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

  .tal-booking__intro {
    padding:
      48px
      max(22px, var(--tal-gutter, 22px)) !important;
  }


  /* Full-width burgundy background on phones */
  .tal-booking__intro::before {
    left: 50%;
    right: auto;

    width: 100vw;

    transform: translateX(-50%);
  }


  .tal-booking__intro .tal-booking__title {
    max-width: 12ch;

    font-size:
      clamp(2.25rem, 11vw, 3.3rem);

    line-height: 1;
  }


  .tal-booking__intro .tal-booking__lede {
    max-width: none;

    font-size: 1rem;

    line-height: 1.65;

    margin-top: 24px;
  }


  .tal-booking__intro .tal-body {
    max-width: none;

    font-size: 0.96rem;

    line-height: 1.65;
  }


  .tal-booking__intro .tal-booking__contact {
    margin-top: 28px;
    padding-top: 20px;
  }


  .tal-booking__calculator {
    min-height: 300px;

    padding:
      36px
      max(18px, var(--tal-gutter, 18px)) !important;
  }


  .tal-booking__calculator > .tal-fleet__image {
    width: 100% !important;

    max-width: 560px !important;

    max-height: 310px;
  }

}
/* Footer dark-section text visibility fix */
.tal-footer,
.tal-footer p,
.tal-footer .tal-body,
.tal-footer .tal-small {
  color: rgba(255, 255, 255, 0.78) !important;
}

.tal-footer .tal-h3,
.tal-footer .tal-footer__name,
.tal-footer .tal-footer__name a,
.tal-footer .tal-footer__name a:visited,
.tal-footer .tal-footer__phone,
.tal-footer .tal-footer__phone:visited,
.tal-footer .tal-footer__nav-list a,
.tal-footer .tal-footer__nav-list a:visited {
  color: #ffffff !important;
}

.tal-footer .tal-footer__nav-label,
.tal-footer .tal-footer__copyright {
  color: rgba(255, 255, 255, 0.58) !important;
}

.tal-footer a:hover,
.tal-footer a:focus {
  color: #ffffff !important;
}

/* Reservations — extend right panel to viewport edge */
.tal-booking__calculator {
  position: relative;
  z-index: 1;
  background: #f2efea !important;
}

/* Continue the calculator background beyond the container */
.tal-booking__calculator::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 100vw;
  background: #f2efea;
  z-index: -1;
  pointer-events: none;
}

/* Keep the vehicle centered inside the visible right panel */
.tal-booking__calculator > .tal-fleet__image {
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
}

/* On stacked tablet/mobile layouts, make the stone area full viewport width */
@media (max-width: 1359px) {
  .tal-booking__calculator::after {
    left: 50%;
    right: auto;
    width: 100vw;
    transform: translateX(-50%);
  }
}

/* =========================================================
   RESERVATIONS — FINAL FULL-WIDTH BACKGROUND FIX
   ========================================================= */

/* The calculator must allow its background extension outside the container */
@media (min-width: 1360px) {

  .tal-booking__calculator {
    position: relative !important;
    z-index: 1;
    overflow: visible !important;
    background: #f2efea !important;
  }

  /* Fill everything from the calculator edge to the right viewport edge */
  .tal-booking__calculator::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 100vw;
    background: #f2efea;
    z-index: -1;
    pointer-events: none;
  }

  /* Keep vehicle artwork contained visually */
  .tal-booking__calculator > .tal-fleet__image {
    position: relative;
    z-index: 2;
    max-width: 100% !important;
  }
}


/* Tablet/mobile — both panels run full viewport width */
@media (max-width: 1359px) {

  .tal-booking__calculator {
    position: relative !important;
    overflow: visible !important;
    background: #f2efea !important;
  }

  .tal-booking__calculator::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: #f2efea;
    z-index: -1;
    pointer-events: none;
  }
}

/* =========================================================
   FLEET — SHORT-PIN BYPASS CONTROL
   Visual styling only. The shortened GSAP pin duration is
   controlled in tal-fleet.js, not CSS.
   ========================================================= */

.tal-fleet__skip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--tal-color-burgundy, #671a2d);
  text-decoration: none;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.tal-fleet__skip span {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  transition: transform .2s ease;
}

.tal-fleet__skip:hover,
.tal-fleet__skip:focus-visible {
  color: var(--tal-color-wine, #40111d);
}

.tal-fleet__skip:hover span,
.tal-fleet__skip:focus-visible span {
  transform: translateY(4px);
}

/* The bypass is only needed where the GSAP fleet is pinned. */
@media (max-width: 1359px) {
  .tal-fleet__skip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tal-fleet__skip span {
    transition: none;
  }
}

/* Media row typography */
.tal-media-row__eyebrow {
  margin: 0 0 14px;
}

.tal-media-row__title {
  margin: 0;
}

.tal-media-row__desc {
  margin: 20px 0 0;
  max-width: 560px;
  color: rgba(21, 21, 21, .72);
}

.tal-media-row__desc p + p {
  margin-top: 14px;
}

/* Extras — Overview lede spans full container width */
.tal-extras-page #tal-extras-overview .tal-body-lg.tal-services__desc {
  max-width: none;
}