/* ============================================================
   GOLD COAST LUXURY — Celebrity Beyond Frontend CSS v2.3
   Fully responsive · No overflow · All breakpoints
   ============================================================ */

/* ── CSS Variables ────────────────────────────────────────────── */
:root {
  --gcl-gold:          #F47B20;
  --gcl-gold-light:    #FFB16A;
  --gcl-gold-dark:     #C85600;
  --gcl-silver:        #B9C7D3;
  --gcl-silver-light:  #F4F8FB;
  --gcl-bg-dark:       #002B5C;
  --gcl-bg-light:      #F4F8FB;
  --gcl-accent:        #00A9E0;
  --gcl-font-heading:  'Playfair Display', serif;
  --gcl-font-body:     'Montserrat', sans-serif;
  --gcl-ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --gcl-transition:    0.3s var(--gcl-ease);
  --gcl-radius:        4px;
  --gcl-shadow:        0 8px 40px rgba(0,0,0,0.14);
  --gcl-shadow-gold:   0 4px 24px rgba(244,123,32,0.22);
  --gcl-container:     1200px;
  --gcl-gutter:        clamp(16px, 4vw, 32px);
}

/* ── Global Reset ─────────────────────────────────────────────── */
.gcl-site *, .gcl-site *::before, .gcl-site *::after {
  box-sizing: border-box;
}
.gcl-site {
  font-family: var(--gcl-font-body);
  color: #333;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* prevent any horizontal scroll */
}
.gcl-site img { max-width: 100%; height: auto; display: block; }
.gcl-site a   { text-decoration: none; transition: color var(--gcl-transition); }

/* ── Layout ───────────────────────────────────────────────────── */
.gcl-container {
  max-width: var(--gcl-container);
  margin: 0 auto;
  padding: 0 var(--gcl-gutter);
  width: 100%;
}
.gcl-text-center { text-align: center; }
.gcl-full-width  { width: 100%; }

/* ── Type helpers ─────────────────────────────────────────────── */
.gcl-gold-text   { color: var(--gcl-gold); }
.gcl-silver-text { color: var(--gcl-silver); }
.gcl-light       { color: #fff !important; }

.gcl-section-eyebrow {
  font-family: var(--gcl-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.gcl-section-title {
  font-family: var(--gcl-font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #002B5C;
}
.gcl-section-sub  {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}
.gcl-section-header { margin-bottom: clamp(32px, 5vw, 60px); }

/* ── Buttons ──────────────────────────────────────────────────── */
.gcl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--gcl-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--gcl-radius);
  cursor: pointer;
  transition: all var(--gcl-transition);
  white-space: nowrap;
  text-decoration: none;
  max-width: 100%;
}
.gcl-btn-gold {
  background: var(--gcl-gold);
  color: #002B5C;
  border-color: var(--gcl-gold);
}
.gcl-btn-gold:hover {
  background: var(--gcl-gold-light);
  border-color: var(--gcl-gold-light);
  color: #002B5C;
  transform: translateY(-2px);
  box-shadow: var(--gcl-shadow-gold);
}
.gcl-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.gcl-btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}
.gcl-btn-dark {
  background: transparent;
  color: var(--gcl-gold);
  border-color: var(--gcl-gold);
}
.gcl-btn-dark:hover { background: var(--gcl-gold); color: #002B5C; }
.gcl-btn-lg  { padding: 16px 36px; font-size: 13px; }
.gcl-btn-xl  { padding: 18px 48px; font-size: 14px; }
.gcl-btn-sm  { padding: 9px 20px;  font-size: 11px; }

/* ── ═══════════════════════════════════════════════════════════ ── */
/* ──  HEADER                                                     ── */
/* ── ═══════════════════════════════════════════════════════════ ── */
.gcl-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 80px;
  background: rgba(11,16,27,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244,123,32,0.1);
  transition: height var(--gcl-transition), background var(--gcl-transition);
  overflow: visible; /* allow mobile nav drawer */
}
.gcl-header.gcl-transparent {
  background: transparent;
  border-bottom-color: transparent;
}
.gcl-header.scrolled {
  background: rgba(11,16,27,0.97);
  border-bottom-color: rgba(244,123,32,0.15);
  height: 64px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.gcl-header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
/* Logo */
.gcl-logo-wrap  { display: flex; align-items: center; flex-shrink: 0; }
.gcl-logo-img   { transition: opacity var(--gcl-transition); max-height: 54px; width: auto; }
.gcl-logo-img:hover { opacity: 0.85; }
.gcl-logo-text  {
  font-family: var(--gcl-font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--gcl-gold);
  white-space: nowrap;
}
.gcl-logo-fallback,
.gcl-footer-logo-fallback { filter: drop-shadow(0 10px 30px rgba(0,0,0,0.18)); }
/* Desktop Nav */
.gcl-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.gcl-nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(232,232,232,0.88);
  padding: 8px 12px;
  border-radius: 3px;
  transition: all var(--gcl-transition);
  position: relative;
  white-space: nowrap;
}
.gcl-nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 12px; right: 12px;
  height: 1px;
  background: var(--gcl-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--gcl-transition);
}
.gcl-nav-link:hover              { color: var(--gcl-gold); }
.gcl-nav-link:hover::after       { transform: scaleX(1); transform-origin: left; }
.gcl-nav-reserve  { margin-left: 6px; }

/* Hamburger */
.gcl-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
  flex-shrink: 0;
}
.gcl-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--gcl-transition);
}
.gcl-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gcl-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.gcl-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 900px) {
  .gcl-hamburger { display: flex; }
  .gcl-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: #002B5C;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 90px 28px 40px;
    gap: 2px;
    transition: right 0.38s var(--gcl-ease);
    border-left: 1px solid rgba(244,123,32,0.12);
    overflow-y: auto;
    z-index: 10000;
  }
  .gcl-nav.open     { right: 0; }
  .gcl-nav-link     { padding: 13px 0; font-size: 13px; width: 100%; }
  .gcl-nav-link::after { bottom: 9px; left: 0; right: 0; }
  .gcl-nav-reserve  { margin: 14px 0 0; }
}

/* ── ═══════════════════════════════════════════════════════════ ── */
/* ──  HERO                                                       ── */
/* ── ═══════════════════════════════════════════════════════════ ── */
.gcl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--gcl-bg-dark);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.gcl-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.gcl-hero-overlay, .gcl-hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.gcl-hero-gradient {
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.1)  0%,
    transparent         35%,
    rgba(10,10,10,0.45) 75%,
    rgba(10,10,10,0.92) 100%
  );
}
.gcl-hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(100px,16vw,160px) var(--gcl-gutter) clamp(40px,6vw,80px);
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.gcl-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  animation: gcl-fade-up 0.8s ease both;
}
.gcl-hero-headline {
  font-family: var(--gcl-font-heading);
  font-size: clamp(2.2rem, 7vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  word-break: break-word;
  animation: gcl-fade-up 0.8s 0.12s ease both;
}
.gcl-hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.84);
  line-height: 1.7;
  margin-bottom: 28px;
  animation: gcl-fade-up 0.8s 0.22s ease both;
}
.gcl-hero-divider {
  margin: 0 auto 32px;
  animation: gcl-fade-up 0.8s 0.28s ease both;
}
.gcl-hero-divider span {
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gcl-gold), transparent);
  margin: 0 auto;
}
.gcl-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: gcl-fade-up 0.8s 0.36s ease both;
}
.gcl-hero-content::before {
  content: '';
  position: absolute;
  inset: 70px 20px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(188,160,104,0.55), transparent);
}
/* Trust badges */
.gcl-trust-badges {
  position: relative;
  z-index: 2;
  background: rgba(10,10,10,0.72);
  border-top: 1px solid rgba(244,123,32,0.18);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.gcl-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px var(--gcl-gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
}
.gcl-trust-item {
  font-size: 12px;
  color: rgba(232,232,232,0.85);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
/* Secure Global Booking Engine */
.gcl-pa-container {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #f6f0e5 0%, #ffffff 100%);
  border-top: 3px solid var(--gcl-gold);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}
.gcl-pa-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px var(--gcl-gutter);
  overflow: hidden;
}
.gcl-pa-title {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: #333;
  margin-bottom: 14px;
}
.gcl-pa-embed       { width: 100%; overflow-x: auto; }
.gcl-pa-embed > *   { max-width: 100% !important; }
.gcl-pa-fallback    { text-align: center; padding: 12px 0; }
.gcl-pa-fallback-text { color: #555; margin-bottom: 14px; font-size: 0.92rem; }
.gcl-admin-notice   { margin-top: 10px; font-size: 12px; color: #888; }
.gcl-admin-notice a { color: var(--gcl-gold); }

/* ── ═══════════════════════════════════════════════════════════ ── */
/* ──  COUNTDOWN                                                  ── */
/* ── ═══════════════════════════════════════════════════════════ ── */
.gcl-countdown-section {
  background: var(--gcl-bg-dark);
  padding: clamp(48px, 8vw, 80px) var(--gcl-gutter);
  text-align: center;
  overflow: hidden;
}
.gcl-countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 1.5vw, 12px);
  margin: 20px 0;
  flex-wrap: wrap;
}
.gcl-cd-block { display: flex; flex-direction: column; align-items: center; min-width: 70px; }
.gcl-cd-number {
  font-family: var(--gcl-font-heading);
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--gcl-gold);
  line-height: 1;
  letter-spacing: -2px;
}
.gcl-cd-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gcl-silver);
  margin-top: 6px;
  font-weight: 500;
}
.gcl-cd-sep {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: rgba(244,123,32,0.4);
  line-height: 1;
  align-self: flex-start;
  padding-top: 4px;
}
.gcl-countdown-sub {
  color: var(--gcl-silver);
  font-size: 0.92rem;
  margin-top: 6px;
}
.gcl-countdown-cta { margin-top: 28px; }
.gcl-cd-expired    { color: var(--gcl-gold); font-size: 1.3rem; margin-top: 16px; }

/* ── ═══════════════════════════════════════════════════════════ ── */
/* ──  ABOUT                                                      ── */
/* ── ═══════════════════════════════════════════════════════════ ── */
.gcl-about { background: var(--gcl-bg-light); padding: clamp(60px, 10vw, 100px) 0; overflow: hidden; }
.gcl-about-inner {
  max-width: var(--gcl-container);
  margin: 0 auto;
  padding: 0 var(--gcl-gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.gcl-about-headline {
  font-family: var(--gcl-font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #002B5C;
  line-height: 1.25;
  margin-bottom: 18px;
}
.gcl-about-img-wrap { position: relative; border-radius: 8px; overflow: hidden; }
.gcl-about-img { width: 100%; height: clamp(280px, 45vw, 500px); object-fit: cover; }
.gcl-about-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: rgba(10,10,10,0.92);
  border: 1px solid var(--gcl-gold);
  border-radius: var(--gcl-radius);
  padding: 14px 18px;
  text-align: center;
  color: #fff;
}
.gcl-about-badge-num  { display: block; font-family: var(--gcl-font-heading); font-size: 2.2rem; font-weight: 700; color: var(--gcl-gold); line-height: 1; }
.gcl-about-badge-label{ font-size: 10px; letter-spacing: 1px; color: var(--gcl-silver); text-transform: uppercase; }
.gcl-about-placeholder {
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  border: 1px dashed rgba(244,123,32,0.25);
  border-radius: 8px;
  height: clamp(240px, 40vw, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gcl-about-ph-inner { text-align: center; color: var(--gcl-silver); }
.gcl-about-ph-icon  { font-size: 3.5rem; display: block; margin-bottom: 10px; }
.gcl-about-divider  { width: 56px; height: 2px; background: linear-gradient(90deg, var(--gcl-gold), transparent); margin-bottom: 20px; }
.gcl-about-body     { color: #444; line-height: 1.85; margin-bottom: 28px; }
.gcl-about-body p   { margin-bottom: 14px; }
.gcl-about-features { margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.gcl-about-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: rgba(244,123,32,0.06);
  border-left: 3px solid var(--gcl-gold);
  border-radius: 0 var(--gcl-radius) var(--gcl-radius) 0;
  transition: background var(--gcl-transition);
}
.gcl-about-feat:hover    { background: rgba(244,123,32,0.11); }
.gcl-about-feat-icon     { font-size: 1.4rem; flex-shrink: 0; }
.gcl-about-feat-title    { display: block; font-weight: 700; color: #002B5C; font-size: 0.88rem; margin-bottom: 2px; }
.gcl-about-feat-desc     { display: block; font-size: 0.82rem; color: #666; }

/* ── ═══════════════════════════════════════════════════════════ ── */
/* ──  INVESTOR BENEFITS                                          ── */
/* ── ═══════════════════════════════════════════════════════════ ── */
.gcl-benefits { background: var(--gcl-bg-dark); padding: clamp(60px, 10vw, 100px) 0; overflow: hidden; }
.gcl-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.gcl-benefit-card {
  background: #073B78;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 40px) clamp(16px, 2.5vw, 28px);
  text-align: center;
  transition: all var(--gcl-transition);
  position: relative;
  overflow: hidden;
}
.gcl-benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gcl-gold), transparent);
  transform: scaleX(0);
  transition: transform var(--gcl-transition);
}
.gcl-benefit-card:hover { border-color: rgba(244,123,32,0.25); transform: translateY(-4px); box-shadow: var(--gcl-shadow-gold); }
.gcl-benefit-card:hover::before { transform: scaleX(1); }
.gcl-benefit-icon-wrap {
  width: 64px; height: 64px;
  border: 1px solid rgba(244,123,32,0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  background: rgba(244,123,32,0.04);
  transition: border-color var(--gcl-transition);
}
.gcl-benefit-card:hover .gcl-benefit-icon-wrap { border-color: var(--gcl-gold); }
.gcl-benefit-icon  { font-size: 1.6rem; }
.gcl-benefit-title { font-family: var(--gcl-font-heading); font-size: 1.1rem; color: #fff; margin-bottom: 10px; font-weight: 600; }
.gcl-benefit-desc  { font-size: 0.84rem; color: var(--gcl-silver); line-height: 1.7; }

/* ── ═══════════════════════════════════════════════════════════ ── */
/* ──  ITINERARY                                                  ── */
/* ── ═══════════════════════════════════════════════════════════ ── */
.gcl-itinerary { background: var(--gcl-bg-light); padding: clamp(60px, 10vw, 100px) 0; overflow: hidden; }
.gcl-itin-timeline {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  padding: 10px 0;
}
.gcl-itin-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gcl-gold) 8%, var(--gcl-gold) 92%, transparent);
  transform: translateX(-50%);
}
.gcl-itin-row {
  display: flex;
  justify-content: flex-end;
  padding: 0 0 32px;
  position: relative;
}
.gcl-itin-right { justify-content: flex-start; }
.gcl-itin-card {
  width: calc(50% - 44px);
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(244,123,32,0.12);
  padding: 0;
  position: relative;
  transition: all var(--gcl-transition);
  box-shadow: 0 3px 16px rgba(0,0,0,0.07);
  overflow: hidden;
}
.gcl-itin-card:hover { border-color: var(--gcl-gold); transform: translateY(-2px); box-shadow: var(--gcl-shadow-gold); }
.gcl-itin-card-inner { padding: 24px; }
.gcl-itin-visual { position: relative; min-height: clamp(220px, 27vw, 310px); background-size: cover; background-position: center; display: flex; align-items: flex-end; }
.gcl-itin-visual-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,43,92,0.78) 0%, rgba(0,43,92,0.18) 55%, rgba(0,0,0,0.05) 100%); }
.gcl-itin-image-label { position: relative; z-index: 1; display: inline-block; margin: 0 18px 18px; color: #fff; font-family: var(--gcl-font-heading); font-size: clamp(1.05rem, 2vw, 1.45rem); font-weight: 700; text-shadow: 0 2px 16px rgba(0,0,0,0.45); }
.gcl-itin-excursion-btn { display: inline-flex; align-items: center; justify-content: center; margin-top: 14px; padding: 10px 14px; border-radius: 999px; background: var(--gcl-bg-dark); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.gcl-itin-excursion-btn:hover { color: #fff; background: var(--gcl-gold-dark); }
/* Dot */
.gcl-itin-dot {
  position: absolute;
  top: 20px;
  width: 40px; height: 40px;
  background: var(--gcl-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 5px rgba(244,123,32,0.15);
}
.gcl-itin-left  .gcl-itin-dot { right: -62px; }
.gcl-itin-right .gcl-itin-dot { left:  -62px; }
.gcl-itin-icon  { font-size: 1rem; }
.gcl-itin-meta  { display: flex; gap: 10px; margin-bottom: 6px; align-items: center; }
.gcl-itin-day   { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gcl-gold); }
.gcl-itin-date  { font-size: 11px; color: #888; }
.gcl-itin-port  { font-family: var(--gcl-font-heading); font-size: 1.1rem; font-weight: 700; color: #002B5C; margin-bottom: 6px; }
.gcl-itin-desc  { font-size: 0.84rem; color: #555; line-height: 1.6; margin-bottom: 10px; }
.gcl-itin-type-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(244,123,32,0.1);
  color: var(--gcl-gold-dark);
}
.gcl-itin-type-sea .gcl-itin-type-badge { background: rgba(26,58,92,0.1); color: var(--gcl-accent); }

/* ── ═══════════════════════════════════════════════════════════ ── */
/* ──  SHIP                                                       ── */
/* ── ═══════════════════════════════════════════════════════════ ── */
.gcl-ship { background: var(--gcl-bg-dark); padding: clamp(60px, 10vw, 100px) 0; overflow: hidden; }
.gcl-ship-subline { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 40px; }
.gcl-ship-img-wrap {
  position: relative;
  margin-bottom: 48px;
  border-radius: 8px;
  overflow: hidden;
}
.gcl-ship-img { width: 100%; height: clamp(200px, 40vw, 460px); object-fit: cover; }
.gcl-ship-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 55%);
  padding: clamp(20px, 4vw, 40px) clamp(20px, 4vw, 48px);
}
.gcl-ship-stats { display: flex; gap: clamp(20px, 4vw, 48px); flex-wrap: wrap; }
.gcl-ship-stat  { text-align: center; }
.gcl-ship-stat-num   { display: block; font-family: var(--gcl-font-heading); font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; color: var(--gcl-gold); line-height: 1; }
.gcl-ship-stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gcl-silver); margin-top: 5px; }
.gcl-ship-desc-row { max-width: 760px; margin: 0 auto 48px; }
.gcl-ship-desc { color: var(--gcl-silver); line-height: 1.85; font-size: 1rem; text-align: center; }
.gcl-ship-desc p { margin-bottom: 14px; }
.gcl-ship-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 20px);
  margin-bottom: 48px;
}
.gcl-ship-feat {
  background: #073B78;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px) clamp(14px, 2vw, 20px);
  text-align: center;
  transition: all var(--gcl-transition);
}
.gcl-ship-feat:hover   { border-color: rgba(244,123,32,0.25); transform: translateY(-3px); }
.gcl-ship-feat-icon    { font-size: 1.8rem; margin-bottom: 12px; }
.gcl-ship-feat-title   { font-family: var(--gcl-font-heading); font-size: 0.95rem; color: #fff; margin-bottom: 7px; font-weight: 600; }
.gcl-ship-feat-desc    { font-size: 0.8rem; color: var(--gcl-silver); line-height: 1.6; }
.gcl-ship-cta          { padding-top: 12px; }

/* ── ═══════════════════════════════════════════════════════════ ── */
/* ──  HOST                                                       ── */
/* ── ═══════════════════════════════════════════════════════════ ── */
.gcl-host { background: var(--gcl-bg-light); padding: clamp(60px, 10vw, 100px) 0; overflow: hidden; }
.gcl-host-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--gcl-shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  max-width: 1040px;
  margin: 0 auto;
}
.gcl-host-photo-wrap { position: relative; overflow: hidden; }
.gcl-host-photo      { width: 100%; height: 100%; min-height: 500px; object-fit: cover; display: block; }
.gcl-host-photo-placeholder {
  background: linear-gradient(135deg, #eee, #ddd);
  min-height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.gcl-host-photo-placeholder span { font-size: 5rem; opacity: 0.2; }
.gcl-host-photo-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
  padding: 40px 24px 20px;
  color: #fff;
}
.gcl-host-badge-name  { font-family: var(--gcl-font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 3px; }
.gcl-host-badge-title { font-size: 0.82rem; color: var(--gcl-gold); letter-spacing: 0.3px; }
.gcl-host-content  {
  padding: clamp(28px, 4vw, 52px) clamp(24px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gcl-host-tag   { display: flex; align-items: center; gap: 10px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--gcl-gold); margin-bottom: 16px; flex-wrap: wrap; }
.gcl-host-anchor-note      { color: #aaa; font-weight: 400; font-size: 10px; }
.gcl-host-anchor-note code { background: #f5f5f5; padding: 2px 5px; border-radius: 3px; font-family: monospace; color: var(--gcl-accent); }
.gcl-host-name   { font-family: var(--gcl-font-heading); font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; color: #002B5C; margin-bottom: 5px; }
.gcl-host-title  { font-size: 0.9rem; margin-bottom: 20px; }
.gcl-host-divider{ width: 48px; height: 2px; background: linear-gradient(90deg, var(--gcl-gold), transparent); margin-bottom: 20px; }
.gcl-host-bio    { color: #444; line-height: 1.85; margin-bottom: 22px; font-size: 0.92rem; }
.gcl-host-bio p  { margin-bottom: 12px; }
.gcl-host-quote  {
  font-family: var(--gcl-font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--gcl-gold);
  border-left: 3px solid var(--gcl-gold);
  padding-left: 18px;
  margin-bottom: 28px;
  line-height: 1.65;
}
.gcl-host-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.gcl-host-secondary {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(244,123,32,0.13);
  padding: clamp(20px, 3vw, 32px) clamp(20px, 3vw, 40px);
  margin: 28px auto 0;
  max-width: 1040px;
  flex-wrap: wrap;
}
.gcl-host-sec-photo { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--gcl-gold); }
.gcl-host-sec-name  { font-family: var(--gcl-font-heading); font-size: 1.1rem; margin-bottom: 3px; }
.gcl-host-sec-title { font-size: 0.82rem; margin-bottom: 6px; }
.gcl-host-sec-bio   { font-size: 0.84rem; color: #555; line-height: 1.65; }

/* ── ═══════════════════════════════════════════════════════════ ── */
/* ──  GALLERY                                                    ── */
/* ── ═══════════════════════════════════════════════════════════ ── */
.gcl-gallery-section { background: var(--gcl-bg-dark); padding-top: clamp(60px, 10vw, 100px); padding-bottom: 0; overflow: hidden; }
.gcl-gallery-grid    { display: grid; gap: clamp(4px, 1vw, 8px); }
.gcl-gallery-cols-2  { grid-template-columns: repeat(2, 1fr); }
.gcl-gallery-cols-3  { grid-template-columns: repeat(3, 1fr); }
.gcl-gallery-cols-4  { grid-template-columns: repeat(4, 1fr); }
.gcl-gallery-item    { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gcl-gallery-link    { display: block; width: 100%; height: 100%; }
.gcl-gallery-img     { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.gcl-gallery-item:hover .gcl-gallery-img { transform: scale(1.06); }
.gcl-gallery-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0); display: flex; align-items: center; justify-content: center; transition: background var(--gcl-transition); }
.gcl-gallery-item:hover .gcl-gallery-overlay { background: rgba(10,10,10,0.42); }
.gcl-gallery-zoom    { font-size: 1.8rem; opacity: 0; transform: scale(0.7); transition: all var(--gcl-transition); }
.gcl-gallery-item:hover .gcl-gallery-zoom { opacity: 1; transform: scale(1); }
.gcl-gallery-placeholder  { background: #073B78; }
.gcl-gallery-ph           { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.gcl-gallery-ph-icon      { font-size: 1.8rem; opacity: 0.25; }
.gcl-gallery-ph-label     { font-size: 10px; color: rgba(255,255,255,0.25); letter-spacing: 1px; text-align: center; padding: 0 8px; }
.gcl-gallery-admin-notice { padding: 20px; text-align: center; color: var(--gcl-silver); font-size: 12px; grid-column: 1/-1; }
.gcl-gallery-admin-notice a { color: var(--gcl-gold); }

/* Lightbox */
.gcl-lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.gcl-lightbox-img-wrap { max-width: 90vw; max-height: 85vh; }
.gcl-lightbox-img      { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.gcl-lightbox-close, .gcl-lightbox-prev, .gcl-lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--gcl-transition);
  z-index: 100000;
}
.gcl-lightbox-close { top: 16px; right: 16px; }
.gcl-lightbox-prev  { left: 12px; top: 50%; transform: translateY(-50%); }
.gcl-lightbox-next  { right: 12px; top: 50%; transform: translateY(-50%); }
.gcl-lightbox-close:hover, .gcl-lightbox-prev:hover, .gcl-lightbox-next:hover { background: rgba(244,123,32,0.28); }
.gcl-lightbox-counter { position: fixed; bottom: 14px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.45); font-size: 12px; }

/* ── ═══════════════════════════════════════════════════════════ ── */
/* ──  TESTIMONIALS                                               ── */
/* ── ═══════════════════════════════════════════════════════════ ── */
.gcl-testimonials { background: var(--gcl-bg-light); padding: clamp(60px, 10vw, 100px) 0; overflow: hidden; }
.gcl-testi-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 28px); }
.gcl-testi-card   { background: #fff; border-radius: 8px; padding: clamp(22px, 3vw, 36px) clamp(18px, 2.5vw, 32px); box-shadow: var(--gcl-shadow); border: 1px solid rgba(244,123,32,0.08); transition: transform var(--gcl-transition); }
.gcl-testi-card:hover { transform: translateY(-4px); }
.gcl-testi-stars      { color: var(--gcl-gold); font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.gcl-testi-quote-mark { display: block; font-family: var(--gcl-font-heading); font-size: 4.5rem; line-height: 0.5; color: rgba(244,123,32,0.14); margin-bottom: 14px; }
.gcl-testi-quote      { font-style: italic; color: #444; line-height: 1.75; margin-bottom: 24px; font-size: 0.91rem; }
.gcl-testi-author     { display: flex; align-items: center; gap: 12px; }
.gcl-testi-avatar     { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gcl-gold); flex-shrink: 0; }
.gcl-testi-avatar-ph  { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--gcl-gold), var(--gcl-gold-dark)); color: #002B5C; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gcl-testi-name       { display: block; font-weight: 700; color: #002B5C; font-size: 0.9rem; }
.gcl-testi-title      { display: block; font-size: 0.79rem; color: #888; margin-top: 2px; }

/* ── ═══════════════════════════════════════════════════════════ ── */
/* ──  FAQ                                                        ── */
/* ── ═══════════════════════════════════════════════════════════ ── */
.gcl-faq { background: var(--gcl-bg-dark); padding: clamp(60px, 10vw, 100px) 0; overflow: hidden; }
.gcl-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.gcl-faq-item { background: #073B78; border: 1px solid rgba(255,255,255,0.05); border-left: 3px solid transparent; border-radius: 4px; overflow: hidden; transition: border-color var(--gcl-transition); }
.gcl-faq-item.active { border-left-color: var(--gcl-gold); }
.gcl-faq-q  { width: 100%; background: none; border: none; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 14px; cursor: pointer; text-align: left; color: #fff; font-family: var(--gcl-font-body); font-size: 0.9rem; font-weight: 500; transition: color var(--gcl-transition); }
.gcl-faq-q:hover { color: var(--gcl-gold); }
.gcl-faq-icon { font-size: 1.3rem; color: var(--gcl-gold); flex-shrink: 0; transition: transform var(--gcl-transition); line-height: 1; }
.gcl-faq-item.active .gcl-faq-icon { transform: rotate(45deg); }
.gcl-faq-a    { padding: 0 20px 16px; }
.gcl-faq-a p  { color: var(--gcl-silver); line-height: 1.75; font-size: 0.88rem; }

/* ── ═══════════════════════════════════════════════════════════ ── */
/* ──  BOOKING FORM                                               ── */
/* ── ═══════════════════════════════════════════════════════════ ── */
.gcl-form-section { background: var(--gcl-bg-dark); padding: clamp(60px, 10vw, 100px) 0; overflow: hidden; }
.gcl-form-layout  { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.gcl-form-intro .gcl-section-title { color: #fff; }
.gcl-form-sub { color: var(--gcl-silver); line-height: 1.7; margin-top: 14px; margin-bottom: 28px; font-size: 0.92rem; }
.gcl-form-perks  { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.gcl-form-perk   { display: flex; align-items: center; gap: 10px; color: var(--gcl-silver); font-size: 0.86rem; }
.gcl-form-perk span { color: var(--gcl-gold); font-weight: 700; }
.gcl-form-pa-link   { margin-top: 24px; }
.gcl-form-pa-link p { color: var(--gcl-silver); font-size: 0.82rem; margin-bottom: 10px; }
/* Form card */
.gcl-form-card {
  background: #073B78;
  border: 1px solid rgba(244,123,32,0.14);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 40px);
  position: relative;
}
.gcl-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gcl-gold-dark), var(--gcl-gold), var(--gcl-gold-dark));
  border-radius: 12px 12px 0 0;
}
.gcl-form-grid       { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.gcl-form-group      { display: flex; flex-direction: column; gap: 6px; }
.gcl-form-group.gcl-full { grid-column: 1/-1; }
.gcl-label    { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gcl-silver-light); }
.gcl-required { color: var(--gcl-gold); }
.gcl-input, .gcl-select, .gcl-textarea {
  background: #1c1c1c;
  border: 1px solid #2e2e2e;
  border-radius: var(--gcl-radius);
  color: #F8F4EE;
  font-family: var(--gcl-font-body);
  font-size: 0.88rem;
  padding: 11px 14px;
  transition: border-color var(--gcl-transition), box-shadow var(--gcl-transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.gcl-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F47B20' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.gcl-input:focus, .gcl-select:focus, .gcl-textarea:focus {
  outline: none;
  border-color: var(--gcl-gold);
  box-shadow: 0 0 0 3px rgba(244,123,32,0.1);
}
.gcl-input::placeholder, .gcl-textarea::placeholder { color: rgba(192,192,192,0.35); }
.gcl-textarea { resize: vertical; min-height: 90px; }
.gcl-form-disclaimer { font-size: 11px; color: rgba(192,192,192,0.5); line-height: 1.6; margin-bottom: 18px; }
.gcl-form-submit     { width: 100%; justify-content: center; font-size: 13px; padding: 16px; }
.gcl-form-messages   { margin-top: 14px; padding: 12px 16px; border-radius: var(--gcl-radius); font-size: 0.86rem; font-weight: 500; }
.gcl-form-messages.success { background: rgba(74,153,98,0.12); border: 1px solid rgba(74,153,98,0.28); color: #5da870; }
.gcl-form-messages.error   { background: rgba(220,80,80,0.1);  border: 1px solid rgba(220,80,80,0.22);  color: #e07070; }

/* ── ═══════════════════════════════════════════════════════════ ── */
/* ──  CTA BANNER                                                 ── */
/* ── ═══════════════════════════════════════════════════════════ ── */
.gcl-cta-banner {
  position: relative;
  padding: clamp(80px, 14vw, 140px) var(--gcl-gutter);
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* fixed can overflow on iOS */
  overflow: hidden;
}
.gcl-cta-overlay { position: absolute; inset: 0; }
.gcl-cta-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.gcl-cta-eyebrow  { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; font-weight: 600; margin-bottom: 18px; }
.gcl-cta-headline { font-family: var(--gcl-font-heading); font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; color: #fff; margin-bottom: 18px; line-height: 1.15; word-break: break-word; }
.gcl-cta-sub      { color: rgba(255,255,255,0.78); font-size: clamp(0.9rem, 2vw, 1.05rem); line-height: 1.7; margin-bottom: 22px; }
.gcl-cta-urgency  { display: inline-block; background: rgba(244,123,32,0.12); border: 1px solid rgba(244,123,32,0.28); color: var(--gcl-gold-light); padding: 7px 18px; border-radius: 30px; font-size: 0.84rem; margin-bottom: 28px; }
.gcl-cta-actions  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── ═══════════════════════════════════════════════════════════ ── */
/* ──  FOOTER                                                     ── */
/* ── ═══════════════════════════════════════════════════════════ ── */
.gcl-footer { background: #050505; overflow: hidden; }
.gcl-footer-top  { padding: clamp(48px, 8vw, 80px) 0 clamp(36px, 6vw, 60px); }
.gcl-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: clamp(24px, 4vw, 48px); }
.gcl-footer-logo-wrap  { display: inline-flex; margin-bottom: 14px; }
.gcl-footer-logo       { opacity: 0.9; transition: opacity var(--gcl-transition); max-height: 48px; width: auto; }
.gcl-footer-logo:hover { opacity: 1; }
.gcl-footer-logo-text  { font-family: var(--gcl-font-heading); font-size: 1.3rem; font-weight: 700; color: var(--gcl-gold); }
.gcl-footer-tagline    { font-size: 0.82rem; margin-bottom: 12px; }
.gcl-footer-desc       { font-size: 0.84rem; color: rgba(192,192,192,0.65); line-height: 1.7; margin-bottom: 22px; }
.gcl-footer-social     { display: flex; gap: 8px; flex-wrap: wrap; }
.gcl-social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: all var(--gcl-transition);
}
.gcl-social-icon:hover { background: rgba(244,123,32,0.14); border-color: var(--gcl-gold); transform: translateY(-2px); }
.gcl-footer-col-heading { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gcl-gold); margin-bottom: 18px; }
.gcl-footer-links, .gcl-footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 9px; padding: 0; margin: 0; }
.gcl-footer-link    { font-size: 0.86rem; color: rgba(192,192,192,0.7); transition: color var(--gcl-transition); }
.gcl-footer-link:hover { color: var(--gcl-gold); }
.gcl-footer-address, .gcl-footer-date { font-size: 0.84rem; color: rgba(192,192,192,0.55); line-height: 1.5; }
.gcl-footer-date    { color: var(--gcl-gold); font-weight: 500; margin-top: 4px; }
.gcl-footer-cta     { margin-top: 18px; font-size: 11px; padding: 10px 20px; }
.gcl-footer-divider { border: none; border-top: 1px solid rgba(244,123,32,0.08); margin: 0; }
.gcl-footer-bar     { padding: 18px 0; }
.gcl-footer-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.gcl-footer-copy       { font-size: 0.79rem; color: rgba(192,192,192,0.38); }
.gcl-footer-legal      { display: flex; gap: 20px; flex-wrap: wrap; }
.gcl-footer-legal-link { font-size: 0.79rem; color: rgba(192,192,192,0.38); transition: color var(--gcl-transition); }
.gcl-footer-legal-link:hover { color: var(--gcl-gold); }
.gcl-footer-disclaimer { font-size: 0.74rem; color: rgba(192,192,192,0.28); line-height: 1.6; margin-top: 8px; }

/* ── Scroll to top ────────────────────────────────────────────── */
.gcl-scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 46px; height: 46px;
  background: var(--gcl-gold); color: #002B5C;
  border: none; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; opacity: 0; pointer-events: none;
  transition: all var(--gcl-transition); z-index: 888;
  box-shadow: var(--gcl-shadow-gold);
}
.gcl-scroll-top.visible { opacity: 1; pointer-events: auto; }
.gcl-scroll-top:hover   { background: var(--gcl-gold-light); transform: translateY(-3px); }

/* ── Animations ───────────────────────────────────────────────── */
@keyframes gcl-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes gcl-ken-burns {
  from { background-size: 100%; }
  to   { background-size: 108%; }
}
.gcl-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.gcl-reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── Elementor canvas overrides ───────────────────────────────── */
.elementor-section-full_width > .elementor-container { max-width: none !important; padding: 0 !important; }
.elementor-column-wrap { padding: 0 !important; }
.gcl-site .elementor-section { overflow: visible; }
/* Offset for fixed header */
.gcl-site .elementor-section:first-child { margin-top: 0; }

/* ── ═══════════════════════════════════════════════════════════ ── */
/* ──  RESPONSIVE BREAKPOINTS                                     ── */
/* ── ═══════════════════════════════════════════════════════════ ── */

/* 1200px — tighten ship features & footer */
@media (max-width: 1200px) {
  .gcl-ship-features { grid-template-columns: repeat(3, 1fr); }
  .gcl-footer-grid   { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .gcl-footer-brand  { grid-column: 1 / -1; }
}

/* 1024px */
@media (max-width: 1024px) {
  .gcl-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .gcl-ship-features { grid-template-columns: repeat(2, 1fr); }
  .gcl-host-card     { grid-template-columns: 300px 1fr; }
}

/* 900px — tablet */
@media (max-width: 900px) {
  /* About */
  .gcl-about-inner { grid-template-columns: 1fr; }
  .gcl-about-left .gcl-about-media, .gcl-about-right .gcl-about-media { order: -1; }
  .gcl-about-img   { height: clamp(240px, 50vw, 380px); }

  /* Itinerary — left-aligned single column */
  .gcl-itin-line   { left: 20px; }
  .gcl-itin-row, .gcl-itin-right { justify-content: flex-end; padding-left: 60px; }
  .gcl-itin-card   { width: 100%; }
  .gcl-itin-left  .gcl-itin-dot { right: auto; left: -42px; }
  .gcl-itin-right .gcl-itin-dot { left: -42px; }

  /* Ship */
  .gcl-ship-img    { height: clamp(180px, 40vw, 320px); }
  .gcl-ship-img-overlay { padding: 16px 20px; }
  .gcl-ship-stats  { gap: clamp(12px, 3vw, 28px); }
  .gcl-ship-features { grid-template-columns: repeat(2, 1fr); }

  /* Host */
  .gcl-host-card   { grid-template-columns: 1fr; }
  .gcl-host-photo  { min-height: 320px; height: clamp(280px, 50vw, 400px); }
  .gcl-host-content { padding: 32px 28px; }

  /* Form */
  .gcl-form-layout { grid-template-columns: 1fr; }

  /* Testimonials */
  .gcl-testi-grid  { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .gcl-gallery-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .gcl-gallery-cols-3 { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .gcl-footer-grid { grid-template-columns: 1fr 1fr; }
  .gcl-footer-brand { grid-column: 1 / -1; }
}

/* 680px — large mobile */
@media (max-width: 680px) {
  /* Benefits */
  .gcl-benefits-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .gcl-testi-grid  { grid-template-columns: 1fr; }

  /* Host secondary */
  .gcl-host-secondary { flex-direction: column; text-align: center; align-items: center; }

  /* Form grid */
  .gcl-form-grid   { grid-template-columns: 1fr; }
  .gcl-form-group.gcl-full { grid-column: auto; }

  /* Gallery */
  .gcl-gallery-cols-2,
  .gcl-gallery-cols-3,
  .gcl-gallery-cols-4 { grid-template-columns: 1fr; }

  /* Footer */
  .gcl-footer-grid { grid-template-columns: 1fr; }

  /* CTA */
  .gcl-cta-actions { flex-direction: column; align-items: center; }
  .gcl-cta-actions .gcl-btn { width: 100%; max-width: 340px; }
}

/* 480px — small mobile */
@media (max-width: 480px) {
  /* Hero */
  .gcl-hero-content { padding-top: clamp(80px, 22vw, 110px); }
  .gcl-hero-actions { flex-direction: column; align-items: center; }
  .gcl-hero-actions .gcl-btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Trust badges — scroll horizontally on very small screens */
  .gcl-trust-inner { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-right: 16px; scrollbar-width: none; }
  .gcl-trust-inner::-webkit-scrollbar { display: none; }

  /* Countdown */
  .gcl-countdown-timer { gap: 4px; }
  .gcl-cd-block { min-width: 60px; }
  .gcl-cd-sep   { font-size: 2rem; }

  /* Itinerary */
  .gcl-itin-row, .gcl-itin-right { padding-left: 48px; }
  .gcl-itin-left  .gcl-itin-dot,
  .gcl-itin-right .gcl-itin-dot  { width: 32px; height: 32px; left: -40px; }
  .gcl-itin-line  { left: 16px; }

  /* Ship stats */
  .gcl-ship-features { grid-template-columns: 1fr; }

  /* Scroll top */
  .gcl-scroll-top { bottom: 14px; right: 14px; width: 40px; height: 40px; }

  /* Footer bar */
  .gcl-footer-bar-inner { flex-direction: column; text-align: center; }
  .gcl-footer-legal { justify-content: center; }
}

.gcl-host-anchor-note{display:none;}


/* ── STATEROOMS & PRICING ───────────────────────────────────── */
.gcl-staterooms {
  padding: clamp(70px, 9vw, 120px) 0;
  position: relative;
}
.gcl-inventory-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 0 auto clamp(24px, 4vw, 40px);
}
.gcl-inventory-summary div {
  background: #fff;
  border: 1px solid rgba(0,43,92,0.10);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,43,92,0.07);
}
.gcl-inventory-summary strong {
  display: block;
  font-family: var(--gcl-font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
  color: var(--gcl-gold);
  margin-bottom: 6px;
}
.gcl-inventory-summary span {
  display: block;
  color: #5d7184;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.gcl-payment-vault-ready {
  margin-top: 24px;
  border: 1px dashed rgba(244,123,32,0.45);
  border-radius: 16px;
  padding: 22px;
  background: rgba(255,255,255,0.06);
}
.gcl-payment-vault-ready h3 {
  font-family: var(--gcl-font-heading);
  color: #fff;
  margin: 0 0 8px;
  font-size: 1.2rem;
}
.gcl-payment-vault-ready p {
  color: rgba(255,255,255,0.74);
  line-height: 1.65;
  margin: 0;
  font-size: 0.9rem;
}
.gcl-payment-vault-ready .gcl-payment-eyebrow {
  color: var(--gcl-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.gcl-cabin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.gcl-cabin-card {
  border: 1px solid rgba(0,43,92,0.12);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 14px 40px rgba(0,43,92,0.08);
  transition: transform var(--gcl-transition), box-shadow var(--gcl-transition), border-color var(--gcl-transition);
  overflow: hidden;
  position: relative;
}
.gcl-cabin-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gcl-gold), var(--gcl-accent));
}
.gcl-cabin-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,123,32,0.38);
  box-shadow: 0 22px 55px rgba(0,43,92,0.14);
}
.gcl-cabin-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.gcl-cabin-category {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
}
.gcl-cabin-occupancy {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5d7184;
  border: 1px solid rgba(0,43,92,0.12);
  padding: 6px 10px;
  border-radius: 999px;
}
.gcl-cabin-name {
  font-family: var(--gcl-font-heading);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: var(--gcl-bg-dark);
  margin: 0 0 12px;
  line-height: 1.25;
}
.gcl-cabin-price {
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.1;
}
.gcl-cabin-price span,
.gcl-cabin-price small {
  color: #5d7184;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.gcl-cabin-price small { display: block; margin-top: 6px; }
.gcl-cabin-desc {
  color: #42576a;
  line-height: 1.7;
  font-size: 14px;
  margin: 0 0 16px;
}
.gcl-cabin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.gcl-cabin-meta span {
  font-size: 11px;
  color: var(--gcl-bg-dark);
  background: rgba(0,169,224,0.10);
  border: 1px solid rgba(0,169,224,0.16);
  padding: 7px 10px;
  border-radius: 999px;
}
.gcl-group-dates {
  margin-top: clamp(26px, 4vw, 42px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.gcl-group-date-card {
  background: var(--gcl-bg-dark);
  color: #fff;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,43,92,0.16);
}
.gcl-group-date-card span {
  display: block;
  color: var(--gcl-silver);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}
.gcl-group-date-card strong {
  display: block;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: #fff;
}
.gcl-group-date-card small {
  display: block;
  margin-top: 5px;
  color: var(--gcl-gold-light);
  font-size: 12px;
}
.gcl-staterooms-note {
  text-align: center;
  color: #5d7184;
  font-size: 12px;
  margin: 18px auto 0;
  max-width: 820px;
}
.gcl-itin-times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 2px;
}
.gcl-itin-times span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: var(--gcl-bg-dark);
  background: rgba(244,123,32,0.10);
  border: 1px solid rgba(244,123,32,0.18);
  border-radius: 999px;
  padding: 6px 9px;
}
.gcl-gallery-label {
  margin: 8px 0 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 980px) {
  .gcl-cabin-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gcl-group-dates { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .gcl-cabin-grid, .gcl-group-dates, .gcl-inventory-summary { grid-template-columns: 1fr; }
}
