body { font-family: 'Source Sans 3', system-ui, sans-serif; }
h1, h2, h3, h4 { font-family: 'Outfit', system-ui, sans-serif; }

.card-hover {
  transition:
    transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 36px rgba(79, 70, 229, 0.14),
    0 6px 16px rgba(192, 38, 211, 0.1);
}

.card-media { overflow: hidden; }

.card-media img,
.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-media img {
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-hover:hover .card-media img { transform: scale(1.045); }

@media (prefers-reduced-motion: reduce) {
  .card-hover, .card-media img { transition: none; }
  .card-hover:hover { transform: none; box-shadow: none; }
  .card-hover:hover .card-media img { transform: none; }
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5 0%, #c026d3 100%);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #4338ca 0%, #a21caf 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.35);
}

.btn-outline {
  border: 2px solid white;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: white;
  color: #4338ca;
  transform: translateY(-2px);
}

.btn-ocean {
  background: linear-gradient(135deg, #3730a3 0%, #c026d3 100%);
  transition: all 0.3s ease;
}
.btn-ocean:hover {
  background: linear-gradient(135deg, #312e81 0%, #a21caf 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(55, 48, 163, 0.35);
}

.btn-outline-ocean {
  border: 2px solid #4f46e5;
  color: #4f46e5;
  transition: all 0.3s ease;
}
.btn-outline-ocean:hover {
  background: #4f46e5;
  color: white;
  transform: translateY(-2px);
}

.faq-item { transition: all 0.3s ease; }
.faq-item:hover { background: #fdf4ff; }

.cruise-snapshot {
  background: linear-gradient(135deg, #eef2ff 0%, #fdf4ff 100%);
  border: 1px solid #c7d2fe;
  border-radius: 1.5rem;
  padding: 1.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.cruise-snapshot__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .cruise-snapshot__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .cruise-snapshot__grid { grid-template-columns: repeat(3, 1fr); }
}
.cruise-snapshot__item dt {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4338ca;
  margin-bottom: 0.25rem;
}
.cruise-snapshot__item dd {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}

.hero-bg,
.hero-bg-custom {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

nav { backdrop-filter: blur(12px); }

.trust-strip {
  background: linear-gradient(180deg, #fdf4ff 0%, #ffffff 100%);
  border-bottom: 1px solid #f5d0fe;
  padding: 0.875rem 0;
}
.trust-strip__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.625rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .trust-strip__list { justify-content: space-between; }
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #86198f;
  white-space: nowrap;
}
.trust-strip__check { flex-shrink: 0; color: #4f46e5; }

.site-hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 0;
}
.site-hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: left;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.site-hero__wave { width: 100%; height: 2rem; }

@media (min-width: 1024px) {
  .site-hero__inner { padding-top: 1.125rem; padding-bottom: 1.75rem; }
  .site-hero__title { font-size: 3rem !important; line-height: 1.1 !important; }
}

.cta-gradient {
  background: linear-gradient(135deg, #312e81 0%, #c026d3 50%, #701a75 100%);
}
