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(26, 39, 68, 0.13),
    0 6px 16px rgba(26, 39, 68, 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, #243554 0%, #1a7a7a 100%);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1a2744 0%, #156060 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 122, 122, 0.4);
}

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

.btn-ocean {
  background: linear-gradient(135deg, #243554 0%, #1a7a7a 100%);
  transition: all 0.3s ease;
}
.btn-ocean:hover {
  background: linear-gradient(135deg, #1a2744 0%, #156060 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 122, 122, 0.35);
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a7a7a;
  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: #c4a574;
}

.itinerary-dot {
  background: linear-gradient(135deg, #243554, #1a7a7a);
}

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

@media (prefers-reduced-motion: reduce) {
  .card-hover:hover .feature-card-img {
    transform: none;
  }
}

.cta-gradient {
  background: linear-gradient(135deg, #1a2744 0%, #1a7a7a 50%, #243554 100%);
}

.cta-photo-bg {
  background-image:
    linear-gradient(135deg, rgba(26, 39, 68, 0.86) 0%, rgba(26, 122, 122, 0.72) 50%, rgba(18, 27, 48, 0.88) 100%),
    url('../images/hero-gibraltar-home.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-photo-bg-port {
  background-image:
    linear-gradient(135deg, rgba(18, 27, 48, 0.88) 0%, rgba(36, 53, 84, 0.78) 40%, rgba(26, 122, 122, 0.72) 75%, rgba(26, 39, 68, 0.85) 100%),
    url('../images/cruise-port-gibraltar.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-photo-bg-dolphin {
  background-image:
    linear-gradient(135deg, rgba(18, 27, 48, 0.88) 0%, rgba(26, 122, 122, 0.75) 45%, rgba(45, 157, 143, 0.65) 100%),
    url('../images/dolphin-watching.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-photo-bg-rock {
  background-image:
    linear-gradient(135deg, rgba(26, 39, 68, 0.88) 0%, rgba(36, 53, 84, 0.78) 35%, rgba(196, 165, 116, 0.35) 70%, rgba(26, 122, 122, 0.72) 100%),
    url('../images/rock-of-gibraltar.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg {
  background-image:
    linear-gradient(135deg, rgba(26, 39, 68, 0.78) 0%, rgba(26, 122, 122, 0.55) 60%, rgba(0, 0, 0, 0.35) 100%),
    url('../images/hero-gibraltar-home.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

.itinerary-line { background: linear-gradient(180deg, #243554 0%, #1a7a7a 100%); }
.faq-item { transition: all 0.3s ease; }
.faq-item:hover { background: #f0f4f8; }

.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);
  overflow: hidden;
}
.premium-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22) 0%, transparent 55%);
  pointer-events: none;
}
.premium-icon svg {
  position: relative;
  width: 1.375rem;
  height: 1.375rem;
}
.premium-icon--sm {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.875rem;
  box-shadow:
    0 6px 18px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.premium-icon--sm svg {
  width: 1.125rem;
  height: 1.125rem;
}
.premium-icon--ocean {
  background: linear-gradient(145deg, #1a2744 0%, #243554 52%, #2d4263 100%);
}
.premium-icon--beach {
  background: linear-gradient(145deg, #967648 0%, #c4a574 52%, #d4b896 100%);
}
.premium-icon--teal {
  background: linear-gradient(145deg, #156060 0%, #1a7a7a 52%, #2a9d8f 100%);
}
.premium-icon--violet {
  background: linear-gradient(145deg, #243554 0%, #3d5a80 52%, #5c7ba8 100%);
}
.premium-icon--gold {
  background: linear-gradient(145deg, #967648 0%, #b08d5a 52%, #c4a574 100%);
}
.premium-icon--emerald {
  background: linear-gradient(145deg, #124d4d 0%, #1a7a7a 52%, #2a9d8f 100%);
}
.premium-icon--rose {
  background: linear-gradient(145deg, #243554 0%, #1a7a7a 52%, #3dbdb0 100%);
}

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

.trust-strip {
  background: linear-gradient(180deg, #f5ebe0 0%, #ffffff 100%);
  border-bottom: 1px solid #e8d5bc;
  padding: 0.875rem 0;
}

@media (min-width: 1024px) {
  .trust-strip {
    padding: 0.75rem 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: 768px) {
  .trust-strip__list {
    gap: 0.75rem 2rem;
  }
}

@media (min-width: 1024px) {
  .trust-strip__list {
    justify-content: space-between;
    gap: 1rem;
  }
}

.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #243554;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .trust-strip__item {
    font-size: 0.875rem;
  }
}

.trust-strip__check {
  flex-shrink: 0;
  color: #1a7a7a;
  font-size: 0.875rem;
  line-height: 1;
}

.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;
}

@media (min-width: 640px) {
  .site-hero__inner {
    padding-top: 1.25rem;
    padding-bottom: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .site-hero__inner {
    padding-top: 1.125rem;
    padding-bottom: 1.75rem;
  }
}

.site-hero__wave {
  width: 100%;
  height: 2rem;
}

@media (min-width: 640px) {
  .site-hero__wave {
    height: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .site-hero__wave {
    height: 1.75rem;
  }

  .site-hero__eyebrow {
    margin-bottom: 0.625rem !important;
  }

  .site-hero__title {
    margin-bottom: 0.625rem !important;
    font-size: 3rem !important;
    line-height: 1.1 !important;
  }

  .site-hero__lead {
    margin-bottom: 1rem !important;
    font-size: 1.125rem !important;
  }

  .site-hero__actions {
    gap: 0.625rem !important;
  }

  .site-hero__tags {
    margin-top: 1rem !important;
    padding-top: 0.75rem !important;
  }
}

.section-tight { padding-top: 2rem; padding-bottom: 4rem; }
@media (min-width: 1024px) {
  .section-tight { padding-top: 2.5rem; padding-bottom: 5rem; }
}
