/* ==========================================================================
   Jet Ski Beach — design system
   Palette lifted straight from the real platform signage: black-on-yellow.
   Signature motif carried over from the previous concept: the "boarding
   pass" — because the product is still a short sea crossing before the
   jet ski starts — now rendered in the pontoon's own colors.
   ========================================================================== */

@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/space-grotesk-variable.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --yellow: #FFC300;
  --yellow-dark: #E0A800;
  --black: #111111;
  --charcoal: #232323;
  --ink: #16181A;
  --text-muted: #55585C;
  --sand: #FAF7EE;
  --white: #FFFFFF;
  --border: #E7E2D2;

  --font-display: 'Space Grotesk', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-100: 0.8125rem;
  --fs-200: 1rem;
  --fs-300: clamp(1.1rem, 1.03rem + 0.35vw, 1.35rem);
  --fs-400: clamp(1.3rem, 1.15rem + 0.75vw, 1.8rem);
  --fs-500: clamp(1.7rem, 1.4rem + 1.3vw, 2.6rem);
  --fs-600: clamp(2.1rem, 1.7rem + 1.9vw, 3.4rem);
  --fs-hero: clamp(2.6rem, 1.7rem + 4.2vw, 5.4rem);

  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-md: 0 10px 28px rgba(0,0,0,0.14);
  --shadow-lg: 0 24px 56px rgba(0,0,0,0.28);
  --header-height: 84px;
}

*, *::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: var(--fs-200);
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
body:not(.has-hero) { padding-top: var(--header-height); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-4);
  color: var(--black);
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-600); }
h3 { font-size: var(--fs-400); }
p { margin: 0 0 var(--space-4); color: var(--text-muted); }
a { color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin-inline: auto; padding-inline: var(--space-6); }
.section { padding-block: var(--space-24); }
.u-text-center { text-align: center; }
.u-mt-4 { margin-top: var(--space-4); }
.u-mt-8 { margin-top: var(--space-8); }
.u-mb-8 { margin-bottom: var(--space-8); }
.u-text-muted { color: var(--text-muted); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* --- Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-200); letter-spacing: 0.01em;
  padding: 0.9rem 1.6rem; border-radius: 999px;
  text-decoration: none; border: 2px solid transparent;
  transition: transform 220ms cubic-bezier(.16,1,.3,1), box-shadow 220ms;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--yellow); color: var(--black); box-shadow: var(--shadow-md); }
.btn--primary:hover { box-shadow: 0 16px 32px rgba(224,168,0,0.35); }
.btn--dark { background: var(--black); color: var(--yellow); }
.btn--outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn--outline:hover { background: rgba(255,255,255,0.12); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn-group { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.btn-group--center { justify-content: center; }

/* --- Header ----------------------------------------------------------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100; height: var(--header-height);
  display: flex; align-items: center;
  background: rgba(17,17,17,0.62);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
body:not(.has-hero) .site-header { background: var(--black); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; text-decoration: none; color: var(--white); line-height: 1.1; }
.brand__logo { height: 44px; width: auto; display: block; }
.brand__logo--round { height: 68px; }
.brand strong { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: -0.01em; }
.brand span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); }
.site-nav { display: none; gap: var(--space-8); align-items: center; }
.site-nav a { text-decoration: none; color: var(--white); font-weight: 500; font-size: 0.95rem; }
.site-nav a:hover { color: var(--yellow); }
@media (min-width: 900px) { .site-nav { display: flex; } }
.header-cta { display: none; }
@media (min-width: 900px) { .header-cta { display: inline-flex; } }
.lang-switch { display: flex; gap: 0.4rem; margin-left: var(--space-6); font-size: 0.8rem; }
.lang-switch a { color: rgba(255,255,255,0.6); text-decoration: none; font-weight: 700; }
.lang-switch a[aria-current="true"] { color: var(--yellow); }

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  color: var(--white); overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.30) 0%, rgba(17,17,17,0.62) 55%, rgba(17,17,17,0.95) 100%);
}
.hero__content { position: relative; z-index: 2; padding-block: calc(var(--header-height) + var(--space-8)) var(--space-12); width: 100%; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.78rem; color: var(--yellow); margin-bottom: var(--space-4);
  text-decoration: none;
}
a.hero__eyebrow:hover { text-decoration: underline; opacity: 0.9; }
.hero h1 { color: var(--white); max-width: 24ch; }
.hero__lede { color: rgba(255,255,255,0.88); max-width: 48ch; font-size: 1.1rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: var(--space-3); margin: var(--space-6) 0; }
.hero__trust span {
  font-size: 0.82rem; font-weight: 700; padding: 0.4rem 0.85rem; border-radius: 999px;
  background: rgba(255,195,0,0.16); border: 1px solid rgba(255,195,0,0.4); color: var(--yellow);
}

/* --- Signature: boarding-pass route strip -------------------------------- */
.route-pass {
  position: relative; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: var(--space-8) var(--space-6);
  margin-top: calc(var(--space-24) * -1); margin-bottom: var(--space-24);
  z-index: 3; border-top: 6px solid var(--yellow);
}
.route-pass__label {
  font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--yellow-dark); margin-bottom: var(--space-6);
}
.route-pass__stops {
  display: grid; grid-template-columns: 1fr; gap: var(--space-6);
  position: relative;
}
@media (min-width: 800px) {
  .route-pass__stops { grid-template-columns: repeat(4, 1fr); }
  .route-pass__stops::before {
    content: ""; position: absolute; top: 22px; left: 6%; right: 6%; height: 0;
    border-top: 2px dashed var(--border); z-index: 0;
  }
}
.route-stop { position: relative; z-index: 1; }
.route-stop__num {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; background: var(--black);
  color: var(--yellow); font-family: var(--font-display); font-weight: 700;
  margin-bottom: var(--space-3);
}
.route-stop__icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; background: var(--yellow);
  margin-bottom: var(--space-3);
}
.route-stop__icon img { width: 22px; height: 22px; }
.route-stop h4 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--ink); }
.route-stop p { font-size: 0.9rem; margin: 0; }

/* --- Free pickup banner ------------------------------------------------- */
.pickup-banner {
  display: flex; align-items: center; gap: var(--space-6); flex-wrap: wrap;
  background: var(--black); color: var(--white); border-radius: var(--radius-lg);
  padding: var(--space-8); margin-bottom: var(--space-24);
}
.pickup-banner__icon {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%; background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
}
.pickup-banner__icon img { width: 34px; height: 34px; }
.pickup-banner__text { flex: 1 1 260px; min-width: 0; }
.pickup-banner h3 { color: var(--white); margin-bottom: 0.35rem; }
.pickup-banner p { color: rgba(255,255,255,0.78); margin: 0; max-width: 60ch; }

/* --- Icon strip --------------------------------------------------------- */
.icon-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-8);
  padding-block: var(--space-8); background: var(--sand);
}
.icon-strip__item { display: flex; align-items: center; gap: var(--space-3); font-weight: 600; font-size: 0.95rem; }
.icon-strip__item img { width: 22px; height: 22px; }

/* --- Section heading ------------------------------------------------ */
.section-heading { max-width: 640px; margin: 0 auto var(--space-12); text-align: center; }
.section-heading__subtitle { font-size: 1.05rem; }

/* --- Experience / ticket cards ------------------------------------------ */
.ticket-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); }
@media (min-width: 700px) { .ticket-grid { grid-template-columns: repeat(2, 1fr); } }
.ticket-card {
  position: relative; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
}
.ticket-card__badge {
  position: absolute; top: var(--space-4); left: var(--space-4);
  background: var(--black); color: var(--yellow); font-family: var(--font-display);
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.75rem; border-radius: 999px; z-index: 2;
}
.ticket-card__img { aspect-ratio: 4/3; overflow: hidden; }
.ticket-card__img img { width: 100%; height: 100%; object-fit: cover; }
.ticket-card__body { padding: var(--space-6); position: relative; }
.ticket-card__perf {
  height: 0; border-top: 2px dashed var(--border); position: relative; margin: 0 var(--space-6);
}
.ticket-card__perf::before, .ticket-card__perf::after {
  content: ""; position: absolute; top: -10px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--white); border: 1px solid var(--border);
}
.ticket-card__perf::before { left: -30px; }
.ticket-card__perf::after { right: -30px; }
.ticket-card__booking { display: none; padding: 0 var(--space-6) var(--space-6); }
.ticket-card__booking[data-open="true"] { display: block; }
.ticket-card__name { font-size: 1.3rem; margin-bottom: 0.15rem; }
.ticket-card__price { font-family: var(--font-display); font-size: 2rem; color: var(--black); margin: 0.25rem 0; }
.ticket-card__price small { font-family: var(--font-body); font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }
.ticket-card__route { font-size: 0.92rem; color: var(--ink); }
.ticket-card__features { font-size: 0.9rem; }
.ticket-card__cta { width: 100%; margin-top: var(--space-4); }
.ticket-card__stub {
  background: var(--black); color: rgba(255,255,255,0.75); padding: var(--space-4) var(--space-6);
  font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; justify-content: space-between;
}
.ticket-card__stub b { color: var(--yellow); }
.footnote { font-size: 0.72rem; color: var(--text-muted); margin-top: var(--space-2); }

/* --- Booking widget wrapper ---------------------------------------- */
.booking-widget-wrapper { margin-top: var(--space-4); min-height: 60px; }

/* --- Feature grid ----------------------------------------------------- */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card { background: var(--sand); border-radius: var(--radius-md); padding: var(--space-6); }
.feature-card__icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--white);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-4);
  box-shadow: var(--shadow-md);
}
.feature-card__icon img { width: 24px; height: 24px; }
.feature-card__title { font-size: 1.05rem; margin-bottom: 0.35rem; }
.feature-card__text { font-size: 0.9rem; margin: 0; }

/* --- Narrative (fleet) -------------------------------------------------- */
.narrative { display: grid; grid-template-columns: 1fr; gap: var(--space-8); align-items: center; }
@media (min-width: 800px) { .narrative { grid-template-columns: 1fr 1fr; } }
.narrative img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.narrative__list { list-style: none; padding: 0; margin: var(--space-6) 0 0; display: flex; flex-direction: column; gap: var(--space-3); }
.narrative__list li { display: flex; gap: var(--space-3); align-items: flex-start; font-weight: 500; color: var(--ink); }
.narrative__list img { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }

/* --- Process gallery (departure steps, captioned) ------------------ */
.process-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
@media (min-width: 800px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.process-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--white); }
.process-card__img { aspect-ratio: 4/3; overflow: hidden; }
.process-card__img img { width: 100%; height: 100%; object-fit: cover; }
.process-card__body { padding: var(--space-6); }
.process-card__step { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow-dark); margin-bottom: 0.4rem; }
.process-card__body h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.process-card__body p { font-size: 0.9rem; margin: 0; }

/* --- Gallery -------------------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid img { border-radius: var(--radius-md); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-md); }

/* --- CTA banner ------------------------------------------------------ */
.cta-banner { background: var(--black); color: var(--white); padding-block: var(--space-16); text-align: center; }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 48ch; margin-inline: auto; }

/* --- Stats --------------------------------------------------------- */
.stat-strip { display: flex; justify-content: center; gap: var(--space-16); flex-wrap: wrap; }
.stat-strip__number { font-family: var(--font-display); font-size: var(--fs-500); color: var(--black); margin: 0; }
.stat-strip__label { margin: 0; font-size: 0.9rem; }

/* --- Contact ---------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); }
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1.2fr 1fr; } }
.contact-grid__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 340px; }
.contact-grid__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }
.contact-card { background: var(--sand); border-radius: var(--radius-lg); padding: var(--space-8); }
.contact-card h3 { margin-bottom: var(--space-4); }
.contact-card p { color: var(--ink); }
.contact-card a.phone-link { font-family: var(--font-display); font-size: 1.6rem; color: var(--black); text-decoration: none; }

/* --- FAQ -------------------------------------------------------------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-size: 1.05rem; padding: var(--space-6) 0;
  display: flex; justify-content: space-between; align-items: center; color: var(--ink);
}
.faq-item__icon::after { content: "+"; font-size: 1.4rem; color: var(--yellow-dark); }
.faq-item[data-open="true"] .faq-item__icon::after { content: "\2212"; }
.faq-item__answer { display: none; padding-bottom: var(--space-6); }
.faq-item[data-open="true"] .faq-item__answer { display: block; }

/* --- Footer -------------------------------------------------------- */
.site-footer { background: var(--black); color: rgba(255,255,255,0.7); padding-block: var(--space-16) var(--space-8); }
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { color: var(--yellow); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); margin-bottom: var(--space-8); }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.2fr 0.8fr 1fr 1fr; } }
.footer-grid h4 { color: var(--white); font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--space-3); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.footer-legal { font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.12); padding-top: var(--space-6); }

/* --- Whatsapp floating button ------------------------------------------ */
.whatsapp-fab {
  position: fixed; bottom: var(--space-6); right: var(--space-6); z-index: 150;
  background: #25D366; color: var(--white); width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
  text-decoration: none;
}
.booking-fab {
  position: fixed; bottom: var(--space-6); left: var(--space-6); z-index: 150;
  background: var(--yellow); color: var(--black); height: 46px; padding-inline: 1rem;
  border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.82rem;
  box-shadow: var(--shadow-lg); text-decoration: none; white-space: nowrap;
}
.booking-fab:hover { background: var(--yellow-dark); }

/* --- Page hero (non-home pages) ---------------------------------------- */
.page-hero { background: var(--black); color: var(--white); padding-block: var(--space-16) var(--space-12); text-align: center; }
.page-hero h1 { color: var(--white); font-size: var(--fs-600); }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 50ch; margin-inline: auto; }

/* --- Legal content ------------------------------------------------- */
.legal-content { max-width: 74ch; }
.legal-content__updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: var(--space-8); }
.legal-content h2 { font-size: 1.4rem; margin-top: var(--space-12); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; margin-top: var(--space-8); }
.legal-content ul { padding-left: 1.2rem; color: var(--text-muted); }
.legal-content li { margin-bottom: var(--space-2); }
.legal-content table { width: 100%; border-collapse: collapse; margin: var(--space-6) 0; font-size: 0.9rem; }
.legal-content th, .legal-content td { text-align: left; padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--border); }
.legal-content th { font-family: var(--font-display); color: var(--black); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
