/* ============================================================
   HORIZON VOYAGES — MAIN STYLESHEET
   styles.css  |  v1.0  |  All pages
   ============================================================ */

/* ── FONTS ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ──────────────────────────────────────────── */
:root {
  /* Core palette */
  --teal-darkest: #04232e;
  --teal-dark:    #073d50;
  --teal-mid:     #0a566f;
  --teal-base:    #0e7f9e;
  --teal-light:   #3aa8c4;
  --teal-pale:    #ddf0f5;
  --gold:         #c8992a;
  --gold-light:   #e2b84a;
  --gold-pale:    #fdf5e0;
  --cream:        #f9f6f0;
  --white:        #ffffff;
  --ink:          #0d1b22;
  --ink-mid:      #2c4250;
  --muted:        #607080;
  --border:       #d8e8ed;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(4,35,46,0.08);
  --shadow-md:  0 6px 24px rgba(4,35,46,0.12);
  --shadow-lg:  0 16px 48px rgba(4,35,46,0.18);
  --shadow-xl:  0 32px 80px rgba(4,35,46,0.22);

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.font-display { font-family: 'Cormorant Garamond', serif; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; font-family: 'Outfit', sans-serif; }

p { line-height: 1.75; color: var(--ink-mid); }

/* ── UTILITIES ──────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-sm { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-base);
  margin-bottom: 0.75rem;
}

.label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.label--light { color: var(--gold-light); }
.label--light::before { background: var(--gold-light); }

.section-header { max-width: 600px; margin-bottom: 3.5rem; }
.section-header.centered { max-width: 620px; margin-left: auto; margin-right: auto; text-align: center; }
.section-header.centered .label { justify-content: center; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: all 0.28s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, #d4321a 0%, #b02210 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(212, 50, 26, 0.38);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(212, 50, 26, 0.5);
}

.btn-primary:active { transform: translateY(-1px); }

.btn-teal {
  background: var(--teal-mid);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(10, 86, 111, 0.3);
}

.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10, 86, 111, 0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--teal-darkest);
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(200, 153, 42, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 153, 42, 0.5);
}

.btn-lg {
  font-size: 1.05rem;
  padding: 1.1rem 2.5rem;
}

.btn-xl {
  font-size: 1.15rem;
  padding: 1.25rem 3rem;
  border-radius: var(--r-lg);
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(4, 35, 46, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(200, 153, 42, 0.2);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(4, 35, 46, 0.98);
  box-shadow: 0 4px 32px rgba(4, 35, 46, 0.4);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

/* Fallback text logo when image not found */
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-logo-text .logo-accent { color: var(--gold); }
.nav-logo-text .logo-main   { color: var(--white); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-links a.active {
  color: var(--gold-light);
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-align: right;
  line-height: 1.3;
}

.nav-phone-text strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 700;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--teal-darkest);
  border-top: 1px solid rgba(200, 153, 42, 0.15);
  padding: 1.5rem;
  z-index: 490;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-drawer a {
  display: block;
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s, color 0.2s;
}

.nav-drawer a:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.nav-drawer a:last-child { border-bottom: none; }

.nav-drawer .drawer-cta {
  margin-top: 1rem;
  width: 100%;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-phone-text { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 480px) {
  .nav-cta-group .btn { display: none; }
}

/* ── ANNOUNCEMENT BAR ───────────────────────────────────────── */
.announce-bar {
  background: linear-gradient(90deg, var(--teal-dark), var(--teal-mid), var(--teal-dark));
  border-bottom: 2px solid var(--gold);
  padding: 0.6rem 1rem;
  text-align: center;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 490;
}

.announce-bar p {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}

.announce-bar em { color: var(--gold-light); font-style: normal; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Fallback gradient when image not loaded */
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(175deg,
      rgba(4,35,46,0.96) 0%,
      rgba(7,61,80,0.88) 40%,
      rgba(14,127,158,0.6) 70%,
      rgba(4,35,46,0.82) 100%
    );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(170deg,
      rgba(4,35,46,0.85) 0%,
      rgba(4,35,46,0.5) 55%,
      rgba(4,35,46,0.7) 100%
    );
}

/* Decorative wave */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23f9f6f0' d='M0,60 Q360,110 720,60 T1440,60 L1440,100 L0,100 Z'/%3E%3C/svg%3E")
    no-repeat bottom center;
  background-size: cover;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: clamp(3rem, 8vh, 6rem) 0 clamp(5rem, 10vh, 8rem);
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(200, 153, 42, 0.15);
  border: 1px solid rgba(200, 153, 42, 0.45);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulseGlow 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hero h1 {
  color: var(--white);
  max-width: 760px;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 40px rgba(4,35,46,0.5);
}

.hero h1 .highlight {
  color: var(--gold-light);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 0.6rem;
  line-height: 1.7;
}

.hero-hours {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-chip svg { color: var(--gold); flex-shrink: 0; }

/* ── URGENCY STRIP ──────────────────────────────────────────── */
.urgency-strip {
  background: var(--teal-darkest);
  border-top: 1px solid rgba(200, 153, 42, 0.2);
  border-bottom: 3px solid var(--gold);
  padding: 1rem 0;
}

.urgency-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.urgency-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.urgency-item .u-icon { font-size: 1.1rem; }
.urgency-item em { color: var(--gold-light); font-style: normal; }
.urgency-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.15); }

@media (max-width: 600px) {
  .urgency-divider { display: none; }
  .urgency-inner { gap: 1rem; }
  .urgency-item { font-size: 0.82rem; }
}

/* ── LIVE COUNTER ───────────────────────────────────────────── */
.live-counter {
  background: var(--gold-pale);
  border: 1px solid rgba(200, 153, 42, 0.3);
  border-radius: var(--r-lg);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.counter-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
}

.counter-label {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── DESTINATIONS GRID ──────────────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 960px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dest-grid { grid-template-columns: 1fr; } }

.dest-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.dest-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.dest-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.dest-card:hover .dest-card-img img { transform: scale(1.06); }

/* Gradient placeholder when image not loaded */
.dest-card-img::before {
  content: attr(data-dest);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

.dest-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(200, 153, 42, 0.92);
  backdrop-filter: blur(8px);
  color: var(--teal-darkest);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
  z-index: 2;
}

.dest-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dest-card-body h3 {
  font-size: 1.35rem;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}

.dest-card-body p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  flex: 1;
}

.dest-card-body .btn { margin-top: auto; }

/* Destination gradient backgrounds */
.dest-caribbean  { background: linear-gradient(145deg, #0e7f9e, #0a566f); }
.dest-alaska     { background: linear-gradient(145deg, #1a3a5c, #0d2d4a); }
.dest-bahamas    { background: linear-gradient(145deg, #0d9488, #0f766e); }
.dest-mediterr   { background: linear-gradient(145deg, #2d3a8c, #1e2d75); }
.dest-mexico     { background: linear-gradient(145deg, #c4712a, #a5591c); }
.dest-hawaii     { background: linear-gradient(145deg, #b83048, #961c38); }

/* ── ROUTES SECTION ─────────────────────────────────────────── */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.route-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  cursor: default;
}

.route-item:hover {
  border-color: var(--teal-base);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.route-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.route-info h4 {
  color: var(--ink);
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.route-info p {
  font-size: 0.82rem;
  color: var(--muted);
}

.route-duration {
  margin-left: auto;
  background: var(--teal-pale);
  color: var(--teal-mid);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── WHY US SECTION ─────────────────────────────────────────── */
.why-section {
  background: var(--teal-darkest);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,127,158,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.why-section .label--light { color: var(--gold-light); }
.why-section h2 { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal-base));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200, 153, 42, 0.35);
  transform: translateY(-6px);
}

.why-card:hover::after { transform: scaleX(1); }

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(200,153,42,0.2), rgba(14,127,158,0.2));
  border: 1px solid rgba(200,153,42,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.why-card h3 {
  color: var(--gold-light);
  font-size: 1.3rem;
  margin-bottom: 0.65rem;
}

.why-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* ── CALL REASONS ───────────────────────────────────────────── */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 700px) { .reasons-grid { grid-template-columns: 1fr; } }

.reason-card {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-left: 4px solid var(--teal-base);
  transition: box-shadow 0.25s;
}

.reason-card:hover { box-shadow: var(--shadow-md); }

.reason-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal-mid);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 0.1rem;
}

.reason-card h4 {
  color: var(--ink);
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.reason-card p { font-size: 0.85rem; color: var(--muted); }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.steps-section {
  background: linear-gradient(135deg, #e8f4f7 0%, #f9f6f0 100%);
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

/* Connecting line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(50% / 3);
  right: calc(50% / 3);
  height: 2px;
  background: linear-gradient(90deg, var(--teal-base), var(--gold));
  z-index: 0;
}

@media (max-width: 760px) {
  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .steps-grid::before { display: none; }
}

.step-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-dark));
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(10, 86, 111, 0.35);
}

.step-card h3 {
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}

.step-card p { color: var(--muted); font-size: 0.92rem; }

.step-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--teal-base);
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.step-tel:hover { color: var(--teal-dark); }

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--teal-base), var(--teal-dark));
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.68);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section { background: var(--teal-darkest); }
.testimonials-section h2 { color: var(--white); }

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 960px) { .test-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .test-grid { grid-template-columns: 1fr; } }

.test-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: background 0.3s, border-color 0.3s;
}

.test-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200, 153, 42, 0.3);
}

.test-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.test-text {
  color: rgba(255,255,255,0.82);
  font-size: 0.96rem;
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.test-author-name {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.9rem;
}

.test-author-loc {
  color: rgba(255,255,255,0.42);
  font-size: 0.8rem;
  margin-top: 0.1rem;
}

/* ── CRUISE LINES ───────────────────────────────────────────── */
.lines-section { background: var(--cream); }

.lines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 840px) { .lines-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .lines-grid { grid-template-columns: repeat(2, 1fr); } }

.line-badge {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.1rem 1rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-mid);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s, color 0.25s;
}

.line-badge:hover {
  border-color: var(--teal-base);
  color: var(--teal-dark);
  box-shadow: var(--shadow-md);
}

/* ── COUNTDOWN ──────────────────────────────────────────────── */
.countdown-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cd-block { text-align: center; }

.cd-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  min-width: 70px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 0.6rem 0.5rem 0.4rem;
}

.cd-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-top: 0.4rem;
  display: block;
}

.cd-sep {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: rgba(255,255,255,0.25);
  padding-bottom: 1.4rem;
}

/* ── FINAL CTA ──────────────────────────────────────────────── */
.final-cta-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-darkest) 50%, var(--teal-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,153,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-section h2 { color: var(--white); }
.final-cta-section > .container > p { color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 2rem; }

.disclaimer-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 1rem 1.5rem;
  max-width: 680px;
  margin: 2.5rem auto 0;
  color: rgba(255,255,255,0.38);
  font-size: 0.78rem;
  line-height: 1.6;
}

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--teal-darkest) 0%, var(--teal-dark) 60%, var(--teal-mid) 100%);
  padding: clamp(6rem, 12vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23f9f6f0' d='M0,30 Q720,60 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E")
    no-repeat bottom;
  background-size: cover;
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero .lead {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
  justify-content: center;
}

.breadcrumb a { color: var(--gold-light); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb span { opacity: 0.4; }

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; gap: 3rem; } }

.contact-card {
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: 2rem;
  margin-bottom: 1.25rem;
  border-left: 4px solid var(--teal-base);
}

.contact-card.featured {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-darkest));
  border-left: none;
  text-align: center;
  padding: 2.5rem;
}

.contact-card.featured h3 { color: var(--white); margin-bottom: 0.75rem; }
.contact-card.featured p { color: rgba(255,255,255,0.72); margin-bottom: 1.75rem; }

.contact-card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.contact-card h3 { font-size: 1.1rem; color: var(--ink); margin-bottom: 0.5rem; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 0.9rem; text-decoration: none; }
.contact-card a.phone-link { color: var(--teal-base); font-weight: 700; font-size: 1.15rem; display: block; margin-top: 0.4rem; }
.contact-card a.phone-link:hover { color: var(--teal-dark); }

.hours-table { width: 100%; margin-top: 0.5rem; border-collapse: collapse; }
.hours-table td { padding: 0.4rem 0; font-size: 0.88rem; color: var(--muted); border-bottom: 1px solid var(--border); }
.hours-table td:first-child { font-weight: 600; color: var(--ink-mid); width: 50%; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table tr.open td { color: var(--teal-base); font-weight: 700; }

/* Contact Form */
.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-card h2 { font-size: 1.8rem; color: var(--ink); margin-bottom: 0.4rem; }
.form-card > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-mid);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-base);
  box-shadow: 0 0 0 3px rgba(14,127,158,0.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(10,86,111,0.3);
}

.btn-submit:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10,86,111,0.4);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.9rem;
  line-height: 1.55;
}

.form-note a { color: var(--teal-base); }

/* ── ABOUT PAGE SPECIFICS ───────────────────────────────────── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 800px) { .about-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.about-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--teal-mid), var(--teal-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.about-img-placeholder span.big { font-size: 4rem; }

.about-body p {
  color: var(--ink-mid);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.callout {
  background: linear-gradient(135deg, rgba(14,127,158,0.08), rgba(7,61,80,0.06));
  border-left: 4px solid var(--teal-base);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.callout p { color: var(--teal-dark); font-weight: 600; font-size: 0.96rem; margin: 0; line-height: 1.6; }

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.value-item {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.value-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-base), var(--teal-dark));
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-item h4 { color: var(--ink); margin-bottom: 0.35rem; }
.value-item p { font-size: 0.9rem; color: var(--muted); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.team-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.team-card:hover {
  border-color: rgba(200,153,42,0.4);
  transform: translateY(-5px);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-base), var(--teal-dark));
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  overflow: hidden;
  /* Fallback for when image is present */
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-card h4 { color: var(--gold-light); font-size: 1.05rem; margin-bottom: 0.25rem; }
.team-card .role { color: rgba(255,255,255,0.45); font-size: 0.8rem; margin-bottom: 0.75rem; }
.team-card p { color: rgba(255,255,255,0.65); font-size: 0.85rem; }

/* ── LEGAL PAGES ────────────────────────────────────────────── */
.legal-body {
  background: var(--white);
  padding: 4rem 0 5rem;
}

.legal-toc {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border);
}

.legal-toc h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.legal-toc ol { padding-left: 1.4rem; }
.legal-toc li { margin-bottom: 0.4rem; }
.legal-toc a { color: var(--teal-base); font-size: 0.88rem; transition: color 0.2s; }
.legal-toc a:hover { color: var(--teal-dark); }

.legal-section { margin-bottom: 3rem; scroll-margin-top: 100px; }

.legal-section h2 {
  font-size: 1.4rem;
  color: var(--ink);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--teal-pale);
  margin-bottom: 1.25rem;
}

.legal-section p {
  color: var(--ink-mid);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul, .legal-section ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section li {
  color: var(--ink-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

.legal-section a { color: var(--teal-base); }
.legal-section strong { color: var(--ink); }

.legal-notice {
  background: linear-gradient(135deg, rgba(212,50,26,0.06), rgba(212,50,26,0.03));
  border: 1px solid rgba(212,50,26,0.2);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
}

.legal-notice p { color: #7f1d1d; font-size: 0.9rem; margin: 0; line-height: 1.65; }

.effective-date {
  background: rgba(14,127,158,0.08);
  border: 1px solid rgba(14,127,158,0.25);
  border-radius: var(--r-md);
  padding: 0.8rem 1.25rem;
  color: var(--teal-mid);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}

/* ── STICKY MOBILE CTA ──────────────────────────────────────── */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: var(--teal-darkest);
  border-top: 2px solid var(--gold);
  padding: 0.75rem 1.25rem;
  display: none;
}

.sticky-mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #d4321a, #b02210);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.95rem;
  border-radius: var(--r-md);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(212,50,26,0.4);
  transition: opacity 0.2s;
}

.sticky-mobile-cta a:active { opacity: 0.85; }

@media (max-width: 768px) {
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 78px; }
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: #040f17;
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { grid-column: 1; }
@media (max-width: 900px) { .footer-brand { grid-column: 1 / -1; } }

.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo-text .accent { color: var(--gold); }
.footer-logo-text .main   { color: var(--white); }

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
  margin-bottom: 0;
}

.footer-col h5 {
  font-family: 'Outfit', sans-serif;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-col .footer-phone {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.35rem;
}

.footer-col .footer-hours { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-disclaimer {
  font-size: 0.75rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.3);
  max-width: 720px;
}

.footer-disclaimer strong { color: rgba(255,255,255,0.45); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

/* ── SCROLL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── MISC HELPERS ───────────────────────────────────────────── */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.chip {
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  border: 1px solid rgba(14,127,158,0.25);
}

/* ── HIGHLIGHT NUMBERS (About page) ────────────────────────── */
.highlight-nums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 500px) { .highlight-nums { grid-template-columns: 1fr; } }

.hn-item {
  text-align: center;
  background: var(--teal-pale);
  border-radius: var(--r-lg);
  padding: 1.5rem 1rem;
}

.hn-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1;
}

.hn-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.4rem;
}

/* ── LOADING ANIMATION ──────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -800px 0; }
  100% { background-position: 800px 0; }
}

.img-loading {
  background: linear-gradient(90deg, #e8e8e8 25%, #f0f0f0 50%, #e8e8e8 75%);
  background-size: 800px 100%;
  animation: shimmer 1.8s infinite;
}

/* ── IMAGE NOT FOUND FALLBACK ───────────────────────────────── */
img[src$="logo.png"]::after,
img[src$="hero.jpg"]::after,
img[src$="caribbean.jpg"]::after,
img[src$="alaska.jpg"]::after,
img[src$="bahamas.jpg"]::after,
img[src$="testimonials.jpg"]::after {
  content: attr(alt);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--teal-pale);
  color: var(--muted);
  font-size: 0.8rem;
}
