/* ============================================================
   Sharkcana Yachts — Design System
   Per IDEATION.md §7: Caribbean clean luxe
   ============================================================ */

/* -------- Tokens -------- */
:root {
  /* Color */
  --ocean: #0A2540;
  --ocean-90: rgba(10, 37, 64, 0.9);
  --ocean-70: rgba(10, 37, 64, 0.7);
  --ocean-40: rgba(10, 37, 64, 0.4);
  --turquoise: #1FB6C1;
  --turquoise-dark: #178A93;
  --sand: #F4EBD9;
  --sand-warm: #EFE3CC;
  --coral: #FF6B5C;
  --coral-dark: #E85546;
  --white: #FFFFFF;
  --ink: #1A2B3C;
  --muted: #6B7C8C;
  --hairline: rgba(10, 37, 64, 0.08);

  /* Type */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Layout */
  --container: 1240px;
  --container-narrow: 920px;
  --radius-sm: 4px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --t-fast: 200ms;
  --t-med: 400ms;
  --t-slow: 700ms;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06), 0 1px 3px rgba(10, 37, 64, 0.04);
  --shadow: 0 6px 24px rgba(10, 37, 64, 0.08), 0 2px 6px rgba(10, 37, 64, 0.04);
  --shadow-lg: 0 20px 60px rgba(10, 37, 64, 0.16), 0 4px 12px rgba(10, 37, 64, 0.06);
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { padding-left: 0; list-style: none; margin: 0;}
h1, h2, h3, h4, h5 { margin: 0; line-height: 1.1; font-weight: 600; letter-spacing: -0.02em; }
p { margin: 0; }

/* -------- Type scale -------- */
.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.h-display em {
  font-style: italic;
  font-weight: 300;
  color: var(--turquoise);
}
.h-1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.h-1 em { font-style: italic; font-weight: 300; }
.h-2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.h-3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.25;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turquoise);
}
.lead {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 60ch;
}

/* -------- Layout -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
.container.narrow { max-width: var(--container-narrow); }
.section {
  padding: var(--s-9) 0;
}
.section--tight { padding: var(--s-7) 0; }
.section--sand { background: var(--sand); }
.section--ocean { background: var(--ocean); color: var(--white); }
.section--ocean .lead { color: rgba(255,255,255,0.7); }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.95rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255, 107, 92, 0.32);
}
.btn--primary:hover { background: var(--coral-dark); box-shadow: 0 10px 28px rgba(255, 107, 92, 0.42); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn--ocean {
  background: var(--ocean);
  color: var(--white);
}
.btn--ocean:hover { background: #06182A; }
.btn--outline {
  background: transparent;
  color: var(--ocean);
  border-color: var(--ocean);
}
.btn--outline:hover { background: var(--ocean); color: var(--white); }
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover { background: #1FB855; }
.btn--lg { padding: 1.1rem 2.2rem; font-size: 1rem; }
.btn .icon { width: 18px; height: 18px; }

/* -------- Header / Nav -------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--s-4) 0;
  transition: background var(--t-med), backdrop-filter var(--t-med), padding var(--t-med), border-color var(--t-med);
  border-bottom: 1px solid transparent;
}
.header--scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--hairline);
  padding: var(--s-3) 0;
}
.header--scrolled .nav__link,
.header--scrolled .logo,
.header--scrolled .nav__toggle { color: var(--ocean); }
.header--scrolled .logo__img { filter: none; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}
.logo {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  transition: opacity var(--t-fast);
}
.logo:hover { opacity: 0.85; }
.logo__img {
  height: 64px;
  width: auto;
  display: block;
  /* Logo is dark navy; invert to white on the transparent over-hero header */
  filter: brightness(0) invert(1);
  transition: filter var(--t-fast), height var(--t-med);
}
.header--scrolled .logo__img { height: 52px; }
@media (max-width: 600px) {
  .logo__img { height: 48px; }
  .header--scrolled .logo__img { height: 42px; }
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--t-fast);
  position: relative;
}
.nav__link:hover { color: var(--turquoise); }
.nav__cta { margin-left: var(--s-3); }
/* The CTA <li> is moved out of .nav__links on desktop, so kill its list marker */
.nav > li { list-style: none; }
.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--white);
}
.nav__toggle svg { width: 26px; height: 26px; }

/* Language switcher (EN · ES · FR) — inherits nav colour state */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 2px;
  border: 1px solid currentColor;
  border-radius: var(--radius-pill);
  color: var(--white);
  opacity: 0.9;
  flex: none;
}
.header--scrolled .lang-switch { color: var(--ocean); }
.lang-switch__btn {
  font: 600 0.72rem/1 var(--font-body, inherit);
  letter-spacing: 0.04em;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: var(--radius-pill);
  transition: background var(--t-fast), color var(--t-fast);
}
.lang-switch__btn:hover { color: var(--turquoise); }
.lang-switch__btn.is-active {
  background: var(--turquoise);
  color: var(--white);
  cursor: default;
}

@media (max-width: 920px) {
  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--ocean);
    flex-direction: column;
    justify-content: center;
    gap: var(--s-6);
    transform: translateX(100%);
    transition: transform var(--t-med) var(--ease);
    padding: var(--s-8);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links .nav__link { color: var(--white); font-size: 1.4rem; font-family: var(--font-display); }
  .nav__toggle { display: inline-flex; }
  .nav__cta { margin: var(--s-5) 0 0; }
  /* Sit next to the hamburger on mobile */
  .lang-switch { margin-left: auto; margin-right: var(--s-3); }
}

/* -------- Hero -------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Boat is the focus: zoom in toward it (larger) and lift it higher in frame; it sits right-of-centre, clear of the left-aligned heading */
  object-position: 70% 50%;
  transform: scale(1.4) translateY(-7%);
  transform-origin: 72% 52%;
}
@keyframes heroZoom {
  0% { transform: scale(1.08) scaleX(-1) translateY(0); }
  100% { transform: scale(1.15) scaleX(-1) translateY(-12px); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(10,37,64,0.6) 0%, rgba(10,37,64,0.15) 65%),
    linear-gradient(180deg, rgba(10,37,64,0.55) 0%, rgba(10,37,64,0.3) 35%, rgba(10,37,64,0.92) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-bottom: var(--s-5);
  padding-top: var(--s-9);
  width: 100%;
}
.hero__eyebrow {
  color: var(--turquoise);
  margin-bottom: var(--s-4);
}
.hero__title {
  max-width: 18ch;
  margin-bottom: var(--s-5);
  text-shadow: 0 2px 8px rgba(0,0,0,0.45), 0 4px 30px rgba(0,0,0,0.35);
}
.hero__sub {
  max-width: 44ch;
  font-size: 1.15rem;
  line-height: 1.5;
  margin-bottom: var(--s-6);
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* -------- Trust bar -------- */
.trust {
  background: var(--white);
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--hairline);
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}
.trust__item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.92rem;
  color: var(--muted);
}
.trust__item strong { color: var(--ocean); font-weight: 600; }
.trust__stars { color: #F5A623; font-size: 1rem; letter-spacing: 0.05em; }

/* Trust bar pinned to the bottom of the hero — glass strip over the photo */
.trust--hero {
  position: relative;
  z-index: 2;
  background: transparent;
  border-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(2px);
  padding: var(--s-4) 0;
}
.trust--hero .trust__row { gap: var(--s-4) var(--s-6); }
.trust--hero .trust__item { color: rgba(255, 255, 255, 0.9); font-size: 0.85rem; }
.trust--hero .trust__item strong { color: var(--white); }

/* -------- Three-step strip -------- */
.steps {
  padding: var(--s-8) 0;
  background: var(--sand);
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  align-items: start;
}
.step {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 3rem;
  color: var(--turquoise);
  line-height: 1;
}
.step__title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; }
.step__body { color: var(--muted); }
@media (max-width: 768px) { .steps__grid { grid-template-columns: 1fr; } }

/* -------- Section heading block -------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
}
.section-head__intro { max-width: 56ch; }
.section-head__intro .eyebrow { margin-bottom: var(--s-3); }
.section-head__intro h2 { margin-bottom: var(--s-4); }
.section-head__link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ocean);
  border-bottom: 1.5px solid var(--turquoise);
  padding-bottom: 2px;
  transition: color var(--t-fast);
}
.section-head__link:hover { color: var(--turquoise); }

/* -------- Fleet cards -------- */
.fleet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 1000px) { .fleet { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .fleet { grid-template-columns: 1fr; } }
.fleet-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.fleet-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand);
}
.fleet-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.fleet-card:hover .fleet-card__media img { transform: scale(1.06); }
.fleet-card__tag {
  position: absolute;
  top: var(--s-4); left: var(--s-4);
  background: var(--white);
  color: var(--ocean);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.fleet-card__body {
  padding: var(--s-5);
}
.fleet-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: var(--s-2);
}
.fleet-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--hairline);
}
.fleet-card__spec strong { display: block; color: var(--ocean); font-weight: 600; font-size: 1.05rem; }
.fleet-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fleet-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ocean);
}
.fleet-card__price small { font-family: var(--font-body); font-size: 0.8rem; color: var(--muted); display: block; }
.fleet-card__cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--t-fast);
}
.fleet-card:hover .fleet-card__cta { gap: 10px; }

/* -------- Homepage single-yacht feature -------- */
.yacht-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.yacht-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.yacht-feature__media { position: relative; min-height: 420px; overflow: hidden; background: var(--sand); }
.yacht-feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.yacht-feature:hover .yacht-feature__media img { transform: scale(1.04); }
.yacht-feature__body { padding: var(--s-7); display: flex; flex-direction: column; justify-content: center; }
.yacht-feature__body .fleet-card__title { font-size: 2rem; }
@media (max-width: 760px) {
  .yacht-feature { grid-template-columns: 1fr; }
  .yacht-feature__media { min-height: 260px; }
  .yacht-feature__body { padding: var(--s-6); }
}


/* -------- Included excursions -------- */
.included {
  background: var(--ocean);
  color: var(--white);
}
.included .eyebrow { color: var(--turquoise); }
.included__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-7);
}
@media (max-width: 1000px) { .included__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .included__grid { grid-template-columns: 1fr; } }
.excursion {
  padding: var(--s-5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: background var(--t-fast), transform var(--t-fast) var(--ease);
}
.excursion:hover {
  background: rgba(255,255,255,0.04);
  transform: translateY(-4px);
}
.excursion__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(31,182,193,0.15);
  border-radius: 12px;
  margin-bottom: var(--s-4);
  color: var(--turquoise);
}
.excursion__icon svg { width: 24px; height: 24px; }
.excursion__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: var(--s-2);
}
.excursion__body { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
a.excursion { display: block; color: inherit; text-decoration: none; }

/* -------- Testimonials -------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }
.review {
  background: var(--white);
  padding: var(--s-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.review__stars { color: #F5A623; }
.review__quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--ocean);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.review__author { display: flex; align-items: center; gap: var(--s-3); margin-top: auto; }
.review__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--ocean));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 600; font-size: 1rem;
  font-family: var(--font-display);
}
.review__name { font-weight: 600; font-size: 0.95rem; }
.review__meta { font-size: 0.82rem; color: var(--muted); }

/* -------- Gallery -------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  aspect-ratio: 4 / 3;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }

/* -------- Location / Map -------- */
.location {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-7);
  align-items: center;
}
@media (max-width: 900px) { .location { grid-template-columns: 1fr; } }
.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  border: 1px solid var(--hairline);
}
.location__map iframe { width: 100%; height: 100%; border: 0; }
.location__list { margin-top: var(--s-5); display: grid; gap: var(--s-3); }
.location__item { display: flex; gap: var(--s-3); align-items: flex-start; }
.location__item .icon-wrap {
  flex: none;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(31,182,193,0.15);
  color: var(--turquoise);
  display: flex; align-items: center; justify-content: center;
}
.location__item .icon-wrap svg { width: 18px; height: 18px; }
.location__item strong { display: block; color: var(--ocean); font-weight: 600; margin-bottom: 2px; }
.location__item p { font-size: 0.95rem; color: var(--muted); }

/* -------- FAQ -------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--hairline);
}
.faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-5) 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ocean);
  transition: color var(--t-fast);
}
.faq__q:hover { color: var(--turquoise); }
.faq__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--ocean);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform var(--t-med) var(--ease), border-color var(--t-fast);
  flex: none;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: var(--ocean);
  transition: opacity var(--t-fast);
}
.faq__icon::before { width: 12px; height: 1.5px; }
.faq__icon::after { width: 1.5px; height: 12px; }
.faq__item.is-open .faq__icon { transform: rotate(45deg); border-color: var(--coral); background: var(--coral); }
.faq__item.is-open .faq__icon::before, .faq__item.is-open .faq__icon::after { background: var(--white); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med) var(--ease), padding var(--t-med) var(--ease);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}
.faq__item.is-open .faq__a {
  max-height: 400px;
  padding-bottom: var(--s-5);
}

/* -------- Final CTA -------- */
.cta-banner {
  position: relative;
  padding: var(--s-9) 0;
  background:
    linear-gradient(180deg, rgba(10,37,64,0.6), rgba(10,37,64,0.8)),
    url('../../assets/img/island-escapes.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
}
.cta-banner__inner { max-width: 720px; margin: 0 auto; }
.cta-banner h2 { margin-bottom: var(--s-4); }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: var(--s-5); }
.cta-banner__ctas { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; }

/* -------- Footer -------- */
.footer {
  background: var(--ocean);
  color: rgba(255,255,255,0.7);
  padding: var(--s-9) 0 var(--s-5);
  font-size: 0.92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-7);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.footer__col ul { display: grid; gap: var(--s-2); }
.footer__col a { transition: color var(--t-fast); }
.footer__col a:hover { color: var(--turquoise); }
.footer__brand h3 { font-family: var(--font-display); color: var(--white); font-size: 1.3rem; margin-bottom: var(--s-3); }
.footer__brand p { line-height: 1.55; max-width: 36ch; }
.footer__social { display: flex; gap: var(--s-3); margin-top: var(--s-4); }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.footer__social a:hover { background: var(--turquoise); border-color: var(--turquoise); color: var(--white); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
  padding-top: var(--s-5);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer__legal { display: flex; gap: var(--s-5); }

/* -------- Sticky WhatsApp -------- */
.whatsapp-fab {
  position: fixed;
  bottom: var(--s-5);
  right: var(--s-5);
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform var(--t-fast) var(--ease);
  animation: pulse 2.4s var(--ease) infinite;
}
/* Homepage: lift the FAB above the hero trust strip so it doesn't overlap it */
.whatsapp-fab--above-trust { bottom: calc(var(--s-5) + var(--s-8)); }
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 28px; height: 28px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* -------- Inner page hero (smaller) -------- */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0.5), rgba(10,37,64,0.85));
  z-index: 1;
}
.page-hero__inner {
  position: relative; z-index: 2;
  padding: var(--s-10) 0 var(--s-7);
  width: 100%;
}
.crumbs {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--s-4);
  letter-spacing: 0.05em;
}
.crumbs a { color: inherit; border-bottom: 1px dotted rgba(255,255,255,0.4); }
.crumbs a:hover { color: var(--turquoise); }

/* -------- Pricing table -------- */
.price-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow);
}
.price-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  align-items: center;
  padding: var(--s-5);
  border-bottom: 1px solid var(--hairline);
  gap: var(--s-4);
}
.price-row:last-child { border-bottom: 0; }
.price-row--head {
  background: var(--sand);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.price-row__vessel { display: flex; gap: var(--s-4); align-items: center; }
.price-row__thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  flex: none;
  background: var(--sand);
}
.price-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.price-row__name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; }
.price-row__meta { color: var(--muted); font-size: 0.85rem; }
.price-row__price { font-family: var(--font-display); font-size: 1.4rem; color: var(--ocean); }
.price-row__price small { font-family: var(--font-body); font-size: 0.78rem; color: var(--muted); display: block; }
@media (max-width: 800px) {
  .price-row { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
  .price-row--head { display: none; }
  .price-row__vessel { grid-column: 1 / -1; }
}

/* -------- Vessel detail -------- */
.vessel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-8);
  align-items: start;
}
@media (max-width: 900px) { .vessel { grid-template-columns: 1fr; } }
.vessel__gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 220px 220px;
  gap: var(--s-2);
}
.vessel__gallery > *:first-child { grid-row: span 2; }
.vessel__gallery img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius);
  cursor: zoom-in;
  transition: transform var(--t-med) var(--ease);
}
.vessel__gallery img:hover { transform: scale(1.02); }
.vessel__info .eyebrow { margin-bottom: var(--s-3); }
.vessel__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin: var(--s-5) 0;
  padding: var(--s-5) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.vessel__spec { font-size: 0.92rem; color: var(--muted); }
.vessel__spec strong { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--ocean); font-weight: 500; margin-bottom: 2px; }

/* -------- Form -------- */
.form { display: grid; gap: var(--s-4); }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s-2);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(31,182,193,0.15);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 600px) { .field--row { grid-template-columns: 1fr; } }

/* -------- Util -------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Spacing utilities */
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }
.mb-4 { margin-bottom: var(--s-4); }
.mb-5 { margin-bottom: var(--s-5); }
.mb-6 { margin-bottom: var(--s-6); }

.text-center { text-align: center; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-3 { gap: var(--s-3); }
.gap-4 { gap: var(--s-4); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Mobile: keep the WhatsApp button clear of content */
@media (max-width: 600px) {
  .whatsapp-fab { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
  .footer { padding-bottom: 96px; }
}

/* ===== All-inclusive open bar feature (Sea Ray 340 experiences) ===== */
.openbar { padding: var(--s-7) 0; }
.openbar__card {
  background: linear-gradient(135deg, var(--ocean) 0%, #0d3a5c 55%, #115e6b 100%);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.openbar__card::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(31,182,193,.35), transparent 70%); pointer-events: none;
}
.openbar__badge {
  display: inline-block; background: var(--turquoise); color: var(--ocean);
  font-weight: 700; font-size: .72rem; letter-spacing: .09em; text-transform: uppercase;
  padding: 7px 15px; border-radius: var(--radius-pill); margin-bottom: var(--s-4);
}
.openbar__title { font-family: var(--font-display); font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1.04; color: #fff; margin-bottom: var(--s-3); }
.openbar__title em { color: var(--turquoise); font-style: italic; }
.openbar__sub { color: rgba(255,255,255,.86); max-width: 62ch; font-size: 1.06rem; line-height: 1.6; margin-bottom: var(--s-6); }
.openbar__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: var(--s-6); position: relative; }
@media (max-width: 680px) { .openbar__grid { grid-template-columns: 1fr; gap: var(--s-5); } }
.openbar__col h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--turquoise); margin-bottom: var(--s-4); }
.openbar__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.openbar__chip {
  display: inline-flex; align-items: center; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); color: #fff; padding: 10px 16px;
  border-radius: var(--radius-pill); font-size: .96rem; font-weight: 500;
}
.openbar__note { margin-top: var(--s-5); color: rgba(255,255,255,.7); font-size: .9rem; }
.openbar__cta { margin-top: var(--s-6); }
