@charset "UTF-8";
/* ===== Smart Trip Card CTA =====
   DOM:
        .w64-tct-cta  (min-height: 100svh, dark background: $color-text)
            .w64-tct-cta__inner  (flex column, centered)
                .w64-tct-cta__card-wrap  — perspective context
                    .w64-tct-cta__card-tilt  — rotateZ(-6deg) + float animation, preserve-3d
                        .w64-tct-cta__card-flip — rotateY (RAF, easeOut), preserve-3d
                            .w64-tct-cta__face--front
                            .w64-tct-cta__face--back
                .w64-tct-cta__text
                    .w64-tct-cta__title
                    .w64-tct-cta__subtitle
                    .w64-tct-cta__btn
===== */
.w64-tct-cta {
  --cta-card-w: clamp(300px, 36vw, 486px);
  --cta-title-font-size: 160px;
  --cta-subtitle-font-size: 80px;
}
@media (max-width: 768px) {
  .w64-tct-cta {
    --cta-title-font-size: 80px;
    --cta-subtitle-font-size: 40px;
  }
}
.w64-tct-cta {
  position: relative;
  width: 100%;
  min-height: 100svh;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  user-select: none;
  font-family: "Helvetica Now Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  /* ===== Inner ===== */
}
.w64-tct-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
  text-align: center;
}
.w64-tct-cta {
  /* ===== Card wrap ===== */
}
.w64-tct-cta__card-wrap {
  width: var(--cta-card-w);
  perspective: 650px;
  position: relative;
}
.w64-tct-cta {
  /* ===== Tilt ===== */
}
.w64-tct-cta__card-tilt {
  width: 100%;
  transform: rotateZ(-6deg) rotateX(7deg);
  transform-style: preserve-3d;
  will-change: transform;
}
.w64-tct-cta {
  /* ===== Flip ===== */
}
.w64-tct-cta__card-flip {
  width: 100%;
  aspect-ratio: 486/312;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.w64-tct-cta {
  /* ===== Faces ===== */
}
.w64-tct-cta__face {
  position: absolute;
  inset: 0;
  border-radius: 2.1vh;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: #f9f1ea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 24px 56px rgba(0, 0, 0, 0.4);
}
.w64-tct-cta__face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.w64-tct-cta__face::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(ellipse at 85% 6%, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0.1) 35%, transparent 55%), linear-gradient(to bottom left, rgba(255, 255, 255, 0.18) 0%, transparent 45%);
}
.w64-tct-cta__face--back {
  transform: rotateY(180deg);
}
.w64-tct-cta {
  /* ===== Text ===== */
}
.w64-tct-cta__text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.w64-tct-cta__title {
  color: var(--Background-Secondary, #F4E9E0) !important;
  font-size: var(--cta-title-font-size) !important;
  font-style: normal;
  font-weight: var(--Text-Weight-XBold, 800) !important;
  line-height: 100% !important;
  letter-spacing: -4px !important;
  gap: var(--cta-title-font-size);
  margin: 0;
  transition: color 1s ease;
}
@media (max-width: 768px) {
  .w64-tct-cta__title {
    letter-spacing: -2px !important;
    margin-bottom: 10px;
  }
}
.w64-tct-cta__subtitle {
  color: var(--Background-Secondary, #F4E9E0);
  font-size: var(--cta-subtitle-font-size);
  font-style: normal;
  font-weight: var(--Text-Weight-XBold, 800);
  line-height: 100%;
  letter-spacing: -1.6px;
  margin-block-end: 0 !important;
  margin-bottom: 40px !important;
  transition: color 1s ease;
}
@media (max-width: 768px) {
  .w64-tct-cta__subtitle {
    letter-spacing: -0.8px !important;
    margin-bottom: 24px !important;
  }
}
.w64-tct-cta {
  /* ===== Button ===== */
}
.w64-tct-cta__btn {
  display: flex;
  height: var(--Spacing-12, 48px);
  padding: 0 var(--Spacing-4, 16px);
  justify-content: center;
  align-items: center;
  border-radius: var(--Form-Radius, 4px);
  border: var(--Button-Secondary-Border, 2px) solid var(--Background-Secondary, #F4E9E0);
  color: var(--Background-Secondary, #F4E9E0);
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: var(--Text-Weight-XBold, 800);
  line-height: 125%;
  text-decoration: none !important;
  transition: background 0.2s, color 1s ease, border-color 1s ease;
}
.w64-tct-cta__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--Background-Secondary, #F4E9E0) !important;
}
.w64-tct-cta__btn:active, .w64-tct-cta__btn:focus {
  outline: 2px solid var(--Background-Secondary, #F4E9E0) !important;
  outline-offset: 2px;
  color: var(--Background-Secondary, #F4E9E0) !important;
}
@media (max-width: 768px) {
  .w64-tct-cta__btn {
    padding: 12px 24px;
  }
}
.w64-tct-cta {
  /* ===== Light-background state (section < 60 % visible) ===== */
}
.w64-tct-cta.is-light .w64-tct-cta__title {
  color: var(--Text-Primary, #3A2C26) !important;
}
.w64-tct-cta.is-light .w64-tct-cta__subtitle {
  color: var(--Text-Primary, #3A2C26);
}
.w64-tct-cta.is-light .w64-tct-cta__btn {
  border-color: var(--Text-Primary, #3A2C26);
  color: var(--Text-Primary, #3A2C26);
}
.w64-tct-cta.is-light .w64-tct-cta__btn:hover {
  background: rgba(58, 44, 38, 0.08);
  color: var(--Text-Primary, #3A2C26) !important;
}
.w64-tct-cta.is-light .w64-tct-cta__btn:active, .w64-tct-cta.is-light .w64-tct-cta__btn:focus {
  outline-color: var(--Text-Primary, #3A2C26) !important;
  color: var(--Text-Primary, #3A2C26) !important;
}
.w64-tct-cta {
  /* ===== Mobile ===== */
}
@media (max-width: 640px) {
  .w64-tct-cta {
    --cta-card-w: min(72vw, 260px);
    padding: 60px 20px;
  }
  .w64-tct-cta__inner {
    gap: 36px;
  }
}
.w64-tct-cta {
  /* ===== Reduced motion ===== */
}
@media (prefers-reduced-motion: reduce) {
  .w64-tct-cta__card-flip {
    will-change: auto;
  }
}

/*# sourceMappingURL=smart-trip-card-cta.css.map */
