body { font-family: 'DM Sans', system-ui, sans-serif; }
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, 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(30, 64, 175, 0.14),
    0 6px 16px rgba(234, 88, 12, 0.08);
}

.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, #2563eb 0%, #ea580c 100%);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #c2410c 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

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

.btn-ocean {
  background: linear-gradient(135deg, #1e40af 0%, #ea580c 100%);
  transition: all 0.3s ease;
}
.btn-ocean:hover {
  background: linear-gradient(135deg, #1e3a8a 0%, #c2410c 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.35);
}

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

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

.cruise-snapshot {
  background: linear-gradient(135deg, #eff6ff 0%, #fff7ed 100%);
  border: 1px solid #bfdbfe;
  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: #1d4ed8;
  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, #fff7ed 0%, #ffffff 100%);
  border-bottom: 1px solid #fed7aa;
  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: #9a3412;
  white-space: nowrap;
}
.trust-strip__check { flex-shrink: 0; color: #2563eb; }

.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, #1e3a8a 0%, #ea580c 50%, #7c2d12 100%);
}
