/* ============================================
   Salt & Springs Outfitters - Main Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
  --teal: #1a6b5a;
  --teal-dark: #14503f;
  --teal-light: #2a9d8f;
  --ocean: #264653;
  --ocean-light: #3a7ca5;
  --sand: #f5efe0;
  --sand-dark: #e8dcc8;
  --sand-light: #faf7f0;
  --sunset: #e76f51;
  --sunset-light: #f4a261;
  --sunset-glow: #fca311;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --max-width: 1200px;
  --max-width-prose: 760px;
  --transition: 0.3s ease;

  /* ===== Modernization refresh: semantic aliases (point back at the brand palette) ===== */
  --font-heading: var(--font-display);   /* FIX: was undefined → booking headings/prices fell back to Inter */
  --color-primary: var(--teal-light);    /* FIX: was undefined → phantom 3rd teal #1a7a8c on the map */

  /* Surfaces */
  --surface: var(--white);
  --surface-muted: var(--sand-light);
  --surface-sunk: var(--sand);
  --surface-inverse: var(--ocean);
  --surface-inverse-2: var(--teal-dark);

  /* Ink (text) */
  --ink: var(--gray-900);
  --ink-body: var(--gray-700);
  --ink-muted: var(--gray-600);
  --ink-on-dark: var(--white);
  --ink-on-dark-muted: rgba(255,255,255,0.82);

  /* Action & accent */
  --action: var(--sunset);
  --action-hover: var(--sunset-light);
  --action-ink: var(--white);
  --accent: var(--teal);
  --accent-light: var(--teal-light);

  /* Status & lines */
  --info: var(--ocean-light);
  --success: var(--teal-light);
  --border: var(--gray-200);
  --border-strong: var(--gray-300);
  --focus-ring: rgba(42,157,143,0.45);
  --ring: 0 0 0 3px var(--focus-ring);

  /* Spacing scale (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 5rem;

  /* Motion — calm, water-like easings (no overshoot) */
  --ease-water: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-glide: cubic-bezier(0.33, 0, 0.20, 1);
  --ease-out-soft: cubic-bezier(0.16, 1, 0.30, 1);
  --motion-fast: 180ms;
  --motion-base: 320ms;
  --motion-slow: 600ms;
  --motion-ambient: 6s;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 60px 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--ocean);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

p { margin-bottom: 1rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

/* Skip-to-content link — visually hidden until keyboard-focused. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--ocean);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-main);
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sunset), var(--sunset-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(231, 111, 81, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 111, 81, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
}

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--teal);
}

/* Quiet neutral secondary — FIX: was undefined, ~10 booking wizard buttons rendered borderless */
.btn-outline {
  background: transparent;
  color: var(--ink-body);
  border: 1.5px solid var(--border-strong);
}

.btn-outline:hover {
  background: var(--surface-muted);
  border-color: var(--accent-light);
  color: var(--accent);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal-light);
  border-radius: 1px;
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 8px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--teal) !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-phone svg {
  width: 16px;
  height: 16px;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--teal-dark) 50%, var(--teal) 100%);
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 160px;  /* clear the 120px wave SVG + buffer so content (incl. hero-stats) never tucks under it */
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(244,162,97,0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(42,157,143,0.3) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(58,124,165,0.3) 0%, transparent 40%);
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: auto;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-content {
  max-width: 680px;
  color: var(--white);
}

/* Framed service-area map on the right of the hero */
.hero-map-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
.hero-map {
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  background: var(--white);
}
.hero-map img,
.hero-map video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #000;
}
.hero-map.hero-video {
  background: #000;
}
.hero-map.hero-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

/* Service area: Our Playground + Your Memories side-by-side */
.playground-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.playground-col {
  text-align: center;
}
.service-area .service-area-map,
.service-area .memories-collage {
  margin: 24px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.service-area .service-area-map img,
.service-area .memories-collage img {
  display: block;
  width: 100%;
  height: auto;
}
.service-area #service-map {
  width: 100%;
  height: 520px;
  background: #e6eef2;
}
.areas-served {
  margin: 14px 4px 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--ink-muted);
  text-align: center;
}
.areas-served-label {
  font-weight: 600;
  color: var(--color-primary, #1a7a8c);
  margin-right: 4px;
}
.service-area .service-area-map {
  background: #e6eef2;
}
.sso-marker {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--color-primary, #1a7a8c);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.sso-marker:hover {
  transform: scale(1.12);
}
.sso-marker.sso-marker-home {
  background: var(--color-primary, #1a7a8c);
  color: #fff;
  width: 42px;
  height: 42px;
  font-size: 20px;
}
.sso-marker.sso-marker-launch {
  background: var(--color-accent, #e07a4f);
  border-color: #fff;
  color: #fff;
}
.sso-marker.sso-marker-special {
  border-style: dashed;
  border-color: #fff;
  opacity: 0.9;
}
.mapboxgl-popup-content {
  border-radius: 12px;
  padding: 14px 16px;
  font-family: inherit;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-width: 240px;
}
.mapboxgl-popup-content h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary, #1a7a8c);
}
.mapboxgl-popup-content p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #333;
}
@media (max-width: 900px) {
  .playground-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
.hero-map-caption {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
}

/* Stack on tablets/phones */
@media (max-width: 900px) {
  /* Stack hero as a single flex column and reorder pieces:
     h1 → video → paragraph → badge → buttons → stats. Using display:contents
     on .hero-content lets its children participate as flex items in .hero-grid. */
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .hero-content {
    display: contents;
  }
  .hero-content > .hero-badge   { order: 4; }
  .hero-content > h1            { order: 1; }
  .hero-map-wrap                { order: 2; max-width: 520px; margin: 0 auto; width: 100%; }
  .hero-content > p             { order: 3; }
  .hero-content > .hero-buttons { order: 5; }
  .hero-content > .hero-stats   { order: 6; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2rem, 5.25vw, 3.375rem);
}

.hero h1 span {
  color: var(--sunset-light);
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sunset-light);
}

.hero-stat-label {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 4px;
}

/* --- Value Props --- */
.value-props {
  background: var(--sand-light);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

/* Unified icon chip — one neutral sand chip with a teal icon (removes off-palette pastels + #e91e63) */
.value-icon.eco,
.value-icon.easy,
.value-icon.safe,
.value-icon.fun {
  background: var(--surface-sunk);
  color: var(--accent);
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.value-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- Experiences / Cards --- */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.experience-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.experience-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--teal-light), var(--ocean-light));
}

.experience-img-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.92);
}

.experience-img-placeholder.dolphins { background: linear-gradient(135deg, var(--ocean-light), var(--teal-light)); }
.experience-img-placeholder.sunset { background: linear-gradient(135deg, var(--sunset), var(--sunset-light)); }
.experience-img-placeholder.fishing { background: linear-gradient(135deg, var(--ocean), var(--teal)); }
.experience-img-placeholder.nature { background: linear-gradient(135deg, var(--teal-light), var(--teal)); }
.experience-img-placeholder.mangrove { background: linear-gradient(135deg, var(--teal), var(--ocean)); }

.experience-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: var(--sunset);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.experience-content {
  padding: 24px;
}

.experience-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.experience-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.experience-content h3 {
  margin-bottom: 10px;
}

.experience-content p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

.experience-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid var(--gray-100);
}
.experience-footer .btn { flex-shrink: 0; }

.experience-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
  line-height: 1.2;
}

.experience-price small {
  display: block;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray-500);
}

/* --- How It Works --- */
.how-it-works {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: var(--gray-500);
  font-size: 0.95rem;
  max-width: 300px;
  margin: 0 auto;
}

/* --- Reviews --- */
.reviews {
  /* background-COLOR is a safety net: .tex-ripple further down this file sets
     background-image, and a gradient IS a background-image — so the gradient
     alone can get clobbered, leaving white text on nothing. */
  background-color: var(--ocean);
  background-image: linear-gradient(135deg, var(--ocean) 0%, var(--teal-dark) 100%);
  color: var(--white);
}

/* Layer the ripple texture OVER the gradient instead of replacing it.
   Higher specificity (.reviews.tex-ripple) so source order can't break it. */
.reviews.tex-ripple {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='90'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1.4'%3E%3Cpath d='M0 24 Q45 6 90 24 T180 24'/%3E%3Cpath d='M0 58 Q45 40 90 58 T180 58'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--ocean) 0%, var(--teal-dark) 100%);
}

.reviews h2, .reviews .section-label {
  color: var(--white);
}

.reviews .section-label {
  color: var(--sunset-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(4px);
}

.review-stars {
  color: var(--sunset-glow);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--sunset-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-date {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--ocean), var(--teal-dark));
  text-align: center;
  padding: 60px 0;
  color: var(--white);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 28px;
}

/* --- Footer --- */
.footer {
  background: var(--ocean);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.footer-social a:hover {
  background: var(--teal-light);
  color: var(--white);
}

/* --- Sticky Book Now Button (Mobile) --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 20px;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  border-top: 1px solid var(--gray-200);
}

.sticky-cta .btn {
  width: 100%;
}

/* --- Page Header (Inner Pages) --- */
.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--teal-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(244,162,97,0.5) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(42,157,143,0.4) 0%, transparent 40%);
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* Photo-banner variant (rental & sales headers). A brand-green overlay sits
   over the GoBoat-on-water photo so the white text stays legible while the
   boats still show through. */
.page-header--banner {
  background-image:
    linear-gradient(135deg, rgba(38, 70, 83, 0.62) 0%, rgba(20, 80, 63, 0.58) 100%),
    url('../images/goboat-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Phones: the wide banner would crop the boats off the sides, so use the
   portrait crop (boat lower-left) and anchor the crop to that corner. */
@media (max-width: 768px) {
  .page-header--banner {
    background-image:
      linear-gradient(135deg, rgba(38, 70, 83, 0.62) 0%, rgba(20, 80, 63, 0.58) 100%),
      url('../images/goboat-banner-mobile.jpg');
    background-position: center bottom;
  }
}
/* Soft halo on the banner text so it stays legible where it overlaps the boat
   (mostly an issue on mobile). Layered: a tight shadow for crisp edges + a
   wider soft one for separation — subtle, not a hard drop shadow. */
.page-header--banner .breadcrumb,
.page-header--banner h1,
.page-header--banner p {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45), 0 2px 14px rgba(0, 0, 0, 0.30);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  opacity: 0.9;
}

.breadcrumb a:hover {
  opacity: 1;
}

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--sand-light);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-duration {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 4px;
}

.pricing-price sup {
  font-size: 1.5rem;
  top: -0.8em;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--teal-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* --- Boat Details --- */
.boat-specs {
  background: var(--sand-light);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 8 cards → clean 4x2 */
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .specs-grid { grid-template-columns: 1fr; }
}

.spec-item {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.spec-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.spec-item h4 {
  margin-bottom: 4px;
  color: var(--ocean);
}

.spec-item p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- Add-ons --- */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.addon-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.addon-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-sm);
}

.addon-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.addon-icon img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.addon-info h4 {
  font-family: var(--font-main);
  margin-bottom: 2px;
}

.addon-info p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

.addon-price {
  margin-left: auto;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}

/* --- Tours Page --- */
.tour-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.tour-card:hover {
  box-shadow: var(--shadow-lg);
}

.tour-card:nth-child(even) {
  direction: rtl;
}

.tour-card:nth-child(even) > * {
  direction: ltr;
}

.tour-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.tour-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tour-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tour-tag {
  padding: 4px 12px;
  background: var(--sand-light);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
}

.tour-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.tour-content p {
  color: var(--gray-500);
  line-height: 1.7;
}

.tour-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.tour-detail {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.tour-detail strong {
  color: var(--ocean);
}

.tour-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.tour-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
}

.tour-price small {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray-500);
}

/* --- About Page --- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--teal), var(--ocean-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* Actual framed photo version — keeps the rounded-box look of the placeholder */
.about-img {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray-600);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.value-block {
  text-align: center;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--motion-base) var(--ease-water), box-shadow var(--motion-base) var(--ease-water);
}
.value-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.value-block-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.value-block h3 {
  margin-bottom: 10px;
}

.value-block p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.team-photo.captain { background: linear-gradient(135deg, var(--teal), var(--teal-light)); }
.team-photo.manager { background: linear-gradient(135deg, var(--ocean-light), var(--teal-light)); }
.team-photo.guide { background: linear-gradient(135deg, var(--sunset), var(--sunset-light)); }

.team-card h3 {
  margin-bottom: 4px;
}

.team-role {
  color: var(--teal-light);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.team-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* --- FAQ Page --- */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ocean);
  text-align: left;
  gap: 16px;
}

.faq-question:hover {
  color: var(--teal);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gray-100);
  font-size: 1.2rem;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--motion-base) var(--ease-glide);
}

.faq-answer > .faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner {
  color: var(--ink-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer-inner {
  padding-bottom: 20px;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--gray-800);
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-light);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--sand-light);
  border-radius: var(--radius-md);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-info-card h4 {
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--teal);
  font-weight: 600;
}

.map-container {
  margin-top: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* --- Includes List --- */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.includes-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--sand-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--gray-700);
}

.includes-item .icon {
  font-size: 1.25rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .about-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tour-card {
    grid-template-columns: 1fr;
  }
  .tour-card:nth-child(even) {
    direction: ltr;
  }
  .tour-img {
    min-height: 220px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  /* Disable backdrop-filter on mobile — it creates a containing block that
     traps the fixed-position .nav-links inside the 72px navbar. */
  .navbar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 24px;
  }

  .hero-stat {
    text-align: center;
  }

  .sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 72px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .tour-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { min-height: auto; padding: 120px 0 100px; }
  .experiences-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .goboat-intro { grid-template-columns: 1fr; }
}

/* ============================================
   Shop Page Styles
   ============================================ */

/* --- Shop Filters --- */
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding-bottom: 8px;
}

.shop-filter {
  padding: 10px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  background: var(--white);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.shop-filter:hover {
  border-color: var(--teal-light);
  color: var(--teal);
}

.shop-filter.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* --- Shop Product Grid --- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.shop-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Force a clean 2-up grid (used for the 4 Double models so the 4th card
   never hangs alone on a 3-wide auto-fill row). Collapses to 1-up on phones. */
.shop-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  .shop-grid-2 { grid-template-columns: 1fr; }
}

.shop-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.shop-card-img {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
  /* White to match the product photos' white background — no colored "square"
     behind the image. */
  background: #fff;
}

.shop-card-img img {
  width: 100%;
  height: 100%;
  /* contain shows the full product; the photos are square, so in this wider box
     they fill top-to-bottom with white side margins (no top/bottom gap). */
  object-fit: contain;
}

.shop-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  background: var(--sunset);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  z-index: 3;
}

/* Bundle colorway carousel — lets one card flip through the 3 double styles
   (Freedom / Wave / Sunset) so shoppers see every colorway in one place. */
.bundles-group-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ocean);
  margin: 0 0 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal-light);
}
.card-carousel { position: absolute; inset: 0; }
.card-carousel-track {
  display: flex;
  height: 100%;
  transition: transform var(--transition) ease;
  will-change: transform;
}
.card-carousel-track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ocean);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transition: opacity var(--transition), background-color var(--transition);
  z-index: 2;
}
.card-carousel-arrow.prev { left: 10px; }
.card-carousel-arrow.next { right: 10px; }
.card-carousel-arrow:hover { background: #fff; }
.shop-card:hover .card-carousel-arrow,
.card-carousel:focus-within .card-carousel-arrow { opacity: 1; }
.card-carousel-caption {
  position: absolute;
  bottom: 10px;
  left: 12px;
  padding: 3px 12px;
  background: rgba(38, 70, 83, 0.82);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  z-index: 2;
  pointer-events: none;
}
.card-carousel-dots {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.card-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition);
}
.card-carousel-dots button.active {
  background: #fff;
  transform: scale(1.25);
}
/* Touch devices have no hover — keep the arrows visible so they're discoverable. */
@media (hover: none) {
  .card-carousel-arrow { opacity: 1; }
}

/* Out-of-stock state — driven live from Odoo's x_out_of_stock flag. */
.shop-badge--oos {
  background: var(--gray-600, #4b5563);
  right: 12px;
  left: auto;
}
.shop-card.is-oos .shop-card-img img,
.shop-card.is-oos .card-carousel-track img { opacity: 0.5; filter: grayscale(0.4); }
.btn.btn-disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.55;
  background: var(--gray-300, #d1d5db);
  color: var(--gray-600, #4b5563);
  border-color: transparent;
}
.acc-item.is-oos { opacity: 0.6; }
.acc-oos {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--sunset, #e76f51);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.shop-card-body {
  padding: 20px 20px 0;
  flex: 1;
}

.shop-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ocean);
  margin-bottom: 8px;
}

.shop-card-body p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
}

.shop-specs {
  margin-top: 12px;
  margin-bottom: 0;
}

.shop-specs li {
  padding: 4px 0;
  font-size: 0.85rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-specs li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: var(--teal-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  margin-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.shop-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
}

.shop-rating {
  margin-top: 12px;
  color: var(--sunset-glow);
  font-size: 0.85rem;
}

.shop-rating span {
  color: var(--gray-500);
  margin-left: 4px;
}

/* --- Shop Included Box --- */
.shop-included-box {
  margin-top: 48px;
  padding: 32px;
  background: var(--sand-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-dark);
}

.shop-included-box h4 {
  margin-bottom: 20px;
  color: var(--ocean);
}

.shop-included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.shop-included-grid span {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 4px 0;
}

/* --- Financing Grid --- */
.financing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.financing-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.financing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.financing-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* --- Accessories Table --- */
.acc-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.acc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--sand-light);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.acc-item:hover {
  background: var(--sand);
}

.acc-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.acc-icon img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
}

.acc-info {
  flex: 1;
}

.acc-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ocean);
}

.acc-info span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.acc-price {
  font-weight: 700;
  color: var(--teal);
  font-size: 1rem;
  white-space: nowrap;
}

/* ============================================
   Rentals Page - Packages
   ============================================ */

.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin: 24px auto 0;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.package-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}

.package-featured {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}

.package-premium {
  border-color: var(--sunset);
}

.package-premium:hover {
  border-color: var(--sunset);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.package-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.package-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.package-card > p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.package-items {
  text-align: left;
  margin-bottom: 20px;
}

.package-items li {
  padding: 5px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-items li::before {
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: var(--teal-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.package-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
}

.package-savings {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* --- GoBoat Intro (Rentals page) --- */
.goboat-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.goboat-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.goboat-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.goboat-intro-text h2 {
  margin-bottom: 16px;
}

.goboat-intro-text p {
  color: var(--gray-600);
  line-height: 1.7;
}

.goboat-quick-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.gqs {
  text-align: center;
  padding: 12px 8px;
  background: var(--white);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--gray-600);
  box-shadow: var(--shadow-sm);
}

.gqs strong {
  color: var(--ocean);
  display: block;
  margin-bottom: 2px;
  font-size: 0.85rem;
}

/* --- Responsive adjustments for new components --- */
@media (max-width: 1024px) {
  .goboat-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pricing-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .pricing-grid-3,
  .pricing-grid-2 {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .goboat-quick-specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-filters {
    gap: 6px;
  }
  .shop-filter {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .acc-item {
    flex-wrap: wrap;
  }
  .acc-price {
    width: 100%;
    text-align: right;
    margin-top: 4px;
  }
}

/* ============================================
   Motion & Accessibility (modernization refresh)
   ============================================ */

/* Scroll-reveal — activates the IntersectionObserver already wired in main.js
   (it adds .revealed when each .reveal element enters the viewport). */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--motion-slow) var(--ease-out-soft),
              transform var(--motion-slow) var(--ease-out-soft);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* Staggered entrance — a container marked `reveal reveal-stagger` reveals its children in sequence */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--motion-slow) var(--ease-out-soft),
              transform var(--motion-slow) var(--ease-out-soft);
}
.reveal.reveal-stagger { opacity: 1; transform: none; }   /* container visible; only children animate */
.reveal-stagger.revealed > * { opacity: 1; transform: none; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 320ms; }

/* Gentle image zoom inside an overflow-hidden frame on card hover */
.zoom-frame { overflow: hidden; }
.zoom-frame img {
  transition: transform var(--motion-slow) var(--ease-glide);
}
.card-zoom:hover .zoom-frame img,
.experience-card:hover .zoom-frame img,
.shop-card:hover .zoom-frame img,
.tour-card:hover .zoom-frame img {
  transform: scale(1.04);
}

/* Calm ambient drift for a single hero/product image (used sparingly) */
@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.float-soft {
  animation: drift var(--motion-ambient) var(--ease-glide) infinite;
}

/* Slow seamless waterline drift for an animated wave divider */
@keyframes wave-drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}
.wave-animate > path {
  animation: wave-drift 18s linear infinite;
}

/* Visible keyboard focus — none existed before */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.faq-question:focus-visible,
.shop-filter:focus-visible,
.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: var(--radius-sm);
}

/* Respect users who prefer reduced motion — neutralize transitions, loops & smooth-scroll */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }  /* never trap content hidden */
  .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}

/* ============================================
   Line-icon set (replaces emoji) — CSS mask so icons inherit currentColor
   Usage: <span class="ic ic-bolt" aria-hidden="true"></span>
   ============================================ */
.ic {
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  flex-shrink: 0;
  vertical-align: -0.28em;
  background-color: currentColor;
  -webkit-mask: var(--ic) center / contain no-repeat;
          mask: var(--ic) center / contain no-repeat;
}
.ic-lg { width: 1.8em; height: 1.8em; }

.ic-check { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }

.ic-bolt        { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'/%3E%3C/svg%3E"); }
.ic-leaf        { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z'/%3E%3Cpath d='M2 21c0-3 1.85-5.36 5.08-6'/%3E%3C/svg%3E"); }
.ic-shield      { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10'/%3E%3C/svg%3E"); }
.ic-shield-check{ --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E"); }
.ic-waves       { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 6c.6.5 1.2 1 2.5 1C7 7 7 5 9.5 5c2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1'/%3E%3Cpath d='M2 12c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1'/%3E%3Cpath d='M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1'/%3E%3C/svg%3E"); }
.ic-droplet     { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22a7 7 0 0 0 7-7c0-2-1-3.9-3-5.5s-3.5-4-4-6.5c-.5 2.5-2 4.9-4 6.5C6 11.1 5 13 5 15a7 7 0 0 0 7 7z'/%3E%3C/svg%3E"); }
.ic-lifebuoy    { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cline x1='4.93' y1='4.93' x2='9.17' y2='9.17'/%3E%3Cline x1='14.83' y1='14.83' x2='19.07' y2='19.07'/%3E%3Cline x1='14.83' y1='9.17' x2='19.07' y2='4.93'/%3E%3Cline x1='4.93' y1='19.07' x2='9.17' y2='14.83'/%3E%3C/svg%3E"); }
.ic-truck       { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2'/%3E%3Cpath d='M14 9h4l4 4v4a1 1 0 0 1-1 1h-1'/%3E%3Ccircle cx='7.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='17.5' cy='18.5' r='2.5'/%3E%3C/svg%3E"); }
.ic-map-pin     { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.ic-paw         { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6.5' cy='10.5' r='1.8'/%3E%3Ccircle cx='10' cy='6.5' r='1.8'/%3E%3Ccircle cx='14' cy='6.5' r='1.8'/%3E%3Ccircle cx='17.5' cy='10.5' r='1.8'/%3E%3Cpath d='M8 16.5c0-2 1.8-3.5 4-3.5s4 1.5 4 3.5c0 1.6-1.3 2.8-2.8 3.2a4 4 0 0 1-2.4 0C9.3 19.3 8 18.1 8 16.5z'/%3E%3C/svg%3E"); }
.ic-fish        { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.5 12c.94-3.46 4.94-6 8.5-6 3.56 0 6.06 2.54 7 6-1 3.46-3.44 6-7 6-3.56 0-7.56-2.54-8.5-6z'/%3E%3Cpath d='M6.5 12c-1.5 0-3-1-4-2 .5 2 .5 2 0 4 1-1 2.5-2 4-2z'/%3E%3Cline x1='15' y1='10' x2='15.01' y2='10'/%3E%3C/svg%3E"); }
.ic-cooler      { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='8' width='18' height='12' rx='1.5'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M8 8V6a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v2'/%3E%3C/svg%3E"); }
.ic-umbrella    { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 12v7a2 2 0 0 0 4 0'/%3E%3Cpath d='M3 12a9 9 0 0 1 18 0Z'/%3E%3C/svg%3E"); }
.ic-speaker     { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='2' width='14' height='20' rx='2'/%3E%3Ccircle cx='12' cy='14' r='4'/%3E%3Cline x1='12' y1='6' x2='12.01' y2='6'/%3E%3C/svg%3E"); }
.ic-anchor      { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='5' r='2'/%3E%3Cline x1='12' y1='7' x2='12' y2='22'/%3E%3Cpath d='M5 12H2a10 10 0 0 0 20 0h-3'/%3E%3C/svg%3E"); }
.ic-backpack    { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 10a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z'/%3E%3Cpath d='M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2'/%3E%3Cpath d='M8 14h8'/%3E%3C/svg%3E"); }
.ic-user        { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E"); }
.ic-users       { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); }
.ic-boat        { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 15h18l-2 5H5z'/%3E%3Cline x1='12' y1='3' x2='12' y2='15'/%3E%3Cpath d='M12 5l6 8H12z'/%3E%3C/svg%3E"); }
.ic-battery     { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='16' height='10' rx='2'/%3E%3Cline x1='22' y1='11' x2='22' y2='13'/%3E%3Cline x1='6' y1='11' x2='6' y2='13'/%3E%3Cline x1='10' y1='11' x2='10' y2='13'/%3E%3C/svg%3E"); }
.ic-ruler       { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.3 8.7 8.7 21.3a1 1 0 0 1-1.4 0l-4.6-4.6a1 1 0 0 1 0-1.4L15.3 2.7a1 1 0 0 1 1.4 0l4.6 4.6a1 1 0 0 1 0 1.4Z'/%3E%3Cpath d='m7.5 10.5 2 2'/%3E%3Cpath d='m10.5 7.5 2 2'/%3E%3Cpath d='m13.5 4.5 2 2'/%3E%3C/svg%3E"); }
.ic-clock       { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='12 7 12 12 15 14'/%3E%3C/svg%3E"); }
.ic-calendar    { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3C/svg%3E"); }
.ic-sun         { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.9 4.9l1.4 1.4M17.7 17.7l1.4 1.4M2 12h2M20 12h2M4.9 19.1l1.4-1.4M17.7 6.3l1.4-1.4'/%3E%3C/svg%3E"); }
.ic-sunset      { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 10V2'/%3E%3Cpath d='m4.9 10.9 1.4 1.4'/%3E%3Cpath d='M2 18h2'/%3E%3Cpath d='M20 18h2'/%3E%3Cpath d='m17.7 12.3 1.4-1.4'/%3E%3Cpath d='M22 22H2'/%3E%3Cpath d='M16 18a4 4 0 0 0-8 0'/%3E%3C/svg%3E"); }
.ic-sofa        { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 11V8a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3'/%3E%3Cpath d='M3 13a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v4H3z'/%3E%3Cline x1='6' y1='17' x2='6' y2='20'/%3E%3Cline x1='18' y1='17' x2='18' y2='20'/%3E%3C/svg%3E"); }
.ic-camera      { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/svg%3E"); }
.ic-star        { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000' stroke='%23000' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/%3E%3C/svg%3E"); }
.ic-chevron     { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); }
.ic-plus        { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E"); }
.ic-phone       { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }
.ic-mail        { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m2 7 10 6 10-6'/%3E%3C/svg%3E"); }
.ic-award       { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='6'/%3E%3Cpath d='M8.5 13 7 22l5-3 5 3-1.5-9'/%3E%3C/svg%3E"); }
.ic-tree        { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2 6 10h3l-4 6h5v6h4v-6h5l-4-6h3z'/%3E%3C/svg%3E"); }
.ic-heart       { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.29 1.51 4.04 3 5.5l7 7Z'/%3E%3C/svg%3E"); }
.ic-card        { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='5' width='20' height='14' rx='2'/%3E%3Cline x1='2' y1='10' x2='22' y2='10'/%3E%3C/svg%3E"); }
.ic-box         { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 8 12 3 3 8v8l9 5 9-5z'/%3E%3Cpath d='M3 8l9 5 9-5'/%3E%3Cline x1='12' y1='13' x2='12' y2='21'/%3E%3C/svg%3E"); }
.ic-refresh     { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='23 4 23 10 17 10'/%3E%3Cpath d='M20.49 15a9 9 0 1 1-2.12-9.36L23 10'/%3E%3C/svg%3E"); }
.ic-smile       { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M8 14s1.5 2 4 2 4-2 4-2'/%3E%3Cline x1='9' y1='9' x2='9.01' y2='9'/%3E%3Cline x1='15' y1='9' x2='15.01' y2='9'/%3E%3C/svg%3E"); }
.ic-dolphin     { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 14c4 0 6-2 7-5 3 1 5 3 11 3-2 3-5 5-9 5-5 0-7-3-9-6z'/%3E%3Cpath d='M10 9c.5-2 1.8-4 4-5'/%3E%3C/svg%3E"); }
.ic-home        { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10.5 12 3l9 7.5'/%3E%3Cpath d='M5 9v11a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V9'/%3E%3C/svg%3E"); }
.ic-pen         { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20h9'/%3E%3Cpath d='M16.5 3.5a2.12 2.12 0 0 1 3 3L7 19l-4 1 1-4z'/%3E%3C/svg%3E"); }
.ic-printer     { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 6 2 18 2 18 9'/%3E%3Cpath d='M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2'/%3E%3Crect x='6' y='14' width='12' height='8'/%3E%3C/svg%3E"); }
.ic-clipboard   { --ic: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='2' width='8' height='4' rx='1'/%3E%3Cpath d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2'/%3E%3C/svg%3E"); }

/* Icon chip — a consistent container for icons in value props / specs / contact */
.ic-chip {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--surface-sunk);
  color: var(--accent);
}
.ic-chip .ic { width: 1.6em; height: 1.6em; }

/* Brand-tint + right-size line icons inside legacy card/spec/value/contact containers
   (these used to hold colored emoji; the mono line icons need an explicit accent color + fixed size) */
.package-icon,
.spec-icon,
.value-block-icon,
.addon-icon,
.acc-icon,
.contact-info-icon,
.financing-card h3 .ic,
.shop-included-box .ic,
.includes-item .ic,
.gqs .ic { color: var(--accent); }

.package-icon .ic,
.value-block-icon .ic { width: 44px; height: 44px; }
.spec-icon .ic { width: 36px; height: 36px; }
.addon-icon .ic { width: 30px; height: 30px; }
.acc-icon .ic { width: 26px; height: 26px; }

/* Icons sitting on colored image placeholders stay light for contrast */
.tour-img { color: rgba(255,255,255,0.92); }
.tour-img .ic { width: 4rem; height: 4rem; }

/* --- Button row utility (replaces inline flex on CTA groups) --- */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.btn-row.center { justify-content: center; }

/* --- Trust strip (reusable reassurance band) --- */
.trust-strip {
  background: var(--surface-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  padding: var(--space-6) 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  justify-content: center;
}
.trust-item .ic {
  color: var(--accent);
  width: 1.8em;
  height: 1.8em;
}
.trust-item-label {
  font-weight: 600;
  color: var(--ocean);
  font-size: 0.95rem;
  line-height: 1.25;
}
.trust-item-sub {
  color: var(--ink-muted);
  font-size: 0.8rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .trust-strip-inner { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
}
@media (max-width: 480px) {
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item { justify-content: flex-start; }
}

/* --- Concierge setup note (shop value-add) --- */
.concierge-note {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.concierge-note-inner {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  max-width: 880px;
  margin: var(--space-5) auto;
  padding: var(--space-4) var(--space-5);
  background: var(--surface-muted);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
}
.concierge-note .ic {
  color: var(--accent);
  width: 1.6em;
  height: 1.6em;
  flex-shrink: 0;
  margin-top: 1px;
}
.concierge-note p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-muted);
}
.concierge-note strong { color: var(--ocean); }

/* --- Badge row (credential + audience-fit pills) --- */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-top: var(--space-5);
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--ink-body);
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-badge .ic { color: var(--accent); width: 1.2em; height: 1.2em; }

/* ============================================
   Photo placeholders (visualize needed media) + wave dividers + textures
   ============================================ */

/* Labeled "photo needed" box — shows what image goes where, at the right aspect ratio.
   Swap each one for an <img> when the real photo arrives. */
.photo-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  text-align: center;
  padding: var(--space-4);
  width: 100%;
  aspect-ratio: 3 / 2;
  background-color: var(--surface-muted);
  background-image: repeating-linear-gradient(45deg, rgba(42,157,143,0.06) 0 10px, transparent 10px 22px);
  border: 2px dashed var(--accent-light);
  border-radius: var(--radius-lg);
  color: var(--accent);
  overflow: hidden;
}
.photo-slot .ic { width: 2em; height: 2em; color: var(--accent-light); }
.photo-slot__label { font-weight: 600; color: var(--ocean); font-size: 0.92rem; line-height: 1.3; max-width: 92%; }
.photo-slot__meta {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}
.photo-slot--wide     { aspect-ratio: 16 / 9; }
.photo-slot--banner   { aspect-ratio: 24 / 7; }
.photo-slot--square   { aspect-ratio: 1 / 1; }
.photo-slot--portrait { aspect-ratio: 4 / 5; }
.photo-slot--free     { aspect-ratio: auto; height: 100%; min-height: 240px; }

/* Inside cards / image cells the parent supplies the rounding, so square the slot */
.experience-card .photo-slot,
.shop-card .photo-slot,
.tour-img.photo-slot { border-radius: 0; border-left: 0; border-right: 0; border-top: 0; }
.tour-img.photo-slot { height: 100%; min-height: 280px; aspect-ratio: auto; }

/* Wave dividers — a curved waterline between color bands. Fill = the color it pours into. */
.wave-divider { line-height: 0; margin: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; height: 64px; }
.wave-divider--sand path      { fill: var(--sand-light); }
.wave-divider--white path     { fill: var(--white); }
.wave-divider--ocean path     { fill: var(--ocean); }
.wave-divider--teal-dark path { fill: var(--teal-dark); }
@media (max-width: 600px) { .wave-divider svg { height: 40px; } }

/* Subtle, performance-safe background textures */
.tex-sand {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
.tex-ripple {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='90'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1.4'%3E%3Cpath d='M0 24 Q45 6 90 24 T180 24'/%3E%3Cpath d='M0 58 Q45 40 90 58 T180 58'/%3E%3C/g%3E%3C/svg%3E");
}

/* ============ Motion system (July 2026): interior header waves, float, hover zoom ============ */
.page-header { position: relative; overflow: hidden; }
.page-header .container { position: relative; z-index: 2; }
.ph-waves { position: absolute; left: 0; right: 0; bottom: 0; height: 46%; overflow: hidden; pointer-events: none; z-index: 0; }
.ph-waves svg { position: absolute; bottom: -2px; left: 0; width: 200%; height: 100%; will-change: transform; }
.ph-waves .phw-1 { fill: rgba(63,130,152,0.12); animation: phDrift 46s linear infinite reverse; }
.ph-waves .phw-2 { fill: rgba(143,216,220,0.09); height: 62%; animation: phDrift 28s linear infinite; }
@keyframes phDrift { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.float-gentle { animation: floatBob 7s ease-in-out infinite; }
@keyframes floatBob { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-5px) rotate(0.35deg); } }
.experience-card .experience-img { transition: transform 0.45s ease; }
.experience-card:hover .experience-img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
  .ph-waves svg, .float-gentle { animation: none; }
  .experience-card:hover .experience-img { transform: none; }
}
