body { font-family: 'Inter', system-ui, sans-serif; }
h1, h2, h3, h4 { font-family: 'Playfair Display', 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(7, 89, 133, 0.13),
    0 6px 16px rgba(7, 89, 133, 0.07);
}

.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, #0284c7 0%, #0d9488 100%);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #0369a1 0%, #0f766e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4);
}

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

.btn-ocean {
  background: linear-gradient(135deg, #0284c7 0%, #0d9488 100%);
  transition: all 0.3s ease;
}
.btn-ocean:hover {
  background: linear-gradient(135deg, #0369a1 0%, #0f766e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.35);
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0284c7;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: #0284c7;
}
.section-label.justify-center {
  display: flex;
  width: 100%;
  justify-content: center;
}

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

.cruise-snapshot {
  background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
  border: 1px solid #bae6fd;
  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: #0369a1;
  margin-bottom: 0.25rem;
}
.cruise-snapshot__item dd {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}

.tour-highlight {
  text-align: center;
  padding: 1rem;
  border-radius: 1rem;
  background: #f8fafc;
  border: 1px solid #e0f2fe;
}
.tour-highlight__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #075985 0%, #0d9488 100%);
  color: white;
  font-size: 1.125rem;
}

.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, #f0f9ff 0%, #ffffff 100%);
  border-bottom: 1px solid #e0f2fe;
  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: #075985;
  white-space: nowrap;
}
.trust-strip__check { flex-shrink: 0; color: #14b8a6; }

.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, #0369a1 0%, #0d9488 50%, #0c4a6e 100%);
}

.itinerary-line { background: linear-gradient(180deg, #0284c7 0%, #0d9488 100%); }

.premium-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}
.premium-icon svg { width: 1.375rem; height: 1.375rem; }
.premium-icon--ocean { background: linear-gradient(145deg, #0c4a6e 0%, #0369a1 52%, #0284c7 100%); }
.premium-icon--teal { background: linear-gradient(145deg, #115e59 0%, #0f766e 52%, #14b8a6 100%); }
.premium-icon--emerald { background: linear-gradient(145deg, #064e3b 0%, #047857 52%, #10b981 100%); }
.premium-icon--gold { background: linear-gradient(145deg, #78350f 0%, #b45309 52%, #d97706 100%); }
